diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index d380cb1a..00000000 --- a/.dockerignore +++ /dev/null @@ -1,10 +0,0 @@ -build/ -!build/html/ -.git/ -.pytest_cache/ -#dist/ -.github/ -.idea/ -Dockerfile -doc/notebooks/data -doc/images/ diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 21ee294f..83c26ded 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,10 +1,9 @@ --- name: Bug report about: Something is not working as expected -title: 'BUG: ' +title: "BUG: " labels: bug assignees: benoit9126 - --- **Describe the bug** @@ -26,6 +25,7 @@ A clear and concise description of what you expected to happen. **Version details** Please copy/paste here the output of the function `show_versions` + ```python from roseau.load_flow import show_versions diff --git a/.github/ISSUE_TEMPLATE/documentation-improvement.md b/.github/ISSUE_TEMPLATE/documentation-improvement.md index e2efb1d7..9d919db9 100644 --- a/.github/ISSUE_TEMPLATE/documentation-improvement.md +++ b/.github/ISSUE_TEMPLATE/documentation-improvement.md @@ -1,10 +1,9 @@ --- name: Documentation Improvement about: An improvement to the documentation -title: 'DOC: ' +title: "DOC: " labels: documentation assignees: benoit9126 - --- **Location of the document** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 9086d49f..fc001989 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,10 +1,9 @@ --- name: Feature request about: A proposal for a new feature -title: 'ENH: ' +title: "ENH: " labels: enhancement assignees: benoit9126 - --- **Describe the feature you want. What problem does it solve?** diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4dd34b8e..a8e4ea47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,23 +2,22 @@ name: CI on: push: - branches: [ main, develop ] + branches: [main, develop] tags: - - '*' + - "*" pull_request: - branches: [ main, develop ] + branches: [main, develop] env: CI: true jobs: build: - runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 @@ -56,7 +55,7 @@ jobs: - name: Install dependencies run: | poetry env use "${{ matrix.python-version }}" - poetry install --without dev,docker + poetry install --without dev - name: Test with pytest run: | diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index efa135c0..ff47b426 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -2,23 +2,22 @@ name: Conda on: push: - branches: [ main ] + branches: [main] tags: - - '*' + - "*" pull_request: - branches: [ main ] + branches: [main] env: CI: true jobs: build: - runs-on: "ubuntu-latest" strategy: fail-fast: false matrix: - python-version: [ "3.9" ] + python-version: ["3.9"] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index dc177696..3c179628 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -2,8 +2,14 @@ name: Documentation on: push: - branches: [ "main", "develop" ] + branches: ["main", "develop"] workflow_dispatch: + inputs: + forceDeploy: + description: "Deploy?" + required: true + default: false + type: boolean permissions: contents: read @@ -70,20 +76,20 @@ jobs: SPHINXBUILD: poetry run sphinx-build - name: Upload pages artifact - if: ${{ github.ref == 'refs/heads/main' }} - uses: actions/upload-pages-artifact@v1 + if: ${{ github.ref == 'refs/heads/main' || inputs.forceDeploy == true }} + uses: actions/upload-pages-artifact@v2 with: path: "build/html/" - name: Upload artifact uses: actions/upload-artifact@v3 - if: ${{ github.ref != 'refs/heads/main' }} + if: ${{ !(github.ref == 'refs/heads/main' || inputs.forceDeploy == true) }} with: path: "build/html/" # Deployment job deploy: - if: ${{ github.ref == 'refs/heads/main' }} + if: ${{ github.ref == 'refs/heads/main' || inputs.forceDeploy == true }} environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 38371ca1..c665d2d6 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -2,14 +2,14 @@ name: pre-commit on: push: - branches: [ main, develop ] + branches: [main, develop] paths-ignore: - ".vscode/**" - ".idea/**" tags: - - '*' + - "*" pull_request: - branches: [ main, develop ] + branches: [main, develop] paths-ignore: - ".vscode/**" - ".idea/**" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3aa540ba..80f04937 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,6 +3,7 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: + - id: check-builtin-literals - id: check-json exclude: ^.vscode/ - id: check-merge-conflict @@ -11,16 +12,29 @@ repos: - id: detect-private-key - id: end-of-file-fixer - id: trailing-whitespace - - repo: https://github.com/MarcoGorelli/absolufy-imports - rev: v0.3.1 + - repo: https://github.com/python-poetry/poetry + rev: 1.6.0 hooks: - - id: absolufy-imports - - repo: https://github.com/psf/black - rev: 23.3.0 + - id: poetry-check + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 23.7.0 # keep in sync with pyproject.toml hooks: - id: black-jupyter - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.0.270 + rev: v0.0.286 # keep in sync with pyproject.toml hooks: - id: ruff + types_or: [python, pyi, jupyter] args: [--fix, --exit-non-zero-on-fix] + - repo: https://github.com/adamchainz/blacken-docs + rev: 1.16.0 + hooks: + - id: blacken-docs + entry: bash -c "blacken-docs -l 90 $(find doc/ -name '*.md')" + args: [-l 90] + additional_dependencies: [black==23.7.0] # keep in sync with black above + - repo: https://github.com/pre-commit/mirrors-prettier + rev: v3.0.2 + hooks: + - id: prettier + args: ["--print-width", "120"] diff --git a/.vscode/cspell.json b/.vscode/cspell.json index e4d629ee..62c34947 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -1,45 +1,43 @@ { - // Version of the setting file. Always 0.2 - "version": "0.2", - // language - current active spelling language - "language": "en", - // words - list of words to be always considered correct - "words": [ - "abcn", - "absolufy", - "asarray", - "astype", - "bysource", - "cython", - "dropna", - "dtype", - "furo", - "htmlcov", - "isort", - "mathjax", - "mathrm", - "nbsphinx", - "ndarray", - "nplin", - "phasor", - "pipx", - "pmatrix", - "pmax", - "pyproj", - "pyproject", - "pytest", - "pyupgrade", - "raphson", - "rtol", - "susceptance", - "transfo", - "ureg", - "yesqa" - ], - // flagWords - list of words to be always considered incorrect - // This is useful for offensive words and common spelling errors. - // For example "hte" should be "the" - "flagWords": [ - "hte" - ] + // Version of the setting file. Always 0.2 + "version": "0.2", + // language - current active spelling language + "language": "en", + // words - list of words to be always considered correct + "words": [ + "abcn", + "absolufy", + "asarray", + "astype", + "bysource", + "cython", + "dropna", + "dtype", + "furo", + "htmlcov", + "isort", + "mathjax", + "mathrm", + "nbsphinx", + "ndarray", + "nplin", + "phasor", + "pipx", + "pmatrix", + "pmax", + "pyproj", + "pyproject", + "pytest", + "pyupgrade", + "raphson", + "rtol", + "susceptance", + "transfo", + "ureg", + "yesqa" + ], + // flagWords - list of words to be always considered incorrect + // This is useful for offensive words and common spelling errors. + // For example "hte" should be "the" + "flagWords": ["hte"] } diff --git a/.vscode/extensions.json b/.vscode/extensions.json index c306a171..5226822d 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,12 +1,12 @@ { - "recommendations": [ - "charliermarsh.ruff", - "ms-python.black-formatter", - "ms-python.python", - "ms-python.vscode-pylance", - ], - "unwantedRecommendations": [ - "ms-python.flake8", // We use ruff - "ms-python.isort", // We use ruff - ] + "recommendations": [ + "charliermarsh.ruff", + "ms-python.black-formatter", + "ms-python.python", + "ms-python.vscode-pylance" + ], + "unwantedRecommendations": [ + "ms-python.flake8", // We use ruff + "ms-python.isort" // We use ruff + ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 1f5a90f0..fe97411f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,22 +1,26 @@ { - // Jupyter - "jupyter.notebookFileRoot": "${workspaceFolder}", + // Jupyter Notebook + "jupyter.notebookFileRoot": "${workspaceFolder}", + "notebook.formatOnSave.enabled": true, + "notebook.codeActionsOnSave": { + "source.organizeImports.ruff": true + }, - // Python - "python.analysis.diagnosticSeverityOverrides": { - "reportInvalidStringEscapeSequence": "warning", - "reportImportCycles": "warning", - "reportUnusedImport": "warning", - }, - "python.formatting.provider": "none", - "python.testing.pytestArgs": [], - "python.testing.unittestEnabled": false, - "python.testing.pytestEnabled": true, - "[python]": { - "editor.defaultFormatter": "ms-python.black-formatter", - "editor.formatOnSave": true, - "editor.codeActionsOnSave": { - "source.organizeImports.ruff": true, - }, - }, + // Python + "python.analysis.diagnosticSeverityOverrides": { + "reportInvalidStringEscapeSequence": "warning", + "reportImportCycles": "warning", + "reportUnusedImport": "warning" + }, + "python.formatting.provider": "none", + "python.testing.pytestArgs": [], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter", + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.organizeImports.ruff": true + } + } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index aa6f23de..48ba0e67 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,44 +1,44 @@ { - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "options": {"cwd": "${workspaceFolder}"}, - "presentation": { - "showReuseMessage": true, - "clear": true + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "options": { "cwd": "${workspaceFolder}" }, + "presentation": { + "showReuseMessage": true, + "clear": true + }, + "tasks": [ + { + "label": "Build docs", + "detail": "Build the docs using Sphinx.", + "type": "shell", + "command": "make -C doc html", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [], + "presentation": { + "reveal": "silent", + "focus": true + } }, - "tasks": [ - { - "label": "Build docs", - "detail": "Build the docs using Sphinx.", - "type": "shell", - "command": "make -C doc html", - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": [], - "presentation": { - "reveal": "silent", - "focus": true, - } - }, - { - "label": "Open docs", - "detail": "Open the docs in the browser.", - "type": "shell", - "command": "open build/html/index.html", - "presentation": { - "reveal": "never", - "close": true, - "focus": false, - "panel": "dedicated", - }, - "group": { - "kind": "build", - "isDefault": true - }, - "isBackground": true, - }, - ], + { + "label": "Open docs", + "detail": "Open the docs in the browser.", + "type": "shell", + "command": "open build/html/index.html", + "presentation": { + "reveal": "never", + "close": true, + "focus": false, + "panel": "dedicated" + }, + "group": { + "kind": "build", + "isDefault": true + }, + "isBackground": true + } + ] } diff --git a/Changelog.md b/Changelog.md deleted file mode 100644 index 44f3785c..00000000 --- a/Changelog.md +++ /dev/null @@ -1,52 +0,0 @@ -# Changelog - -## Version 0.4.0 - -* [PR91](https://github.com/RoseauTechnologies/Roseau_Load_Flow/pull/91) Rename `resolution_method` into `solver`. -* [GH73](https://github.com/RoseauTechnologies/Roseau_Load_Flow/issues/73) - [PR85](https://github.com/RoseauTechnologies/Roseau_Load_Flow/pull/85) Rename `precision` into `tolerance` and - `final_precision` into `residual`. -* [PR82](https://github.com/RoseauTechnologies/Roseau_Load_Flow/pull/82) Add the `"newton_goldstein"` solver. -* [PR88](https://github.com/RoseauTechnologies/Roseau_Load_Flow/pull/88) Increase the default `alpha` values for - flexible parameters. - -## Version 0.3.0 - -* Every network elements have an `id` which must be unique among the same type of elements. -* The argument `n` (number of ports) have been replaced by a `phase(s)` argument which can be for - instance `an`, `abc`, `abcn`, `ca`, etc. -* The classes `SimplifiedLine` and `ShuntLine` have been merged into a single class `Line` whose - behaviour depends on the provided `LineParameters`. -* The classes `DeltaDeltaTransformer`, `DeltaWyeTransformer`, `DeltaZigzagTransformer`, - `WyeDeltaTransformer`, `WyeWyeTransformer` and `WyeZigzagTransformer` have been replaced by an - unique `Transformer` class whose behaviour depends on the provided `TransformerParameter`. -* The classes `LineCharacteristics` and `TransformerCharacteristics` have been renamed into - `LineParameters` and `TransformerParameters`. -* The classes `AdmittanceLoad` and `DelatAdmittanceLoad` have been removed. Please use - `ImpedanceLoad` instead, with the desired `phases` argument. -* The classes `DeltaImpedanceLoad` and `DeltaPowerLoad` have been removed. Please use the classes - `ImpedanceLoad` and `PowerLoad` instead with `phases="abc"`. -* The class `FlexibleLoad` have been removed. Please use the new `flexible_params` argument of the - `PowerLoad` class constructor. -* The `VoltageSource` is not any more a subclass of the class `Bus`. It can now be connected to a bus - just like a load. -* All elements are aware of the network they belong to. It helps the user to avoid mistakes - (connecting elements from different networks). It also allows showing user warnings when accessing - to outdated results. -* All properties retrieving results are now prefixed by `res_`. -* Additional results per elements: `res_potentials`, `res_voltages`, `res_series_losses`, - `res_lie_losses`, etc. -* Pandas Data frame results: now, every result can be retrieved in Pandas Data frame from the - `ElectricalNetwork` instance. These methods are also prefixed by `res_`. -* Every physical input can be given as quantities (magnitude and unit) using the `Q_` class. -* Every result (except Pandas data frame) are quantities (magnitude and unit). -* Elements can all be serialized as JSON. -* Results of an `ElectricalNetwork` can be serialized as JSON and read from a JSON file. -* The documentation has been improved. - - - - - - - diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 856c8620..00000000 --- a/Dockerfile +++ /dev/null @@ -1,62 +0,0 @@ -FROM python:3.11-slim-bullseye as build - -# Set the working directory to /app -WORKDIR /app - -# Set some environment variables -ENV POETRY_HOME=/poetry PATH=/poetry/bin:${PATH} PYTHONUNBUFFERED=1 - -# Install some packages -RUN apt update && apt install --no-install-recommends -yq curl make pandoc - -# Install poetry -RUN curl -sSL https://install.python-poetry.org | python3 - - -# Copy the code into the container -COPY . /app/ - -# Install any needed packages specified in poetry.lock -# Configure poetry -RUN poetry config virtualenvs.create true && \ - poetry config virtualenvs.in-project true && \ - poetry install --without dev,test --with doc - -# Build a wheel the documentation -RUN poetry build && \ - cd doc/ && \ - SPHINXBUILD="poetry run sphinx-build" make html && \ - cd .. && \ - poetry install --without dev,test,doc --with docker --sync - -FROM python:3.11-slim-bullseye as run - -# Set the working directory to /app -WORKDIR /app - -# Environment variable + expose the port -ENV PYTHONUNBUFFERED=1 PATH="/app/.venv/bin:${PATH}" PORT=8080 -EXPOSE ${PORT} - -# Install node js to allow extension installation -RUN apt update && \ - apt install --no-install-recommends -yq curl && \ - curl -sL https://deb.nodesource.com/setup_18.x | bash - && \ - apt install --no-install-recommends -yq nodejs && \ - apt upgrade -yq && \ - apt clean && \ - rm -rf /var/lib/apt/lists/* - -# Copy the virtualenv -COPY --from=build /app/.venv/ .venv/ -COPY --from=build /app/dist/*.whl ./ - -# Install Jupyter lab -RUN pip3 install -U $(ls roseau_load_flow-*.whl | sort -Vr | head -n 1) pip && rm roseau_load_flow-*.whl - -# COPY the documentation, the noteboks and the data -COPY --from=build /app/build/html/ doc/ -COPY ./doc/notebooks/ ./ -COPY ./data/ data/ - -# Run the Jupyter Lab -ENTRYPOINT jupyter lab --allow-root --ServerApp.allow_origin='*' --ip=0.0.0.0 --port ${PORT} --no-browser --ServerApp.token='' diff --git a/README.md b/README.md index 1b17dc94..b878d1d3 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,41 @@ -# Roseau Load Flow # +# Roseau Load Flow ![CI](https://github.com/RoseauTechnologies/Roseau_Load_Flow/workflows/CI/badge.svg) [![Documentation](https://github.com/RoseauTechnologies/Roseau_Load_Flow/actions/workflows/doc.yml/badge.svg)](https://github.com/RoseauTechnologies/Roseau_Load_Flow/actions/workflows/doc.yml) [![pre-commit](https://github.com/RoseauTechnologies/Roseau_Load_Flow/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/RoseauTechnologies/Roseau_Load_Flow/actions/workflows/pre-commit.yml) -*Roseau Load Flow* is a highly capable three-phase load flow solver. This project is compatible with Python 3.9 and +_Roseau Load Flow_ is a highly capable three-phase load flow solver. This project is compatible with Python 3.9 and above. -Please take a look at our documentation to see how to install and use `roseau_load_flow`. +Please take a look at our documentation to see how to install and use `roseau-load-flow`. -* [Installation](https://roseautechnologies.github.io/Roseau_Load_Flow/installation.html) -* [Usage](https://roseautechnologies.github.io/Roseau_Load_Flow/notebooks/Getting_Started.html) +- [Installation](https://roseautechnologies.github.io/Roseau_Load_Flow/Installation.html) +- [Usage](https://roseautechnologies.github.io/Roseau_Load_Flow/usage/index.html) -# Accessing the solver # +# Accessing the solver This is the client library for the -[*Roseau Load Flow*](https://www.roseautechnologies.com/en/roseau-load-flow-en/) solver. To use the solver, you +[_Roseau Load Flow_](https://www.roseautechnologies.com/en/roseau-load-flow-en/) solver. To use the solver, you need to sign up for an account. For inquiry, please contact us at contact@roseautechnologies.com. If you are a **student or a teacher, free API credentials are provided**. Please contact us at contact@roseautechnologies.com. -# Network data # +# Network data With this library, there is a sample of 20 low-voltage and 20 medium-voltage feeders included for an easy -start! Each network is given with its summer and winter load point. At *Roseau Technologies*, we are able to provide +start! Each network is given with its summer and winter load point. At _Roseau Technologies_, we are able to provide the major part of the French medium and low voltage networks. For more information, please contact us at contact@roseautechnologies.com. -# Bug reports / Feature requests # +![Catalogue of networks](https://github.com/RoseauTechnologies/Roseau_Load_Flow/blob/main/doc/_static/Network/Catalogue.png?raw=True) + +# Bug reports / Feature requests If you find a bug or have a feature request, please open an issue on [GitHub](https://github.com/RoseauTechnologies/Roseau_Load_Flow/issues) -# Credits # +# Credits This software is developed by [Roseau Technologies](https://www.roseautechnologies.com/en). [![Linkedin](https://i.stack.imgur.com/gVE0j.png) LinkedIn](https://www.linkedin.com/company/roseau-technologies/) diff --git a/conda/environment.yml b/conda/environment.yml index f2321152..a6e1ff7f 100644 --- a/conda/environment.yml +++ b/conda/environment.yml @@ -9,6 +9,7 @@ dependencies: - geopandas >=0.10.2 - shapely >=2.0.0 - regex >=2022.1.18 - - pint >=0.19.2 + - pint >=0.21.0 - requests >=2.28.1 - typing-extensions >=4.6.2 + - rich >=13.5.2 diff --git a/conda/meta.yaml b/conda/meta.yaml index 1a845a9c..7d15d74e 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,6 @@ +# prettier-ignore {% set name = "roseau-load-flow" %} -{% set version = "0.4.0" %} +{% set version = "0.5.0" %} package: name: "{{ name|lower }}" @@ -30,9 +31,10 @@ requirements: - geopandas >=0.10.2 - shapely >=2.0.0 - regex >=2022.1.18 - - pint >=0.19.2 + - pint >=0.21.0 - requests >=2.28.1 - typing-extensions >=4.6.2 + - rich >=13.5.1 test: imports: diff --git a/data/LVFeeder00939_summer.json b/data/LVFeeder00939_summer.json deleted file mode 100644 index 49ebe98d..00000000 --- a/data/LVFeeder00939_summer.json +++ /dev/null @@ -1,620 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV03045", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.318375372111463, 48.64794139348595] - } - }, - { - "id": "MVLV03045", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.318375372111463, 48.64794139348595] - } - }, - { - "id": "LVBus004111", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.319439380306016, 48.64935651484044] - } - }, - { - "id": "LVBus004112", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.318850459390614, 48.65071019353541] - } - }, - { - "id": "LVBus004113", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320149235966572, 48.64971306653889] - } - }, - { - "id": "LVBus004114", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320930091968568, 48.64998504109587] - } - }, - { - "id": "LVBus004115", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.321744301484108, 48.65025939158834] - } - }, - { - "id": "LVBus004116", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320032407456181, 48.64986022542928] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV03045", - "geometry": { - "type": "Point", - "coordinates": [-1.318375372111463, 48.64794139348595] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch128683", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV03045", - "bus2": "LVBus004111", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.318375372111463, 48.64794139348595], - [-1.318372262723904, 48.64795764182027], - [-1.318372262723904, 48.64795764182027], - [-1.318356873544854, 48.648119631764985], - [-1.318375980897601, 48.6481408999871], - [-1.318601939788418, 48.64839239672023], - [-1.318954973911141, 48.648990539493255], - [-1.31920351237447, 48.649289813902186], - [-1.319439380306016, 48.64935651484044], - [-1.319439380306016, 48.64935651484044] - ] - }, - "length": 0.18165362031560994, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch068439", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004111", - "bus2": "LVBus004112", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.319439380306016, 48.64935651484044], - [-1.319439380306016, 48.64935651484044], - [-1.319213661443218, 48.64963763726965], - [-1.3192072357427, 48.649645340289645], - [-1.319310285624904, 48.65014425413255], - [-1.319312529830104, 48.650155127151486], - [-1.319287770629054, 48.65018487528955], - [-1.318853741189945, 48.650706258927364], - [-1.318850459390614, 48.65071019353541], - [-1.318850459390614, 48.65071019353541] - ] - }, - "length": 0.1640996914834165, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch022998", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004111", - "bus2": "LVBus004113", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.319439380306016, 48.64935651484044], - [-1.319439380306016, 48.64935651484044], - [-1.319444760628315, 48.64935925539479], - [-1.320149235966572, 48.64971306653889], - [-1.320149235966572, 48.64971306653889] - ] - }, - "length": 0.06563452239076538, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch013211", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004113", - "bus2": "LVBus004114", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.320149235966572, 48.64971306653889], - [-1.320149235966572, 48.64971306653889], - [-1.320924091665486, 48.64998294963954], - [-1.320929757900593, 48.64998492542595], - [-1.320930091968568, 48.64998504109587], - [-1.320930091968568, 48.64998504109587] - ] - }, - "length": 0.06500094076102345, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch147387", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004114", - "bus2": "LVBus004115", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.320930091968568, 48.64998504109587], - [-1.320930091968568, 48.64998504109587], - [-1.320959330644131, 48.649976336965366], - [-1.321402033442493, 48.65012293785019], - [-1.321657507976488, 48.650209573100575], - [-1.321681660037352, 48.65021776315184], - [-1.321757789157954, 48.650243578682044], - [-1.321744301484108, 48.65025939158834], - [-1.321744301484108, 48.65025939158834] - ] - }, - "length": 0.07029495574312403, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch013210", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004113", - "bus2": "LVBus004116", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.320149235966572, 48.64971306653889], - [-1.320149235966572, 48.64971306653889], - [-1.320036206285348, 48.64985649979303], - [-1.320032407456181, 48.64986022542928], - [-1.320032407456181, 48.64986022542928] - ] - }, - "length": 0.01849364446078355, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus004111_production", - "bus": "LVBus004111", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004111_consumption", - "bus": "LVBus004111", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004112_production", - "bus": "LVBus004112", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-456.4102564102564, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004112_consumption", - "bus": "LVBus004112", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2093.746904840429, 688.181327888491], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004113_production", - "bus": "LVBus004113", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004113_consumption", - "bus": "LVBus004113", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004114_production", - "bus": "LVBus004114", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004114_consumption", - "bus": "LVBus004114", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004115_production", - "bus": "LVBus004115", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-456.4102564102564, 0.0] - ] - }, - { - "id": "LVBus004115_consumption", - "bus": "LVBus004115", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2093.746904840429, 688.181327888491] - ] - }, - { - "id": "LVBus004116_production", - "bus": "LVBus004116", - "phases": "abcn", - "powers": [ - [-456.4102564102564, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004116_consumption", - "bus": "LVBus004116", - "phases": "abcn", - "powers": [ - [2093.746904840429, 688.181327888491], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder00939_winter.json b/data/LVFeeder00939_winter.json deleted file mode 100644 index f9d4eb57..00000000 --- a/data/LVFeeder00939_winter.json +++ /dev/null @@ -1,620 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV03045", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.318375372111463, 48.64794139348595] - } - }, - { - "id": "MVLV03045", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.318375372111463, 48.64794139348595] - } - }, - { - "id": "LVBus004111", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.319439380306016, 48.64935651484044] - } - }, - { - "id": "LVBus004112", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.318850459390614, 48.65071019353541] - } - }, - { - "id": "LVBus004113", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320149235966572, 48.64971306653889] - } - }, - { - "id": "LVBus004114", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320930091968568, 48.64998504109587] - } - }, - { - "id": "LVBus004115", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.321744301484108, 48.65025939158834] - } - }, - { - "id": "LVBus004116", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320032407456181, 48.64986022542928] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV03045", - "geometry": { - "type": "Point", - "coordinates": [-1.318375372111463, 48.64794139348595] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch128683", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV03045", - "bus2": "LVBus004111", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.318375372111463, 48.64794139348595], - [-1.318372262723904, 48.64795764182027], - [-1.318372262723904, 48.64795764182027], - [-1.318356873544854, 48.648119631764985], - [-1.318375980897601, 48.6481408999871], - [-1.318601939788418, 48.64839239672023], - [-1.318954973911141, 48.648990539493255], - [-1.31920351237447, 48.649289813902186], - [-1.319439380306016, 48.64935651484044], - [-1.319439380306016, 48.64935651484044] - ] - }, - "length": 0.18165362031560994, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch068439", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004111", - "bus2": "LVBus004112", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.319439380306016, 48.64935651484044], - [-1.319439380306016, 48.64935651484044], - [-1.319213661443218, 48.64963763726965], - [-1.3192072357427, 48.649645340289645], - [-1.319310285624904, 48.65014425413255], - [-1.319312529830104, 48.650155127151486], - [-1.319287770629054, 48.65018487528955], - [-1.318853741189945, 48.650706258927364], - [-1.318850459390614, 48.65071019353541], - [-1.318850459390614, 48.65071019353541] - ] - }, - "length": 0.1640996914834165, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch022998", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004111", - "bus2": "LVBus004113", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.319439380306016, 48.64935651484044], - [-1.319439380306016, 48.64935651484044], - [-1.319444760628315, 48.64935925539479], - [-1.320149235966572, 48.64971306653889], - [-1.320149235966572, 48.64971306653889] - ] - }, - "length": 0.06563452239076538, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch013211", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004113", - "bus2": "LVBus004114", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.320149235966572, 48.64971306653889], - [-1.320149235966572, 48.64971306653889], - [-1.320924091665486, 48.64998294963954], - [-1.320929757900593, 48.64998492542595], - [-1.320930091968568, 48.64998504109587], - [-1.320930091968568, 48.64998504109587] - ] - }, - "length": 0.06500094076102345, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch147387", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004114", - "bus2": "LVBus004115", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.320930091968568, 48.64998504109587], - [-1.320930091968568, 48.64998504109587], - [-1.320959330644131, 48.649976336965366], - [-1.321402033442493, 48.65012293785019], - [-1.321657507976488, 48.650209573100575], - [-1.321681660037352, 48.65021776315184], - [-1.321757789157954, 48.650243578682044], - [-1.321744301484108, 48.65025939158834], - [-1.321744301484108, 48.65025939158834] - ] - }, - "length": 0.07029495574312403, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch013210", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus004113", - "bus2": "LVBus004116", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.320149235966572, 48.64971306653889], - [-1.320149235966572, 48.64971306653889], - [-1.320036206285348, 48.64985649979303], - [-1.320032407456181, 48.64986022542928], - [-1.320032407456181, 48.64986022542928] - ] - }, - "length": 0.01849364446078355, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus004111_production", - "bus": "LVBus004111", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004111_consumption", - "bus": "LVBus004111", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004112_production", - "bus": "LVBus004112", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004112_consumption", - "bus": "LVBus004112", - "phases": "abcn", - "powers": [ - [10468.734524202146, 3440.906639442455], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004113_production", - "bus": "LVBus004113", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus004113_consumption", - "bus": "LVBus004113", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004114_production", - "bus": "LVBus004114", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004114_consumption", - "bus": "LVBus004114", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004115_production", - "bus": "LVBus004115", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004115_consumption", - "bus": "LVBus004115", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [10468.734524202146, 3440.906639442455], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004116_production", - "bus": "LVBus004116", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus004116_consumption", - "bus": "LVBus004116", - "phases": "abcn", - "powers": [ - [10468.734524202146, 3440.906639442455], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder02639_summer.json b/data/LVFeeder02639_summer.json deleted file mode 100644 index 9a82d944..00000000 --- a/data/LVFeeder02639_summer.json +++ /dev/null @@ -1,466 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV13030", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.113772280167845, 49.11691122611608] - } - }, - { - "id": "MVLV13030", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.113772280167845, 49.11691122611608] - } - }, - { - "id": "LVBus012331", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114826112913037, 49.11661005366279] - } - }, - { - "id": "LVBus012332", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114823091410435, 49.116473223549235] - } - }, - { - "id": "LVBus012333", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114801264260203, 49.11643351455647] - } - }, - { - "id": "LVBus012335", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114664902732631, 49.11644824054329] - } - }, - { - "id": "LVBus012334", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114635189864904, 49.11629134091336] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV13030", - "geometry": { - "type": "Point", - "coordinates": [-1.113772280167845, 49.11691122611608] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch089497", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV13030", - "bus2": "LVBus012331", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113772280167845, 49.11691122611608], - [-1.113809602359184, 49.11691846498369], - [-1.113809602359184, 49.11691846498369], - [-1.113830369459365, 49.11688563132004], - [-1.113834643225292, 49.116883565360546], - [-1.1138392395914, 49.11688283921328], - [-1.113920524290085, 49.11690481536989], - [-1.113928018269146, 49.11690684779911], - [-1.113934390484964, 49.11690665505638], - [-1.113944509440132, 49.11690409675379], - [-1.114058782645394, 49.11687521330427], - [-1.114063955125718, 49.116871835263936], - [-1.114066087768089, 49.11686725872721], - [-1.11408711823683, 49.11683119752992], - [-1.114090771093566, 49.116827224728816], - [-1.11410051045201, 49.11681919995221], - [-1.114113316106086, 49.116811950183994], - [-1.11438565478225, 49.11673557924769], - [-1.114826112913037, 49.11661005366279], - [-1.114826112913037, 49.11661005366279] - ] - }, - "length": 0.08681523635053473, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch089528", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012331", - "bus2": "LVBus012332", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114826112913037, 49.11661005366279], - [-1.114826112913037, 49.11661005366279], - [-1.114911435961938, 49.116588992801624], - [-1.114912955318509, 49.11658753690231], - [-1.114891565003778, 49.11655108018678], - [-1.114823091410435, 49.116473223549235], - [-1.114823091410435, 49.116473223549235] - ] - }, - "length": 0.02119335092120977, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch095409", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012332", - "bus2": "LVBus012333", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114823091410435, 49.116473223549235], - [-1.114823091410435, 49.116473223549235], - [-1.114801264260203, 49.11643351455647], - [-1.114801264260203, 49.11643351455647] - ] - }, - "length": 0.004694786680023009, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch136046", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012333", - "bus2": "LVBus012335", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114801264260203, 49.11643351455647], - [-1.114801264260203, 49.11643351455647], - [-1.11479480557162, 49.11643241469008], - [-1.114783384515044, 49.11641633886235], - [-1.114780465929909, 49.11641674683182], - [-1.114681090491443, 49.11644382523756], - [-1.114664902732631, 49.11644824054329], - [-1.114664902732631, 49.11644824054329] - ] - }, - "length": 0.011812025644293674, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch136047", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012333", - "bus2": "LVBus012334", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114801264260203, 49.11643351455647], - [-1.114801264260203, 49.11643351455647], - [-1.114723765714752, 49.1163178551149], - [-1.114709242318357, 49.11629616649662], - [-1.114653634718668, 49.116314913127574], - [-1.114644000161638, 49.11630259926119], - [-1.114635189864904, 49.11629134091336], - [-1.114635189864904, 49.11629134091336] - ] - }, - "length": 0.024197289324129616, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus012331_production", - "bus": "LVBus012331", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus012331_consumption", - "bus": "LVBus012331", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012332_production", - "bus": "LVBus012332", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012332_consumption", - "bus": "LVBus012332", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012333_production", - "bus": "LVBus012333", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus012333_consumption", - "bus": "LVBus012333", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012335_production", - "bus": "LVBus012335", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-439.8583569405099, 0.0] - ] - }, - { - "id": "LVBus012335_consumption", - "bus": "LVBus012335", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [5128.927258987809, 1685.7968666478876] - ] - }, - { - "id": "LVBus012334_production", - "bus": "LVBus012334", - "phases": "abcn", - "powers": [ - [-439.8583569405099, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012334_consumption", - "bus": "LVBus012334", - "phases": "abcn", - "powers": [ - [5128.927258987809, 1685.7968666478876], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder02639_winter.json b/data/LVFeeder02639_winter.json deleted file mode 100644 index 2bd67bb9..00000000 --- a/data/LVFeeder02639_winter.json +++ /dev/null @@ -1,466 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV13030", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.113772280167845, 49.11691122611608] - } - }, - { - "id": "MVLV13030", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.113772280167845, 49.11691122611608] - } - }, - { - "id": "LVBus012331", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114826112913037, 49.11661005366279] - } - }, - { - "id": "LVBus012332", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114823091410435, 49.116473223549235] - } - }, - { - "id": "LVBus012333", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114801264260203, 49.11643351455647] - } - }, - { - "id": "LVBus012335", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114664902732631, 49.11644824054329] - } - }, - { - "id": "LVBus012334", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.114635189864904, 49.11629134091336] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV13030", - "geometry": { - "type": "Point", - "coordinates": [-1.113772280167845, 49.11691122611608] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch089497", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV13030", - "bus2": "LVBus012331", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113772280167845, 49.11691122611608], - [-1.113809602359184, 49.11691846498369], - [-1.113809602359184, 49.11691846498369], - [-1.113830369459365, 49.11688563132004], - [-1.113834643225292, 49.116883565360546], - [-1.1138392395914, 49.11688283921328], - [-1.113920524290085, 49.11690481536989], - [-1.113928018269146, 49.11690684779911], - [-1.113934390484964, 49.11690665505638], - [-1.113944509440132, 49.11690409675379], - [-1.114058782645394, 49.11687521330427], - [-1.114063955125718, 49.116871835263936], - [-1.114066087768089, 49.11686725872721], - [-1.11408711823683, 49.11683119752992], - [-1.114090771093566, 49.116827224728816], - [-1.11410051045201, 49.11681919995221], - [-1.114113316106086, 49.116811950183994], - [-1.11438565478225, 49.11673557924769], - [-1.114826112913037, 49.11661005366279], - [-1.114826112913037, 49.11661005366279] - ] - }, - "length": 0.08681523635053473, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch089528", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012331", - "bus2": "LVBus012332", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114826112913037, 49.11661005366279], - [-1.114826112913037, 49.11661005366279], - [-1.114911435961938, 49.116588992801624], - [-1.114912955318509, 49.11658753690231], - [-1.114891565003778, 49.11655108018678], - [-1.114823091410435, 49.116473223549235], - [-1.114823091410435, 49.116473223549235] - ] - }, - "length": 0.02119335092120977, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch095409", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012332", - "bus2": "LVBus012333", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114823091410435, 49.116473223549235], - [-1.114823091410435, 49.116473223549235], - [-1.114801264260203, 49.11643351455647], - [-1.114801264260203, 49.11643351455647] - ] - }, - "length": 0.004694786680023009, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch136046", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012333", - "bus2": "LVBus012335", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114801264260203, 49.11643351455647], - [-1.114801264260203, 49.11643351455647], - [-1.11479480557162, 49.11643241469008], - [-1.114783384515044, 49.11641633886235], - [-1.114780465929909, 49.11641674683182], - [-1.114681090491443, 49.11644382523756], - [-1.114664902732631, 49.11644824054329], - [-1.114664902732631, 49.11644824054329] - ] - }, - "length": 0.011812025644293674, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch136047", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus012333", - "bus2": "LVBus012334", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114801264260203, 49.11643351455647], - [-1.114801264260203, 49.11643351455647], - [-1.114723765714752, 49.1163178551149], - [-1.114709242318357, 49.11629616649662], - [-1.114653634718668, 49.116314913127574], - [-1.114644000161638, 49.11630259926119], - [-1.114635189864904, 49.11629134091336], - [-1.114635189864904, 49.11629134091336] - ] - }, - "length": 0.024197289324129616, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus012331_production", - "bus": "LVBus012331", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012331_consumption", - "bus": "LVBus012331", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012332_production", - "bus": "LVBus012332", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus012332_consumption", - "bus": "LVBus012332", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012333_production", - "bus": "LVBus012333", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012333_consumption", - "bus": "LVBus012333", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus012335_production", - "bus": "LVBus012335", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus012335_consumption", - "bus": "LVBus012335", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [25644.636294939046, 8428.984333239438] - ] - }, - { - "id": "LVBus012334_production", - "bus": "LVBus012334", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus012334_consumption", - "bus": "LVBus012334", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [25644.636294939046, 8428.984333239438] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder04790_summer.json b/data/LVFeeder04790_summer.json deleted file mode 100644 index 785b07ce..00000000 --- a/data/LVFeeder04790_summer.json +++ /dev/null @@ -1,332 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV08786", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3413945147439499, 48.67575966750258] - } - }, - { - "id": "MVLV08786", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3413945147439499, 48.67575966750258] - } - }, - { - "id": "LVBus021707", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3405143892225866, 48.67378431146558] - } - }, - { - "id": "LVBus195690", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.341130004040592, 48.674217267249176] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV08786", - "geometry": { - "type": "Point", - "coordinates": [-1.3413945147439499, 48.67575966750258] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch134552", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV08786", - "bus2": "LVBus021707", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3413945147439499, 48.67575966750258], - [-1.341385434067615, 48.675737128972145], - [-1.341385434067615, 48.675737128972145], - [-1.34132531607358, 48.67567824485926], - [-1.341313519030196, 48.67556560756853], - [-1.341283958893599, 48.67528344049164], - [-1.341283179747798, 48.67527684175873], - [-1.341269658363544, 48.6751632590872], - [-1.341214865480365, 48.675047087214786], - [-1.341200963077193, 48.67500612530304], - [-1.341220048671394, 48.67495148826574], - [-1.341326519319494, 48.67486521044506], - [-1.34138565954355, 48.674829775519406], - [-1.341340693466156, 48.67479069504203], - [-1.3414145116273, 48.67471746097725], - [-1.341427347328673, 48.67458617046537], - [-1.341399709215387, 48.67451717234955], - [-1.341279929401527, 48.67445653948811], - [-1.340881583766118, 48.67409267631658], - [-1.340845898341474, 48.67405070724385], - [-1.34056797392051, 48.67379685828972], - [-1.340550630424044, 48.67378100987611], - [-1.340545527448469, 48.67377974637049], - [-1.34054090795977, 48.673780132595105], - [-1.340517035971892, 48.67379109524738], - [-1.3405143892225866, 48.67378431146558] - ] - }, - "length": 0.2522152999932708, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch143253", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus021707", - "bus2": "LVBus195690", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3405143892225866, 48.67378431146558], - [-1.340511742473281, 48.67377752768378], - [-1.340524215456442, 48.67377214668572], - [-1.34061533771321, 48.67377109338631], - [-1.340622296919997, 48.6737732441641], - [-1.340644073201206, 48.673787218376674], - [-1.340650525953079, 48.67379719556955], - [-1.340658667983175, 48.67380569860559], - [-1.340749772721113, 48.67388683816967], - [-1.340760178041364, 48.67389218451362], - [-1.340883396791196, 48.67399667794088], - [-1.340888875935236, 48.67400787312246], - [-1.341094728878057, 48.6742062763994], - [-1.341096974187145, 48.674208438386664], - [-1.341108332911281, 48.674219388198615], - [-1.341113099956009, 48.67422089606251], - [-1.341119512019872, 48.67422068817659], - [-1.341130004040592, 48.674217267249176], - [-1.341130004040592, 48.674217267249176] - ] - }, - "length": 0.07146262631265571, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus021707_production", - "bus": "LVBus021707", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus021707_consumption", - "bus": "LVBus021707", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195690_production", - "bus": "LVBus195690", - "phases": "abcn", - "powers": [ - [-284.53679738776225, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195690_consumption", - "bus": "LVBus195690", - "phases": "abcn", - "powers": [ - [2838.520115227675, 932.976444105812], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder04790_winter.json b/data/LVFeeder04790_winter.json deleted file mode 100644 index e1d7e5c5..00000000 --- a/data/LVFeeder04790_winter.json +++ /dev/null @@ -1,332 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV08786", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3413945147439499, 48.67575966750258] - } - }, - { - "id": "MVLV08786", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3413945147439499, 48.67575966750258] - } - }, - { - "id": "LVBus021707", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3405143892225866, 48.67378431146558] - } - }, - { - "id": "LVBus195690", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.341130004040592, 48.674217267249176] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV08786", - "geometry": { - "type": "Point", - "coordinates": [-1.3413945147439499, 48.67575966750258] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch134552", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV08786", - "bus2": "LVBus021707", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3413945147439499, 48.67575966750258], - [-1.341385434067615, 48.675737128972145], - [-1.341385434067615, 48.675737128972145], - [-1.34132531607358, 48.67567824485926], - [-1.341313519030196, 48.67556560756853], - [-1.341283958893599, 48.67528344049164], - [-1.341283179747798, 48.67527684175873], - [-1.341269658363544, 48.6751632590872], - [-1.341214865480365, 48.675047087214786], - [-1.341200963077193, 48.67500612530304], - [-1.341220048671394, 48.67495148826574], - [-1.341326519319494, 48.67486521044506], - [-1.34138565954355, 48.674829775519406], - [-1.341340693466156, 48.67479069504203], - [-1.3414145116273, 48.67471746097725], - [-1.341427347328673, 48.67458617046537], - [-1.341399709215387, 48.67451717234955], - [-1.341279929401527, 48.67445653948811], - [-1.340881583766118, 48.67409267631658], - [-1.340845898341474, 48.67405070724385], - [-1.34056797392051, 48.67379685828972], - [-1.340550630424044, 48.67378100987611], - [-1.340545527448469, 48.67377974637049], - [-1.34054090795977, 48.673780132595105], - [-1.340517035971892, 48.67379109524738], - [-1.3405143892225866, 48.67378431146558] - ] - }, - "length": 0.2522152999932708, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch143253", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus021707", - "bus2": "LVBus195690", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3405143892225866, 48.67378431146558], - [-1.340511742473281, 48.67377752768378], - [-1.340524215456442, 48.67377214668572], - [-1.34061533771321, 48.67377109338631], - [-1.340622296919997, 48.6737732441641], - [-1.340644073201206, 48.673787218376674], - [-1.340650525953079, 48.67379719556955], - [-1.340658667983175, 48.67380569860559], - [-1.340749772721113, 48.67388683816967], - [-1.340760178041364, 48.67389218451362], - [-1.340883396791196, 48.67399667794088], - [-1.340888875935236, 48.67400787312246], - [-1.341094728878057, 48.6742062763994], - [-1.341096974187145, 48.674208438386664], - [-1.341108332911281, 48.674219388198615], - [-1.341113099956009, 48.67422089606251], - [-1.341119512019872, 48.67422068817659], - [-1.341130004040592, 48.674217267249176], - [-1.341130004040592, 48.674217267249176] - ] - }, - "length": 0.07146262631265571, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus021707_production", - "bus": "LVBus021707", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus021707_consumption", - "bus": "LVBus021707", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195690_production", - "bus": "LVBus195690", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195690_consumption", - "bus": "LVBus195690", - "phases": "abcn", - "powers": [ - [14192.600576138375, 4664.88222052906], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder06713_summer.json b/data/LVFeeder06713_summer.json deleted file mode 100644 index 13724fc9..00000000 --- a/data/LVFeeder06713_summer.json +++ /dev/null @@ -1,250 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV13539", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5670214765884245, 48.8376573517751] - } - }, - { - "id": "MVLV13539", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5670214765884245, 48.8376573517751] - } - }, - { - "id": "LVBus030540", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.567394325443026, 48.83750072463013] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV13539", - "geometry": { - "type": "Point", - "coordinates": [-1.5670214765884245, 48.8376573517751] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch087298", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV13539", - "bus2": "LVBus030540", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5670214765884245, 48.8376573517751], - [-1.567024891036148, 48.83765119266356], - [-1.567024891036148, 48.83765119266356], - [-1.567093126593634, 48.837644598215576], - [-1.567393224273691, 48.83750166962812], - [-1.567394325443026, 48.83750072463013], - [-1.567394325443026, 48.83750072463013] - ] - }, - "length": 0.03236051183812635, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus030540_production", - "bus": "LVBus030540", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-306.3376110562685, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus030540_consumption", - "bus": "LVBus030540", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [4275.261860751033, 1405.2106191062749], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder06713_winter.json b/data/LVFeeder06713_winter.json deleted file mode 100644 index 5c85f369..00000000 --- a/data/LVFeeder06713_winter.json +++ /dev/null @@ -1,250 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV13539", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5670214765884245, 48.8376573517751] - } - }, - { - "id": "MVLV13539", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5670214765884245, 48.8376573517751] - } - }, - { - "id": "LVBus030540", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.567394325443026, 48.83750072463013] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV13539", - "geometry": { - "type": "Point", - "coordinates": [-1.5670214765884245, 48.8376573517751] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch087298", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV13539", - "bus2": "LVBus030540", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5670214765884245, 48.8376573517751], - [-1.567024891036148, 48.83765119266356], - [-1.567024891036148, 48.83765119266356], - [-1.567093126593634, 48.837644598215576], - [-1.567393224273691, 48.83750166962812], - [-1.567394325443026, 48.83750072463013], - [-1.567394325443026, 48.83750072463013] - ] - }, - "length": 0.03236051183812635, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus030540_production", - "bus": "LVBus030540", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus030540_consumption", - "bus": "LVBus030540", - "phases": "abcn", - "powers": [ - [21376.309303755166, 7026.053095531374], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder06926_summer.json b/data/LVFeeder06926_summer.json deleted file mode 100644 index f0478013..00000000 --- a/data/LVFeeder06926_summer.json +++ /dev/null @@ -1,251 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV10892", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.58340589517331, 48.8394770872287] - } - }, - { - "id": "MVLV10892", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.58340589517331, 48.8394770872287] - } - }, - { - "id": "LVBus031502", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.583679933728929, 48.83930896861669] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV10892", - "geometry": { - "type": "Point", - "coordinates": [-1.58340589517331, 48.8394770872287] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch145043", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV10892", - "bus2": "LVBus031502", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.58340589517331, 48.8394770872287], - [-1.58341509679312, 48.839476091109375], - [-1.58341509679312, 48.839476091109375], - [-1.583488045613804, 48.839414277829576], - [-1.583597546837644, 48.83932637854037], - [-1.583677511796301, 48.83930921040863], - [-1.583679933728929, 48.83930896861669], - [-1.583679933728929, 48.83930896861669] - ] - }, - "length": 0.027721633689653087, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus031502_production", - "bus": "LVBus031502", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-306.3376110562685, 0.0] - ] - }, - { - "id": "LVBus031502_consumption", - "bus": "LVBus031502", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3443.2924934925854, 1131.755512092707] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder06926_winter.json b/data/LVFeeder06926_winter.json deleted file mode 100644 index 06138582..00000000 --- a/data/LVFeeder06926_winter.json +++ /dev/null @@ -1,251 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV10892", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.58340589517331, 48.8394770872287] - } - }, - { - "id": "MVLV10892", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.58340589517331, 48.8394770872287] - } - }, - { - "id": "LVBus031502", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.583679933728929, 48.83930896861669] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV10892", - "geometry": { - "type": "Point", - "coordinates": [-1.58340589517331, 48.8394770872287] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch145043", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV10892", - "bus2": "LVBus031502", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.58340589517331, 48.8394770872287], - [-1.58341509679312, 48.839476091109375], - [-1.58341509679312, 48.839476091109375], - [-1.583488045613804, 48.839414277829576], - [-1.583597546837644, 48.83932637854037], - [-1.583677511796301, 48.83930921040863], - [-1.583679933728929, 48.83930896861669], - [-1.583679933728929, 48.83930896861669] - ] - }, - "length": 0.027721633689653087, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus031502_production", - "bus": "LVBus031502", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus031502_consumption", - "bus": "LVBus031502", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [17216.462467462927, 5658.777560463535] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder06975_summer.json b/data/LVFeeder06975_summer.json deleted file mode 100644 index c3d166ef..00000000 --- a/data/LVFeeder06975_summer.json +++ /dev/null @@ -1,414 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV08323", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.486544817424025, 49.00306803282168] - } - }, - { - "id": "MVLV08323", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.486544817424025, 49.00306803282168] - } - }, - { - "id": "LVBus031726", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.486513726909302, 49.0030409493912] - } - }, - { - "id": "LVBus031727", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.4817331705175, 49.002397773977464] - } - }, - { - "id": "LVBus031728", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.481138923860346, 49.00208240563369] - } - }, - { - "id": "LVBus031729", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.481550880201745, 49.00293744342641] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV08323", - "geometry": { - "type": "Point", - "coordinates": [-1.486544817424025, 49.00306803282168] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch148636", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV08323", - "bus2": "LVBus031726", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.486544817424025, 49.00306803282168], - [-1.486556205105343, 49.00304599455681], - [-1.486556205105343, 49.00304599455681], - [-1.486551191373767, 49.003029798808676], - [-1.486513726909302, 49.0030409493912], - [-1.486513726909302, 49.0030409493912] - ] - }, - "length": 0.004846721290393125, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch123573", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus031726", - "bus2": "LVBus031727", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.486513726909302, 49.0030409493912], - [-1.486513726909302, 49.0030409493912], - [-1.486512429527617, 49.00303653748757], - [-1.486493305743448, 49.00297140077385], - [-1.486347687624937, 49.0029522501714], - [-1.486332635334052, 49.002950267140264], - [-1.486317610993442, 49.002948292208906], - [-1.484304605647006, 49.002683446474286], - [-1.48217896418185, 49.00244902690201], - [-1.482015518723655, 49.00243099929583], - [-1.481739888652721, 49.00239856670567], - [-1.481736260905229, 49.00239814294953], - [-1.4817331705175, 49.002397773977464], - [-1.4817331705175, 49.002397773977464] - ] - }, - "length": 0.362001412407552, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch138641", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus031727", - "bus2": "LVBus031728", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.4817331705175, 49.002397773977464], - [-1.4817331705175, 49.002397773977464], - [-1.481578482975684, 49.00235669453785], - [-1.481536089456321, 49.00232927871434], - [-1.481309745923622, 49.00220712619791], - [-1.481106887488244, 49.00210558063966], - [-1.481116366298437, 49.002098394847074], - [-1.481133680209698, 49.00208528141549], - [-1.481138923860346, 49.00208240563369], - [-1.481138923860346, 49.00208240563369] - ] - }, - "length": 0.0601146076163281, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch148631", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus031727", - "bus2": "LVBus031729", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.4817331705175, 49.002397773977464], - [-1.4817331705175, 49.002397773977464], - [-1.481717340508317, 49.00245742579791], - [-1.481602259087947, 49.002891220390545], - [-1.481604665586369, 49.002916937411754], - [-1.481594902210566, 49.002925454877314], - [-1.481575750641467, 49.002937574513844], - [-1.481550880201745, 49.00293744342641], - [-1.481550880201745, 49.00293744342641] - ] - }, - "length": 0.06352159420091105, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus031726_production", - "bus": "LVBus031726", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031726_consumption", - "bus": "LVBus031726", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031727_production", - "bus": "LVBus031727", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031727_consumption", - "bus": "LVBus031727", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031728_production", - "bus": "LVBus031728", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-177.83783783783784, 0.0] - ] - }, - { - "id": "LVBus031728_consumption", - "bus": "LVBus031728", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [4396.655796987995, 1445.1108764124608] - ] - }, - { - "id": "LVBus031729_production", - "bus": "LVBus031729", - "phases": "abcn", - "powers": [ - [-177.83783783783784, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031729_consumption", - "bus": "LVBus031729", - "phases": "abcn", - "powers": [ - [4396.655796987995, 1445.1108764124608], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder06975_winter.json b/data/LVFeeder06975_winter.json deleted file mode 100644 index b3f789a8..00000000 --- a/data/LVFeeder06975_winter.json +++ /dev/null @@ -1,414 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV08323", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.486544817424025, 49.00306803282168] - } - }, - { - "id": "MVLV08323", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.486544817424025, 49.00306803282168] - } - }, - { - "id": "LVBus031726", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.486513726909302, 49.0030409493912] - } - }, - { - "id": "LVBus031727", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.4817331705175, 49.002397773977464] - } - }, - { - "id": "LVBus031728", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.481138923860346, 49.00208240563369] - } - }, - { - "id": "LVBus031729", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.481550880201745, 49.00293744342641] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV08323", - "geometry": { - "type": "Point", - "coordinates": [-1.486544817424025, 49.00306803282168] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch148636", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV08323", - "bus2": "LVBus031726", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.486544817424025, 49.00306803282168], - [-1.486556205105343, 49.00304599455681], - [-1.486556205105343, 49.00304599455681], - [-1.486551191373767, 49.003029798808676], - [-1.486513726909302, 49.0030409493912], - [-1.486513726909302, 49.0030409493912] - ] - }, - "length": 0.004846721290393125, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch123573", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus031726", - "bus2": "LVBus031727", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.486513726909302, 49.0030409493912], - [-1.486513726909302, 49.0030409493912], - [-1.486512429527617, 49.00303653748757], - [-1.486493305743448, 49.00297140077385], - [-1.486347687624937, 49.0029522501714], - [-1.486332635334052, 49.002950267140264], - [-1.486317610993442, 49.002948292208906], - [-1.484304605647006, 49.002683446474286], - [-1.48217896418185, 49.00244902690201], - [-1.482015518723655, 49.00243099929583], - [-1.481739888652721, 49.00239856670567], - [-1.481736260905229, 49.00239814294953], - [-1.4817331705175, 49.002397773977464], - [-1.4817331705175, 49.002397773977464] - ] - }, - "length": 0.362001412407552, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch138641", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus031727", - "bus2": "LVBus031728", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.4817331705175, 49.002397773977464], - [-1.4817331705175, 49.002397773977464], - [-1.481578482975684, 49.00235669453785], - [-1.481536089456321, 49.00232927871434], - [-1.481309745923622, 49.00220712619791], - [-1.481106887488244, 49.00210558063966], - [-1.481116366298437, 49.002098394847074], - [-1.481133680209698, 49.00208528141549], - [-1.481138923860346, 49.00208240563369], - [-1.481138923860346, 49.00208240563369] - ] - }, - "length": 0.0601146076163281, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch148631", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus031727", - "bus2": "LVBus031729", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.4817331705175, 49.002397773977464], - [-1.4817331705175, 49.002397773977464], - [-1.481717340508317, 49.00245742579791], - [-1.481602259087947, 49.002891220390545], - [-1.481604665586369, 49.002916937411754], - [-1.481594902210566, 49.002925454877314], - [-1.481575750641467, 49.002937574513844], - [-1.481550880201745, 49.00293744342641], - [-1.481550880201745, 49.00293744342641] - ] - }, - "length": 0.06352159420091105, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus031726_production", - "bus": "LVBus031726", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus031726_consumption", - "bus": "LVBus031726", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031727_production", - "bus": "LVBus031727", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus031727_consumption", - "bus": "LVBus031727", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031728_production", - "bus": "LVBus031728", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031728_consumption", - "bus": "LVBus031728", - "phases": "abcn", - "powers": [ - [21983.278984939974, 7225.554382062304], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031729_production", - "bus": "LVBus031729", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus031729_consumption", - "bus": "LVBus031729", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [21983.278984939974, 7225.554382062304], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder18498_summer.json b/data/LVFeeder18498_summer.json deleted file mode 100644 index e7e4e4d2..00000000 --- a/data/LVFeeder18498_summer.json +++ /dev/null @@ -1,1200 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV00326", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5639210563669224, 48.79419143030816] - } - }, - { - "id": "MVLV00326", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5639210563669224, 48.79419143030816] - } - }, - { - "id": "LVBus085930", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562476265032381, 48.7949240921263] - } - }, - { - "id": "LVBus085931", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562482623690557, 48.795387615140605] - } - }, - { - "id": "LVBus085932", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562475637105285, 48.795715629354305] - } - }, - { - "id": "LVBus085933", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.56235443936651, 48.79575460167714] - } - }, - { - "id": "LVBus085934", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.561584006278786, 48.79600280057835] - } - }, - { - "id": "LVBus085935", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.560652963825319, 48.79627514893211] - } - }, - { - "id": "LVBus085936", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559853608307476, 48.79666148121493] - } - }, - { - "id": "LVBus085937", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559217380050197, 48.797010785238264] - } - }, - { - "id": "LVBus085941", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.558830493044168, 48.796788342209] - } - }, - { - "id": "LVBus085942", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.557940893282149, 48.7958232612289] - } - }, - { - "id": "LVBus085938", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559159203236932, 48.797069357860536] - } - }, - { - "id": "LVBus085939", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559424458218843, 48.79767431513093] - } - }, - { - "id": "LVBus085940", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.557950211467694, 48.797314977507305] - } - }, - { - "id": "LVBus085943", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559813684997206, 48.794598913180515] - } - }, - { - "id": "LVBus085944", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.561547474793642, 48.79604140703939] - } - }, - { - "id": "LVBus085945", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562051920070268, 48.796500031317706] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV00326", - "geometry": { - "type": "Point", - "coordinates": [-1.5639210563669224, 48.79419143030816] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch095269", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV00326", - "bus2": "LVBus085930", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5639210563669224, 48.79419143030816], - [-1.563911480764471, 48.794192149494776], - [-1.563911480764471, 48.794192149494776], - [-1.563908355394083, 48.79420692029797], - [-1.563987942067012, 48.79435277273157], - [-1.563908878738397, 48.79436912665271], - [-1.563779051331804, 48.794395983288766], - [-1.56360378354593, 48.79443223189149], - [-1.563331158017897, 48.79448861964062], - [-1.563247721586648, 48.79450587250205], - [-1.562954655825835, 48.7945664935784], - [-1.562811858103681, 48.794596033376706], - [-1.562660289403692, 48.79462920832764], - [-1.562648985241195, 48.79466346905984], - [-1.562638924597969, 48.79468383067471], - [-1.562636918516864, 48.7946877660157], - [-1.562531865408142, 48.79489384067077], - [-1.562476265032381, 48.7949240921263], - [-1.562476265032381, 48.7949240921263] - ] - }, - "length": 0.15739335503674393, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch068329", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085930", - "bus2": "LVBus085931", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.562476265032381, 48.7949240921263], - [-1.562476265032381, 48.7949240921263], - [-1.5624763306461, 48.794928589427506], - [-1.562481192980537, 48.79528358974487], - [-1.562482623690557, 48.795387615140605], - [-1.562482623690557, 48.795387615140605] - ] - }, - "length": 0.0515485496378037, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch143411", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085931", - "bus2": "LVBus085932", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.562482623690557, 48.795387615140605], - [-1.562482623690557, 48.795387615140605], - [-1.56248913597707, 48.7953889043325], - [-1.562502008392102, 48.79539145171091], - [-1.562500850608743, 48.79568955135254], - [-1.562472873897896, 48.79569771319403], - [-1.562474947146663, 48.795711161535245], - [-1.562475637105285, 48.795715629354305], - [-1.562475637105285, 48.795715629354305] - ] - }, - "length": 0.03888689850109125, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch143412", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085932", - "bus2": "LVBus085933", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.562475637105285, 48.795715629354305], - [-1.562475637105285, 48.795715629354305], - [-1.56247076977813, 48.79571248642073], - [-1.562458402131035, 48.795704514139366], - [-1.56235581469101, 48.79573828655136], - [-1.56235443936651, 48.79575460167714], - [-1.56235443936651, 48.79575460167714] - ] - }, - "length": 0.01200773888479161, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch159777", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085933", - "bus2": "LVBus085934", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56235443936651, 48.79575460167714], - [-1.56235443936651, 48.79575460167714], - [-1.562338861109953, 48.795743963037005], - [-1.562259116225267, 48.79577121778338], - [-1.562234625411284, 48.79577900425578], - [-1.561979822372869, 48.7958600548774], - [-1.561587744907283, 48.79598476116963], - [-1.561584006278786, 48.79600280057835], - [-1.561584006278786, 48.79600280057835] - ] - }, - "length": 0.06501197017011255, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch134684", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085934", - "bus2": "LVBus085935", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561584006278786, 48.79600280057835], - [-1.561584006278786, 48.79600280057835], - [-1.5615684258737, 48.79598361296299], - [-1.561438456653736, 48.79602568861757], - [-1.561189302297884, 48.79610635423052], - [-1.561168678013306, 48.79611303280055], - [-1.561083228476114, 48.79614069874988], - [-1.560685408238978, 48.79627386918763], - [-1.560652963825319, 48.79627514893211], - [-1.560652963825319, 48.79627514893211] - ] - }, - "length": 0.07727254510592567, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120208", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085935", - "bus2": "LVBus085936", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.560652963825319, 48.79627514893211], - [-1.560652963825319, 48.79627514893211], - [-1.56062695451107, 48.79626381721302], - [-1.56054584861538, 48.79632773183593], - [-1.560347234312262, 48.79641794214853], - [-1.560223039792418, 48.79647436026747], - [-1.56015284809163, 48.796506240711416], - [-1.560055930632327, 48.796550254842494], - [-1.560019998512119, 48.79656657788678], - [-1.55985379865856, 48.79664207339011], - [-1.559853608307476, 48.79666148121493], - [-1.559853608307476, 48.79666148121493] - ] - }, - "length": 0.0754243117518209, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120206", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085936", - "bus2": "LVBus085937", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559853608307476, 48.79666148121493], - [-1.559853608307476, 48.79666148121493], - [-1.559831732558835, 48.79665440527826], - [-1.559698264244369, 48.796714312400844], - [-1.559571542145425, 48.79677119058429], - [-1.559371279871425, 48.79686108418754], - [-1.559347288985397, 48.79687916635324], - [-1.559254523785118, 48.79694910441934], - [-1.559217380050197, 48.797010785238264], - [-1.559217380050197, 48.797010785238264] - ] - }, - "length": 0.06308495235043682, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120205", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085937", - "bus2": "LVBus085941", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559217380050197, 48.797010785238264], - [-1.559217380050197, 48.797010785238264], - [-1.559167752593059, 48.79699184933102], - [-1.559097362968066, 48.79703816077496], - [-1.558981088949208, 48.79696102659631], - [-1.558858452324498, 48.79679916046414], - [-1.558830493044168, 48.796788342209], - [-1.558830493044168, 48.796788342209] - ] - }, - "length": 0.046124792075994944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch078641", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085941", - "bus2": "LVBus085942", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558830493044168, 48.796788342209], - [-1.558830493044168, 48.796788342209], - [-1.558689755589964, 48.79659637394668], - [-1.558214303290298, 48.79610552429633], - [-1.557944555455452, 48.79582704675016], - [-1.557942989834666, 48.79582542425673], - [-1.557940893282149, 48.7958232612289], - [-1.557940893282149, 48.7958232612289] - ] - }, - "length": 0.12579227015476419, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch095315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085937", - "bus2": "LVBus085938", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559217380050197, 48.797010785238264], - [-1.559217380050197, 48.797010785238264], - [-1.559193501839281, 48.79701241373311], - [-1.559172063107798, 48.79703890714755], - [-1.559159203236932, 48.797069357860536], - [-1.559159203236932, 48.797069357860536] - ] - }, - "length": 0.008620072155210545, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch095286", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085938", - "bus2": "LVBus085939", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559159203236932, 48.797069357860536], - [-1.559159203236932, 48.797069357860536], - [-1.559141646334514, 48.797127589050575], - [-1.559148516191801, 48.79719312765552], - [-1.559178323551715, 48.7972767941318], - [-1.559191677381318, 48.79730025747179], - [-1.55923649113574, 48.797378968665235], - [-1.559286026688566, 48.79746595702616], - [-1.559406406639428, 48.79767735448237], - [-1.559424458218843, 48.79767431513093], - [-1.559424458218843, 48.79767431513093] - ] - }, - "length": 0.07242780940632175, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch085710", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085938", - "bus2": "LVBus085940", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559159203236932, 48.797069357860536], - [-1.559159203236932, 48.797069357860536], - [-1.559123629160332, 48.79705998608895], - [-1.559105076645978, 48.797061431022016], - [-1.559080713863751, 48.79706331834405], - [-1.55906347516306, 48.797063757332786], - [-1.559051229546833, 48.79706357373655], - [-1.559032715574916, 48.797062992648776], - [-1.559019369666146, 48.797062305177], - [-1.559008960208799, 48.79706244835136], - [-1.558979686073499, 48.7970645955998], - [-1.558952586779939, 48.79706994715531], - [-1.558934185410253, 48.7970743117413], - [-1.558918455073145, 48.797077967866606], - [-1.558901836642812, 48.79708303892058], - [-1.558878187925509, 48.797090626081264], - [-1.558844606527365, 48.79710089645127], - [-1.558809728000405, 48.79711148828481], - [-1.558804912661023, 48.797114840688614], - [-1.55878544614436, 48.79712243475575], - [-1.558771297144275, 48.79712647098427], - [-1.558757390977545, 48.79712884346106], - [-1.558746399332657, 48.79713121041391], - [-1.558687603320486, 48.79714762536806], - [-1.55862929820416, 48.79716332229342], - [-1.558608628929495, 48.7971701368468], - [-1.558580708173903, 48.79717779194685], - [-1.558559442692226, 48.79718410409415], - [-1.558537262318507, 48.797190023270616], - [-1.558499008684606, 48.79719920479818], - [-1.55842677678008, 48.7972162758648], - [-1.558357629686671, 48.79723252589524], - [-1.558315962725732, 48.79724069434893], - [-1.558271426107748, 48.79724765198099], - [-1.558208703659671, 48.79725731121114], - [-1.558143079247456, 48.79726750643634], - [-1.558072801063144, 48.7972788529792], - [-1.558006000871563, 48.79728971657173], - [-1.557958216007627, 48.79729677151139], - [-1.557950050796354, 48.79729977469074], - [-1.557946470201684, 48.797303608535984], - [-1.557950211467694, 48.797314977507305], - [-1.557950211467694, 48.797314977507305] - ] - }, - "length": 0.09560581989804982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch103976", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085935", - "bus2": "LVBus085943", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.560652963825319, 48.79627514893211], - [-1.560652963825319, 48.79627514893211], - [-1.5606304275901, 48.796217943998926], - [-1.560607110786743, 48.79610665434017], - [-1.559871682515022, 48.794625223461374], - [-1.5598378636043, 48.79462142770611], - [-1.559829632964095, 48.79461376049445], - [-1.559813684997206, 48.794598913180515], - [-1.559813684997206, 48.794598913180515] - ] - }, - "length": 0.19803602647938606, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120207", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085934", - "bus2": "LVBus085944", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561584006278786, 48.79600280057835], - [-1.561584006278786, 48.79600280057835], - [-1.561558370322597, 48.79599825097898], - [-1.561536771785084, 48.796006464382494], - [-1.561551557171352, 48.796023410352916], - [-1.561547474793642, 48.79604140703939], - [-1.561547474793642, 48.79604140703939] - ] - }, - "length": 0.007980033327017745, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch085664", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085944", - "bus2": "LVBus085945", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561547474793642, 48.79604140703939], - [-1.561547474793642, 48.79604140703939], - [-1.561568231118501, 48.796035398987506], - [-1.561670537311036, 48.796103360026216], - [-1.561912033462999, 48.79622837133884], - [-1.561982394573095, 48.79625657886689], - [-1.562413935632969, 48.79637147732905], - [-1.562188318304135, 48.79647588593019], - [-1.562079853544692, 48.79652608480834], - [-1.562051920070268, 48.796500031317706], - [-1.562051920070268, 48.796500031317706] - ] - }, - "length": 0.10861218547672713, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus085930_production", - "bus": "LVBus085930", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085930_consumption", - "bus": "LVBus085930", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085931_production", - "bus": "LVBus085931", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085931_consumption", - "bus": "LVBus085931", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085932_production", - "bus": "LVBus085932", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085932_consumption", - "bus": "LVBus085932", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085933_production", - "bus": "LVBus085933", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085933_consumption", - "bus": "LVBus085933", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085934_production", - "bus": "LVBus085934", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085934_consumption", - "bus": "LVBus085934", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085935_production", - "bus": "LVBus085935", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085935_consumption", - "bus": "LVBus085935", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085936_production", - "bus": "LVBus085936", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085936_consumption", - "bus": "LVBus085936", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085937_production", - "bus": "LVBus085937", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085937_consumption", - "bus": "LVBus085937", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085941_production", - "bus": "LVBus085941", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085941_consumption", - "bus": "LVBus085941", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085942_production", - "bus": "LVBus085942", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-297.2314049586777, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085942_consumption", - "bus": "LVBus085942", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3470.8969265013834, 1140.8286504551738], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085938_production", - "bus": "LVBus085938", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085938_consumption", - "bus": "LVBus085938", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085939_production", - "bus": "LVBus085939", - "phases": "abcn", - "powers": [ - [-297.2314049586777, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085939_consumption", - "bus": "LVBus085939", - "phases": "abcn", - "powers": [ - [3470.8969265013834, 1140.8286504551738], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085940_production", - "bus": "LVBus085940", - "phases": "abcn", - "powers": [ - [-297.2314049586777, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085940_consumption", - "bus": "LVBus085940", - "phases": "abcn", - "powers": [ - [3470.8969265013834, 1140.8286504551738], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085943_production", - "bus": "LVBus085943", - "phases": "abcn", - "powers": [ - [-297.2314049586777, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085943_consumption", - "bus": "LVBus085943", - "phases": "abcn", - "powers": [ - [3470.8969265013834, 1140.8286504551738], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085944_production", - "bus": "LVBus085944", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085944_consumption", - "bus": "LVBus085944", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085945_production", - "bus": "LVBus085945", - "phases": "abcn", - "powers": [ - [-297.2314049586777, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085945_consumption", - "bus": "LVBus085945", - "phases": "abcn", - "powers": [ - [3470.8969265013834, 1140.8286504551738], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder18498_winter.json b/data/LVFeeder18498_winter.json deleted file mode 100644 index 436e5bdd..00000000 --- a/data/LVFeeder18498_winter.json +++ /dev/null @@ -1,1200 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV00326", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5639210563669224, 48.79419143030816] - } - }, - { - "id": "MVLV00326", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5639210563669224, 48.79419143030816] - } - }, - { - "id": "LVBus085930", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562476265032381, 48.7949240921263] - } - }, - { - "id": "LVBus085931", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562482623690557, 48.795387615140605] - } - }, - { - "id": "LVBus085932", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562475637105285, 48.795715629354305] - } - }, - { - "id": "LVBus085933", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.56235443936651, 48.79575460167714] - } - }, - { - "id": "LVBus085934", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.561584006278786, 48.79600280057835] - } - }, - { - "id": "LVBus085935", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.560652963825319, 48.79627514893211] - } - }, - { - "id": "LVBus085936", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559853608307476, 48.79666148121493] - } - }, - { - "id": "LVBus085937", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559217380050197, 48.797010785238264] - } - }, - { - "id": "LVBus085941", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.558830493044168, 48.796788342209] - } - }, - { - "id": "LVBus085942", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.557940893282149, 48.7958232612289] - } - }, - { - "id": "LVBus085938", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559159203236932, 48.797069357860536] - } - }, - { - "id": "LVBus085939", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559424458218843, 48.79767431513093] - } - }, - { - "id": "LVBus085940", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.557950211467694, 48.797314977507305] - } - }, - { - "id": "LVBus085943", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.559813684997206, 48.794598913180515] - } - }, - { - "id": "LVBus085944", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.561547474793642, 48.79604140703939] - } - }, - { - "id": "LVBus085945", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562051920070268, 48.796500031317706] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV00326", - "geometry": { - "type": "Point", - "coordinates": [-1.5639210563669224, 48.79419143030816] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch095269", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV00326", - "bus2": "LVBus085930", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5639210563669224, 48.79419143030816], - [-1.563911480764471, 48.794192149494776], - [-1.563911480764471, 48.794192149494776], - [-1.563908355394083, 48.79420692029797], - [-1.563987942067012, 48.79435277273157], - [-1.563908878738397, 48.79436912665271], - [-1.563779051331804, 48.794395983288766], - [-1.56360378354593, 48.79443223189149], - [-1.563331158017897, 48.79448861964062], - [-1.563247721586648, 48.79450587250205], - [-1.562954655825835, 48.7945664935784], - [-1.562811858103681, 48.794596033376706], - [-1.562660289403692, 48.79462920832764], - [-1.562648985241195, 48.79466346905984], - [-1.562638924597969, 48.79468383067471], - [-1.562636918516864, 48.7946877660157], - [-1.562531865408142, 48.79489384067077], - [-1.562476265032381, 48.7949240921263], - [-1.562476265032381, 48.7949240921263] - ] - }, - "length": 0.15739335503674393, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch068329", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085930", - "bus2": "LVBus085931", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.562476265032381, 48.7949240921263], - [-1.562476265032381, 48.7949240921263], - [-1.5624763306461, 48.794928589427506], - [-1.562481192980537, 48.79528358974487], - [-1.562482623690557, 48.795387615140605], - [-1.562482623690557, 48.795387615140605] - ] - }, - "length": 0.0515485496378037, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch143411", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085931", - "bus2": "LVBus085932", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.562482623690557, 48.795387615140605], - [-1.562482623690557, 48.795387615140605], - [-1.56248913597707, 48.7953889043325], - [-1.562502008392102, 48.79539145171091], - [-1.562500850608743, 48.79568955135254], - [-1.562472873897896, 48.79569771319403], - [-1.562474947146663, 48.795711161535245], - [-1.562475637105285, 48.795715629354305], - [-1.562475637105285, 48.795715629354305] - ] - }, - "length": 0.03888689850109125, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch143412", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085932", - "bus2": "LVBus085933", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.562475637105285, 48.795715629354305], - [-1.562475637105285, 48.795715629354305], - [-1.56247076977813, 48.79571248642073], - [-1.562458402131035, 48.795704514139366], - [-1.56235581469101, 48.79573828655136], - [-1.56235443936651, 48.79575460167714], - [-1.56235443936651, 48.79575460167714] - ] - }, - "length": 0.01200773888479161, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch159777", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085933", - "bus2": "LVBus085934", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56235443936651, 48.79575460167714], - [-1.56235443936651, 48.79575460167714], - [-1.562338861109953, 48.795743963037005], - [-1.562259116225267, 48.79577121778338], - [-1.562234625411284, 48.79577900425578], - [-1.561979822372869, 48.7958600548774], - [-1.561587744907283, 48.79598476116963], - [-1.561584006278786, 48.79600280057835], - [-1.561584006278786, 48.79600280057835] - ] - }, - "length": 0.06501197017011255, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch134684", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085934", - "bus2": "LVBus085935", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561584006278786, 48.79600280057835], - [-1.561584006278786, 48.79600280057835], - [-1.5615684258737, 48.79598361296299], - [-1.561438456653736, 48.79602568861757], - [-1.561189302297884, 48.79610635423052], - [-1.561168678013306, 48.79611303280055], - [-1.561083228476114, 48.79614069874988], - [-1.560685408238978, 48.79627386918763], - [-1.560652963825319, 48.79627514893211], - [-1.560652963825319, 48.79627514893211] - ] - }, - "length": 0.07727254510592567, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120208", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085935", - "bus2": "LVBus085936", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.560652963825319, 48.79627514893211], - [-1.560652963825319, 48.79627514893211], - [-1.56062695451107, 48.79626381721302], - [-1.56054584861538, 48.79632773183593], - [-1.560347234312262, 48.79641794214853], - [-1.560223039792418, 48.79647436026747], - [-1.56015284809163, 48.796506240711416], - [-1.560055930632327, 48.796550254842494], - [-1.560019998512119, 48.79656657788678], - [-1.55985379865856, 48.79664207339011], - [-1.559853608307476, 48.79666148121493], - [-1.559853608307476, 48.79666148121493] - ] - }, - "length": 0.0754243117518209, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120206", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085936", - "bus2": "LVBus085937", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559853608307476, 48.79666148121493], - [-1.559853608307476, 48.79666148121493], - [-1.559831732558835, 48.79665440527826], - [-1.559698264244369, 48.796714312400844], - [-1.559571542145425, 48.79677119058429], - [-1.559371279871425, 48.79686108418754], - [-1.559347288985397, 48.79687916635324], - [-1.559254523785118, 48.79694910441934], - [-1.559217380050197, 48.797010785238264], - [-1.559217380050197, 48.797010785238264] - ] - }, - "length": 0.06308495235043682, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120205", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085937", - "bus2": "LVBus085941", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559217380050197, 48.797010785238264], - [-1.559217380050197, 48.797010785238264], - [-1.559167752593059, 48.79699184933102], - [-1.559097362968066, 48.79703816077496], - [-1.558981088949208, 48.79696102659631], - [-1.558858452324498, 48.79679916046414], - [-1.558830493044168, 48.796788342209], - [-1.558830493044168, 48.796788342209] - ] - }, - "length": 0.046124792075994944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch078641", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085941", - "bus2": "LVBus085942", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558830493044168, 48.796788342209], - [-1.558830493044168, 48.796788342209], - [-1.558689755589964, 48.79659637394668], - [-1.558214303290298, 48.79610552429633], - [-1.557944555455452, 48.79582704675016], - [-1.557942989834666, 48.79582542425673], - [-1.557940893282149, 48.7958232612289], - [-1.557940893282149, 48.7958232612289] - ] - }, - "length": 0.12579227015476419, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch095315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085937", - "bus2": "LVBus085938", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559217380050197, 48.797010785238264], - [-1.559217380050197, 48.797010785238264], - [-1.559193501839281, 48.79701241373311], - [-1.559172063107798, 48.79703890714755], - [-1.559159203236932, 48.797069357860536], - [-1.559159203236932, 48.797069357860536] - ] - }, - "length": 0.008620072155210545, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch095286", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085938", - "bus2": "LVBus085939", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559159203236932, 48.797069357860536], - [-1.559159203236932, 48.797069357860536], - [-1.559141646334514, 48.797127589050575], - [-1.559148516191801, 48.79719312765552], - [-1.559178323551715, 48.7972767941318], - [-1.559191677381318, 48.79730025747179], - [-1.55923649113574, 48.797378968665235], - [-1.559286026688566, 48.79746595702616], - [-1.559406406639428, 48.79767735448237], - [-1.559424458218843, 48.79767431513093], - [-1.559424458218843, 48.79767431513093] - ] - }, - "length": 0.07242780940632175, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch085710", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085938", - "bus2": "LVBus085940", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559159203236932, 48.797069357860536], - [-1.559159203236932, 48.797069357860536], - [-1.559123629160332, 48.79705998608895], - [-1.559105076645978, 48.797061431022016], - [-1.559080713863751, 48.79706331834405], - [-1.55906347516306, 48.797063757332786], - [-1.559051229546833, 48.79706357373655], - [-1.559032715574916, 48.797062992648776], - [-1.559019369666146, 48.797062305177], - [-1.559008960208799, 48.79706244835136], - [-1.558979686073499, 48.7970645955998], - [-1.558952586779939, 48.79706994715531], - [-1.558934185410253, 48.7970743117413], - [-1.558918455073145, 48.797077967866606], - [-1.558901836642812, 48.79708303892058], - [-1.558878187925509, 48.797090626081264], - [-1.558844606527365, 48.79710089645127], - [-1.558809728000405, 48.79711148828481], - [-1.558804912661023, 48.797114840688614], - [-1.55878544614436, 48.79712243475575], - [-1.558771297144275, 48.79712647098427], - [-1.558757390977545, 48.79712884346106], - [-1.558746399332657, 48.79713121041391], - [-1.558687603320486, 48.79714762536806], - [-1.55862929820416, 48.79716332229342], - [-1.558608628929495, 48.7971701368468], - [-1.558580708173903, 48.79717779194685], - [-1.558559442692226, 48.79718410409415], - [-1.558537262318507, 48.797190023270616], - [-1.558499008684606, 48.79719920479818], - [-1.55842677678008, 48.7972162758648], - [-1.558357629686671, 48.79723252589524], - [-1.558315962725732, 48.79724069434893], - [-1.558271426107748, 48.79724765198099], - [-1.558208703659671, 48.79725731121114], - [-1.558143079247456, 48.79726750643634], - [-1.558072801063144, 48.7972788529792], - [-1.558006000871563, 48.79728971657173], - [-1.557958216007627, 48.79729677151139], - [-1.557950050796354, 48.79729977469074], - [-1.557946470201684, 48.797303608535984], - [-1.557950211467694, 48.797314977507305], - [-1.557950211467694, 48.797314977507305] - ] - }, - "length": 0.09560581989804982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch103976", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085935", - "bus2": "LVBus085943", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.560652963825319, 48.79627514893211], - [-1.560652963825319, 48.79627514893211], - [-1.5606304275901, 48.796217943998926], - [-1.560607110786743, 48.79610665434017], - [-1.559871682515022, 48.794625223461374], - [-1.5598378636043, 48.79462142770611], - [-1.559829632964095, 48.79461376049445], - [-1.559813684997206, 48.794598913180515], - [-1.559813684997206, 48.794598913180515] - ] - }, - "length": 0.19803602647938606, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch120207", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085934", - "bus2": "LVBus085944", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561584006278786, 48.79600280057835], - [-1.561584006278786, 48.79600280057835], - [-1.561558370322597, 48.79599825097898], - [-1.561536771785084, 48.796006464382494], - [-1.561551557171352, 48.796023410352916], - [-1.561547474793642, 48.79604140703939], - [-1.561547474793642, 48.79604140703939] - ] - }, - "length": 0.007980033327017745, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch085664", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus085944", - "bus2": "LVBus085945", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561547474793642, 48.79604140703939], - [-1.561547474793642, 48.79604140703939], - [-1.561568231118501, 48.796035398987506], - [-1.561670537311036, 48.796103360026216], - [-1.561912033462999, 48.79622837133884], - [-1.561982394573095, 48.79625657886689], - [-1.562413935632969, 48.79637147732905], - [-1.562188318304135, 48.79647588593019], - [-1.562079853544692, 48.79652608480834], - [-1.562051920070268, 48.796500031317706], - [-1.562051920070268, 48.796500031317706] - ] - }, - "length": 0.10861218547672713, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus085930_production", - "bus": "LVBus085930", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085930_consumption", - "bus": "LVBus085930", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085931_production", - "bus": "LVBus085931", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085931_consumption", - "bus": "LVBus085931", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085932_production", - "bus": "LVBus085932", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085932_consumption", - "bus": "LVBus085932", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085933_production", - "bus": "LVBus085933", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085933_consumption", - "bus": "LVBus085933", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085934_production", - "bus": "LVBus085934", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085934_consumption", - "bus": "LVBus085934", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085935_production", - "bus": "LVBus085935", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085935_consumption", - "bus": "LVBus085935", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085936_production", - "bus": "LVBus085936", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085936_consumption", - "bus": "LVBus085936", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085937_production", - "bus": "LVBus085937", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085937_consumption", - "bus": "LVBus085937", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085941_production", - "bus": "LVBus085941", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085941_consumption", - "bus": "LVBus085941", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085942_production", - "bus": "LVBus085942", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085942_consumption", - "bus": "LVBus085942", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [17354.484632506916, 5704.14325227587] - ] - }, - { - "id": "LVBus085938_production", - "bus": "LVBus085938", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085938_consumption", - "bus": "LVBus085938", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085939_production", - "bus": "LVBus085939", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085939_consumption", - "bus": "LVBus085939", - "phases": "abcn", - "powers": [ - [17354.484632506916, 5704.14325227587], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085940_production", - "bus": "LVBus085940", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085940_consumption", - "bus": "LVBus085940", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [17354.484632506916, 5704.14325227587] - ] - }, - { - "id": "LVBus085943_production", - "bus": "LVBus085943", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085943_consumption", - "bus": "LVBus085943", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [17354.484632506916, 5704.14325227587] - ] - }, - { - "id": "LVBus085944_production", - "bus": "LVBus085944", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus085944_consumption", - "bus": "LVBus085944", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085945_production", - "bus": "LVBus085945", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus085945_consumption", - "bus": "LVBus085945", - "phases": "abcn", - "powers": [ - [17354.484632506916, 5704.14325227587], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder18769_summer.json b/data/LVFeeder18769_summer.json deleted file mode 100644 index a13ce307..00000000 --- a/data/LVFeeder18769_summer.json +++ /dev/null @@ -1,563 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV12730", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.1327275629390434, 49.16774480064011] - } - }, - { - "id": "MVLV12730", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.1327275629390434, 49.16774480064011] - } - }, - { - "id": "LVBus087076", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.133194683772453, 49.167570340123746] - } - }, - { - "id": "LVBus087077", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.133319188207094, 49.167685073690194] - } - }, - { - "id": "LVBus087078", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.132412649513897, 49.16674157666] - } - }, - { - "id": "LVBus087080", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.132061025225172, 49.166463131093245] - } - }, - { - "id": "LVBus087079", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.132234747056438, 49.16694500576106] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV12730", - "geometry": { - "type": "Point", - "coordinates": [-1.1327275629390434, 49.16774480064011] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch139447", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV12730", - "bus2": "LVBus087076", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1327275629390434, 49.16774480064011], - [-1.132721836467177, 49.167737874903125], - [-1.132721836467177, 49.167737874903125], - [-1.13279854734083, 49.16774519548012], - [-1.133046304703306, 49.167598174902295], - [-1.13310708375901, 49.1676035464256], - [-1.133194683772453, 49.167570340123746], - [-1.133194683772453, 49.167570340123746] - ] - }, - "length": 0.04187235159546076, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch040995", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087076", - "bus2": "LVBus087077", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133194683772453, 49.167570340123746], - [-1.133194683772453, 49.167570340123746], - [-1.133201203913707, 49.16757693256448], - [-1.133315197743707, 49.16768142089236], - [-1.133319188207094, 49.167685073690194], - [-1.133319188207094, 49.167685073690194] - ] - }, - "length": 0.01566142289245769, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch059442", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087076", - "bus2": "LVBus087078", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133194683772453, 49.167570340123746], - [-1.133194683772453, 49.167570340123746], - [-1.132907809488627, 49.16728042493698], - [-1.132869699000441, 49.167251993220546], - [-1.132412649513897, 49.16674157666], - [-1.132412649513897, 49.16674157666] - ] - }, - "length": 0.10847194755352463, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch016717", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087078", - "bus2": "LVBus087080", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132412649513897, 49.16674157666], - [-1.132412649513897, 49.16674157666], - [-1.132408182115541, 49.16673817148385], - [-1.132095121511717, 49.1664887922987], - [-1.132088094047298, 49.16648341965802], - [-1.132061025225172, 49.166463131093245], - [-1.132061025225172, 49.166463131093245] - ] - }, - "length": 0.04020726221453102, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch009111", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087078", - "bus2": "LVBus087079", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132412649513897, 49.16674157666], - [-1.132412649513897, 49.16674157666], - [-1.132242248069601, 49.166936433309786], - [-1.132234747056438, 49.16694500576106], - [-1.132234747056438, 49.16694500576106] - ] - }, - "length": 0.02607998376353147, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus087076_production", - "bus": "LVBus087076", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087076_consumption", - "bus": "LVBus087076", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087077_production", - "bus": "LVBus087077", - "phases": "abcn", - "powers": [ - [-300.44642857142856, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087077_consumption", - "bus": "LVBus087077", - "phases": "abcn", - "powers": [ - [2020.5616651965179, 664.1265028838312], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087078_production", - "bus": "LVBus087078", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus087078_consumption", - "bus": "LVBus087078", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087080_production", - "bus": "LVBus087080", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-300.44642857142856, 0.0] - ] - }, - { - "id": "LVBus087080_consumption", - "bus": "LVBus087080", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2020.5616651965179, 664.1265028838312] - ] - }, - { - "id": "LVBus087079_production", - "bus": "LVBus087079", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-300.44642857142856, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087079_consumption", - "bus": "LVBus087079", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2020.5616651965179, 664.1265028838312], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder18769_winter.json b/data/LVFeeder18769_winter.json deleted file mode 100644 index d3057ea6..00000000 --- a/data/LVFeeder18769_winter.json +++ /dev/null @@ -1,563 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV12730", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.1327275629390434, 49.16774480064011] - } - }, - { - "id": "MVLV12730", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.1327275629390434, 49.16774480064011] - } - }, - { - "id": "LVBus087076", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.133194683772453, 49.167570340123746] - } - }, - { - "id": "LVBus087077", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.133319188207094, 49.167685073690194] - } - }, - { - "id": "LVBus087078", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.132412649513897, 49.16674157666] - } - }, - { - "id": "LVBus087080", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.132061025225172, 49.166463131093245] - } - }, - { - "id": "LVBus087079", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.132234747056438, 49.16694500576106] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV12730", - "geometry": { - "type": "Point", - "coordinates": [-1.1327275629390434, 49.16774480064011] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch139447", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV12730", - "bus2": "LVBus087076", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1327275629390434, 49.16774480064011], - [-1.132721836467177, 49.167737874903125], - [-1.132721836467177, 49.167737874903125], - [-1.13279854734083, 49.16774519548012], - [-1.133046304703306, 49.167598174902295], - [-1.13310708375901, 49.1676035464256], - [-1.133194683772453, 49.167570340123746], - [-1.133194683772453, 49.167570340123746] - ] - }, - "length": 0.04187235159546076, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch040995", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087076", - "bus2": "LVBus087077", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133194683772453, 49.167570340123746], - [-1.133194683772453, 49.167570340123746], - [-1.133201203913707, 49.16757693256448], - [-1.133315197743707, 49.16768142089236], - [-1.133319188207094, 49.167685073690194], - [-1.133319188207094, 49.167685073690194] - ] - }, - "length": 0.01566142289245769, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch059442", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087076", - "bus2": "LVBus087078", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133194683772453, 49.167570340123746], - [-1.133194683772453, 49.167570340123746], - [-1.132907809488627, 49.16728042493698], - [-1.132869699000441, 49.167251993220546], - [-1.132412649513897, 49.16674157666], - [-1.132412649513897, 49.16674157666] - ] - }, - "length": 0.10847194755352463, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch016717", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087078", - "bus2": "LVBus087080", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132412649513897, 49.16674157666], - [-1.132412649513897, 49.16674157666], - [-1.132408182115541, 49.16673817148385], - [-1.132095121511717, 49.1664887922987], - [-1.132088094047298, 49.16648341965802], - [-1.132061025225172, 49.166463131093245], - [-1.132061025225172, 49.166463131093245] - ] - }, - "length": 0.04020726221453102, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch009111", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus087078", - "bus2": "LVBus087079", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132412649513897, 49.16674157666], - [-1.132412649513897, 49.16674157666], - [-1.132242248069601, 49.166936433309786], - [-1.132234747056438, 49.16694500576106], - [-1.132234747056438, 49.16694500576106] - ] - }, - "length": 0.02607998376353147, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus087076_production", - "bus": "LVBus087076", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus087076_consumption", - "bus": "LVBus087076", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087077_production", - "bus": "LVBus087077", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus087077_consumption", - "bus": "LVBus087077", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [10102.808325982589, 3320.632514419156] - ] - }, - { - "id": "LVBus087078_production", - "bus": "LVBus087078", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087078_consumption", - "bus": "LVBus087078", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087080_production", - "bus": "LVBus087080", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087080_consumption", - "bus": "LVBus087080", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [10102.808325982589, 3320.632514419156], - [0.0, 0.0] - ] - }, - { - "id": "LVBus087079_production", - "bus": "LVBus087079", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus087079_consumption", - "bus": "LVBus087079", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [10102.808325982589, 3320.632514419156] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder19558_summer.json b/data/LVFeeder19558_summer.json deleted file mode 100644 index 420f8aa0..00000000 --- a/data/LVFeeder19558_summer.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV04060", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.356072102421145, 48.79586129055696] - } - }, - { - "id": "MVLV04060", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.356072102421145, 48.79586129055696] - } - }, - { - "id": "LVBus090801", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.355342592511366, 48.79547699965425] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV04060", - "geometry": { - "type": "Point", - "coordinates": [-1.356072102421145, 48.79586129055696] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch145794", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV04060", - "bus2": "LVBus090801", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.356072102421145, 48.79586129055696], - [-1.356059280282937, 48.795854310708265], - [-1.356059280282937, 48.795854310708265], - [-1.356048426894235, 48.79586351057455], - [-1.355984934386295, 48.79587365263908], - [-1.355638196527526, 48.795686580450564], - [-1.35553444122419, 48.79562661192269], - [-1.355497792240387, 48.795594269653165], - [-1.355423496407301, 48.79553335911966], - [-1.355350280739599, 48.79547384563337], - [-1.355342592511366, 48.79547699965425], - [-1.355342592511366, 48.79547699965425] - ] - }, - "length": 0.07150052986665181, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus090801_production", - "bus": "LVBus090801", - "phases": "abcn", - "powers": [ - [-1103.7037037037037, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus090801_consumption", - "bus": "LVBus090801", - "phases": "abcn", - "powers": [ - [1560.058817551325, 512.7665364732527], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder19558_winter.json b/data/LVFeeder19558_winter.json deleted file mode 100644 index c7509638..00000000 --- a/data/LVFeeder19558_winter.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV04060", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.356072102421145, 48.79586129055696] - } - }, - { - "id": "MVLV04060", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.356072102421145, 48.79586129055696] - } - }, - { - "id": "LVBus090801", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.355342592511366, 48.79547699965425] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV04060", - "geometry": { - "type": "Point", - "coordinates": [-1.356072102421145, 48.79586129055696] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch145794", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV04060", - "bus2": "LVBus090801", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.356072102421145, 48.79586129055696], - [-1.356059280282937, 48.795854310708265], - [-1.356059280282937, 48.795854310708265], - [-1.356048426894235, 48.79586351057455], - [-1.355984934386295, 48.79587365263908], - [-1.355638196527526, 48.795686580450564], - [-1.35553444122419, 48.79562661192269], - [-1.355497792240387, 48.795594269653165], - [-1.355423496407301, 48.79553335911966], - [-1.355350280739599, 48.79547384563337], - [-1.355342592511366, 48.79547699965425], - [-1.355342592511366, 48.79547699965425] - ] - }, - "length": 0.07150052986665181, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus090801_production", - "bus": "LVBus090801", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus090801_consumption", - "bus": "LVBus090801", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [7800.294087756625, 2563.8326823662637] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder20256_summer.json b/data/LVFeeder20256_summer.json deleted file mode 100644 index 67387e37..00000000 --- a/data/LVFeeder20256_summer.json +++ /dev/null @@ -1,547 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV06233", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.198773190586607, 48.76230724776908] - } - }, - { - "id": "MVLV06233", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.198773190586607, 48.76230724776908] - } - }, - { - "id": "LVBus094025", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.198670212653164, 48.762307290177716] - } - }, - { - "id": "LVBus094026", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.196631691792718, 48.76430293374081] - } - }, - { - "id": "LVBus094028", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.19584166933687, 48.76430044109762] - } - }, - { - "id": "LVBus094027", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.196176665526038, 48.76383992052203] - } - }, - { - "id": "LVBus094029", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.199246174599321, 48.761582385193975] - } - }, - { - "id": "LVBus094030", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.199412792405016, 48.761244116844864] - } - }, - { - "id": "LVBus094031", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.19778131755017, 48.76160462078426] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV06233", - "geometry": { - "type": "Point", - "coordinates": [-1.198773190586607, 48.76230724776908] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch032577", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV06233", - "bus2": "LVBus094025", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.198773190586607, 48.76230724776908], - [-1.198754359183145, 48.76229631003135], - [-1.198754359183145, 48.76229631003135], - [-1.198670212653164, 48.762307290177716], - [-1.198670212653164, 48.762307290177716] - ] - }, - "length": 0.006305750351183943, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch068262", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094025", - "bus2": "LVBus094026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.198670212653164, 48.762307290177716], - [-1.198670212653164, 48.762307290177716], - [-1.198757084357338, 48.76282679782344], - [-1.19827679971019, 48.76327219047161], - [-1.197149503332568, 48.764115818504806], - [-1.197119005611957, 48.76412683865895], - [-1.197107077729324, 48.76413115227692], - [-1.196637655773829, 48.764300776956], - [-1.196631691792718, 48.76430293374081], - [-1.196631691792718, 48.76430293374081] - ] - }, - "length": 0.28751405369286326, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch044884", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094026", - "bus2": "LVBus094028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.196631691792718, 48.76430293374081], - [-1.196631691792718, 48.76430293374081], - [-1.196373882091346, 48.7643021188501], - [-1.19584166933687, 48.76430044109762], - [-1.19584166933687, 48.76430044109762] - ] - }, - "length": 0.05808029688523051, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch011859", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094026", - "bus2": "LVBus094027", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.196631691792718, 48.76430293374081], - [-1.196631691792718, 48.76430293374081], - [-1.196180365122294, 48.763843688222934], - [-1.196176665526038, 48.76383992052203], - [-1.196176665526038, 48.76383992052203] - ] - }, - "length": 0.061401995852302334, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch044888", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094025", - "bus2": "LVBus094029", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.198670212653164, 48.762307290177716], - [-1.198670212653164, 48.762307290177716], - [-1.198899487593858, 48.76180346410311], - [-1.199242484839553, 48.761586156877975], - [-1.199246174599321, 48.761582385193975], - [-1.199246174599321, 48.761582385193975] - ] - }, - "length": 0.09393517180378773, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch032580", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094029", - "bus2": "LVBus094030", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.199246174599321, 48.761582385193975], - [-1.199246174599321, 48.761582385193975], - [-1.199410353844309, 48.76124907489184], - [-1.199412792405016, 48.761244116844864], - [-1.199412792405016, 48.761244116844864] - ] - }, - "length": 0.039561474934677016, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch078604", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094029", - "bus2": "LVBus094031", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.199246174599321, 48.761582385193975], - [-1.199246174599321, 48.761582385193975], - [-1.19778131755017, 48.76160462078426], - [-1.19778131755017, 48.76160462078426] - ] - }, - "length": 0.10772524267857121, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus094025_production", - "bus": "LVBus094025", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094025_consumption", - "bus": "LVBus094025", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094026_production", - "bus": "LVBus094026", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus094026_consumption", - "bus": "LVBus094026", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094028_production", - "bus": "LVBus094028", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094028_consumption", - "bus": "LVBus094028", - "phases": "abcn", - "powers": [ - [1390.93807235189, 457.1792356701939], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094027_production", - "bus": "LVBus094027", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094027_consumption", - "bus": "LVBus094027", - "phases": "abcn", - "powers": [ - [1390.93807235189, 457.1792356701939], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094029_production", - "bus": "LVBus094029", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094029_consumption", - "bus": "LVBus094029", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094030_production", - "bus": "LVBus094030", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus094030_consumption", - "bus": "LVBus094030", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1390.93807235189, 457.1792356701939] - ] - }, - { - "id": "LVBus094031_production", - "bus": "LVBus094031", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094031_consumption", - "bus": "LVBus094031", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1390.93807235189, 457.1792356701939], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder20256_winter.json b/data/LVFeeder20256_winter.json deleted file mode 100644 index d890bf61..00000000 --- a/data/LVFeeder20256_winter.json +++ /dev/null @@ -1,547 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV06233", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.198773190586607, 48.76230724776908] - } - }, - { - "id": "MVLV06233", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.198773190586607, 48.76230724776908] - } - }, - { - "id": "LVBus094025", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.198670212653164, 48.762307290177716] - } - }, - { - "id": "LVBus094026", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.196631691792718, 48.76430293374081] - } - }, - { - "id": "LVBus094028", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.19584166933687, 48.76430044109762] - } - }, - { - "id": "LVBus094027", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.196176665526038, 48.76383992052203] - } - }, - { - "id": "LVBus094029", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.199246174599321, 48.761582385193975] - } - }, - { - "id": "LVBus094030", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.199412792405016, 48.761244116844864] - } - }, - { - "id": "LVBus094031", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.19778131755017, 48.76160462078426] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV06233", - "geometry": { - "type": "Point", - "coordinates": [-1.198773190586607, 48.76230724776908] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch032577", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV06233", - "bus2": "LVBus094025", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.198773190586607, 48.76230724776908], - [-1.198754359183145, 48.76229631003135], - [-1.198754359183145, 48.76229631003135], - [-1.198670212653164, 48.762307290177716], - [-1.198670212653164, 48.762307290177716] - ] - }, - "length": 0.006305750351183943, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch068262", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094025", - "bus2": "LVBus094026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.198670212653164, 48.762307290177716], - [-1.198670212653164, 48.762307290177716], - [-1.198757084357338, 48.76282679782344], - [-1.19827679971019, 48.76327219047161], - [-1.197149503332568, 48.764115818504806], - [-1.197119005611957, 48.76412683865895], - [-1.197107077729324, 48.76413115227692], - [-1.196637655773829, 48.764300776956], - [-1.196631691792718, 48.76430293374081], - [-1.196631691792718, 48.76430293374081] - ] - }, - "length": 0.28751405369286326, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch044884", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094026", - "bus2": "LVBus094028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.196631691792718, 48.76430293374081], - [-1.196631691792718, 48.76430293374081], - [-1.196373882091346, 48.7643021188501], - [-1.19584166933687, 48.76430044109762], - [-1.19584166933687, 48.76430044109762] - ] - }, - "length": 0.05808029688523051, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch011859", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094026", - "bus2": "LVBus094027", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.196631691792718, 48.76430293374081], - [-1.196631691792718, 48.76430293374081], - [-1.196180365122294, 48.763843688222934], - [-1.196176665526038, 48.76383992052203], - [-1.196176665526038, 48.76383992052203] - ] - }, - "length": 0.061401995852302334, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch044888", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094025", - "bus2": "LVBus094029", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.198670212653164, 48.762307290177716], - [-1.198670212653164, 48.762307290177716], - [-1.198899487593858, 48.76180346410311], - [-1.199242484839553, 48.761586156877975], - [-1.199246174599321, 48.761582385193975], - [-1.199246174599321, 48.761582385193975] - ] - }, - "length": 0.09393517180378773, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch032580", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094029", - "bus2": "LVBus094030", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.199246174599321, 48.761582385193975], - [-1.199246174599321, 48.761582385193975], - [-1.199410353844309, 48.76124907489184], - [-1.199412792405016, 48.761244116844864], - [-1.199412792405016, 48.761244116844864] - ] - }, - "length": 0.039561474934677016, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch078604", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus094029", - "bus2": "LVBus094031", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.199246174599321, 48.761582385193975], - [-1.199246174599321, 48.761582385193975], - [-1.19778131755017, 48.76160462078426], - [-1.19778131755017, 48.76160462078426] - ] - }, - "length": 0.10772524267857121, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus094025_production", - "bus": "LVBus094025", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094025_consumption", - "bus": "LVBus094025", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094026_production", - "bus": "LVBus094026", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094026_consumption", - "bus": "LVBus094026", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094028_production", - "bus": "LVBus094028", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus094028_consumption", - "bus": "LVBus094028", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [6954.69036175945, 2285.8961783509694] - ] - }, - { - "id": "LVBus094027_production", - "bus": "LVBus094027", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094027_consumption", - "bus": "LVBus094027", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [6954.69036175945, 2285.8961783509694], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094029_production", - "bus": "LVBus094029", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094029_consumption", - "bus": "LVBus094029", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094030_production", - "bus": "LVBus094030", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094030_consumption", - "bus": "LVBus094030", - "phases": "abcn", - "powers": [ - [6954.69036175945, 2285.8961783509694], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094031_production", - "bus": "LVBus094031", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus094031_consumption", - "bus": "LVBus094031", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [6954.69036175945, 2285.8961783509694], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder23832_summer.json b/data/LVFeeder23832_summer.json deleted file mode 100644 index 5643918c..00000000 --- a/data/LVFeeder23832_summer.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV07524", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.40977863333772, 49.411627422261766] - } - }, - { - "id": "MVLV07524", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.40977863333772, 49.411627422261766] - } - }, - { - "id": "LVBus110873", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.406218859752376, 49.41236346910499] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV07524", - "geometry": { - "type": "Point", - "coordinates": [-1.40977863333772, 49.411627422261766] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch057373", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV07524", - "bus2": "LVBus110873", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40977863333772, 49.411627422261766], - [-1.409743508502538, 49.411621312092244], - [-1.409743508502538, 49.411621312092244], - [-1.408879685522408, 49.41175558278019], - [-1.408372592166125, 49.41183440331932], - [-1.407519779024074, 49.41205115669604], - [-1.407087261675502, 49.41223770004208], - [-1.406865142346526, 49.41233349605488], - [-1.406224368393009, 49.412363216869615], - [-1.406218859752376, 49.41236346910499], - [-1.406218859752376, 49.41236346910499] - ] - }, - "length": 0.2726431522482105, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus110873_production", - "bus": "LVBus110873", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-1158.58310626703, 0.0] - ] - }, - { - "id": "LVBus110873_consumption", - "bus": "LVBus110873", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2549.8221542184456, 838.0860131245311] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder23832_winter.json b/data/LVFeeder23832_winter.json deleted file mode 100644 index 4a8bb64e..00000000 --- a/data/LVFeeder23832_winter.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV07524", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.40977863333772, 49.411627422261766] - } - }, - { - "id": "MVLV07524", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.40977863333772, 49.411627422261766] - } - }, - { - "id": "LVBus110873", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.406218859752376, 49.41236346910499] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV07524", - "geometry": { - "type": "Point", - "coordinates": [-1.40977863333772, 49.411627422261766] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch057373", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV07524", - "bus2": "LVBus110873", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40977863333772, 49.411627422261766], - [-1.409743508502538, 49.411621312092244], - [-1.409743508502538, 49.411621312092244], - [-1.408879685522408, 49.41175558278019], - [-1.408372592166125, 49.41183440331932], - [-1.407519779024074, 49.41205115669604], - [-1.407087261675502, 49.41223770004208], - [-1.406865142346526, 49.41233349605488], - [-1.406224368393009, 49.412363216869615], - [-1.406218859752376, 49.41236346910499], - [-1.406218859752376, 49.41236346910499] - ] - }, - "length": 0.2726431522482105, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus110873_production", - "bus": "LVBus110873", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus110873_consumption", - "bus": "LVBus110873", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [12749.110771092228, 4190.430065622655], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder24400_summer.json b/data/LVFeeder24400_summer.json deleted file mode 100644 index a9727f30..00000000 --- a/data/LVFeeder24400_summer.json +++ /dev/null @@ -1,300 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV17777", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.455003968339352, 48.940400757428336] - } - }, - { - "id": "MVLV17777", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.455003968339352, 48.940400757428336] - } - }, - { - "id": "LVBus113443", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.452971862193451, 48.94089521617511] - } - }, - { - "id": "LVBus113444", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.452033590683014, 48.94042209226392] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV17777", - "geometry": { - "type": "Point", - "coordinates": [-1.455003968339352, 48.940400757428336] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch030132", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV17777", - "bus2": "LVBus113443", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.455003968339352, 48.940400757428336], - [-1.454965497080603, 48.940409934437504], - [-1.454965497080603, 48.940409934437504], - [-1.45495909604138, 48.940411487585706], - [-1.454088936515732, 48.94062331208275], - [-1.453065217015281, 48.94087249100193], - [-1.452971862193451, 48.94089521617511], - [-1.452971862193451, 48.94089521617511] - ] - }, - "length": 0.15570295096319542, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch030133", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus113443", - "bus2": "LVBus113444", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.452971862193451, 48.94089521617511], - [-1.452971862193451, 48.94089521617511], - [-1.452697541010771, 48.94075689397089], - [-1.452033590683014, 48.94042209226392], - [-1.452033590683014, 48.94042209226392] - ] - }, - "length": 0.08656266979024978, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus113443_production", - "bus": "LVBus113443", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus113443_consumption", - "bus": "LVBus113443", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus113444_production", - "bus": "LVBus113444", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-547.370786516854, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus113444_consumption", - "bus": "LVBus113444", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1993.2731310988013, 655.1571954722804], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder24400_winter.json b/data/LVFeeder24400_winter.json deleted file mode 100644 index c8657fcc..00000000 --- a/data/LVFeeder24400_winter.json +++ /dev/null @@ -1,300 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV17777", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.455003968339352, 48.940400757428336] - } - }, - { - "id": "MVLV17777", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.455003968339352, 48.940400757428336] - } - }, - { - "id": "LVBus113443", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.452971862193451, 48.94089521617511] - } - }, - { - "id": "LVBus113444", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.452033590683014, 48.94042209226392] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV17777", - "geometry": { - "type": "Point", - "coordinates": [-1.455003968339352, 48.940400757428336] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch030132", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV17777", - "bus2": "LVBus113443", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.455003968339352, 48.940400757428336], - [-1.454965497080603, 48.940409934437504], - [-1.454965497080603, 48.940409934437504], - [-1.45495909604138, 48.940411487585706], - [-1.454088936515732, 48.94062331208275], - [-1.453065217015281, 48.94087249100193], - [-1.452971862193451, 48.94089521617511], - [-1.452971862193451, 48.94089521617511] - ] - }, - "length": 0.15570295096319542, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch030133", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus113443", - "bus2": "LVBus113444", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.452971862193451, 48.94089521617511], - [-1.452971862193451, 48.94089521617511], - [-1.452697541010771, 48.94075689397089], - [-1.452033590683014, 48.94042209226392], - [-1.452033590683014, 48.94042209226392] - ] - }, - "length": 0.08656266979024978, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus113443_production", - "bus": "LVBus113443", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus113443_consumption", - "bus": "LVBus113443", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus113444_production", - "bus": "LVBus113444", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus113444_consumption", - "bus": "LVBus113444", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [9966.365655494006, 3275.785977361402] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder27429_summer.json b/data/LVFeeder27429_summer.json deleted file mode 100644 index 7ab239fb..00000000 --- a/data/LVFeeder27429_summer.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV01157", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763275481768985, 48.60297718339383] - } - }, - { - "id": "MVLV01157", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763275481768985, 48.60297718339383] - } - }, - { - "id": "LVBus127384", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.7634742960757851, 48.60299255811956] - } - }, - { - "id": "LVBus186172", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.76161692546682, 48.60244671901419] - } - }, - { - "id": "LVBus186175", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.761608195980402, 48.602420513668555] - } - }, - { - "id": "LVBus186176", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.762572178265289, 48.60149259897884] - } - }, - { - "id": "LVBus186177", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763339776619962, 48.60077755334537] - } - }, - { - "id": "LVBus186173", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.761561617561471, 48.60247914514799] - } - }, - { - "id": "LVBus186174", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.760257742058163, 48.602203698430706] - } - }, - { - "id": "LVBus187572", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763823658677378, 48.60305776103005] - } - }, - { - "id": "LVBus195737", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763276537372726, 48.604304238644815] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV01157", - "geometry": { - "type": "Point", - "coordinates": [-0.763275481768985, 48.60297718339383] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch119309", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV01157", - "bus2": "LVBus127384", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.763275481768985, 48.60297718339383], - [-0.763309940995956, 48.602959045107], - [-0.763309940995956, 48.602959045107], - [-0.763326191390601, 48.602949704710056], - [-0.763428319973567, 48.60297071910874], - [-0.76346568502553, 48.60298089655524], - [-0.763461159545054, 48.60299032598373], - [-0.7634742960757851, 48.60299255811956] - ] - }, - "length": 0.013551760479693866, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch158853", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus127384", - "bus2": "LVBus186172", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.7634742960757851, 48.60299255811956], - [-0.763474096368467, 48.60299300115818], - [-0.763480355768833, 48.60297965801517], - [-0.763433685309015, 48.60296241021414], - [-0.763330210793668, 48.602941116174414], - [-0.762715395127332, 48.602810277535205], - [-0.762577548674808, 48.60278372872246], - [-0.761924332648339, 48.602646666740235], - [-0.761891385762613, 48.60264439781511], - [-0.761864336788657, 48.602641173966475], - [-0.761569367773829, 48.60258094963647], - [-0.761555302568853, 48.60257526307455], - [-0.761554759760411, 48.602567504609844], - [-0.761582914991027, 48.60250836537728], - [-0.761581721761865, 48.60250039002285], - [-0.761577724811962, 48.602474693636765], - [-0.76159176927091, 48.60244878631047], - [-0.761612394695354, 48.60245370755538], - [-0.76161692546682, 48.60244671901419] - ] - }, - "length": 0.16687032258739654, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch133747", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186172", - "bus2": "LVBus186175", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.76161692546682, 48.60244671901419], - [-0.761620254605229, 48.60243921613341], - [-0.761599488501384, 48.60243215748877], - [-0.761608195980402, 48.602420513668555], - [-0.761608195980402, 48.602420513668555] - ] - }, - "length": 0.0031663050478217317, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch053605", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186175", - "bus2": "LVBus186176", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.761608195980402, 48.602420513668555], - [-0.761608195980402, 48.602420513668555], - [-0.761611033991671, 48.60241600435182], - [-0.761784550589528, 48.60214011579136], - [-0.762080812508729, 48.60185041883437], - [-0.762572178265289, 48.60149259897884], - [-0.762572178265289, 48.60149259897884] - ] - }, - "length": 0.12653087931322696, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch011205", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186176", - "bus2": "LVBus186177", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.762572178265289, 48.60149259897884], - [-0.762572178265289, 48.60149259897884], - [-0.763056545735551, 48.601105038736335], - [-0.763064743889263, 48.60109555819069], - [-0.763334331862579, 48.60078384019807], - [-0.763339776619962, 48.60077755334537], - [-0.763339776619962, 48.60077755334537] - ] - }, - "length": 0.09796160126133627, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch142467", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186172", - "bus2": "LVBus186173", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.76161692546682, 48.60244671901419], - [-0.761618127099877, 48.60244723335378], - [-0.761581642659447, 48.60243884952903], - [-0.761561617561471, 48.60247914514799], - [-0.761561617561471, 48.60247914514799] - ] - }, - "length": 0.007565816669528637, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch084743", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186173", - "bus2": "LVBus186174", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.761561617561471, 48.60247914514799], - [-0.761561617561471, 48.60247914514799], - [-0.761520647442155, 48.602475619578264], - [-0.761383492213318, 48.602446982220535], - [-0.761376976694745, 48.60243641122154], - [-0.761083717988509, 48.60238256423136], - [-0.760685935831135, 48.60230410109437], - [-0.760252195682717, 48.602218552095316], - [-0.76025296884848, 48.602216498758025], - [-0.760257742058163, 48.602203698430706], - [-0.760257742058163, 48.602203698430706] - ] - }, - "length": 0.10304715198115963, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch133746", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus127384", - "bus2": "LVBus187572", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.7634742960757851, 48.60299255811956], - [-0.763487632313834, 48.602994347216764], - [-0.763495991786513, 48.602983926839975], - [-0.76351501594019, 48.60298791808133], - [-0.763583381689584, 48.603005263821345], - [-0.763617691699799, 48.603019947269956], - [-0.763774698416599, 48.60304158535254], - [-0.763825753887716, 48.60303883678963], - [-0.76383854604323, 48.60304022026672], - [-0.763836680275793, 48.60304784384739], - [-0.763833687384132, 48.603060003993065], - [-0.763823658677378, 48.60305776103005] - ] - }, - "length": 0.02998363504572132, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch119296", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus187572", - "bus2": "LVBus195737", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.763823658677378, 48.60305776103005], - [-0.763813629970624, 48.60305551806704], - [-0.763819965204177, 48.603043450372134], - [-0.763768514113366, 48.603051175156025], - [-0.763653940547639, 48.60303666707492], - [-0.763622730363099, 48.60309116380199], - [-0.763575258811119, 48.60335539023291], - [-0.763493593646684, 48.60370764793883], - [-0.763399116709257, 48.60400898074912], - [-0.763320752821342, 48.60409330090699], - [-0.763347671223125, 48.60415905097723], - [-0.763239063000825, 48.60428403329993], - [-0.763276537372726, 48.604304238644815], - [-0.763276537372726, 48.604304238644815] - ] - }, - "length": 0.16203866991098098, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus127384_production", - "bus": "LVBus127384", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus127384_consumption", - "bus": "LVBus127384", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186172_production", - "bus": "LVBus186172", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186172_consumption", - "bus": "LVBus186172", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186175_production", - "bus": "LVBus186175", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus186175_consumption", - "bus": "LVBus186175", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186176_production", - "bus": "LVBus186176", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186176_consumption", - "bus": "LVBus186176", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186177_production", - "bus": "LVBus186177", - "phases": "abcn", - "powers": [ - [-3716.417910447761, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186177_consumption", - "bus": "LVBus186177", - "phases": "abcn", - "powers": [ - [1621.4517980406863, 532.9454333296618], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186173_production", - "bus": "LVBus186173", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186173_consumption", - "bus": "LVBus186173", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186174_production", - "bus": "LVBus186174", - "phases": "abcn", - "powers": [ - [-3716.417910447761, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186174_consumption", - "bus": "LVBus186174", - "phases": "abcn", - "powers": [ - [1621.4517980406863, 532.9454333296618], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus187572_production", - "bus": "LVBus187572", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus187572_consumption", - "bus": "LVBus187572", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195737_production", - "bus": "LVBus195737", - "phases": "abcn", - "powers": [ - [-3716.417910447761, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195737_consumption", - "bus": "LVBus195737", - "phases": "abcn", - "powers": [ - [1621.4517980406863, 532.9454333296618], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder27429_winter.json b/data/LVFeeder27429_winter.json deleted file mode 100644 index 831865b5..00000000 --- a/data/LVFeeder27429_winter.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV01157", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763275481768985, 48.60297718339383] - } - }, - { - "id": "MVLV01157", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763275481768985, 48.60297718339383] - } - }, - { - "id": "LVBus127384", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.7634742960757851, 48.60299255811956] - } - }, - { - "id": "LVBus186172", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.76161692546682, 48.60244671901419] - } - }, - { - "id": "LVBus186175", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.761608195980402, 48.602420513668555] - } - }, - { - "id": "LVBus186176", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.762572178265289, 48.60149259897884] - } - }, - { - "id": "LVBus186177", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763339776619962, 48.60077755334537] - } - }, - { - "id": "LVBus186173", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.761561617561471, 48.60247914514799] - } - }, - { - "id": "LVBus186174", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.760257742058163, 48.602203698430706] - } - }, - { - "id": "LVBus187572", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763823658677378, 48.60305776103005] - } - }, - { - "id": "LVBus195737", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.763276537372726, 48.604304238644815] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV01157", - "geometry": { - "type": "Point", - "coordinates": [-0.763275481768985, 48.60297718339383] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch119309", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV01157", - "bus2": "LVBus127384", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.763275481768985, 48.60297718339383], - [-0.763309940995956, 48.602959045107], - [-0.763309940995956, 48.602959045107], - [-0.763326191390601, 48.602949704710056], - [-0.763428319973567, 48.60297071910874], - [-0.76346568502553, 48.60298089655524], - [-0.763461159545054, 48.60299032598373], - [-0.7634742960757851, 48.60299255811956] - ] - }, - "length": 0.013551760479693866, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch158853", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus127384", - "bus2": "LVBus186172", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.7634742960757851, 48.60299255811956], - [-0.763474096368467, 48.60299300115818], - [-0.763480355768833, 48.60297965801517], - [-0.763433685309015, 48.60296241021414], - [-0.763330210793668, 48.602941116174414], - [-0.762715395127332, 48.602810277535205], - [-0.762577548674808, 48.60278372872246], - [-0.761924332648339, 48.602646666740235], - [-0.761891385762613, 48.60264439781511], - [-0.761864336788657, 48.602641173966475], - [-0.761569367773829, 48.60258094963647], - [-0.761555302568853, 48.60257526307455], - [-0.761554759760411, 48.602567504609844], - [-0.761582914991027, 48.60250836537728], - [-0.761581721761865, 48.60250039002285], - [-0.761577724811962, 48.602474693636765], - [-0.76159176927091, 48.60244878631047], - [-0.761612394695354, 48.60245370755538], - [-0.76161692546682, 48.60244671901419] - ] - }, - "length": 0.16687032258739654, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch133747", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186172", - "bus2": "LVBus186175", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.76161692546682, 48.60244671901419], - [-0.761620254605229, 48.60243921613341], - [-0.761599488501384, 48.60243215748877], - [-0.761608195980402, 48.602420513668555], - [-0.761608195980402, 48.602420513668555] - ] - }, - "length": 0.0031663050478217317, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch053605", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186175", - "bus2": "LVBus186176", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.761608195980402, 48.602420513668555], - [-0.761608195980402, 48.602420513668555], - [-0.761611033991671, 48.60241600435182], - [-0.761784550589528, 48.60214011579136], - [-0.762080812508729, 48.60185041883437], - [-0.762572178265289, 48.60149259897884], - [-0.762572178265289, 48.60149259897884] - ] - }, - "length": 0.12653087931322696, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch011205", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186176", - "bus2": "LVBus186177", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.762572178265289, 48.60149259897884], - [-0.762572178265289, 48.60149259897884], - [-0.763056545735551, 48.601105038736335], - [-0.763064743889263, 48.60109555819069], - [-0.763334331862579, 48.60078384019807], - [-0.763339776619962, 48.60077755334537], - [-0.763339776619962, 48.60077755334537] - ] - }, - "length": 0.09796160126133627, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch142467", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186172", - "bus2": "LVBus186173", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.76161692546682, 48.60244671901419], - [-0.761618127099877, 48.60244723335378], - [-0.761581642659447, 48.60243884952903], - [-0.761561617561471, 48.60247914514799], - [-0.761561617561471, 48.60247914514799] - ] - }, - "length": 0.007565816669528637, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch084743", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus186173", - "bus2": "LVBus186174", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.761561617561471, 48.60247914514799], - [-0.761561617561471, 48.60247914514799], - [-0.761520647442155, 48.602475619578264], - [-0.761383492213318, 48.602446982220535], - [-0.761376976694745, 48.60243641122154], - [-0.761083717988509, 48.60238256423136], - [-0.760685935831135, 48.60230410109437], - [-0.760252195682717, 48.602218552095316], - [-0.76025296884848, 48.602216498758025], - [-0.760257742058163, 48.602203698430706], - [-0.760257742058163, 48.602203698430706] - ] - }, - "length": 0.10304715198115963, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch133746", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus127384", - "bus2": "LVBus187572", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.7634742960757851, 48.60299255811956], - [-0.763487632313834, 48.602994347216764], - [-0.763495991786513, 48.602983926839975], - [-0.76351501594019, 48.60298791808133], - [-0.763583381689584, 48.603005263821345], - [-0.763617691699799, 48.603019947269956], - [-0.763774698416599, 48.60304158535254], - [-0.763825753887716, 48.60303883678963], - [-0.76383854604323, 48.60304022026672], - [-0.763836680275793, 48.60304784384739], - [-0.763833687384132, 48.603060003993065], - [-0.763823658677378, 48.60305776103005] - ] - }, - "length": 0.02998363504572132, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch119296", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus187572", - "bus2": "LVBus195737", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.763823658677378, 48.60305776103005], - [-0.763813629970624, 48.60305551806704], - [-0.763819965204177, 48.603043450372134], - [-0.763768514113366, 48.603051175156025], - [-0.763653940547639, 48.60303666707492], - [-0.763622730363099, 48.60309116380199], - [-0.763575258811119, 48.60335539023291], - [-0.763493593646684, 48.60370764793883], - [-0.763399116709257, 48.60400898074912], - [-0.763320752821342, 48.60409330090699], - [-0.763347671223125, 48.60415905097723], - [-0.763239063000825, 48.60428403329993], - [-0.763276537372726, 48.604304238644815], - [-0.763276537372726, 48.604304238644815] - ] - }, - "length": 0.16203866991098098, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus127384_production", - "bus": "LVBus127384", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus127384_consumption", - "bus": "LVBus127384", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186172_production", - "bus": "LVBus186172", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus186172_consumption", - "bus": "LVBus186172", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186175_production", - "bus": "LVBus186175", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus186175_consumption", - "bus": "LVBus186175", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186176_production", - "bus": "LVBus186176", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus186176_consumption", - "bus": "LVBus186176", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186177_production", - "bus": "LVBus186177", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186177_consumption", - "bus": "LVBus186177", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [8107.2589902034315, 2664.727166648309], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186173_production", - "bus": "LVBus186173", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus186173_consumption", - "bus": "LVBus186173", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186174_production", - "bus": "LVBus186174", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus186174_consumption", - "bus": "LVBus186174", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [8107.2589902034315, 2664.727166648309], - [0.0, 0.0] - ] - }, - { - "id": "LVBus187572_production", - "bus": "LVBus187572", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus187572_consumption", - "bus": "LVBus187572", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195737_production", - "bus": "LVBus195737", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus195737_consumption", - "bus": "LVBus195737", - "phases": "abcn", - "powers": [ - [8107.2589902034315, 2664.727166648309], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder27681_summer.json b/data/LVFeeder27681_summer.json deleted file mode 100644 index 41673a34..00000000 --- a/data/LVFeeder27681_summer.json +++ /dev/null @@ -1,251 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV11757", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.872844643374193, 49.325171742226196] - } - }, - { - "id": "MVLV11757", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.872844643374193, 49.325171742226196] - } - }, - { - "id": "LVBus128601", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.872690668569252, 49.325398961209295] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV11757", - "geometry": { - "type": "Point", - "coordinates": [-0.872844643374193, 49.325171742226196] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch101340", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV11757", - "bus2": "LVBus128601", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872844643374193, 49.325171742226196], - [-0.872930651440197, 49.32519231866675], - [-0.872930651440197, 49.32519231866675], - [-0.87290428119125, 49.32518725063606], - [-0.872779814214772, 49.325350015195575], - [-0.872699108874985, 49.325397108400445], - [-0.872690668569252, 49.325398961209295], - [-0.872690668569252, 49.325398961209295] - ] - }, - "length": 0.03074722558197331, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus128601_production", - "bus": "LVBus128601", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus128601_consumption", - "bus": "LVBus128601", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1817.3491965176008, 597.3337944549136], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder27681_winter.json b/data/LVFeeder27681_winter.json deleted file mode 100644 index 1b35bd29..00000000 --- a/data/LVFeeder27681_winter.json +++ /dev/null @@ -1,251 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV11757", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.872844643374193, 49.325171742226196] - } - }, - { - "id": "MVLV11757", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.872844643374193, 49.325171742226196] - } - }, - { - "id": "LVBus128601", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.872690668569252, 49.325398961209295] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV11757", - "geometry": { - "type": "Point", - "coordinates": [-0.872844643374193, 49.325171742226196] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch101340", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV11757", - "bus2": "LVBus128601", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872844643374193, 49.325171742226196], - [-0.872930651440197, 49.32519231866675], - [-0.872930651440197, 49.32519231866675], - [-0.87290428119125, 49.32518725063606], - [-0.872779814214772, 49.325350015195575], - [-0.872699108874985, 49.325397108400445], - [-0.872690668569252, 49.325398961209295], - [-0.872690668569252, 49.325398961209295] - ] - }, - "length": 0.03074722558197331, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus128601_production", - "bus": "LVBus128601", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus128601_consumption", - "bus": "LVBus128601", - "phases": "abcn", - "powers": [ - [9086.745982588003, 2986.6689722745677], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder30216_summer.json b/data/LVFeeder30216_summer.json deleted file mode 100644 index e79afc8b..00000000 --- a/data/LVFeeder30216_summer.json +++ /dev/null @@ -1,662 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV15088", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.22546628182438, 49.01938176375552] - } - }, - { - "id": "MVLV15088", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.22546628182438, 49.01938176375552] - } - }, - { - "id": "LVBus140700", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.225935460180821, 49.018863637691915] - } - }, - { - "id": "LVBus140705", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.228920824707651, 49.020350305877685] - } - }, - { - "id": "LVBus140701", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.224534711913636, 49.01646259384531] - } - }, - { - "id": "LVBus140706", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.226435067526595, 49.01831548317052] - } - }, - { - "id": "LVBus140702", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.222909448895307, 49.02051036142216] - } - }, - { - "id": "LVBus140703", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.221086648382608, 49.02059680576484] - } - }, - { - "id": "LVBus140704", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.220623536255886, 49.02039183220841] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV15088", - "geometry": { - "type": "Point", - "coordinates": [-1.22546628182438, 49.01938176375552] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch025818", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV15088", - "bus2": "LVBus140700", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.22546628182438, 49.01938176375552], - [-1.225478750130724, 49.01935650150671], - [-1.225478750130724, 49.01935650150671], - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915] - ] - }, - "length": 0.0641889524657676, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch052665", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.228909642306604, 49.02034404606114], - [-1.228920824707651, 49.020350305877685], - [-1.228920824707651, 49.020350305877685] - ] - }, - "length": 0.27389111538851374, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch023719", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140701", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.224547150720955, 49.01648174305013], - [-1.224534711913636, 49.01646259384531], - [-1.224534711913636, 49.01646259384531] - ] - }, - "length": 0.2860045677215042, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch006444", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140706", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.226403920467569, 49.01835149467934], - [-1.226435067526595, 49.01831548317052], - [-1.226435067526595, 49.01831548317052] - ] - }, - "length": 0.07107583387842016, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch075760", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140702", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.225971170647453, 49.01949684079831], - [-1.223130838994656, 49.020437079906266], - [-1.222939924435882, 49.020500277804885], - [-1.222909448895307, 49.02051036142216], - [-1.222909448895307, 49.02051036142216] - ] - }, - "length": 0.32117477810998835, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch006442", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140702", - "bus2": "LVBus140703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.222909448895307, 49.02051036142216], - [-1.222909448895307, 49.02051036142216], - [-1.221301625275321, 49.020586848514355], - [-1.221093482893436, 49.020596746100225], - [-1.221086648382608, 49.02059680576484], - [-1.221086648382608, 49.02059680576484] - ] - }, - "length": 0.13366970645423365, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch122978", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140703", - "bus2": "LVBus140704", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.221086648382608, 49.02059680576484], - [-1.221086648382608, 49.02059680576484], - [-1.221051527827593, 49.02055792136342], - [-1.220941305936017, 49.020553594534256], - [-1.220939022900478, 49.02055321276997], - [-1.220873987433548, 49.020542286568215], - [-1.220774544657315, 49.02048435874796], - [-1.220733365201761, 49.020390458944185], - [-1.220623536255886, 49.02039183220841], - [-1.220623536255886, 49.02039183220841] - ] - }, - "length": 0.04680679364902962, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus140700_production", - "bus": "LVBus140700", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus140700_consumption", - "bus": "LVBus140700", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140705_production", - "bus": "LVBus140705", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-500.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140705_consumption", - "bus": "LVBus140705", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1920.4281149590913, 631.21419652566], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140701_production", - "bus": "LVBus140701", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-500.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140701_consumption", - "bus": "LVBus140701", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1920.4281149590913, 631.21419652566], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140706_production", - "bus": "LVBus140706", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-500.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140706_consumption", - "bus": "LVBus140706", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1920.4281149590913, 631.21419652566], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140702_production", - "bus": "LVBus140702", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140702_consumption", - "bus": "LVBus140702", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140703_production", - "bus": "LVBus140703", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140703_consumption", - "bus": "LVBus140703", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140704_production", - "bus": "LVBus140704", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-500.0, 0.0] - ] - }, - { - "id": "LVBus140704_consumption", - "bus": "LVBus140704", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1920.4281149590913, 631.21419652566] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder30216_winter.json b/data/LVFeeder30216_winter.json deleted file mode 100644 index 60ad754a..00000000 --- a/data/LVFeeder30216_winter.json +++ /dev/null @@ -1,662 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV15088", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.22546628182438, 49.01938176375552] - } - }, - { - "id": "MVLV15088", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.22546628182438, 49.01938176375552] - } - }, - { - "id": "LVBus140700", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.225935460180821, 49.018863637691915] - } - }, - { - "id": "LVBus140705", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.228920824707651, 49.020350305877685] - } - }, - { - "id": "LVBus140701", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.224534711913636, 49.01646259384531] - } - }, - { - "id": "LVBus140706", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.226435067526595, 49.01831548317052] - } - }, - { - "id": "LVBus140702", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.222909448895307, 49.02051036142216] - } - }, - { - "id": "LVBus140703", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.221086648382608, 49.02059680576484] - } - }, - { - "id": "LVBus140704", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.220623536255886, 49.02039183220841] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV15088", - "geometry": { - "type": "Point", - "coordinates": [-1.22546628182438, 49.01938176375552] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch025818", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV15088", - "bus2": "LVBus140700", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.22546628182438, 49.01938176375552], - [-1.225478750130724, 49.01935650150671], - [-1.225478750130724, 49.01935650150671], - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915] - ] - }, - "length": 0.0641889524657676, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch052665", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.228909642306604, 49.02034404606114], - [-1.228920824707651, 49.020350305877685], - [-1.228920824707651, 49.020350305877685] - ] - }, - "length": 0.27389111538851374, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch023719", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140701", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.224547150720955, 49.01648174305013], - [-1.224534711913636, 49.01646259384531], - [-1.224534711913636, 49.01646259384531] - ] - }, - "length": 0.2860045677215042, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch006444", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140706", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.226403920467569, 49.01835149467934], - [-1.226435067526595, 49.01831548317052], - [-1.226435067526595, 49.01831548317052] - ] - }, - "length": 0.07107583387842016, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch075760", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140700", - "bus2": "LVBus140702", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.225935460180821, 49.018863637691915], - [-1.225935460180821, 49.018863637691915], - [-1.225971170647453, 49.01949684079831], - [-1.223130838994656, 49.020437079906266], - [-1.222939924435882, 49.020500277804885], - [-1.222909448895307, 49.02051036142216], - [-1.222909448895307, 49.02051036142216] - ] - }, - "length": 0.32117477810998835, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch006442", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140702", - "bus2": "LVBus140703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.222909448895307, 49.02051036142216], - [-1.222909448895307, 49.02051036142216], - [-1.221301625275321, 49.020586848514355], - [-1.221093482893436, 49.020596746100225], - [-1.221086648382608, 49.02059680576484], - [-1.221086648382608, 49.02059680576484] - ] - }, - "length": 0.13366970645423365, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch122978", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus140703", - "bus2": "LVBus140704", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.221086648382608, 49.02059680576484], - [-1.221086648382608, 49.02059680576484], - [-1.221051527827593, 49.02055792136342], - [-1.220941305936017, 49.020553594534256], - [-1.220939022900478, 49.02055321276997], - [-1.220873987433548, 49.020542286568215], - [-1.220774544657315, 49.02048435874796], - [-1.220733365201761, 49.020390458944185], - [-1.220623536255886, 49.02039183220841], - [-1.220623536255886, 49.02039183220841] - ] - }, - "length": 0.04680679364902962, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus140700_production", - "bus": "LVBus140700", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus140700_consumption", - "bus": "LVBus140700", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140705_production", - "bus": "LVBus140705", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140705_consumption", - "bus": "LVBus140705", - "phases": "abcn", - "powers": [ - [9602.140574795456, 3156.0709826283], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140701_production", - "bus": "LVBus140701", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140701_consumption", - "bus": "LVBus140701", - "phases": "abcn", - "powers": [ - [9602.140574795456, 3156.0709826283], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140706_production", - "bus": "LVBus140706", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140706_consumption", - "bus": "LVBus140706", - "phases": "abcn", - "powers": [ - [9602.140574795456, 3156.0709826283], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140702_production", - "bus": "LVBus140702", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140702_consumption", - "bus": "LVBus140702", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140703_production", - "bus": "LVBus140703", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140703_consumption", - "bus": "LVBus140703", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140704_production", - "bus": "LVBus140704", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus140704_consumption", - "bus": "LVBus140704", - "phases": "abcn", - "powers": [ - [9602.140574795456, 3156.0709826283], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder31441_summer.json b/data/LVFeeder31441_summer.json deleted file mode 100644 index 78e60d59..00000000 --- a/data/LVFeeder31441_summer.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV08797", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3209120861294505, 49.410818512433636] - } - }, - { - "id": "MVLV08797", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3209120861294505, 49.410818512433636] - } - }, - { - "id": "LVBus146616", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.319946143514134, 49.411317210522704] - } - }, - { - "id": "LVBus146617", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320555614851936, 49.4120901502568] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV08797", - "geometry": { - "type": "Point", - "coordinates": [-1.3209120861294505, 49.410818512433636] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch095203", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV08797", - "bus2": "LVBus146616", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3209120861294505, 49.410818512433636], - [-1.320919045669726, 49.410808368581115], - [-1.320919045669726, 49.410808368581115], - [-1.320859505351289, 49.410793478690046], - [-1.32070866377652, 49.41088912187997], - [-1.320702616694573, 49.410905582284904], - [-1.320299531035, 49.41113059595499], - [-1.320141051505351, 49.411207495995455], - [-1.319929505124683, 49.41128336423494], - [-1.319946143514134, 49.411317210522704], - [-1.319946143514134, 49.411317210522704] - ] - }, - "length": 0.09607140707710016, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch159673", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus146616", - "bus2": "LVBus146617", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.319946143514134, 49.411317210522704], - [-1.319946143514134, 49.411317210522704], - [-1.319939839634443, 49.411315396690995], - [-1.319917945250196, 49.41130910158912], - [-1.319864222394435, 49.41132880889963], - [-1.319984608433865, 49.411473061920255], - [-1.320261117945677, 49.41180441067311], - [-1.320280861473836, 49.4118280728532], - [-1.320452041048922, 49.412033199802046], - [-1.320458626652415, 49.4120410840533], - [-1.320515657192603, 49.412109430561244], - [-1.320550085531638, 49.41209281821683], - [-1.320552590340302, 49.41209160903667], - [-1.320555614851936, 49.4120901502568], - [-1.320555614851936, 49.4120901502568] - ] - }, - "length": 0.10916949233215091, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus146616_production", - "bus": "LVBus146616", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus146616_consumption", - "bus": "LVBus146616", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus146617_production", - "bus": "LVBus146617", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-360.2305475504323, 0.0] - ] - }, - { - "id": "LVBus146617_consumption", - "bus": "LVBus146617", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [5423.8352258997575, 1782.728427862459] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder31441_winter.json b/data/LVFeeder31441_winter.json deleted file mode 100644 index 91c83a8a..00000000 --- a/data/LVFeeder31441_winter.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV08797", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3209120861294505, 49.410818512433636] - } - }, - { - "id": "MVLV08797", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.3209120861294505, 49.410818512433636] - } - }, - { - "id": "LVBus146616", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.319946143514134, 49.411317210522704] - } - }, - { - "id": "LVBus146617", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.320555614851936, 49.4120901502568] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV08797", - "geometry": { - "type": "Point", - "coordinates": [-1.3209120861294505, 49.410818512433636] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch095203", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV08797", - "bus2": "LVBus146616", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3209120861294505, 49.410818512433636], - [-1.320919045669726, 49.410808368581115], - [-1.320919045669726, 49.410808368581115], - [-1.320859505351289, 49.410793478690046], - [-1.32070866377652, 49.41088912187997], - [-1.320702616694573, 49.410905582284904], - [-1.320299531035, 49.41113059595499], - [-1.320141051505351, 49.411207495995455], - [-1.319929505124683, 49.41128336423494], - [-1.319946143514134, 49.411317210522704], - [-1.319946143514134, 49.411317210522704] - ] - }, - "length": 0.09607140707710016, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch159673", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus146616", - "bus2": "LVBus146617", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.319946143514134, 49.411317210522704], - [-1.319946143514134, 49.411317210522704], - [-1.319939839634443, 49.411315396690995], - [-1.319917945250196, 49.41130910158912], - [-1.319864222394435, 49.41132880889963], - [-1.319984608433865, 49.411473061920255], - [-1.320261117945677, 49.41180441067311], - [-1.320280861473836, 49.4118280728532], - [-1.320452041048922, 49.412033199802046], - [-1.320458626652415, 49.4120410840533], - [-1.320515657192603, 49.412109430561244], - [-1.320550085531638, 49.41209281821683], - [-1.320552590340302, 49.41209160903667], - [-1.320555614851936, 49.4120901502568], - [-1.320555614851936, 49.4120901502568] - ] - }, - "length": 0.10916949233215091, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus146616_production", - "bus": "LVBus146616", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus146616_consumption", - "bus": "LVBus146616", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus146617_production", - "bus": "LVBus146617", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus146617_consumption", - "bus": "LVBus146617", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [27119.17612949879, 8913.642139312295], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder36284_summer.json b/data/LVFeeder36284_summer.json deleted file mode 100644 index fa12e977..00000000 --- a/data/LVFeeder36284_summer.json +++ /dev/null @@ -1,353 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV03862", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.55883404863677, 49.11337818748383] - } - }, - { - "id": "MVLV03862", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.55883404863677, 49.11337818748383] - } - }, - { - "id": "LVBus169496", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.558405805582989, 49.113418096217345] - } - }, - { - "id": "LVBus169498", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562472292762036, 49.11401826802014] - } - }, - { - "id": "LVBus169497", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.557269493950637, 49.11274982554477] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV03862", - "geometry": { - "type": "Point", - "coordinates": [-1.55883404863677, 49.11337818748383] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch070099", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV03862", - "bus2": "LVBus169496", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.55883404863677, 49.11337818748383], - [-1.55879367996807, 49.113377531873525], - [-1.55879367996807, 49.113377531873525], - [-1.558405805582989, 49.113418096217345], - [-1.558405805582989, 49.113418096217345] - ] - }, - "length": 0.02867407323220623, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch070100", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169496", - "bus2": "LVBus169498", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558405805582989, 49.113418096217345], - [-1.558405805582989, 49.113418096217345], - [-1.558411053396724, 49.11342098412424], - [-1.559237508512948, 49.1138760900939], - [-1.560233610181569, 49.114157404119545], - [-1.562433962317121, 49.11402065095589], - [-1.562472292762036, 49.11401826802014], - [-1.562472292762036, 49.11401826802014] - ] - }, - "length": 0.3225822604299102, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch024186", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169496", - "bus2": "LVBus169497", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558405805582989, 49.113418096217345], - [-1.558405805582989, 49.113418096217345], - [-1.558400713685548, 49.11341509527622], - [-1.557896053286736, 49.11311831628713], - [-1.557834885622943, 49.11308234283196], - [-1.557274585716886, 49.112752826535804], - [-1.557274169603638, 49.11275257918506], - [-1.557269493950637, 49.11274982554477], - [-1.557269493950637, 49.11274982554477] - ] - }, - "length": 0.11137940014481557, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus169496_production", - "bus": "LVBus169496", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus169496_consumption", - "bus": "LVBus169496", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169498_production", - "bus": "LVBus169498", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus169498_consumption", - "bus": "LVBus169498", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1563.877479078187, 514.0216698201901] - ] - }, - { - "id": "LVBus169497_production", - "bus": "LVBus169497", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169497_consumption", - "bus": "LVBus169497", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1563.877479078187, 514.0216698201901], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder36284_winter.json b/data/LVFeeder36284_winter.json deleted file mode 100644 index 389b079d..00000000 --- a/data/LVFeeder36284_winter.json +++ /dev/null @@ -1,353 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV03862", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.55883404863677, 49.11337818748383] - } - }, - { - "id": "MVLV03862", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.55883404863677, 49.11337818748383] - } - }, - { - "id": "LVBus169496", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.558405805582989, 49.113418096217345] - } - }, - { - "id": "LVBus169498", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.562472292762036, 49.11401826802014] - } - }, - { - "id": "LVBus169497", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.557269493950637, 49.11274982554477] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV03862", - "geometry": { - "type": "Point", - "coordinates": [-1.55883404863677, 49.11337818748383] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch070099", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV03862", - "bus2": "LVBus169496", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.55883404863677, 49.11337818748383], - [-1.55879367996807, 49.113377531873525], - [-1.55879367996807, 49.113377531873525], - [-1.558405805582989, 49.113418096217345], - [-1.558405805582989, 49.113418096217345] - ] - }, - "length": 0.02867407323220623, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch070100", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169496", - "bus2": "LVBus169498", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558405805582989, 49.113418096217345], - [-1.558405805582989, 49.113418096217345], - [-1.558411053396724, 49.11342098412424], - [-1.559237508512948, 49.1138760900939], - [-1.560233610181569, 49.114157404119545], - [-1.562433962317121, 49.11402065095589], - [-1.562472292762036, 49.11401826802014], - [-1.562472292762036, 49.11401826802014] - ] - }, - "length": 0.3225822604299102, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch024186", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169496", - "bus2": "LVBus169497", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558405805582989, 49.113418096217345], - [-1.558405805582989, 49.113418096217345], - [-1.558400713685548, 49.11341509527622], - [-1.557896053286736, 49.11311831628713], - [-1.557834885622943, 49.11308234283196], - [-1.557274585716886, 49.112752826535804], - [-1.557274169603638, 49.11275257918506], - [-1.557269493950637, 49.11274982554477], - [-1.557269493950637, 49.11274982554477] - ] - }, - "length": 0.11137940014481557, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus169496_production", - "bus": "LVBus169496", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169496_consumption", - "bus": "LVBus169496", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169498_production", - "bus": "LVBus169498", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169498_consumption", - "bus": "LVBus169498", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [7819.387395390935, 2570.108349100951], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169497_production", - "bus": "LVBus169497", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169497_consumption", - "bus": "LVBus169497", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [7819.387395390935, 2570.108349100951], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder36360_summer.json b/data/LVFeeder36360_summer.json deleted file mode 100644 index af7ef162..00000000 --- a/data/LVFeeder36360_summer.json +++ /dev/null @@ -1,671 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV14716", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5931237327892096, 49.0456724037415] - } - }, - { - "id": "MVLV14716", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5931237327892096, 49.0456724037415] - } - }, - { - "id": "LVBus169862", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.593759159010116, 49.0462719064779] - } - }, - { - "id": "LVBus169863", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.593861680273659, 49.046653053701206] - } - }, - { - "id": "LVBus169864", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594364639974005, 49.04739706937517] - } - }, - { - "id": "LVBus169866", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594706660314081, 49.047929008246655] - } - }, - { - "id": "LVBus169865", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594721011508903, 49.04724435659555] - } - }, - { - "id": "LVBus169867", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.593922235812207, 49.04782025881052] - } - }, - { - "id": "LVBus169868", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594849255375854, 49.046306680920615] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV14716", - "geometry": { - "type": "Point", - "coordinates": [-1.5931237327892096, 49.0456724037415] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch124792", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV14716", - "bus2": "LVBus169862", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5931237327892096, 49.0456724037415], - [-1.593124791365058, 49.045690894063746], - [-1.593124791365058, 49.045690894063746], - [-1.59322930794992, 49.0457081851855], - [-1.593312448490486, 49.04582098250781], - [-1.593586673694338, 49.046226792512805], - [-1.593740502268292, 49.046209513234864], - [-1.593759159010116, 49.0462719064779], - [-1.593759159010116, 49.0462719064779] - ] - }, - "length": 0.08968070135743335, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch028144", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169862", - "bus2": "LVBus169863", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.593759159010116, 49.0462719064779], - [-1.593759159010116, 49.0462719064779], - [-1.593740055437059, 49.04645118253442], - [-1.593737972073063, 49.04647073891695], - [-1.593861680273659, 49.046653053701206], - [-1.593861680273659, 49.046653053701206] - ] - }, - "length": 0.04436724010618379, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch028145", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169863", - "bus2": "LVBus169864", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.593861680273659, 49.046653053701206], - [-1.593861680273659, 49.046653053701206], - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517] - ] - }, - "length": 0.09054384067800328, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch041668", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169864", - "bus2": "LVBus169866", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517], - [-1.594367469980203, 49.04740115992531], - [-1.594562105253604, 49.047713695035455], - [-1.594584222666464, 49.04774656255592], - [-1.594658921232359, 49.04785788231147], - [-1.594703324991698, 49.047924034619044], - [-1.594706660314081, 49.047929008246655], - [-1.594706660314081, 49.047929008246655] - ] - }, - "length": 0.06422966085250291, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch061323", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169864", - "bus2": "LVBus169865", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517], - [-1.594370365963903, 49.04739461367218], - [-1.594708194321439, 49.04724985279487], - [-1.594721011508903, 49.04724435659555], - [-1.594721011508903, 49.04724435659555] - ] - }, - "length": 0.031098546879261002, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch062605", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169864", - "bus2": "LVBus169867", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517], - [-1.593738297192804, 49.047579312052896], - [-1.593910361573165, 49.04780470655868], - [-1.593919164840746, 49.047816239160056], - [-1.593922235812207, 49.04782025881052], - [-1.593922235812207, 49.04782025881052] - ] - }, - "length": 0.08005243959261948, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch041667", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169863", - "bus2": "LVBus169868", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.593861680273659, 49.046653053701206], - [-1.593861680273659, 49.046653053701206], - [-1.593867111959461, 49.046650328790356], - [-1.594086957881231, 49.046539969692574], - [-1.59410263397379, 49.0465351712313], - [-1.594437236351119, 49.04643276765613], - [-1.594547838842712, 49.0463989244874], - [-1.594843062541497, 49.04630857619961], - [-1.594846206060687, 49.04630761801283], - [-1.594849255375854, 49.046306680920615], - [-1.594849255375854, 49.046306680920615] - ] - }, - "length": 0.08219148406259193, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus169862_production", - "bus": "LVBus169862", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus169862_consumption", - "bus": "LVBus169862", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169863_production", - "bus": "LVBus169863", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169863_consumption", - "bus": "LVBus169863", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169864_production", - "bus": "LVBus169864", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169864_consumption", - "bus": "LVBus169864", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169866_production", - "bus": "LVBus169866", - "phases": "abcn", - "powers": [ - [-105.5187637969095, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169866_consumption", - "bus": "LVBus169866", - "phases": "abcn", - "powers": [ - [3212.991140317627, 1056.0591179029145], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169865_production", - "bus": "LVBus169865", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-105.5187637969095, 0.0] - ] - }, - { - "id": "LVBus169865_consumption", - "bus": "LVBus169865", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3212.991140317627, 1056.0591179029145] - ] - }, - { - "id": "LVBus169867_production", - "bus": "LVBus169867", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-105.5187637969095, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169867_consumption", - "bus": "LVBus169867", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3212.991140317627, 1056.0591179029145], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169868_production", - "bus": "LVBus169868", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-105.5187637969095, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169868_consumption", - "bus": "LVBus169868", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3212.991140317627, 1056.0591179029145], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder36360_winter.json b/data/LVFeeder36360_winter.json deleted file mode 100644 index cd66a433..00000000 --- a/data/LVFeeder36360_winter.json +++ /dev/null @@ -1,671 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV14716", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5931237327892096, 49.0456724037415] - } - }, - { - "id": "MVLV14716", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.5931237327892096, 49.0456724037415] - } - }, - { - "id": "LVBus169862", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.593759159010116, 49.0462719064779] - } - }, - { - "id": "LVBus169863", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.593861680273659, 49.046653053701206] - } - }, - { - "id": "LVBus169864", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594364639974005, 49.04739706937517] - } - }, - { - "id": "LVBus169866", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594706660314081, 49.047929008246655] - } - }, - { - "id": "LVBus169865", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594721011508903, 49.04724435659555] - } - }, - { - "id": "LVBus169867", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.593922235812207, 49.04782025881052] - } - }, - { - "id": "LVBus169868", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.594849255375854, 49.046306680920615] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV14716", - "geometry": { - "type": "Point", - "coordinates": [-1.5931237327892096, 49.0456724037415] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch124792", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV14716", - "bus2": "LVBus169862", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5931237327892096, 49.0456724037415], - [-1.593124791365058, 49.045690894063746], - [-1.593124791365058, 49.045690894063746], - [-1.59322930794992, 49.0457081851855], - [-1.593312448490486, 49.04582098250781], - [-1.593586673694338, 49.046226792512805], - [-1.593740502268292, 49.046209513234864], - [-1.593759159010116, 49.0462719064779], - [-1.593759159010116, 49.0462719064779] - ] - }, - "length": 0.08968070135743335, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "LVBranch028144", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169862", - "bus2": "LVBus169863", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.593759159010116, 49.0462719064779], - [-1.593759159010116, 49.0462719064779], - [-1.593740055437059, 49.04645118253442], - [-1.593737972073063, 49.04647073891695], - [-1.593861680273659, 49.046653053701206], - [-1.593861680273659, 49.046653053701206] - ] - }, - "length": 0.04436724010618379, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch028145", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169863", - "bus2": "LVBus169864", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.593861680273659, 49.046653053701206], - [-1.593861680273659, 49.046653053701206], - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517] - ] - }, - "length": 0.09054384067800328, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch041668", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169864", - "bus2": "LVBus169866", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517], - [-1.594367469980203, 49.04740115992531], - [-1.594562105253604, 49.047713695035455], - [-1.594584222666464, 49.04774656255592], - [-1.594658921232359, 49.04785788231147], - [-1.594703324991698, 49.047924034619044], - [-1.594706660314081, 49.047929008246655], - [-1.594706660314081, 49.047929008246655] - ] - }, - "length": 0.06422966085250291, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch061323", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169864", - "bus2": "LVBus169865", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517], - [-1.594370365963903, 49.04739461367218], - [-1.594708194321439, 49.04724985279487], - [-1.594721011508903, 49.04724435659555], - [-1.594721011508903, 49.04724435659555] - ] - }, - "length": 0.031098546879261002, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch062605", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169864", - "bus2": "LVBus169867", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594364639974005, 49.04739706937517], - [-1.594364639974005, 49.04739706937517], - [-1.593738297192804, 49.047579312052896], - [-1.593910361573165, 49.04780470655868], - [-1.593919164840746, 49.047816239160056], - [-1.593922235812207, 49.04782025881052], - [-1.593922235812207, 49.04782025881052] - ] - }, - "length": 0.08005243959261948, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch041667", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus169863", - "bus2": "LVBus169868", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.593861680273659, 49.046653053701206], - [-1.593861680273659, 49.046653053701206], - [-1.593867111959461, 49.046650328790356], - [-1.594086957881231, 49.046539969692574], - [-1.59410263397379, 49.0465351712313], - [-1.594437236351119, 49.04643276765613], - [-1.594547838842712, 49.0463989244874], - [-1.594843062541497, 49.04630857619961], - [-1.594846206060687, 49.04630761801283], - [-1.594849255375854, 49.046306680920615], - [-1.594849255375854, 49.046306680920615] - ] - }, - "length": 0.08219148406259193, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus169862_production", - "bus": "LVBus169862", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169862_consumption", - "bus": "LVBus169862", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169863_production", - "bus": "LVBus169863", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus169863_consumption", - "bus": "LVBus169863", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169864_production", - "bus": "LVBus169864", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus169864_consumption", - "bus": "LVBus169864", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169866_production", - "bus": "LVBus169866", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus169866_consumption", - "bus": "LVBus169866", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [16064.955701588135, 5280.295589514572] - ] - }, - { - "id": "LVBus169865_production", - "bus": "LVBus169865", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169865_consumption", - "bus": "LVBus169865", - "phases": "abcn", - "powers": [ - [16064.955701588135, 5280.295589514572], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169867_production", - "bus": "LVBus169867", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169867_consumption", - "bus": "LVBus169867", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [16064.955701588135, 5280.295589514572], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169868_production", - "bus": "LVBus169868", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus169868_consumption", - "bus": "LVBus169868", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [16064.955701588135, 5280.295589514572], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder37263_summer.json b/data/LVFeeder37263_summer.json deleted file mode 100644 index ef0ec754..00000000 --- a/data/LVFeeder37263_summer.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV17131", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.186472797718411, 48.48667576673907] - } - }, - { - "id": "MVLV17131", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.186472797718411, 48.48667576673907] - } - }, - { - "id": "LVBus173891", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.185774451606739, 48.48699078306235] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV17131", - "geometry": { - "type": "Point", - "coordinates": [-1.186472797718411, 48.48667576673907] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch142132", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV17131", - "bus2": "LVBus173891", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.186472797718411, 48.48667576673907], - [-1.186470974221073, 48.48670271006807], - [-1.186470974221073, 48.48670271006807], - [-1.186470776739339, 48.486707206448116], - [-1.18646888590348, 48.48674960303377], - [-1.186418625521345, 48.48676871272873], - [-1.186406892011057, 48.48677317513547], - [-1.186125139763946, 48.48688029493635], - [-1.18608992556666, 48.48689368246748], - [-1.186088763945046, 48.48689412205574], - [-1.186053155246573, 48.48690507361564], - [-1.185780592282937, 48.48698889918556], - [-1.185774451606739, 48.48699078306235], - [-1.185774451606739, 48.48699078306235] - ] - }, - "length": 0.06318652813386802, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus173891_production", - "bus": "LVBus173891", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-669.3548387096774, 0.0] - ] - }, - { - "id": "LVBus173891_consumption", - "bus": "LVBus173891", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1401.894279340287, 460.78036676032957] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder37263_winter.json b/data/LVFeeder37263_winter.json deleted file mode 100644 index f309d7e1..00000000 --- a/data/LVFeeder37263_winter.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV17131", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.186472797718411, 48.48667576673907] - } - }, - { - "id": "MVLV17131", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.186472797718411, 48.48667576673907] - } - }, - { - "id": "LVBus173891", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.185774451606739, 48.48699078306235] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV17131", - "geometry": { - "type": "Point", - "coordinates": [-1.186472797718411, 48.48667576673907] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch142132", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV17131", - "bus2": "LVBus173891", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.186472797718411, 48.48667576673907], - [-1.186470974221073, 48.48670271006807], - [-1.186470974221073, 48.48670271006807], - [-1.186470776739339, 48.486707206448116], - [-1.18646888590348, 48.48674960303377], - [-1.186418625521345, 48.48676871272873], - [-1.186406892011057, 48.48677317513547], - [-1.186125139763946, 48.48688029493635], - [-1.18608992556666, 48.48689368246748], - [-1.186088763945046, 48.48689412205574], - [-1.186053155246573, 48.48690507361564], - [-1.185780592282937, 48.48698889918556], - [-1.185774451606739, 48.48699078306235], - [-1.185774451606739, 48.48699078306235] - ] - }, - "length": 0.06318652813386802, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus173891_production", - "bus": "LVBus173891", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus173891_consumption", - "bus": "LVBus173891", - "phases": "abcn", - "powers": [ - [7009.471396701436, 2303.9018338016476], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.32828402771266313 - ] - ] - ], - "y_shunt": [ - [ - [ - 4.063682544124005e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 4.063682544124003e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 4.063682544124003e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4.0636825441240034e-05 - ] - ], - [ - [ - 0.0009990656421805131, - -0.000185181796574586, - 4.8578374989324777e-05, - -0.00018518179657458464 - ], - [ - -0.00018518179657458608, - 0.0009990656421805131, - -0.00018518179657458462, - 4.857837498932483e-05 - ], - [ - 4.85783749893248e-05, - -0.00018518179657458453, - 0.000999065642180513, - -0.00018518179657458602 - ], - [ - -0.00018518179657458456, - 4.85783749893247e-05, - -0.00018518179657458597, - 0.0009990656421805131 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder38211_summer.json b/data/LVFeeder38211_summer.json deleted file mode 100644 index 4c1d62a8..00000000 --- a/data/LVFeeder38211_summer.json +++ /dev/null @@ -1,401 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV09219", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737488811262479, 48.784238047637125] - } - }, - { - "id": "MVLV09219", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737488811262479, 48.784238047637125] - } - }, - { - "id": "LVBus178129", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737233734966708, 48.78398320956787] - } - }, - { - "id": "LVBus178132", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.736454496741027, 48.78358301932807] - } - }, - { - "id": "LVBus178130", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.738168776655936, 48.78262866378785] - } - }, - { - "id": "LVBus178131", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737186105479101, 48.78490970733192] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV09219", - "geometry": { - "type": "Point", - "coordinates": [-0.737488811262479, 48.784238047637125] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch015048", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV09219", - "bus2": "LVBus178129", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737488811262479, 48.784238047637125], - [-0.73745795989156, 48.784224588637635], - [-0.73745795989156, 48.784224588637635], - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787] - ] - }, - "length": 0.03149676075784545, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch070466", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus178129", - "bus2": "LVBus178132", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787], - [-0.737228372079206, 48.78398045190666], - [-0.736600115266889, 48.783657806594384], - [-0.736454496741027, 48.78358301932807], - [-0.736454496741027, 48.78358301932807] - ] - }, - "length": 0.07252441840882509, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch034894", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus178129", - "bus2": "LVBus178130", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787], - [-0.737233224413346, 48.78397872537546], - [-0.737188638248994, 48.78358391863414], - [-0.737615349140957, 48.78303960187657], - [-0.738164252336486, 48.78263201893271], - [-0.738168776655936, 48.78262866378785], - [-0.738168776655936, 48.78262866378785] - ] - }, - "length": 0.17387433044121148, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch004825", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus178129", - "bus2": "LVBus178131", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787], - [-0.736661745472538, 48.78453504866663], - [-0.737181486333263, 48.784906408741946], - [-0.737184271943447, 48.784908396525594], - [-0.737186105479101, 48.78490970733192], - [-0.737186105479101, 48.78490970733192] - ] - }, - "length": 0.13113446014467442, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus178129_production", - "bus": "LVBus178129", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus178129_consumption", - "bus": "LVBus178129", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178132_production", - "bus": "LVBus178132", - "phases": "abcn", - "powers": [ - [-1298.7012987012988, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178132_consumption", - "bus": "LVBus178132", - "phases": "abcn", - "powers": [ - [1008.2239960118372, 331.38720194900844], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178130_production", - "bus": "LVBus178130", - "phases": "abcn", - "powers": [ - [-1298.7012987012988, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178130_consumption", - "bus": "LVBus178130", - "phases": "abcn", - "powers": [ - [1008.2239960118372, 331.38720194900844], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178131_production", - "bus": "LVBus178131", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-1298.7012987012988, 0.0] - ] - }, - { - "id": "LVBus178131_consumption", - "bus": "LVBus178131", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1008.2239960118372, 331.38720194900844] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/LVFeeder38211_winter.json b/data/LVFeeder38211_winter.json deleted file mode 100644 index 5ee9bfa2..00000000 --- a/data/LVFeeder38211_winter.json +++ /dev/null @@ -1,401 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - }, - { - "id": "MVLV09219", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737488811262479, 48.784238047637125] - } - }, - { - "id": "MVLV09219", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737488811262479, 48.784238047637125] - } - }, - { - "id": "LVBus178129", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737233734966708, 48.78398320956787] - } - }, - { - "id": "LVBus178132", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.736454496741027, 48.78358301932807] - } - }, - { - "id": "LVBus178130", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.738168776655936, 48.78262866378785] - } - }, - { - "id": "LVBus178131", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.737186105479101, 48.78490970733192] - } - } - ], - "branches": [ - { - "id": "Transformer", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": "VoltageSource", - "bus2": "MVLV09219", - "geometry": { - "type": "Point", - "coordinates": [-0.737488811262479, 48.784238047637125] - }, - "params_id": "Dyn11_160kVA", - "tap": 1.0 - }, - { - "id": "LVBranch015048", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "MVLV09219", - "bus2": "LVBus178129", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737488811262479, 48.784238047637125], - [-0.73745795989156, 48.784224588637635], - [-0.73745795989156, 48.784224588637635], - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787] - ] - }, - "length": 0.03149676075784545, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch070466", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus178129", - "bus2": "LVBus178132", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787], - [-0.737228372079206, 48.78398045190666], - [-0.736600115266889, 48.783657806594384], - [-0.736454496741027, 48.78358301932807], - [-0.736454496741027, 48.78358301932807] - ] - }, - "length": 0.07252441840882509, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch034894", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus178129", - "bus2": "LVBus178130", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787], - [-0.737233224413346, 48.78397872537546], - [-0.737188638248994, 48.78358391863414], - [-0.737615349140957, 48.78303960187657], - [-0.738164252336486, 48.78263201893271], - [-0.738168776655936, 48.78262866378785], - [-0.738168776655936, 48.78262866378785] - ] - }, - "length": 0.17387433044121148, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "LVBranch004825", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "LVBus178129", - "bus2": "LVBus178131", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.737233734966708, 48.78398320956787], - [-0.737233734966708, 48.78398320956787], - [-0.736661745472538, 48.78453504866663], - [-0.737181486333263, 48.784906408741946], - [-0.737184271943447, 48.784908396525594], - [-0.737186105479101, 48.78490970733192], - [-0.737186105479101, 48.78490970733192] - ] - }, - "length": 0.13113446014467442, - "params_id": "T_AL_70", - "ground": "ground" - } - ], - "loads": [ - { - "id": "LVBus178129_production", - "bus": "LVBus178129", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus178129_consumption", - "bus": "LVBus178129", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178132_production", - "bus": "LVBus178132", - "phases": "abcn", - "powers": [ - [-0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178132_consumption", - "bus": "LVBus178132", - "phases": "abcn", - "powers": [ - [5041.119980059186, 1656.9360097450422], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178130_production", - "bus": "LVBus178130", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [-0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178130_consumption", - "bus": "LVBus178130", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [5041.119980059186, 1656.9360097450422], - [0.0, 0.0] - ] - }, - { - "id": "LVBus178131_production", - "bus": "LVBus178131", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [-0.0, 0.0] - ] - }, - { - "id": "LVBus178131_consumption", - "bus": "LVBus178131", - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [5041.119980059186, 1656.9360097450422] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.40285714285714286, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.40285714285714286, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.40285714285714286, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.35222736359783396, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.35222736359783396, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.35222736359783396, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.428953946773096e-06, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.4289539467730959e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.4290006903500336e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 3.3346520826732896e-06 - ] - ], - [ - [ - 3.526313133382993e-05, - -1.0568582137142852e-06, - -1.056326491108107e-06, - -9.334047516122599e-06 - ], - [ - -1.0568582137142816e-06, - 3.526313133382992e-05, - -1.056326491108114e-06, - -9.334047516122592e-06 - ], - [ - -1.0563264911081043e-06, - -1.0563264911081034e-06, - 3.526362521753491e-05, - -9.334294062818139e-06 - ], - [ - -9.334047516122607e-06, - -9.334047516122602e-06, - -9.334294062818125e-06, - 8.357992380628483e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "Dyn11_160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "Dyn11" - } - ] -} diff --git a/data/MVFeeder004_summer.json b/data/MVFeeder004_summer.json deleted file mode 100644 index 0a5e59c9..00000000 --- a/data/MVFeeder004_summer.json +++ /dev/null @@ -1,729 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "HVMV01", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBus00016", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617660253013841, 49.634080010906125] - } - }, - { - "id": "MVBus00017", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617217939712126, 49.63421062905867] - } - }, - { - "id": "MVBus00018", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.614801653845744, 49.63399813380452] - } - }, - { - "id": "MVBus00019", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.612529753809362, 49.634610259256284] - } - }, - { - "id": "MVLV07316", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.611308553027253, 49.63485085190276] - } - }, - { - "id": "MVLV10636", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6091089060821284, 49.63366901670905] - } - }, - { - "id": "MVBus06172", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.608692850402576, 49.632993691313935] - } - }, - { - "id": "MVBus06173", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607244051623987, 49.63403704941576] - } - }, - { - "id": "MVLV10651", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607170711891764, 49.63407487083771] - } - }, - { - "id": "MVBus06419", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607163426438677, 49.63400527546459] - } - }, - { - "id": "MVBus06420", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.604779537742919, 49.63399184277234] - } - }, - { - "id": "MVLV06791", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6044180896166784, 49.63411509195923] - } - }, - { - "id": "MVBus06622", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.604343039067938, 49.634071049044955] - } - }, - { - "id": "MVBus06623", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599941881499135, 49.634321490796964] - } - }, - { - "id": "MVLV00510", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599577737107229, 49.634401183142394] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV01", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBranch35563", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV01", - "bus2": "MVBus00016", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.624837162156209, 49.633717544204686], - [-1.624839461825155, 49.63373093025665], - [-1.624839461825155, 49.63373093025665], - [-1.624841761495308, 49.63374431630837], - [-1.62494196512127, 49.634328667586985], - [-1.624674088750918, 49.63427553315492], - [-1.62445716908385, 49.63474262953529], - [-1.623046084019437, 49.63462606572698], - [-1.622923599098108, 49.63509938175197], - [-1.621813615366869, 49.63498602572601], - [-1.621895230993093, 49.63428178891279], - [-1.619922868554035, 49.63403039165363], - [-1.618399159028619, 49.634012166216706], - [-1.617906669163438, 49.63409380224441], - [-1.617660253013841, 49.634080010906125], - [-1.617660253013841, 49.634080010906125] - ] - }, - "length": 0.7671110958135496, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47504", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00016", - "bus2": "MVBus00017", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617660253013841, 49.634080010906125], - [-1.617660253013841, 49.634080010906125], - [-1.617456832215165, 49.63406862560632], - [-1.617432072875792, 49.63417392480657], - [-1.617217550726612, 49.634212754947846], - [-1.617217939712126, 49.63421062905867], - [-1.617217939712126, 49.63421062905867] - ] - }, - "length": 0.04292200346911987, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00017", - "bus2": "MVBus00018", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617217939712126, 49.63421062905867], - [-1.617217939712126, 49.63421062905867], - [-1.617318355333896, 49.63365915313354], - [-1.616197122281556, 49.633594744609034], - [-1.61545963687917, 49.633715349729336], - [-1.61493159800062, 49.63397467043045], - [-1.614801653845744, 49.63399813380452], - [-1.614801653845744, 49.63399813380452] - ] - }, - "length": 0.25557935300814777, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00018", - "bus2": "MVBus00019", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.614801653845744, 49.63399813380452], - [-1.614801653845744, 49.63399813380452], - [-1.614685635897059, 49.63401907369233], - [-1.61439242908746, 49.63382197045764], - [-1.613884242543181, 49.63384649898407], - [-1.613369568146663, 49.633893088338525], - [-1.613607518101238, 49.63404320775328], - [-1.613915297217525, 49.63460754500526], - [-1.613485068641775, 49.634572603742164], - [-1.612529753809362, 49.634610259256284], - [-1.612529753809362, 49.634610259256284] - ] - }, - "length": 0.3045413703072708, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45584", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00019", - "bus2": "MVLV07316", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.612529753809362, 49.634610259256284], - [-1.612529753809362, 49.634610259256284], - [-1.611275645260447, 49.634711554264335], - [-1.611308635726308, 49.63483671801564], - [-1.61131212783002, 49.63484999331885], - [-1.611308553027253, 49.63485085190276] - ] - }, - "length": 0.10691300055589305, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39547", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07316", - "bus2": "MVLV10636", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.611308553027253, 49.63485085190276], - [-1.611304978224486, 49.63485171048667], - [-1.611294322708032, 49.63484015280147], - [-1.611178874638999, 49.63471485799629], - [-1.610917925436074, 49.63471114006497], - [-1.608900678111518, 49.63431520425145], - [-1.609114749402332, 49.633875713176295], - [-1.609112282167604, 49.63369565371533], - [-1.609112098156173, 49.63368218046848], - [-1.6091089060821284, 49.63366901670905] - ] - }, - "length": 0.2616184568617092, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47764", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10636", - "bus2": "MVBus06172", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6091089060821284, 49.63366901670905], - [-1.609105714008084, 49.633655852949616], - [-1.609099513874453, 49.633642998677246], - [-1.608795810665025, 49.63301335129265], - [-1.608692850402576, 49.632993691313935], - [-1.608692850402576, 49.632993691313935] - ] - }, - "length": 0.08263763272611883, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42323", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06172", - "bus2": "MVBus06173", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.608692850402576, 49.632993691313935], - [-1.608692850402576, 49.632993691313935], - [-1.608658413615531, 49.63303496511739], - [-1.608868696352634, 49.63354102490036], - [-1.608863547922095, 49.63371768208097], - [-1.608989598691497, 49.63387096724482], - [-1.60878716840876, 49.63428305675757], - [-1.607321693747171, 49.63400697371016], - [-1.607246366416668, 49.6340356520601], - [-1.607244051623987, 49.63403704941576], - [-1.607244051623987, 49.63403704941576] - ] - }, - "length": 0.2673721926264447, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36005", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06173", - "bus2": "MVLV10651", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607244051623987, 49.63403704941576], - [-1.607244051623987, 49.63403704941576], - [-1.607193418244601, 49.63406780867682], - [-1.607178263355795, 49.63407700742898], - [-1.607170711891764, 49.63407487083771] - ] - }, - "length": 0.006506668513477937, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40374", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10651", - "bus2": "MVBus06419", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607170711891764, 49.63407487083771], - [-1.607163160427733, 49.634072734246445], - [-1.60716321239391, 49.6340592623135], - [-1.607163426438677, 49.63400527546459], - [-1.607163426438677, 49.63400527546459] - ] - }, - "length": 0.007502925468738296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46030", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06419", - "bus2": "MVBus06420", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607163426438677, 49.63400527546459], - [-1.607163426438677, 49.63400527546459], - [-1.607163430921037, 49.63400425920557], - [-1.607171599667159, 49.633986359137964], - [-1.606390556293096, 49.63383575901765], - [-1.605898905024838, 49.63380717351391], - [-1.605452767789487, 49.6338189604294], - [-1.605189448184072, 49.63385328139816], - [-1.604767867386093, 49.633908371565255], - [-1.604779537742919, 49.63399184277234], - [-1.604779537742919, 49.63399184277234] - ] - }, - "length": 0.1887462209863619, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45446", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06420", - "bus2": "MVLV06791", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.604779537742919, 49.63399184277234], - [-1.604779537742919, 49.63399184277234], - [-1.604695716894153, 49.633950046263614], - [-1.604382342344694, 49.63401225421278], - [-1.604439018653925, 49.63409031082009], - [-1.604442426308327, 49.634094992546274], - [-1.604436402661865, 49.634108056641445], - [-1.6044180896166784, 49.63411509195923] - ] - }, - "length": 0.042996571688172475, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33656", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06791", - "bus2": "MVBus06622", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6044180896166784, 49.63411509195923], - [-1.604399776571492, 49.63412212727701], - [-1.604376055549936, 49.63411292823279], - [-1.604372218349542, 49.63410806267988], - [-1.604343039067938, 49.634071049044955], - [-1.604343039067938, 49.634071049044955] - ] - }, - "length": 0.0072287890020037385, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39558", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06622", - "bus2": "MVBus06623", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.604343039067938, 49.634071049044955], - [-1.604343039067938, 49.634071049044955], - [-1.604250170715592, 49.633931155246486], - [-1.603683213863427, 49.634047657515055], - [-1.602974927160749, 49.63427547187023], - [-1.601147061764153, 49.63512816777633], - [-1.599941881499135, 49.634321490796964], - [-1.599941881499135, 49.634321490796964] - ] - }, - "length": 0.4045828520484129, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46578", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06623", - "bus2": "MVLV00510", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.599941881499135, 49.634321490796964], - [-1.599941881499135, 49.634321490796964], - [-1.599930815205685, 49.63431408193551], - [-1.599597124422722, 49.634396397601726], - [-1.599577737107229, 49.634401183142394], - [-1.599577737107229, 49.634401183142394] - ] - }, - "length": 0.028431552474934698, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV07316_production", - "bus": "MVLV07316", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV07316_consumption", - "bus": "MVLV07316", - "phases": "abc", - "powers": [ - [14603.685266600072, 4799.999224166193], - [14603.685266600072, 4799.999224166193], - [14603.685266600072, 4799.999224166193] - ] - }, - { - "id": "MVLV10636_production", - "bus": "MVLV10636", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV10636_consumption", - "bus": "MVLV10636", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV10651_production", - "bus": "MVLV10651", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV10651_consumption", - "bus": "MVLV10651", - "phases": "abc", - "powers": [ - [14603.685266600072, 4799.999224166193], - [14603.685266600072, 4799.999224166193], - [14603.685266600072, 4799.999224166193] - ] - }, - { - "id": "MVLV06791_production", - "bus": "MVLV06791", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV06791_consumption", - "bus": "MVLV06791", - "phases": "abc", - "powers": [ - [14603.685266600072, 4799.999224166193], - [14603.685266600072, 4799.999224166193], - [14603.685266600072, 4799.999224166193] - ] - }, - { - "id": "MVLV00510_production", - "bus": "MVLV00510", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV00510_consumption", - "bus": "MVLV00510", - "phases": "abc", - "powers": [ - [6113.98161471995, 2009.5685761142483], - [6113.98161471995, 2009.5685761142483], - [6113.98161471995, 2009.5685761142483] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder004_winter.json b/data/MVFeeder004_winter.json deleted file mode 100644 index 4f3970a2..00000000 --- a/data/MVFeeder004_winter.json +++ /dev/null @@ -1,729 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "HVMV01", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBus00016", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617660253013841, 49.634080010906125] - } - }, - { - "id": "MVBus00017", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617217939712126, 49.63421062905867] - } - }, - { - "id": "MVBus00018", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.614801653845744, 49.63399813380452] - } - }, - { - "id": "MVBus00019", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.612529753809362, 49.634610259256284] - } - }, - { - "id": "MVLV07316", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.611308553027253, 49.63485085190276] - } - }, - { - "id": "MVLV10636", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6091089060821284, 49.63366901670905] - } - }, - { - "id": "MVBus06172", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.608692850402576, 49.632993691313935] - } - }, - { - "id": "MVBus06173", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607244051623987, 49.63403704941576] - } - }, - { - "id": "MVLV10651", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607170711891764, 49.63407487083771] - } - }, - { - "id": "MVBus06419", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607163426438677, 49.63400527546459] - } - }, - { - "id": "MVBus06420", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.604779537742919, 49.63399184277234] - } - }, - { - "id": "MVLV06791", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6044180896166784, 49.63411509195923] - } - }, - { - "id": "MVBus06622", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.604343039067938, 49.634071049044955] - } - }, - { - "id": "MVBus06623", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599941881499135, 49.634321490796964] - } - }, - { - "id": "MVLV00510", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599577737107229, 49.634401183142394] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV01", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBranch35563", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV01", - "bus2": "MVBus00016", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.624837162156209, 49.633717544204686], - [-1.624839461825155, 49.63373093025665], - [-1.624839461825155, 49.63373093025665], - [-1.624841761495308, 49.63374431630837], - [-1.62494196512127, 49.634328667586985], - [-1.624674088750918, 49.63427553315492], - [-1.62445716908385, 49.63474262953529], - [-1.623046084019437, 49.63462606572698], - [-1.622923599098108, 49.63509938175197], - [-1.621813615366869, 49.63498602572601], - [-1.621895230993093, 49.63428178891279], - [-1.619922868554035, 49.63403039165363], - [-1.618399159028619, 49.634012166216706], - [-1.617906669163438, 49.63409380224441], - [-1.617660253013841, 49.634080010906125], - [-1.617660253013841, 49.634080010906125] - ] - }, - "length": 0.7671110958135496, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47504", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00016", - "bus2": "MVBus00017", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617660253013841, 49.634080010906125], - [-1.617660253013841, 49.634080010906125], - [-1.617456832215165, 49.63406862560632], - [-1.617432072875792, 49.63417392480657], - [-1.617217550726612, 49.634212754947846], - [-1.617217939712126, 49.63421062905867], - [-1.617217939712126, 49.63421062905867] - ] - }, - "length": 0.04292200346911987, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00017", - "bus2": "MVBus00018", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617217939712126, 49.63421062905867], - [-1.617217939712126, 49.63421062905867], - [-1.617318355333896, 49.63365915313354], - [-1.616197122281556, 49.633594744609034], - [-1.61545963687917, 49.633715349729336], - [-1.61493159800062, 49.63397467043045], - [-1.614801653845744, 49.63399813380452], - [-1.614801653845744, 49.63399813380452] - ] - }, - "length": 0.25557935300814777, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00018", - "bus2": "MVBus00019", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.614801653845744, 49.63399813380452], - [-1.614801653845744, 49.63399813380452], - [-1.614685635897059, 49.63401907369233], - [-1.61439242908746, 49.63382197045764], - [-1.613884242543181, 49.63384649898407], - [-1.613369568146663, 49.633893088338525], - [-1.613607518101238, 49.63404320775328], - [-1.613915297217525, 49.63460754500526], - [-1.613485068641775, 49.634572603742164], - [-1.612529753809362, 49.634610259256284], - [-1.612529753809362, 49.634610259256284] - ] - }, - "length": 0.3045413703072708, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45584", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00019", - "bus2": "MVLV07316", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.612529753809362, 49.634610259256284], - [-1.612529753809362, 49.634610259256284], - [-1.611275645260447, 49.634711554264335], - [-1.611308635726308, 49.63483671801564], - [-1.61131212783002, 49.63484999331885], - [-1.611308553027253, 49.63485085190276] - ] - }, - "length": 0.10691300055589305, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39547", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07316", - "bus2": "MVLV10636", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.611308553027253, 49.63485085190276], - [-1.611304978224486, 49.63485171048667], - [-1.611294322708032, 49.63484015280147], - [-1.611178874638999, 49.63471485799629], - [-1.610917925436074, 49.63471114006497], - [-1.608900678111518, 49.63431520425145], - [-1.609114749402332, 49.633875713176295], - [-1.609112282167604, 49.63369565371533], - [-1.609112098156173, 49.63368218046848], - [-1.6091089060821284, 49.63366901670905] - ] - }, - "length": 0.2616184568617092, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47764", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10636", - "bus2": "MVBus06172", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6091089060821284, 49.63366901670905], - [-1.609105714008084, 49.633655852949616], - [-1.609099513874453, 49.633642998677246], - [-1.608795810665025, 49.63301335129265], - [-1.608692850402576, 49.632993691313935], - [-1.608692850402576, 49.632993691313935] - ] - }, - "length": 0.08263763272611883, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42323", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06172", - "bus2": "MVBus06173", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.608692850402576, 49.632993691313935], - [-1.608692850402576, 49.632993691313935], - [-1.608658413615531, 49.63303496511739], - [-1.608868696352634, 49.63354102490036], - [-1.608863547922095, 49.63371768208097], - [-1.608989598691497, 49.63387096724482], - [-1.60878716840876, 49.63428305675757], - [-1.607321693747171, 49.63400697371016], - [-1.607246366416668, 49.6340356520601], - [-1.607244051623987, 49.63403704941576], - [-1.607244051623987, 49.63403704941576] - ] - }, - "length": 0.2673721926264447, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36005", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06173", - "bus2": "MVLV10651", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607244051623987, 49.63403704941576], - [-1.607244051623987, 49.63403704941576], - [-1.607193418244601, 49.63406780867682], - [-1.607178263355795, 49.63407700742898], - [-1.607170711891764, 49.63407487083771] - ] - }, - "length": 0.006506668513477937, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40374", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10651", - "bus2": "MVBus06419", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607170711891764, 49.63407487083771], - [-1.607163160427733, 49.634072734246445], - [-1.60716321239391, 49.6340592623135], - [-1.607163426438677, 49.63400527546459], - [-1.607163426438677, 49.63400527546459] - ] - }, - "length": 0.007502925468738296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46030", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06419", - "bus2": "MVBus06420", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607163426438677, 49.63400527546459], - [-1.607163426438677, 49.63400527546459], - [-1.607163430921037, 49.63400425920557], - [-1.607171599667159, 49.633986359137964], - [-1.606390556293096, 49.63383575901765], - [-1.605898905024838, 49.63380717351391], - [-1.605452767789487, 49.6338189604294], - [-1.605189448184072, 49.63385328139816], - [-1.604767867386093, 49.633908371565255], - [-1.604779537742919, 49.63399184277234], - [-1.604779537742919, 49.63399184277234] - ] - }, - "length": 0.1887462209863619, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45446", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06420", - "bus2": "MVLV06791", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.604779537742919, 49.63399184277234], - [-1.604779537742919, 49.63399184277234], - [-1.604695716894153, 49.633950046263614], - [-1.604382342344694, 49.63401225421278], - [-1.604439018653925, 49.63409031082009], - [-1.604442426308327, 49.634094992546274], - [-1.604436402661865, 49.634108056641445], - [-1.6044180896166784, 49.63411509195923] - ] - }, - "length": 0.042996571688172475, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33656", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06791", - "bus2": "MVBus06622", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6044180896166784, 49.63411509195923], - [-1.604399776571492, 49.63412212727701], - [-1.604376055549936, 49.63411292823279], - [-1.604372218349542, 49.63410806267988], - [-1.604343039067938, 49.634071049044955], - [-1.604343039067938, 49.634071049044955] - ] - }, - "length": 0.0072287890020037385, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39558", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06622", - "bus2": "MVBus06623", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.604343039067938, 49.634071049044955], - [-1.604343039067938, 49.634071049044955], - [-1.604250170715592, 49.633931155246486], - [-1.603683213863427, 49.634047657515055], - [-1.602974927160749, 49.63427547187023], - [-1.601147061764153, 49.63512816777633], - [-1.599941881499135, 49.634321490796964], - [-1.599941881499135, 49.634321490796964] - ] - }, - "length": 0.4045828520484129, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46578", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06623", - "bus2": "MVLV00510", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.599941881499135, 49.634321490796964], - [-1.599941881499135, 49.634321490796964], - [-1.599930815205685, 49.63431408193551], - [-1.599597124422722, 49.634396397601726], - [-1.599577737107229, 49.634401183142394], - [-1.599577737107229, 49.634401183142394] - ] - }, - "length": 0.028431552474934698, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV07316_production", - "bus": "MVLV07316", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07316_consumption", - "bus": "MVLV07316", - "phases": "abc", - "powers": [ - [73018.42633300036, 23999.996120830965], - [73018.42633300036, 23999.996120830965], - [73018.42633300036, 23999.996120830965] - ] - }, - { - "id": "MVLV10636_production", - "bus": "MVLV10636", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10636_consumption", - "bus": "MVLV10636", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV10651_production", - "bus": "MVLV10651", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10651_consumption", - "bus": "MVLV10651", - "phases": "abc", - "powers": [ - [73018.42633300036, 23999.996120830965], - [73018.42633300036, 23999.996120830965], - [73018.42633300036, 23999.996120830965] - ] - }, - { - "id": "MVLV06791_production", - "bus": "MVLV06791", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06791_consumption", - "bus": "MVLV06791", - "phases": "abc", - "powers": [ - [73018.42633300036, 23999.996120830965], - [73018.42633300036, 23999.996120830965], - [73018.42633300036, 23999.996120830965] - ] - }, - { - "id": "MVLV00510_production", - "bus": "MVLV00510", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00510_consumption", - "bus": "MVLV00510", - "phases": "abc", - "powers": [ - [30569.908073599752, 10047.842880571241], - [30569.908073599752, 10047.842880571241], - [30569.908073599752, 10047.842880571241] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder011_summer.json b/data/MVFeeder011_summer.json deleted file mode 100644 index 125ab6f1..00000000 --- a/data/MVFeeder011_summer.json +++ /dev/null @@ -1,2655 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "HVMV01", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBus00044", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.629037146508968, 49.631786313338594] - } - }, - { - "id": "MVLV02718", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.629721806268463, 49.63252940750905] - } - }, - { - "id": "MVBus04664", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.629054408189043, 49.63178058553094] - } - }, - { - "id": "MVLV15555", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6314148687770316, 49.63085635792388] - } - }, - { - "id": "MVLV07323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6316298971813121, 49.63271781685638] - } - }, - { - "id": "MVLV05293", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6353965365500425, 49.63201285071942] - } - }, - { - "id": "MVLV14999", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.635841049476694, 49.634773127302665] - } - }, - { - "id": "MVLV08398", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6390459138036424, 49.63402854933457] - } - }, - { - "id": "MVLV12652", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.638968848385021, 49.637357094424615] - } - }, - { - "id": "MVLV05297", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.639959248554075, 49.63879602948194] - } - }, - { - "id": "MVLV09570", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.63946043427207, 49.64121448711107] - } - }, - { - "id": "MVLV12653", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6443562607887543, 49.6389795586048] - } - }, - { - "id": "MVLV11399", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6460659248127212, 49.639737506922216] - } - }, - { - "id": "MVLV04231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.646312245039197, 49.64113108389712] - } - }, - { - "id": "MVLV11405", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.647550106185192, 49.64151825643697] - } - }, - { - "id": "MVBus12237", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.650496238664297, 49.63974470580285] - } - }, - { - "id": "MVLV18350", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.651074590691024, 49.63901863203041] - } - }, - { - "id": "MVBus14816", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.650618491574853, 49.63968679231682] - } - }, - { - "id": "MVLV03811", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6541252575873528, 49.638747481781465] - } - }, - { - "id": "MVBus16883", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.651432398001215, 49.63931205401539] - } - }, - { - "id": "MVLV13412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.65221236758308, 49.63967359517768] - } - }, - { - "id": "MVLV18345", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.649879448220405, 49.64153273332219] - } - }, - { - "id": "MVLV13415", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6508752731227425, 49.643005599995846] - } - }, - { - "id": "MVLV09698", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6529876825128729, 49.64213837494104] - } - }, - { - "id": "MVLV10769", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6541095942725872, 49.641301353664915] - } - }, - { - "id": "MVBus20991", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.655216166305802, 49.64128414309542] - } - }, - { - "id": "MVBus20992", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.65745195708432, 49.64188286054988] - } - }, - { - "id": "MVLV07448", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6597185284257365, 49.64053361589109] - } - }, - { - "id": "MVBus22688", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.659992378774546, 49.640794687101014] - } - }, - { - "id": "MVLV03816", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.662536295709962, 49.64016837911976] - } - }, - { - "id": "MVBus23620", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.659996802038395, 49.64083115791717] - } - }, - { - "id": "MVLV07432", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6575239274670255, 49.64192659162776] - } - }, - { - "id": "MVBus24548", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.656148855867594, 49.643410380628715] - } - }, - { - "id": "MVLV07449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6567571961044585, 49.643587777587335] - } - }, - { - "id": "MVLV09703", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.658996118190359, 49.643065130887315] - } - }, - { - "id": "MVLV18342", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6600719941933777, 49.64495201682858] - } - }, - { - "id": "MVBus27018", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.657634719606587, 49.644704226437895] - } - }, - { - "id": "MVLV09708", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.657412445196616, 49.644739889471886] - } - }, - { - "id": "MVLV09694", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6603547873034665, 49.64635177979386] - } - }, - { - "id": "MVLV07442", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6629655446157925, 49.64432178319872] - } - }, - { - "id": "MVBus30879", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.663253723380739, 49.643542139341996] - } - }, - { - "id": "MVLV18352", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.662616546426261, 49.642884936673234] - } - }, - { - "id": "MVBus31654", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.663289227604252, 49.64353346527948] - } - }, - { - "id": "MVLV10771", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6647535760701795, 49.643609126740216] - } - }, - { - "id": "MVLV07445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6655735383084749, 49.643426206784554] - } - }, - { - "id": "MVLV18348", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6663493738929815, 49.64417292395164] - } - }, - { - "id": "MVBus33535", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.668306361702929, 49.64380428993486] - } - }, - { - "id": "MVLV15132", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.667628303059409, 49.64179582568794] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV01", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBranch35532", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV01", - "bus2": "MVBus00044", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.624837162156209, 49.633717544204686], - [-1.624857219640409, 49.6337141083832], - [-1.624857219640409, 49.6337141083832], - [-1.624877277121907, 49.63371067255838], - [-1.626841753354714, 49.633374369702], - [-1.626970821395788, 49.632863001185015], - [-1.627065085349288, 49.63221326701406], - [-1.628389424343872, 49.63197887072164], - [-1.629037146508968, 49.631786313338594], - [-1.629037146508968, 49.631786313338594] - ] - }, - "length": 0.4290980676603243, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37188", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00044", - "bus2": "MVLV02718", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.629037146508968, 49.631786313338594], - [-1.629037146508968, 49.631786313338594], - [-1.629087268966014, 49.63183962110722], - [-1.629124914790215, 49.63188167512199], - [-1.629237382699548, 49.632007312962884], - [-1.629285671175313, 49.63205999739848], - [-1.629406587306548, 49.63216625831035], - [-1.629493192893915, 49.63224237849463], - [-1.62950876337733, 49.632253890385876], - [-1.629564221460388, 49.63228429039874], - [-1.629665246248013, 49.63253424404885], - [-1.629692017284508, 49.632533473668154], - [-1.629721178745731, 49.632532642841646], - [-1.629721806268463, 49.63252940750905] - ] - }, - "length": 0.10029828063164829, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35531", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02718", - "bus2": "MVBus04664", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.629721806268463, 49.63252940750905], - [-1.629722433791195, 49.63252617217645], - [-1.629693429524349, 49.63252581985572], - [-1.629671533905962, 49.6325255490427], - [-1.629578464447906, 49.63227944388576], - [-1.629504495049261, 49.63223834785071], - [-1.629287186398984, 49.63205064066636], - [-1.629140324102071, 49.63187883164821], - [-1.629054408189043, 49.63178058553094], - [-1.629054408189043, 49.63178058553094] - ] - }, - "length": 0.09943991949583805, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41689", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04664", - "bus2": "MVLV15555", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.629054408189043, 49.63178058553094], - [-1.629054408189043, 49.63178058553094], - [-1.629870759692084, 49.63150946533126], - [-1.63027631851721, 49.631450567390445], - [-1.630600109782255, 49.631443080677386], - [-1.631074676946586, 49.63151688103458], - [-1.631554981820415, 49.63162739569132], - [-1.631587939581892, 49.63152091498697], - [-1.63153580027118, 49.63123726426095], - [-1.631446068432871, 49.63113948661905], - [-1.63118012390842, 49.631090961348335], - [-1.631101680168486, 49.63102971744659], - [-1.631087767063798, 49.63096085231079], - [-1.631395105697174, 49.63086115655988], - [-1.631413659111113, 49.63085513420778], - [-1.6314148687770316, 49.63085635792388] - ] - }, - "length": 0.31109997665373856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44818", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15555", - "bus2": "MVLV07323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6314148687770316, 49.63085635792388], - [-1.63141607844295, 49.63085758163999], - [-1.631399944359874, 49.630866051425], - [-1.631195535837741, 49.630973375553545], - [-1.631224203720729, 49.63103632505266], - [-1.631498892849788, 49.631089949591676], - [-1.631567725847643, 49.6311353135501], - [-1.631630454198624, 49.63120790875985], - [-1.631686602970617, 49.6315409485384], - [-1.631665012619333, 49.63165064407811], - [-1.631963485824913, 49.63170705689989], - [-1.632002849551236, 49.63174802858317], - [-1.631537724766073, 49.632524828008705], - [-1.631616810933443, 49.63270603484414], - [-1.63162365659792, 49.63271875007037], - [-1.6316298971813121, 49.63271781685638] - ] - }, - "length": 0.2573909011875716, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36001", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07323", - "bus2": "MVLV05293", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6316298971813121, 49.63271781685638], - [-1.631636137764704, 49.63271688364239], - [-1.63163327830876, 49.63270166360753], - [-1.63163071600396, 49.63256037071055], - [-1.632093659469166, 49.63175662062328], - [-1.632171230775994, 49.631738661263284], - [-1.633199876177523, 49.63180697770677], - [-1.633823682906284, 49.631874751766034], - [-1.634897520452441, 49.63193610238032], - [-1.635384301904561, 49.631938328580226], - [-1.63540089567572, 49.63199300530112], - [-1.635404901302026, 49.63200621831591], - [-1.6353965365500425, 49.63201285071942] - ] - }, - "length": 0.3599441207244474, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36772", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05293", - "bus2": "MVLV14999", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6353965365500425, 49.63201285071942], - [-1.635388171798059, 49.632019483122924], - [-1.635367436665667, 49.632019534911876], - [-1.634926574478434, 49.632020655980526], - [-1.635143157896667, 49.63362863380854], - [-1.635298149022477, 49.63365934035967], - [-1.635340459302301, 49.63383888469], - [-1.635484774546945, 49.6339086716564], - [-1.636117163345289, 49.63385998098007], - [-1.636123211021794, 49.633900292647155], - [-1.635593609901471, 49.63448032507528], - [-1.635520649788752, 49.63462329891644], - [-1.63550721492175, 49.634748022982], - [-1.635820045418208, 49.63476911894884], - [-1.635840672493716, 49.63477050943911], - [-1.635841049476694, 49.634773127302665] - ] - }, - "length": 0.4381640551856535, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47618", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14999", - "bus2": "MVLV08398", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.635841049476694, 49.634773127302665], - [-1.635841426459672, 49.63477574516622], - [-1.635821553346, 49.634779590403326], - [-1.635550093268688, 49.634832095102794], - [-1.635664012652769, 49.6350055816361], - [-1.636591689691463, 49.63577518043326], - [-1.636679071056393, 49.635758676503016], - [-1.63708686538294, 49.6360337385233], - [-1.637361074302147, 49.6360981750974], - [-1.637589349554886, 49.63580219858483], - [-1.638039340086554, 49.63499347476092], - [-1.638289201666341, 49.634656240245576], - [-1.638634159332553, 49.634277930599175], - [-1.638958332950398, 49.63401918175254], - [-1.639021278278921, 49.634021913794186], - [-1.639041977160807, 49.63402280679316], - [-1.6390459138036424, 49.63402854933457] - ] - }, - "length": 0.48789488430663863, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48097", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08398", - "bus2": "MVLV12652", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6390459138036424, 49.63402854933457], - [-1.639049850446478, 49.63403429187598], - [-1.639037024145002, 49.63404487499249], - [-1.638665100343765, 49.63435160352485], - [-1.638307797931881, 49.63478256447805], - [-1.638106754627051, 49.635123526501125], - [-1.63801504687924, 49.63529146048344], - [-1.637702503657229, 49.635829835257084], - [-1.637346356100177, 49.63632648785034], - [-1.637316260918098, 49.63646799072023], - [-1.637344675655574, 49.63659578155421], - [-1.63806560372496, 49.63741387998031], - [-1.638297729308869, 49.637608521672696], - [-1.638389257041214, 49.63754055228617], - [-1.638575730788286, 49.637412593949755], - [-1.638704439188519, 49.637324437100574], - [-1.638848061837624, 49.637249278162365], - [-1.638958776005897, 49.63734467003524], - [-1.638971259222029, 49.637355428012505], - [-1.638968848385021, 49.637357094424615] - ] - }, - "length": 0.5184452215196655, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48098", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12652", - "bus2": "MVLV05297", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.638968848385021, 49.637357094424615], - [-1.638966437548013, 49.63735876083673], - [-1.638949132657638, 49.63735133568258], - [-1.638851579028358, 49.63730949186741], - [-1.63873813544902, 49.637363803543096], - [-1.638407823573902, 49.637598445767445], - [-1.638364613078203, 49.63766385553251], - [-1.638388647125302, 49.63772066103881], - [-1.638416429576165, 49.637925913978656], - [-1.638416192457304, 49.638144731209124], - [-1.638373306666615, 49.638282167480355], - [-1.638057440729805, 49.638694605385226], - [-1.637965199702405, 49.638822027792465], - [-1.637965430563779, 49.63891026145871], - [-1.638004818479327, 49.638951230424304], - [-1.638092889110663, 49.63899413302123], - [-1.63877915186501, 49.63904443623959], - [-1.63896371174802, 49.6390975373099], - [-1.639059793876908, 49.6391536732344], - [-1.639208799139909, 49.639315140023506], - [-1.639299087818756, 49.639197690359225], - [-1.639577103507555, 49.63903597601949], - [-1.639829066569106, 49.63889496374282], - [-1.6399397108025, 49.638805079838065], - [-1.639952667308894, 49.63879455537669], - [-1.639959248554075, 49.63879602948194] - ] - }, - "length": 0.3974522975554689, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46568", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05297", - "bus2": "MVLV09570", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.639959248554075, 49.63879602948194], - [-1.639965829799256, 49.638797503587185], - [-1.639966035788674, 49.63881097626038], - [-1.639967257525591, 49.63888932189757], - [-1.639645520265935, 49.639075944915106], - [-1.639366487642173, 49.639242197980224], - [-1.63927250887082, 49.63943361366409], - [-1.639396425730311, 49.63961035577717], - [-1.639652215381613, 49.63982309156921], - [-1.640108556896245, 49.64018292720363], - [-1.640533040445249, 49.64038987020893], - [-1.640546525482417, 49.640470447113145], - [-1.639675421587061, 49.64125040963323], - [-1.639481898437506, 49.641216011395976], - [-1.639461888769574, 49.641212451992445], - [-1.63946043427207, 49.64121448711107] - ] - }, - "length": 0.3650441293007164, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40361", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09570", - "bus2": "MVLV12653", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.63946043427207, 49.64121448711107], - [-1.639458979774566, 49.641216522229705], - [-1.639476080449809, 49.64122415187133], - [-1.639683600765282, 49.64131676438078], - [-1.64068150921359, 49.64040818677782], - [-1.640887587961767, 49.64014628790694], - [-1.644171208973684, 49.638927857599484], - [-1.64428673169505, 49.63897718078914], - [-1.644318920544687, 49.6389627584152], - [-1.644338413031792, 49.63895402355153], - [-1.644358078893798, 49.638975533132474], - [-1.6443562607887543, 49.6389795586048] - ] - }, - "length": 0.4669884179506195, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36627", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12653", - "bus2": "MVLV11399", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6443562607887543, 49.6389795586048], - [-1.644354442683711, 49.63898358407713], - [-1.644341484641298, 49.63897580972107], - [-1.64431221897523, 49.63898635009178], - [-1.644083251218079, 49.639068812430104], - [-1.644049925087927, 49.639066006932666], - [-1.643416793236225, 49.639300740312706], - [-1.64234071659645, 49.63969041694624], - [-1.642313656300076, 49.63969072292798], - [-1.642286559576219, 49.63971256665703], - [-1.642272274399176, 49.63973622787448], - [-1.642268508814327, 49.63976179099838], - [-1.642275307266666, 49.63978680866261], - [-1.64229381287406, 49.63985485589073], - [-1.642298229374185, 49.639891758820205], - [-1.6422963252767, 49.63993301518811], - [-1.642306709394434, 49.63997080081436], - [-1.642324215479645, 49.64000314553674], - [-1.642366244560662, 49.64003425164088], - [-1.643149472359707, 49.64027070854595], - [-1.643372968196262, 49.640315507596256], - [-1.644269956512475, 49.64042813873789], - [-1.644463330123872, 49.6405248149741], - [-1.644948851272993, 49.64077670026519], - [-1.64502448710858, 49.640815933974544], - [-1.645050424422166, 49.64082074503685], - [-1.645085687724743, 49.64082121145061], - [-1.645265479792314, 49.64067476811369], - [-1.645257810229435, 49.640625670900505], - [-1.645266095880195, 49.6405439906876], - [-1.645310002109757, 49.64046008533303], - [-1.645354514661471, 49.64040469258168], - [-1.646150853461462, 49.639782265379274], - [-1.646114346535756, 49.63976072629444], - [-1.646069898907712, 49.639734493983944], - [-1.6460659248127212, 49.639737506922216] - ] - }, - "length": 0.5787472439158112, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35327", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11399", - "bus2": "MVLV04231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6460659248127212, 49.639737506922216], - [-1.64606195071773, 49.639740519860496], - [-1.646093149700323, 49.639759518115184], - [-1.646124672057415, 49.6397817699229], - [-1.645328351952258, 49.640399475364944], - [-1.645239669058761, 49.64051641827852], - [-1.645219919945549, 49.640631459771726], - [-1.645267500765176, 49.64077299645827], - [-1.645427656290168, 49.64088365109329], - [-1.645567042801381, 49.640926585051105], - [-1.646070229610008, 49.640958822655975], - [-1.646493025667394, 49.64088936857456], - [-1.646578976558907, 49.641076409888626], - [-1.646332048174622, 49.641123660385475], - [-1.646312156764923, 49.641127471896915], - [-1.646312245039197, 49.64113108389712] - ] - }, - "length": 0.2773931594553408, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04231", - "bus2": "MVLV11405", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.646312245039197, 49.64113108389712], - [-1.646312333313471, 49.64113469589732], - [-1.646332400576789, 49.641138099417056], - [-1.64638929169922, 49.64114776257148], - [-1.646465911461812, 49.641135221264015], - [-1.647468170294519, 49.64157441542898], - [-1.647531228487287, 49.641526890592324], - [-1.647544763217454, 49.641516687975574], - [-1.647550106185192, 49.64151825643697] - ] - }, - "length": 0.10725795298864516, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40083", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11405", - "bus2": "MVBus12237", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.647550106185192, 49.64151825643697], - [-1.64755544915293, 49.64151982489835], - [-1.64755258655046, 49.641533164894355], - [-1.64753921110418, 49.6415953827838], - [-1.647802942966988, 49.64171779166659], - [-1.648518368419918, 49.640883683645974], - [-1.648709963215433, 49.64066549177969], - [-1.649108113422299, 49.64022588000555], - [-1.649304569597744, 49.640152492077895], - [-1.649857742140985, 49.6400326151903], - [-1.650244623831524, 49.639913956479624], - [-1.650460275625328, 49.63982099574473], - [-1.650496238664297, 49.63974470580285], - [-1.650496238664297, 49.63974470580285] - ] - }, - "length": 0.33971650173458107, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35711", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus12237", - "bus2": "MVLV18350", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.650496238664297, 49.63974470580285], - [-1.650496238664297, 49.63974470580285], - [-1.650660042441741, 49.639397217347735], - [-1.650760130258705, 49.639179458157635], - [-1.650898886543457, 49.638993695288484], - [-1.651054410995333, 49.6390140505196], - [-1.651074751689997, 49.63901670685257], - [-1.651074590691024, 49.63901863203041] - ] - }, - "length": 0.1016162327368625, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18350", - "bus2": "MVBus14816", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.651074590691024, 49.63901863203041], - [-1.651074429692051, 49.63902055720824], - [-1.651053766996355, 49.63902175123091], - [-1.650941908923001, 49.63902823688537], - [-1.650813048943413, 49.639199249705825], - [-1.650599191799031, 49.639671242519334], - [-1.650618491574853, 49.63968679231682], - [-1.650618491574853, 49.63968679231682] - ] - }, - "length": 0.08772869175221151, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42064", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14816", - "bus2": "MVLV03811", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.650618491574853, 49.63968679231682], - [-1.650618491574853, 49.63968679231682], - [-1.650649419530767, 49.63969203110701], - [-1.650896448212984, 49.63947372456891], - [-1.651060356855154, 49.63937533808456], - [-1.651340187279704, 49.639287371933406], - [-1.651882934967807, 49.63915883668519], - [-1.652252046266686, 49.63877154385866], - [-1.652732366453812, 49.63893150685109], - [-1.652776162489081, 49.63892459447715], - [-1.653214572297203, 49.63845206618083], - [-1.653474392560019, 49.6384926535827], - [-1.653595009370922, 49.63879825359426], - [-1.654104179475812, 49.638748231431165], - [-1.654123502483668, 49.63874283669681], - [-1.6541252575873528, 49.638747481781465] - ] - }, - "length": 0.3601161017125795, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45474", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03811", - "bus2": "MVBus16883", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6541252575873528, 49.638747481781465], - [-1.654127012691038, 49.638752126866116], - [-1.654105733162639, 49.63875251447646], - [-1.653552253645229, 49.63886906771035], - [-1.65341874946993, 49.6385413940442], - [-1.653241525771431, 49.63851057138921], - [-1.652808208186489, 49.63896040585052], - [-1.652719656668124, 49.638979666671084], - [-1.652283155193622, 49.6388299031483], - [-1.651915051041601, 49.63919555417702], - [-1.651432398001215, 49.63931205401539], - [-1.651432398001215, 49.63931205401539] - ] - }, - "length": 0.2817171104650044, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48001", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16883", - "bus2": "MVLV13412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.651432398001215, 49.63931205401539], - [-1.651432398001215, 49.63931205401539], - [-1.651539420756827, 49.63950292976816], - [-1.651638644275705, 49.63956344872928], - [-1.651840627490261, 49.63964294199691], - [-1.652201280681457, 49.639610722175355], - [-1.652215841766864, 49.63965295551304], - [-1.652220372963897, 49.639666096735695], - [-1.65221236758308, 49.63967359517768] - ] - }, - "length": 0.08209146022616265, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39121", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13412", - "bus2": "MVLV18345", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.65221236758308, 49.63967359517768], - [-1.652204362202263, 49.63968109361968], - [-1.652183820239769, 49.63968294927789], - [-1.651838125471654, 49.6397141630449], - [-1.65160775122422, 49.639626640852505], - [-1.651490287994571, 49.63963158531766], - [-1.650234707607045, 49.640863379787525], - [-1.650098091771922, 49.64099053961909], - [-1.649890696923969, 49.64115075058477], - [-1.649802102888521, 49.64123754284771], - [-1.649782416963892, 49.64131925768361], - [-1.649782682789002, 49.641407499610274], - [-1.649830687473214, 49.641503097052194], - [-1.649854628236146, 49.641514240581486], - [-1.649871484272061, 49.64152208369566], - [-1.649879448220405, 49.64153273332219] - ] - }, - "length": 0.3047157335410305, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48000", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18345", - "bus2": "MVLV13415", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.649879448220405, 49.64153273332219], - [-1.649887412168749, 49.64154338294871], - [-1.649886484023854, 49.641556839089816], - [-1.649885167545114, 49.64157595521354], - [-1.650640928915735, 49.64223971374455], - [-1.650616292508886, 49.64229458795612], - [-1.650935110580489, 49.642531246755496], - [-1.65090402460911, 49.64266017863752], - [-1.650711429521012, 49.64288291171144], - [-1.6507539664566, 49.642945381496], - [-1.650777366007957, 49.6430112159862], - [-1.65083402053864, 49.64300718963283], - [-1.650854635485899, 49.64300571851925], - [-1.6508752731227425, 49.643005599995846] - ] - }, - "length": 0.20042162447610118, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44048", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13415", - "bus2": "MVLV09698", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6508752731227425, 49.643005599995846], - [-1.650895910759586, 49.64300548147244], - [-1.650916571088205, 49.643006715539215], - [-1.650942129039795, 49.64300824670489], - [-1.650965250810021, 49.643104700169616], - [-1.65105923380534, 49.643134782551606], - [-1.651225575911102, 49.64321910320288], - [-1.651885317702551, 49.64294338287878], - [-1.652339564305473, 49.64276656413314], - [-1.652794186959223, 49.642594236296674], - [-1.653071176407749, 49.642437029759236], - [-1.652878698673592, 49.642236547595466], - [-1.652972324269701, 49.64214844501973], - [-1.652984113160115, 49.642137355177276], - [-1.6529876825128729, 49.64213837494104] - ] - }, - "length": 0.2362052800999093, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43580", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09698", - "bus2": "MVLV10769", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6529876825128729, 49.64213837494104], - [-1.652991251865631, 49.642139394704806], - [-1.652986615495288, 49.64215252362001], - [-1.652959841240036, 49.64222835813295], - [-1.653134824867502, 49.64240152317148], - [-1.65385911400153, 49.64201640970799], - [-1.65456601827232, 49.64157155351364], - [-1.654467619367898, 49.641453377631095], - [-1.654143751682042, 49.64130785185104], - [-1.654135222460471, 49.64130768373213], - [-1.654114489206905, 49.641307279935994], - [-1.6541095942725872, 49.641301353664915] - ] - }, - "length": 0.2173999289241804, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35246", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10769", - "bus2": "MVBus20991", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6541095942725872, 49.641301353664915], - [-1.654104699338269, 49.64129542739384], - [-1.65411564271796, 49.641283978650286], - [-1.654143582189238, 49.64125473062572], - [-1.654557771437561, 49.64141966611486], - [-1.654679164728723, 49.641547846775495], - [-1.654989499613677, 49.641323755515046], - [-1.655216166305802, 49.64128414309542], - [-1.655216166305802, 49.64128414309542] - ] - }, - "length": 0.10763084810328495, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48002", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20991", - "bus2": "MVBus20992", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.655216166305802, 49.64128414309542], - [-1.655216166305802, 49.64128414309542], - [-1.655220537558186, 49.64128337831457], - [-1.655491739086301, 49.64086883331258], - [-1.656129360184936, 49.64103596349636], - [-1.65593306820143, 49.64134888681329], - [-1.657084904119485, 49.64202236996449], - [-1.65745195708432, 49.64188286054988], - [-1.65745195708432, 49.64188286054988] - ] - }, - "length": 0.2803324611564285, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39122", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20992", - "bus2": "MVLV07448", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.65745195708432, 49.64188286054988], - [-1.65745195708432, 49.64188286054988], - [-1.658082785218181, 49.6416431026881], - [-1.658694681352662, 49.641308656606704], - [-1.659331818477574, 49.641079590959734], - [-1.659949508147983, 49.64081606719898], - [-1.659626206785389, 49.640575981894294], - [-1.659647198570433, 49.64051042599123], - [-1.659697348232264, 49.64052238300647], - [-1.659716821180919, 49.640527026938834], - [-1.6597185284257365, 49.64053361589109] - ] - }, - "length": 0.26481803791881875, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07448", - "bus2": "MVBus22688", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6597185284257365, 49.64053361589109], - [-1.659720235670554, 49.64054020484333], - [-1.659704177202618, 49.640548738816385], - [-1.659676486503199, 49.64056344833813], - [-1.6599921371994, 49.64079478500969], - [-1.659992378774546, 49.640794687101014], - [-1.659992378774546, 49.640794687101014] - ] - }, - "length": 0.03848083419059896, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32649", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22688", - "bus2": "MVLV03816", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.659992378774546, 49.640794687101014], - [-1.659992378774546, 49.640794687101014], - [-1.660116767884211, 49.64074186382945], - [-1.660193609082822, 49.64073201308521], - [-1.660286350546354, 49.640679282526726], - [-1.66138303867216, 49.64023715397212], - [-1.661681960126204, 49.64017912448387], - [-1.662031265553016, 49.64016076614031], - [-1.662205796455039, 49.6401754609696], - [-1.662308453266365, 49.64014220210014], - [-1.662475149163483, 49.64001038150107], - [-1.66253502367219, 49.64015392542268], - [-1.662540446858687, 49.640166928930896], - [-1.662536295709962, 49.64016837911976] - ] - }, - "length": 0.22438681816102976, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44041", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03816", - "bus2": "MVBus23620", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.662536295709962, 49.64016837911976], - [-1.662532144561237, 49.640169829308626], - [-1.662518419079961, 49.640159726176854], - [-1.662461766055652, 49.64011799571136], - [-1.662357033913708, 49.64019365063426], - [-1.662211427082928, 49.64022748468934], - [-1.662040547026729, 49.640206374442315], - [-1.661726821522564, 49.64021899711267], - [-1.661597576669094, 49.64023246110374], - [-1.661435397851312, 49.64026686915751], - [-1.661299412489788, 49.640316579269125], - [-1.660348294472718, 49.64069066057588], - [-1.660204469097215, 49.64076315446508], - [-1.660145158031175, 49.64076699436688], - [-1.659996802038395, 49.64083115791717], - [-1.659996802038395, 49.64083115791717] - ] - }, - "length": 0.20913294003905575, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23620", - "bus2": "MVLV07432", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.659996802038395, 49.64083115791717], - [-1.659996802038395, 49.64083115791717], - [-1.659380444626252, 49.64109772227726], - [-1.659140708717718, 49.64118432808581], - [-1.658728974744375, 49.64133808858412], - [-1.658105511078215, 49.64166664030131], - [-1.657531450704516, 49.64188722183268], - [-1.657532249951541, 49.64190343564625], - [-1.657532917082162, 49.64191690215948], - [-1.6575239274670255, 49.64192659162776] - ] - }, - "length": 0.2170797616003997, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42379", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07432", - "bus2": "MVBus24548", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6575239274670255, 49.64192659162776], - [-1.657514937851889, 49.64193628109604], - [-1.657496291486325, 49.64194219351673], - [-1.657444379034266, 49.64195865572616], - [-1.657058771295908, 49.64212682508635], - [-1.657141335844526, 49.64218700870806], - [-1.656003997670152, 49.643388681197486], - [-1.656148855867594, 49.643410380628715], - [-1.656148855867594, 49.643410380628715] - ] - }, - "length": 0.2158005688277706, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24548", - "bus2": "MVLV07449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.656148855867594, 49.643410380628715], - [-1.656148855867594, 49.643410380628715], - [-1.656194923354919, 49.643417222386894], - [-1.656738194632793, 49.64349845915087], - [-1.656790925572272, 49.643490126359595], - [-1.656827448007215, 49.643492849874725], - [-1.656814930263436, 49.643563583421624], - [-1.656779340903672, 49.64357401186656], - [-1.656748883420937, 49.64357481986947], - [-1.656753704082444, 49.64358792438161], - [-1.6567571961044585, 49.643587777587335] - ] - }, - "length": 0.06469131730334167, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38010", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07449", - "bus2": "MVLV09703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6567571961044585, 49.643587777587335], - [-1.656760688126473, 49.64358763079306], - [-1.656762865317555, 49.6435742322364], - [-1.656811325843143, 49.64345992178081], - [-1.657655775113307, 49.643459646661036], - [-1.657997146442916, 49.643496506180064], - [-1.658076443629988, 49.643567614923775], - [-1.658192438693261, 49.64354470118388], - [-1.658952598209877, 49.64298812852086], - [-1.658993654353312, 49.64304711966371], - [-1.659002204508429, 49.64305939048056], - [-1.658996118190359, 49.643065130887315] - ] - }, - "length": 0.21063109279689207, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46845", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09703", - "bus2": "MVLV18342", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.658996118190359, 49.643065130887315], - [-1.658990031872289, 49.64307087129407], - [-1.658969322186735, 49.643070071862404], - [-1.65892449989707, 49.643068342635594], - [-1.658208563053226, 49.643606278689674], - [-1.658100656760502, 49.6436262095341], - [-1.657659742520849, 49.644152861691424], - [-1.657510191598952, 49.6443930321688], - [-1.657506833422237, 49.644487697565665], - [-1.657539273902358, 49.64456222467523], - [-1.65761727152215, 49.644651379263685], - [-1.658074285600113, 49.644576205123684], - [-1.658251358808419, 49.64455389050545], - [-1.658579443128843, 49.644547089073704], - [-1.658855710209731, 49.6445339596879], - [-1.659092911526592, 49.64453479073927], - [-1.659495293136491, 49.6445038062746], - [-1.65970910613214, 49.64447302753859], - [-1.659825620984186, 49.64447351121549], - [-1.65990817220958, 49.64448237410184], - [-1.65995870086818, 49.64452384946089], - [-1.660042974487446, 49.64470644159026], - [-1.660060080500669, 49.64491565883973], - [-1.660070625879779, 49.64493694590819], - [-1.660076976245524, 49.644949765942705], - [-1.6600719941933777, 49.64495201682858] - ] - }, - "length": 0.4397899318735527, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44843", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18342", - "bus2": "MVBus27018", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6600719941933777, 49.64495201682858], - [-1.660067012141231, 49.64495426771445], - [-1.660050697673322, 49.64494594944991], - [-1.660013870035083, 49.64492715863281], - [-1.659978416466031, 49.644714069582434], - [-1.659927025332948, 49.644594281346066], - [-1.65988340142915, 49.64455255979306], - [-1.659816058827658, 49.64452607281718], - [-1.659724051170582, 49.64452023807497], - [-1.659495257327107, 49.64455423657293], - [-1.659111788171217, 49.644579164720945], - [-1.658397671655415, 49.64459657240175], - [-1.658070104652004, 49.64462677230284], - [-1.657851272124693, 49.644664026516146], - [-1.657633974862949, 49.644703028078986], - [-1.657634719606587, 49.644704226437895], - [-1.657634719606587, 49.644704226437895] - ] - }, - "length": 0.21357803317857346, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41421", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus27018", - "bus2": "MVLV09708", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.657634719606587, 49.644704226437895], - [-1.657634719606587, 49.644704226437895], - [-1.657664292338596, 49.64475151151773], - [-1.657580617679955, 49.644796719176455], - [-1.657442456397958, 49.64472939782915], - [-1.657439087271788, 49.64472775560201], - [-1.657423368284804, 49.64473109837805], - [-1.657412445196616, 49.644739889471886] - ] - }, - "length": 0.02751185685333837, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47229", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09708", - "bus2": "MVLV09694", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.657412445196616, 49.644739889471886], - [-1.657401522108428, 49.64474868056572], - [-1.657399414799996, 49.64476208580523], - [-1.65739907235909, 49.644764255276804], - [-1.657502906004958, 49.64483001279945], - [-1.657323372007246, 49.64495776176338], - [-1.657178261704638, 49.64509962451894], - [-1.656824109619514, 49.645890730458646], - [-1.656770728074614, 49.645950197012475], - [-1.656733121640904, 49.64598210269145], - [-1.656648951737143, 49.64615699517837], - [-1.656610729852612, 49.64636812006485], - [-1.656613523323564, 49.646419346981055], - [-1.656720240911991, 49.64665609773091], - [-1.656840043122258, 49.64700224839765], - [-1.656859339587067, 49.6471195363736], - [-1.656959627902545, 49.647107978602584], - [-1.658261104004475, 49.64647153496391], - [-1.658558577327586, 49.64637843870743], - [-1.658861895009906, 49.64630585791982], - [-1.660200893378413, 49.6460949103272], - [-1.660334739939459, 49.64633550982234], - [-1.660341785159396, 49.646348180972836], - [-1.6603547873034665, 49.64635177979386] - ] - }, - "length": 0.5855644909898856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38003", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09694", - "bus2": "MVLV07442", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6603547873034665, 49.64635177979386], - [-1.660367789447537, 49.64635537861489], - [-1.660386748508173, 49.646349905103975], - [-1.660440958669088, 49.6463342651152], - [-1.660302984589314, 49.646071582063726], - [-1.661443514821132, 49.645892682181376], - [-1.662697368394136, 49.64572606585913], - [-1.662609127743163, 49.64549498489922], - [-1.662581775291376, 49.64504209882583], - [-1.662679523020576, 49.644864036523124], - [-1.662904615461019, 49.64492020400318], - [-1.662971660037774, 49.64484135356547], - [-1.663063203528207, 49.644350138803354], - [-1.662984000159303, 49.6443292344434], - [-1.662964782453086, 49.64432415991343], - [-1.6629655446157925, 49.64432178319872] - ] - }, - "length": 0.4018757368413863, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44847", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07442", - "bus2": "MVBus30879", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6629655446157925, 49.64432178319872], - [-1.662966306778499, 49.644319406484016], - [-1.662987048806569, 49.64431972758408], - [-1.663071914837724, 49.64432102111243], - [-1.663101017778056, 49.64413452778075], - [-1.662930895909558, 49.64398732021816], - [-1.663034357139217, 49.643862186336314], - [-1.663225682295771, 49.64355662739682], - [-1.663255220394122, 49.643544805523845], - [-1.663253723380739, 49.643542139341996], - [-1.663253723380739, 49.643542139341996] - ] - }, - "length": 0.1042534145496487, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34679", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30879", - "bus2": "MVLV18352", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.663253723380739, 49.643542139341996], - [-1.663253723380739, 49.643542139341996], - [-1.66318867360354, 49.643426436848614], - [-1.66273674641831, 49.64308904504723], - [-1.66268344918048, 49.64296302598479], - [-1.662610795711255, 49.64290095346879], - [-1.662604427902253, 49.6428955078606], - [-1.662605725837441, 49.642888927468704], - [-1.662616546426261, 49.642884936673234] - ] - }, - "length": 0.08813950731615683, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48004", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18352", - "bus2": "MVBus31654", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.662616546426261, 49.642884936673234], - [-1.662627367015081, 49.642880945877764], - [-1.662633895413466, 49.64288278921881], - [-1.662642199918083, 49.64288979839457], - [-1.662712845657741, 49.64294940144363], - [-1.662769567540072, 49.64308341836134], - [-1.663214068013565, 49.64341475204477], - [-1.663289227604252, 49.64353346527948], - [-1.663289227604252, 49.64353346527948] - ] - }, - "length": 0.08847193216769035, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34678", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus31654", - "bus2": "MVLV10771", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.663289227604252, 49.64353346527948], - [-1.663289227604252, 49.64353346527948], - [-1.663290507510662, 49.643535482198466], - [-1.663364095862103, 49.64353654603603], - [-1.66420036870149, 49.643588723566374], - [-1.664338852350405, 49.64356953800206], - [-1.664384328483134, 49.64354905938166], - [-1.66445033596179, 49.64354228023878], - [-1.664737529852291, 49.64356117522943], - [-1.664744997595997, 49.64359527906002], - [-1.664747913803706, 49.643608617196286], - [-1.6647535760701795, 49.643609126740216] - ] - }, - "length": 0.11146509204153157, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35247", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10771", - "bus2": "MVLV07445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6647535760701795, 49.643609126740216], - [-1.664759238336653, 49.64360963628415], - [-1.664767646656303, 49.64359731723524], - [-1.664789219079585, 49.64356569653633], - [-1.664939594249154, 49.643590224468035], - [-1.665315946043783, 49.643681685798896], - [-1.665396237788029, 49.64344298709537], - [-1.665551887193883, 49.643426208480065], - [-1.665572347472744, 49.64342400259442], - [-1.6655735383084749, 49.643426206784554] - ] - }, - "length": 0.08563439623109449, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35248", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07445", - "bus2": "MVLV18348", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6655735383084749, 49.643426206784554], - [-1.665574729144206, 49.643428410974686], - [-1.665556650533887, 49.643435025241374], - [-1.665443360066482, 49.643476479903825], - [-1.665367480133459, 49.64368440452684], - [-1.665555777430121, 49.64371482561238], - [-1.665740438642227, 49.643734557898995], - [-1.665938981760998, 49.64373760813035], - [-1.666373159424007, 49.64370551200061], - [-1.666475707226651, 49.64370467108537], - [-1.66689483243525, 49.64375953333262], - [-1.666922424598168, 49.64377478815005], - [-1.666931105149032, 49.643796100505696], - [-1.666884304028332, 49.64388505615675], - [-1.666531193668102, 49.64416199514881], - [-1.666460689453163, 49.64418153160582], - [-1.666371583420357, 49.64417226967476], - [-1.666351101155336, 49.6441701420776], - [-1.6663493738929815, 49.64417292395164] - ] - }, - "length": 0.2154444704255203, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40081", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18348", - "bus2": "MVBus33535", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6663493738929815, 49.64417292395164], - [-1.666347646630627, 49.644175705825695], - [-1.666364674374363, 49.644183397172014], - [-1.666460209697166, 49.644226572418866], - [-1.666535687506332, 49.64421676295277], - [-1.666923648583876, 49.64392511858885], - [-1.666967969649731, 49.64383985099012], - [-1.666994279483576, 49.6438056180891], - [-1.667039036422541, 49.64379327340822], - [-1.667101478164154, 49.64379381379485], - [-1.667295385296576, 49.64382493672678], - [-1.667591685433351, 49.64383631159785], - [-1.668271134787657, 49.64380203052457], - [-1.668306361702929, 49.64380428993486], - [-1.668306361702929, 49.64380428993486] - ] - }, - "length": 0.16825509452722598, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39997", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus33535", - "bus2": "MVLV15132", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.668306361702929, 49.64380428993486], - [-1.668306361702929, 49.64380428993486], - [-1.668301560943159, 49.6437340023798], - [-1.668325485566482, 49.643730062657404], - [-1.668351170007161, 49.643717674723874], - [-1.668363070401259, 49.64370469120321], - [-1.668332734943276, 49.64352422901104], - [-1.668346182337516, 49.64346923564381], - [-1.668308740509139, 49.64342431765364], - [-1.668250024141815, 49.64338639894637], - [-1.668215654921807, 49.6433642019151], - [-1.668166609722962, 49.64331153903314], - [-1.668145027090293, 49.64326295740102], - [-1.668131708312377, 49.64316531821767], - [-1.668102411799664, 49.6429506413113], - [-1.667992576488419, 49.64218179386824], - [-1.668010879536981, 49.642146485933026], - [-1.667997117452306, 49.64212306681962], - [-1.667995968679526, 49.641906027680406], - [-1.667618794520165, 49.641833621000856], - [-1.667624429478351, 49.64181121411131], - [-1.667628303059409, 49.64179582568794], - [-1.667628303059409, 49.64179582568794] - ] - }, - "length": 0.25210504809617895, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV02718_production", - "bus": "MVLV02718", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV02718_consumption", - "bus": "MVLV02718", - "phases": "abc", - "powers": [ - [11775.30728580249, 3870.35633844014], - [11775.30728580249, 3870.35633844014], - [11775.30728580249, 3870.35633844014] - ] - }, - { - "id": "MVLV15555_production", - "bus": "MVLV15555", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV15555_consumption", - "bus": "MVLV15555", - "phases": "abc", - "powers": [ - [17555.516158160633, 5770.219119398102], - [17555.516158160633, 5770.219119398102], - [17555.516158160633, 5770.219119398102] - ] - }, - { - "id": "MVLV07323_production", - "bus": "MVLV07323", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV07323_consumption", - "bus": "MVLV07323", - "phases": "abc", - "powers": [ - [11775.30728580249, 3870.35633844014], - [11775.30728580249, 3870.35633844014], - [11775.30728580249, 3870.35633844014] - ] - }, - { - "id": "MVLV05293_production", - "bus": "MVLV05293", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV05293_consumption", - "bus": "MVLV05293", - "phases": "abc", - "powers": [ - [17555.516158160633, 5770.219119398102], - [17555.516158160633, 5770.219119398102], - [17555.516158160633, 5770.219119398102] - ] - }, - { - "id": "MVLV14999_production", - "bus": "MVLV14999", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV14999_consumption", - "bus": "MVLV14999", - "phases": "abc", - "powers": [ - [11775.30728580249, 3870.35633844014], - [11775.30728580249, 3870.35633844014], - [11775.30728580249, 3870.35633844014] - ] - }, - { - "id": "MVLV08398_production", - "bus": "MVLV08398", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV08398_consumption", - "bus": "MVLV08398", - "phases": "abc", - "powers": [ - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183] - ] - }, - { - "id": "MVLV12652_production", - "bus": "MVLV12652", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV12652_consumption", - "bus": "MVLV12652", - "phases": "abc", - "powers": [ - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183] - ] - }, - { - "id": "MVLV05297_production", - "bus": "MVLV05297", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV05297_consumption", - "bus": "MVLV05297", - "phases": "abc", - "powers": [ - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183] - ] - }, - { - "id": "MVLV09570_production", - "bus": "MVLV09570", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09570_consumption", - "bus": "MVLV09570", - "phases": "abc", - "powers": [ - [14973.828223667879, 4921.659330798283], - [14973.828223667879, 4921.659330798283], - [14973.828223667879, 4921.659330798283] - ] - }, - { - "id": "MVLV12653_production", - "bus": "MVLV12653", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV12653_consumption", - "bus": "MVLV12653", - "phases": "abc", - "powers": [ - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183] - ] - }, - { - "id": "MVLV11399_production", - "bus": "MVLV11399", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV11399_consumption", - "bus": "MVLV11399", - "phases": "abc", - "powers": [ - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183], - [10227.536204334823, 3361.6285855062183] - ] - }, - { - "id": "MVLV04231_production", - "bus": "MVLV04231", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV04231_consumption", - "bus": "MVLV04231", - "phases": "abc", - "powers": [ - [10095.567043529632, 3318.2524199757586], - [10095.567043529632, 3318.2524199757586], - [10095.567043529632, 3318.2524199757586] - ] - }, - { - "id": "MVLV11405_production", - "bus": "MVLV11405", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV11405_consumption", - "bus": "MVLV11405", - "phases": "abc", - "powers": [ - [10095.567043529632, 3318.2524199757586], - [10095.567043529632, 3318.2524199757586], - [10095.567043529632, 3318.2524199757586] - ] - }, - { - "id": "MVLV18350_production", - "bus": "MVLV18350", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV18350_consumption", - "bus": "MVLV18350", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV03811_production", - "bus": "MVLV03811", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV03811_consumption", - "bus": "MVLV03811", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV13412_production", - "bus": "MVLV13412", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV13412_consumption", - "bus": "MVLV13412", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV18345_production", - "bus": "MVLV18345", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV18345_consumption", - "bus": "MVLV18345", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV13415_production", - "bus": "MVLV13415", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV13415_consumption", - "bus": "MVLV13415", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV09698_production", - "bus": "MVLV09698", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09698_consumption", - "bus": "MVLV09698", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV10769_production", - "bus": "MVLV10769", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV10769_consumption", - "bus": "MVLV10769", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV07448_production", - "bus": "MVLV07448", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV07448_consumption", - "bus": "MVLV07448", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV03816_production", - "bus": "MVLV03816", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV03816_consumption", - "bus": "MVLV03816", - "phases": "abc", - "powers": [ - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005] - ] - }, - { - "id": "MVLV07432_production", - "bus": "MVLV07432", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV07432_consumption", - "bus": "MVLV07432", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV07449_production", - "bus": "MVLV07449", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV07449_consumption", - "bus": "MVLV07449", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV09703_production", - "bus": "MVLV09703", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09703_consumption", - "bus": "MVLV09703", - "phases": "abc", - "powers": [ - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005] - ] - }, - { - "id": "MVLV18342_production", - "bus": "MVLV18342", - "phases": "abc", - "powers": [ - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0] - ] - }, - { - "id": "MVLV18342_consumption", - "bus": "MVLV18342", - "phases": "abc", - "powers": [ - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666] - ] - }, - { - "id": "MVLV09708_production", - "bus": "MVLV09708", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09708_consumption", - "bus": "MVLV09708", - "phases": "abc", - "powers": [ - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983], - [3029.5983764685384, 995.7808314208983] - ] - }, - { - "id": "MVLV09694_production", - "bus": "MVLV09694", - "phases": "abc", - "powers": [ - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0] - ] - }, - { - "id": "MVLV09694_consumption", - "bus": "MVLV09694", - "phases": "abc", - "powers": [ - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666] - ] - }, - { - "id": "MVLV07442_production", - "bus": "MVLV07442", - "phases": "abc", - "powers": [ - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0] - ] - }, - { - "id": "MVLV07442_consumption", - "bus": "MVLV07442", - "phases": "abc", - "powers": [ - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666] - ] - }, - { - "id": "MVLV18352_production", - "bus": "MVLV18352", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV18352_consumption", - "bus": "MVLV18352", - "phases": "abc", - "powers": [ - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005] - ] - }, - { - "id": "MVLV10771_production", - "bus": "MVLV10771", - "phases": "abc", - "powers": [ - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0] - ] - }, - { - "id": "MVLV10771_consumption", - "bus": "MVLV10771", - "phases": "abc", - "powers": [ - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666] - ] - }, - { - "id": "MVLV07445_production", - "bus": "MVLV07445", - "phases": "abc", - "powers": [ - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0] - ] - }, - { - "id": "MVLV07445_consumption", - "bus": "MVLV07445", - "phases": "abc", - "powers": [ - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666] - ] - }, - { - "id": "MVLV18348_production", - "bus": "MVLV18348", - "phases": "abc", - "powers": [ - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0], - [-1209.9138804457953, 0.0] - ] - }, - { - "id": "MVLV18348_consumption", - "bus": "MVLV18348", - "phases": "abc", - "powers": [ - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666], - [5341.081411476661, 1755.528564418666] - ] - }, - { - "id": "MVLV15132_production", - "bus": "MVLV15132", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV15132_consumption", - "bus": "MVLV15132", - "phases": "abc", - "powers": [ - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005], - [5036.204550630183, 1655.3203862216005] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder011_winter.json b/data/MVFeeder011_winter.json deleted file mode 100644 index da5e9c1a..00000000 --- a/data/MVFeeder011_winter.json +++ /dev/null @@ -1,2655 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "HVMV01", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBus00044", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.629037146508968, 49.631786313338594] - } - }, - { - "id": "MVLV02718", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.629721806268463, 49.63252940750905] - } - }, - { - "id": "MVBus04664", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.629054408189043, 49.63178058553094] - } - }, - { - "id": "MVLV15555", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6314148687770316, 49.63085635792388] - } - }, - { - "id": "MVLV07323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6316298971813121, 49.63271781685638] - } - }, - { - "id": "MVLV05293", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6353965365500425, 49.63201285071942] - } - }, - { - "id": "MVLV14999", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.635841049476694, 49.634773127302665] - } - }, - { - "id": "MVLV08398", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6390459138036424, 49.63402854933457] - } - }, - { - "id": "MVLV12652", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.638968848385021, 49.637357094424615] - } - }, - { - "id": "MVLV05297", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.639959248554075, 49.63879602948194] - } - }, - { - "id": "MVLV09570", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.63946043427207, 49.64121448711107] - } - }, - { - "id": "MVLV12653", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6443562607887543, 49.6389795586048] - } - }, - { - "id": "MVLV11399", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6460659248127212, 49.639737506922216] - } - }, - { - "id": "MVLV04231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.646312245039197, 49.64113108389712] - } - }, - { - "id": "MVLV11405", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.647550106185192, 49.64151825643697] - } - }, - { - "id": "MVBus12237", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.650496238664297, 49.63974470580285] - } - }, - { - "id": "MVLV18350", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.651074590691024, 49.63901863203041] - } - }, - { - "id": "MVBus14816", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.650618491574853, 49.63968679231682] - } - }, - { - "id": "MVLV03811", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6541252575873528, 49.638747481781465] - } - }, - { - "id": "MVBus16883", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.651432398001215, 49.63931205401539] - } - }, - { - "id": "MVLV13412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.65221236758308, 49.63967359517768] - } - }, - { - "id": "MVLV18345", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.649879448220405, 49.64153273332219] - } - }, - { - "id": "MVLV13415", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6508752731227425, 49.643005599995846] - } - }, - { - "id": "MVLV09698", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6529876825128729, 49.64213837494104] - } - }, - { - "id": "MVLV10769", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6541095942725872, 49.641301353664915] - } - }, - { - "id": "MVBus20991", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.655216166305802, 49.64128414309542] - } - }, - { - "id": "MVBus20992", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.65745195708432, 49.64188286054988] - } - }, - { - "id": "MVLV07448", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6597185284257365, 49.64053361589109] - } - }, - { - "id": "MVBus22688", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.659992378774546, 49.640794687101014] - } - }, - { - "id": "MVLV03816", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.662536295709962, 49.64016837911976] - } - }, - { - "id": "MVBus23620", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.659996802038395, 49.64083115791717] - } - }, - { - "id": "MVLV07432", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6575239274670255, 49.64192659162776] - } - }, - { - "id": "MVBus24548", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.656148855867594, 49.643410380628715] - } - }, - { - "id": "MVLV07449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6567571961044585, 49.643587777587335] - } - }, - { - "id": "MVLV09703", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.658996118190359, 49.643065130887315] - } - }, - { - "id": "MVLV18342", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6600719941933777, 49.64495201682858] - } - }, - { - "id": "MVBus27018", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.657634719606587, 49.644704226437895] - } - }, - { - "id": "MVLV09708", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.657412445196616, 49.644739889471886] - } - }, - { - "id": "MVLV09694", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6603547873034665, 49.64635177979386] - } - }, - { - "id": "MVLV07442", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6629655446157925, 49.64432178319872] - } - }, - { - "id": "MVBus30879", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.663253723380739, 49.643542139341996] - } - }, - { - "id": "MVLV18352", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.662616546426261, 49.642884936673234] - } - }, - { - "id": "MVBus31654", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.663289227604252, 49.64353346527948] - } - }, - { - "id": "MVLV10771", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6647535760701795, 49.643609126740216] - } - }, - { - "id": "MVLV07445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6655735383084749, 49.643426206784554] - } - }, - { - "id": "MVLV18348", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6663493738929815, 49.64417292395164] - } - }, - { - "id": "MVBus33535", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.668306361702929, 49.64380428993486] - } - }, - { - "id": "MVLV15132", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.667628303059409, 49.64179582568794] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV01", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBranch35532", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV01", - "bus2": "MVBus00044", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.624837162156209, 49.633717544204686], - [-1.624857219640409, 49.6337141083832], - [-1.624857219640409, 49.6337141083832], - [-1.624877277121907, 49.63371067255838], - [-1.626841753354714, 49.633374369702], - [-1.626970821395788, 49.632863001185015], - [-1.627065085349288, 49.63221326701406], - [-1.628389424343872, 49.63197887072164], - [-1.629037146508968, 49.631786313338594], - [-1.629037146508968, 49.631786313338594] - ] - }, - "length": 0.4290980676603243, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37188", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00044", - "bus2": "MVLV02718", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.629037146508968, 49.631786313338594], - [-1.629037146508968, 49.631786313338594], - [-1.629087268966014, 49.63183962110722], - [-1.629124914790215, 49.63188167512199], - [-1.629237382699548, 49.632007312962884], - [-1.629285671175313, 49.63205999739848], - [-1.629406587306548, 49.63216625831035], - [-1.629493192893915, 49.63224237849463], - [-1.62950876337733, 49.632253890385876], - [-1.629564221460388, 49.63228429039874], - [-1.629665246248013, 49.63253424404885], - [-1.629692017284508, 49.632533473668154], - [-1.629721178745731, 49.632532642841646], - [-1.629721806268463, 49.63252940750905] - ] - }, - "length": 0.10029828063164829, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35531", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02718", - "bus2": "MVBus04664", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.629721806268463, 49.63252940750905], - [-1.629722433791195, 49.63252617217645], - [-1.629693429524349, 49.63252581985572], - [-1.629671533905962, 49.6325255490427], - [-1.629578464447906, 49.63227944388576], - [-1.629504495049261, 49.63223834785071], - [-1.629287186398984, 49.63205064066636], - [-1.629140324102071, 49.63187883164821], - [-1.629054408189043, 49.63178058553094], - [-1.629054408189043, 49.63178058553094] - ] - }, - "length": 0.09943991949583805, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41689", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04664", - "bus2": "MVLV15555", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.629054408189043, 49.63178058553094], - [-1.629054408189043, 49.63178058553094], - [-1.629870759692084, 49.63150946533126], - [-1.63027631851721, 49.631450567390445], - [-1.630600109782255, 49.631443080677386], - [-1.631074676946586, 49.63151688103458], - [-1.631554981820415, 49.63162739569132], - [-1.631587939581892, 49.63152091498697], - [-1.63153580027118, 49.63123726426095], - [-1.631446068432871, 49.63113948661905], - [-1.63118012390842, 49.631090961348335], - [-1.631101680168486, 49.63102971744659], - [-1.631087767063798, 49.63096085231079], - [-1.631395105697174, 49.63086115655988], - [-1.631413659111113, 49.63085513420778], - [-1.6314148687770316, 49.63085635792388] - ] - }, - "length": 0.31109997665373856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44818", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15555", - "bus2": "MVLV07323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6314148687770316, 49.63085635792388], - [-1.63141607844295, 49.63085758163999], - [-1.631399944359874, 49.630866051425], - [-1.631195535837741, 49.630973375553545], - [-1.631224203720729, 49.63103632505266], - [-1.631498892849788, 49.631089949591676], - [-1.631567725847643, 49.6311353135501], - [-1.631630454198624, 49.63120790875985], - [-1.631686602970617, 49.6315409485384], - [-1.631665012619333, 49.63165064407811], - [-1.631963485824913, 49.63170705689989], - [-1.632002849551236, 49.63174802858317], - [-1.631537724766073, 49.632524828008705], - [-1.631616810933443, 49.63270603484414], - [-1.63162365659792, 49.63271875007037], - [-1.6316298971813121, 49.63271781685638] - ] - }, - "length": 0.2573909011875716, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36001", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07323", - "bus2": "MVLV05293", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6316298971813121, 49.63271781685638], - [-1.631636137764704, 49.63271688364239], - [-1.63163327830876, 49.63270166360753], - [-1.63163071600396, 49.63256037071055], - [-1.632093659469166, 49.63175662062328], - [-1.632171230775994, 49.631738661263284], - [-1.633199876177523, 49.63180697770677], - [-1.633823682906284, 49.631874751766034], - [-1.634897520452441, 49.63193610238032], - [-1.635384301904561, 49.631938328580226], - [-1.63540089567572, 49.63199300530112], - [-1.635404901302026, 49.63200621831591], - [-1.6353965365500425, 49.63201285071942] - ] - }, - "length": 0.3599441207244474, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36772", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05293", - "bus2": "MVLV14999", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6353965365500425, 49.63201285071942], - [-1.635388171798059, 49.632019483122924], - [-1.635367436665667, 49.632019534911876], - [-1.634926574478434, 49.632020655980526], - [-1.635143157896667, 49.63362863380854], - [-1.635298149022477, 49.63365934035967], - [-1.635340459302301, 49.63383888469], - [-1.635484774546945, 49.6339086716564], - [-1.636117163345289, 49.63385998098007], - [-1.636123211021794, 49.633900292647155], - [-1.635593609901471, 49.63448032507528], - [-1.635520649788752, 49.63462329891644], - [-1.63550721492175, 49.634748022982], - [-1.635820045418208, 49.63476911894884], - [-1.635840672493716, 49.63477050943911], - [-1.635841049476694, 49.634773127302665] - ] - }, - "length": 0.4381640551856535, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47618", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14999", - "bus2": "MVLV08398", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.635841049476694, 49.634773127302665], - [-1.635841426459672, 49.63477574516622], - [-1.635821553346, 49.634779590403326], - [-1.635550093268688, 49.634832095102794], - [-1.635664012652769, 49.6350055816361], - [-1.636591689691463, 49.63577518043326], - [-1.636679071056393, 49.635758676503016], - [-1.63708686538294, 49.6360337385233], - [-1.637361074302147, 49.6360981750974], - [-1.637589349554886, 49.63580219858483], - [-1.638039340086554, 49.63499347476092], - [-1.638289201666341, 49.634656240245576], - [-1.638634159332553, 49.634277930599175], - [-1.638958332950398, 49.63401918175254], - [-1.639021278278921, 49.634021913794186], - [-1.639041977160807, 49.63402280679316], - [-1.6390459138036424, 49.63402854933457] - ] - }, - "length": 0.48789488430663863, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48097", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08398", - "bus2": "MVLV12652", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6390459138036424, 49.63402854933457], - [-1.639049850446478, 49.63403429187598], - [-1.639037024145002, 49.63404487499249], - [-1.638665100343765, 49.63435160352485], - [-1.638307797931881, 49.63478256447805], - [-1.638106754627051, 49.635123526501125], - [-1.63801504687924, 49.63529146048344], - [-1.637702503657229, 49.635829835257084], - [-1.637346356100177, 49.63632648785034], - [-1.637316260918098, 49.63646799072023], - [-1.637344675655574, 49.63659578155421], - [-1.63806560372496, 49.63741387998031], - [-1.638297729308869, 49.637608521672696], - [-1.638389257041214, 49.63754055228617], - [-1.638575730788286, 49.637412593949755], - [-1.638704439188519, 49.637324437100574], - [-1.638848061837624, 49.637249278162365], - [-1.638958776005897, 49.63734467003524], - [-1.638971259222029, 49.637355428012505], - [-1.638968848385021, 49.637357094424615] - ] - }, - "length": 0.5184452215196655, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48098", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12652", - "bus2": "MVLV05297", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.638968848385021, 49.637357094424615], - [-1.638966437548013, 49.63735876083673], - [-1.638949132657638, 49.63735133568258], - [-1.638851579028358, 49.63730949186741], - [-1.63873813544902, 49.637363803543096], - [-1.638407823573902, 49.637598445767445], - [-1.638364613078203, 49.63766385553251], - [-1.638388647125302, 49.63772066103881], - [-1.638416429576165, 49.637925913978656], - [-1.638416192457304, 49.638144731209124], - [-1.638373306666615, 49.638282167480355], - [-1.638057440729805, 49.638694605385226], - [-1.637965199702405, 49.638822027792465], - [-1.637965430563779, 49.63891026145871], - [-1.638004818479327, 49.638951230424304], - [-1.638092889110663, 49.63899413302123], - [-1.63877915186501, 49.63904443623959], - [-1.63896371174802, 49.6390975373099], - [-1.639059793876908, 49.6391536732344], - [-1.639208799139909, 49.639315140023506], - [-1.639299087818756, 49.639197690359225], - [-1.639577103507555, 49.63903597601949], - [-1.639829066569106, 49.63889496374282], - [-1.6399397108025, 49.638805079838065], - [-1.639952667308894, 49.63879455537669], - [-1.639959248554075, 49.63879602948194] - ] - }, - "length": 0.3974522975554689, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46568", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05297", - "bus2": "MVLV09570", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.639959248554075, 49.63879602948194], - [-1.639965829799256, 49.638797503587185], - [-1.639966035788674, 49.63881097626038], - [-1.639967257525591, 49.63888932189757], - [-1.639645520265935, 49.639075944915106], - [-1.639366487642173, 49.639242197980224], - [-1.63927250887082, 49.63943361366409], - [-1.639396425730311, 49.63961035577717], - [-1.639652215381613, 49.63982309156921], - [-1.640108556896245, 49.64018292720363], - [-1.640533040445249, 49.64038987020893], - [-1.640546525482417, 49.640470447113145], - [-1.639675421587061, 49.64125040963323], - [-1.639481898437506, 49.641216011395976], - [-1.639461888769574, 49.641212451992445], - [-1.63946043427207, 49.64121448711107] - ] - }, - "length": 0.3650441293007164, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40361", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09570", - "bus2": "MVLV12653", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.63946043427207, 49.64121448711107], - [-1.639458979774566, 49.641216522229705], - [-1.639476080449809, 49.64122415187133], - [-1.639683600765282, 49.64131676438078], - [-1.64068150921359, 49.64040818677782], - [-1.640887587961767, 49.64014628790694], - [-1.644171208973684, 49.638927857599484], - [-1.64428673169505, 49.63897718078914], - [-1.644318920544687, 49.6389627584152], - [-1.644338413031792, 49.63895402355153], - [-1.644358078893798, 49.638975533132474], - [-1.6443562607887543, 49.6389795586048] - ] - }, - "length": 0.4669884179506195, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36627", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12653", - "bus2": "MVLV11399", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6443562607887543, 49.6389795586048], - [-1.644354442683711, 49.63898358407713], - [-1.644341484641298, 49.63897580972107], - [-1.64431221897523, 49.63898635009178], - [-1.644083251218079, 49.639068812430104], - [-1.644049925087927, 49.639066006932666], - [-1.643416793236225, 49.639300740312706], - [-1.64234071659645, 49.63969041694624], - [-1.642313656300076, 49.63969072292798], - [-1.642286559576219, 49.63971256665703], - [-1.642272274399176, 49.63973622787448], - [-1.642268508814327, 49.63976179099838], - [-1.642275307266666, 49.63978680866261], - [-1.64229381287406, 49.63985485589073], - [-1.642298229374185, 49.639891758820205], - [-1.6422963252767, 49.63993301518811], - [-1.642306709394434, 49.63997080081436], - [-1.642324215479645, 49.64000314553674], - [-1.642366244560662, 49.64003425164088], - [-1.643149472359707, 49.64027070854595], - [-1.643372968196262, 49.640315507596256], - [-1.644269956512475, 49.64042813873789], - [-1.644463330123872, 49.6405248149741], - [-1.644948851272993, 49.64077670026519], - [-1.64502448710858, 49.640815933974544], - [-1.645050424422166, 49.64082074503685], - [-1.645085687724743, 49.64082121145061], - [-1.645265479792314, 49.64067476811369], - [-1.645257810229435, 49.640625670900505], - [-1.645266095880195, 49.6405439906876], - [-1.645310002109757, 49.64046008533303], - [-1.645354514661471, 49.64040469258168], - [-1.646150853461462, 49.639782265379274], - [-1.646114346535756, 49.63976072629444], - [-1.646069898907712, 49.639734493983944], - [-1.6460659248127212, 49.639737506922216] - ] - }, - "length": 0.5787472439158112, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35327", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11399", - "bus2": "MVLV04231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6460659248127212, 49.639737506922216], - [-1.64606195071773, 49.639740519860496], - [-1.646093149700323, 49.639759518115184], - [-1.646124672057415, 49.6397817699229], - [-1.645328351952258, 49.640399475364944], - [-1.645239669058761, 49.64051641827852], - [-1.645219919945549, 49.640631459771726], - [-1.645267500765176, 49.64077299645827], - [-1.645427656290168, 49.64088365109329], - [-1.645567042801381, 49.640926585051105], - [-1.646070229610008, 49.640958822655975], - [-1.646493025667394, 49.64088936857456], - [-1.646578976558907, 49.641076409888626], - [-1.646332048174622, 49.641123660385475], - [-1.646312156764923, 49.641127471896915], - [-1.646312245039197, 49.64113108389712] - ] - }, - "length": 0.2773931594553408, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04231", - "bus2": "MVLV11405", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.646312245039197, 49.64113108389712], - [-1.646312333313471, 49.64113469589732], - [-1.646332400576789, 49.641138099417056], - [-1.64638929169922, 49.64114776257148], - [-1.646465911461812, 49.641135221264015], - [-1.647468170294519, 49.64157441542898], - [-1.647531228487287, 49.641526890592324], - [-1.647544763217454, 49.641516687975574], - [-1.647550106185192, 49.64151825643697] - ] - }, - "length": 0.10725795298864516, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40083", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11405", - "bus2": "MVBus12237", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.647550106185192, 49.64151825643697], - [-1.64755544915293, 49.64151982489835], - [-1.64755258655046, 49.641533164894355], - [-1.64753921110418, 49.6415953827838], - [-1.647802942966988, 49.64171779166659], - [-1.648518368419918, 49.640883683645974], - [-1.648709963215433, 49.64066549177969], - [-1.649108113422299, 49.64022588000555], - [-1.649304569597744, 49.640152492077895], - [-1.649857742140985, 49.6400326151903], - [-1.650244623831524, 49.639913956479624], - [-1.650460275625328, 49.63982099574473], - [-1.650496238664297, 49.63974470580285], - [-1.650496238664297, 49.63974470580285] - ] - }, - "length": 0.33971650173458107, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35711", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus12237", - "bus2": "MVLV18350", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.650496238664297, 49.63974470580285], - [-1.650496238664297, 49.63974470580285], - [-1.650660042441741, 49.639397217347735], - [-1.650760130258705, 49.639179458157635], - [-1.650898886543457, 49.638993695288484], - [-1.651054410995333, 49.6390140505196], - [-1.651074751689997, 49.63901670685257], - [-1.651074590691024, 49.63901863203041] - ] - }, - "length": 0.1016162327368625, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18350", - "bus2": "MVBus14816", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.651074590691024, 49.63901863203041], - [-1.651074429692051, 49.63902055720824], - [-1.651053766996355, 49.63902175123091], - [-1.650941908923001, 49.63902823688537], - [-1.650813048943413, 49.639199249705825], - [-1.650599191799031, 49.639671242519334], - [-1.650618491574853, 49.63968679231682], - [-1.650618491574853, 49.63968679231682] - ] - }, - "length": 0.08772869175221151, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42064", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14816", - "bus2": "MVLV03811", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.650618491574853, 49.63968679231682], - [-1.650618491574853, 49.63968679231682], - [-1.650649419530767, 49.63969203110701], - [-1.650896448212984, 49.63947372456891], - [-1.651060356855154, 49.63937533808456], - [-1.651340187279704, 49.639287371933406], - [-1.651882934967807, 49.63915883668519], - [-1.652252046266686, 49.63877154385866], - [-1.652732366453812, 49.63893150685109], - [-1.652776162489081, 49.63892459447715], - [-1.653214572297203, 49.63845206618083], - [-1.653474392560019, 49.6384926535827], - [-1.653595009370922, 49.63879825359426], - [-1.654104179475812, 49.638748231431165], - [-1.654123502483668, 49.63874283669681], - [-1.6541252575873528, 49.638747481781465] - ] - }, - "length": 0.3601161017125795, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45474", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03811", - "bus2": "MVBus16883", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6541252575873528, 49.638747481781465], - [-1.654127012691038, 49.638752126866116], - [-1.654105733162639, 49.63875251447646], - [-1.653552253645229, 49.63886906771035], - [-1.65341874946993, 49.6385413940442], - [-1.653241525771431, 49.63851057138921], - [-1.652808208186489, 49.63896040585052], - [-1.652719656668124, 49.638979666671084], - [-1.652283155193622, 49.6388299031483], - [-1.651915051041601, 49.63919555417702], - [-1.651432398001215, 49.63931205401539], - [-1.651432398001215, 49.63931205401539] - ] - }, - "length": 0.2817171104650044, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48001", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16883", - "bus2": "MVLV13412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.651432398001215, 49.63931205401539], - [-1.651432398001215, 49.63931205401539], - [-1.651539420756827, 49.63950292976816], - [-1.651638644275705, 49.63956344872928], - [-1.651840627490261, 49.63964294199691], - [-1.652201280681457, 49.639610722175355], - [-1.652215841766864, 49.63965295551304], - [-1.652220372963897, 49.639666096735695], - [-1.65221236758308, 49.63967359517768] - ] - }, - "length": 0.08209146022616265, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39121", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13412", - "bus2": "MVLV18345", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.65221236758308, 49.63967359517768], - [-1.652204362202263, 49.63968109361968], - [-1.652183820239769, 49.63968294927789], - [-1.651838125471654, 49.6397141630449], - [-1.65160775122422, 49.639626640852505], - [-1.651490287994571, 49.63963158531766], - [-1.650234707607045, 49.640863379787525], - [-1.650098091771922, 49.64099053961909], - [-1.649890696923969, 49.64115075058477], - [-1.649802102888521, 49.64123754284771], - [-1.649782416963892, 49.64131925768361], - [-1.649782682789002, 49.641407499610274], - [-1.649830687473214, 49.641503097052194], - [-1.649854628236146, 49.641514240581486], - [-1.649871484272061, 49.64152208369566], - [-1.649879448220405, 49.64153273332219] - ] - }, - "length": 0.3047157335410305, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48000", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18345", - "bus2": "MVLV13415", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.649879448220405, 49.64153273332219], - [-1.649887412168749, 49.64154338294871], - [-1.649886484023854, 49.641556839089816], - [-1.649885167545114, 49.64157595521354], - [-1.650640928915735, 49.64223971374455], - [-1.650616292508886, 49.64229458795612], - [-1.650935110580489, 49.642531246755496], - [-1.65090402460911, 49.64266017863752], - [-1.650711429521012, 49.64288291171144], - [-1.6507539664566, 49.642945381496], - [-1.650777366007957, 49.6430112159862], - [-1.65083402053864, 49.64300718963283], - [-1.650854635485899, 49.64300571851925], - [-1.6508752731227425, 49.643005599995846] - ] - }, - "length": 0.20042162447610118, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44048", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13415", - "bus2": "MVLV09698", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6508752731227425, 49.643005599995846], - [-1.650895910759586, 49.64300548147244], - [-1.650916571088205, 49.643006715539215], - [-1.650942129039795, 49.64300824670489], - [-1.650965250810021, 49.643104700169616], - [-1.65105923380534, 49.643134782551606], - [-1.651225575911102, 49.64321910320288], - [-1.651885317702551, 49.64294338287878], - [-1.652339564305473, 49.64276656413314], - [-1.652794186959223, 49.642594236296674], - [-1.653071176407749, 49.642437029759236], - [-1.652878698673592, 49.642236547595466], - [-1.652972324269701, 49.64214844501973], - [-1.652984113160115, 49.642137355177276], - [-1.6529876825128729, 49.64213837494104] - ] - }, - "length": 0.2362052800999093, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43580", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09698", - "bus2": "MVLV10769", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6529876825128729, 49.64213837494104], - [-1.652991251865631, 49.642139394704806], - [-1.652986615495288, 49.64215252362001], - [-1.652959841240036, 49.64222835813295], - [-1.653134824867502, 49.64240152317148], - [-1.65385911400153, 49.64201640970799], - [-1.65456601827232, 49.64157155351364], - [-1.654467619367898, 49.641453377631095], - [-1.654143751682042, 49.64130785185104], - [-1.654135222460471, 49.64130768373213], - [-1.654114489206905, 49.641307279935994], - [-1.6541095942725872, 49.641301353664915] - ] - }, - "length": 0.2173999289241804, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35246", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10769", - "bus2": "MVBus20991", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6541095942725872, 49.641301353664915], - [-1.654104699338269, 49.64129542739384], - [-1.65411564271796, 49.641283978650286], - [-1.654143582189238, 49.64125473062572], - [-1.654557771437561, 49.64141966611486], - [-1.654679164728723, 49.641547846775495], - [-1.654989499613677, 49.641323755515046], - [-1.655216166305802, 49.64128414309542], - [-1.655216166305802, 49.64128414309542] - ] - }, - "length": 0.10763084810328495, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48002", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20991", - "bus2": "MVBus20992", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.655216166305802, 49.64128414309542], - [-1.655216166305802, 49.64128414309542], - [-1.655220537558186, 49.64128337831457], - [-1.655491739086301, 49.64086883331258], - [-1.656129360184936, 49.64103596349636], - [-1.65593306820143, 49.64134888681329], - [-1.657084904119485, 49.64202236996449], - [-1.65745195708432, 49.64188286054988], - [-1.65745195708432, 49.64188286054988] - ] - }, - "length": 0.2803324611564285, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39122", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20992", - "bus2": "MVLV07448", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.65745195708432, 49.64188286054988], - [-1.65745195708432, 49.64188286054988], - [-1.658082785218181, 49.6416431026881], - [-1.658694681352662, 49.641308656606704], - [-1.659331818477574, 49.641079590959734], - [-1.659949508147983, 49.64081606719898], - [-1.659626206785389, 49.640575981894294], - [-1.659647198570433, 49.64051042599123], - [-1.659697348232264, 49.64052238300647], - [-1.659716821180919, 49.640527026938834], - [-1.6597185284257365, 49.64053361589109] - ] - }, - "length": 0.26481803791881875, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07448", - "bus2": "MVBus22688", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6597185284257365, 49.64053361589109], - [-1.659720235670554, 49.64054020484333], - [-1.659704177202618, 49.640548738816385], - [-1.659676486503199, 49.64056344833813], - [-1.6599921371994, 49.64079478500969], - [-1.659992378774546, 49.640794687101014], - [-1.659992378774546, 49.640794687101014] - ] - }, - "length": 0.03848083419059896, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32649", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22688", - "bus2": "MVLV03816", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.659992378774546, 49.640794687101014], - [-1.659992378774546, 49.640794687101014], - [-1.660116767884211, 49.64074186382945], - [-1.660193609082822, 49.64073201308521], - [-1.660286350546354, 49.640679282526726], - [-1.66138303867216, 49.64023715397212], - [-1.661681960126204, 49.64017912448387], - [-1.662031265553016, 49.64016076614031], - [-1.662205796455039, 49.6401754609696], - [-1.662308453266365, 49.64014220210014], - [-1.662475149163483, 49.64001038150107], - [-1.66253502367219, 49.64015392542268], - [-1.662540446858687, 49.640166928930896], - [-1.662536295709962, 49.64016837911976] - ] - }, - "length": 0.22438681816102976, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44041", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03816", - "bus2": "MVBus23620", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.662536295709962, 49.64016837911976], - [-1.662532144561237, 49.640169829308626], - [-1.662518419079961, 49.640159726176854], - [-1.662461766055652, 49.64011799571136], - [-1.662357033913708, 49.64019365063426], - [-1.662211427082928, 49.64022748468934], - [-1.662040547026729, 49.640206374442315], - [-1.661726821522564, 49.64021899711267], - [-1.661597576669094, 49.64023246110374], - [-1.661435397851312, 49.64026686915751], - [-1.661299412489788, 49.640316579269125], - [-1.660348294472718, 49.64069066057588], - [-1.660204469097215, 49.64076315446508], - [-1.660145158031175, 49.64076699436688], - [-1.659996802038395, 49.64083115791717], - [-1.659996802038395, 49.64083115791717] - ] - }, - "length": 0.20913294003905575, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23620", - "bus2": "MVLV07432", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.659996802038395, 49.64083115791717], - [-1.659996802038395, 49.64083115791717], - [-1.659380444626252, 49.64109772227726], - [-1.659140708717718, 49.64118432808581], - [-1.658728974744375, 49.64133808858412], - [-1.658105511078215, 49.64166664030131], - [-1.657531450704516, 49.64188722183268], - [-1.657532249951541, 49.64190343564625], - [-1.657532917082162, 49.64191690215948], - [-1.6575239274670255, 49.64192659162776] - ] - }, - "length": 0.2170797616003997, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42379", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07432", - "bus2": "MVBus24548", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6575239274670255, 49.64192659162776], - [-1.657514937851889, 49.64193628109604], - [-1.657496291486325, 49.64194219351673], - [-1.657444379034266, 49.64195865572616], - [-1.657058771295908, 49.64212682508635], - [-1.657141335844526, 49.64218700870806], - [-1.656003997670152, 49.643388681197486], - [-1.656148855867594, 49.643410380628715], - [-1.656148855867594, 49.643410380628715] - ] - }, - "length": 0.2158005688277706, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24548", - "bus2": "MVLV07449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.656148855867594, 49.643410380628715], - [-1.656148855867594, 49.643410380628715], - [-1.656194923354919, 49.643417222386894], - [-1.656738194632793, 49.64349845915087], - [-1.656790925572272, 49.643490126359595], - [-1.656827448007215, 49.643492849874725], - [-1.656814930263436, 49.643563583421624], - [-1.656779340903672, 49.64357401186656], - [-1.656748883420937, 49.64357481986947], - [-1.656753704082444, 49.64358792438161], - [-1.6567571961044585, 49.643587777587335] - ] - }, - "length": 0.06469131730334167, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38010", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07449", - "bus2": "MVLV09703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6567571961044585, 49.643587777587335], - [-1.656760688126473, 49.64358763079306], - [-1.656762865317555, 49.6435742322364], - [-1.656811325843143, 49.64345992178081], - [-1.657655775113307, 49.643459646661036], - [-1.657997146442916, 49.643496506180064], - [-1.658076443629988, 49.643567614923775], - [-1.658192438693261, 49.64354470118388], - [-1.658952598209877, 49.64298812852086], - [-1.658993654353312, 49.64304711966371], - [-1.659002204508429, 49.64305939048056], - [-1.658996118190359, 49.643065130887315] - ] - }, - "length": 0.21063109279689207, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46845", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09703", - "bus2": "MVLV18342", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.658996118190359, 49.643065130887315], - [-1.658990031872289, 49.64307087129407], - [-1.658969322186735, 49.643070071862404], - [-1.65892449989707, 49.643068342635594], - [-1.658208563053226, 49.643606278689674], - [-1.658100656760502, 49.6436262095341], - [-1.657659742520849, 49.644152861691424], - [-1.657510191598952, 49.6443930321688], - [-1.657506833422237, 49.644487697565665], - [-1.657539273902358, 49.64456222467523], - [-1.65761727152215, 49.644651379263685], - [-1.658074285600113, 49.644576205123684], - [-1.658251358808419, 49.64455389050545], - [-1.658579443128843, 49.644547089073704], - [-1.658855710209731, 49.6445339596879], - [-1.659092911526592, 49.64453479073927], - [-1.659495293136491, 49.6445038062746], - [-1.65970910613214, 49.64447302753859], - [-1.659825620984186, 49.64447351121549], - [-1.65990817220958, 49.64448237410184], - [-1.65995870086818, 49.64452384946089], - [-1.660042974487446, 49.64470644159026], - [-1.660060080500669, 49.64491565883973], - [-1.660070625879779, 49.64493694590819], - [-1.660076976245524, 49.644949765942705], - [-1.6600719941933777, 49.64495201682858] - ] - }, - "length": 0.4397899318735527, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44843", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18342", - "bus2": "MVBus27018", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6600719941933777, 49.64495201682858], - [-1.660067012141231, 49.64495426771445], - [-1.660050697673322, 49.64494594944991], - [-1.660013870035083, 49.64492715863281], - [-1.659978416466031, 49.644714069582434], - [-1.659927025332948, 49.644594281346066], - [-1.65988340142915, 49.64455255979306], - [-1.659816058827658, 49.64452607281718], - [-1.659724051170582, 49.64452023807497], - [-1.659495257327107, 49.64455423657293], - [-1.659111788171217, 49.644579164720945], - [-1.658397671655415, 49.64459657240175], - [-1.658070104652004, 49.64462677230284], - [-1.657851272124693, 49.644664026516146], - [-1.657633974862949, 49.644703028078986], - [-1.657634719606587, 49.644704226437895], - [-1.657634719606587, 49.644704226437895] - ] - }, - "length": 0.21357803317857346, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41421", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus27018", - "bus2": "MVLV09708", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.657634719606587, 49.644704226437895], - [-1.657634719606587, 49.644704226437895], - [-1.657664292338596, 49.64475151151773], - [-1.657580617679955, 49.644796719176455], - [-1.657442456397958, 49.64472939782915], - [-1.657439087271788, 49.64472775560201], - [-1.657423368284804, 49.64473109837805], - [-1.657412445196616, 49.644739889471886] - ] - }, - "length": 0.02751185685333837, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47229", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09708", - "bus2": "MVLV09694", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.657412445196616, 49.644739889471886], - [-1.657401522108428, 49.64474868056572], - [-1.657399414799996, 49.64476208580523], - [-1.65739907235909, 49.644764255276804], - [-1.657502906004958, 49.64483001279945], - [-1.657323372007246, 49.64495776176338], - [-1.657178261704638, 49.64509962451894], - [-1.656824109619514, 49.645890730458646], - [-1.656770728074614, 49.645950197012475], - [-1.656733121640904, 49.64598210269145], - [-1.656648951737143, 49.64615699517837], - [-1.656610729852612, 49.64636812006485], - [-1.656613523323564, 49.646419346981055], - [-1.656720240911991, 49.64665609773091], - [-1.656840043122258, 49.64700224839765], - [-1.656859339587067, 49.6471195363736], - [-1.656959627902545, 49.647107978602584], - [-1.658261104004475, 49.64647153496391], - [-1.658558577327586, 49.64637843870743], - [-1.658861895009906, 49.64630585791982], - [-1.660200893378413, 49.6460949103272], - [-1.660334739939459, 49.64633550982234], - [-1.660341785159396, 49.646348180972836], - [-1.6603547873034665, 49.64635177979386] - ] - }, - "length": 0.5855644909898856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38003", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09694", - "bus2": "MVLV07442", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6603547873034665, 49.64635177979386], - [-1.660367789447537, 49.64635537861489], - [-1.660386748508173, 49.646349905103975], - [-1.660440958669088, 49.6463342651152], - [-1.660302984589314, 49.646071582063726], - [-1.661443514821132, 49.645892682181376], - [-1.662697368394136, 49.64572606585913], - [-1.662609127743163, 49.64549498489922], - [-1.662581775291376, 49.64504209882583], - [-1.662679523020576, 49.644864036523124], - [-1.662904615461019, 49.64492020400318], - [-1.662971660037774, 49.64484135356547], - [-1.663063203528207, 49.644350138803354], - [-1.662984000159303, 49.6443292344434], - [-1.662964782453086, 49.64432415991343], - [-1.6629655446157925, 49.64432178319872] - ] - }, - "length": 0.4018757368413863, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44847", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07442", - "bus2": "MVBus30879", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6629655446157925, 49.64432178319872], - [-1.662966306778499, 49.644319406484016], - [-1.662987048806569, 49.64431972758408], - [-1.663071914837724, 49.64432102111243], - [-1.663101017778056, 49.64413452778075], - [-1.662930895909558, 49.64398732021816], - [-1.663034357139217, 49.643862186336314], - [-1.663225682295771, 49.64355662739682], - [-1.663255220394122, 49.643544805523845], - [-1.663253723380739, 49.643542139341996], - [-1.663253723380739, 49.643542139341996] - ] - }, - "length": 0.1042534145496487, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34679", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30879", - "bus2": "MVLV18352", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.663253723380739, 49.643542139341996], - [-1.663253723380739, 49.643542139341996], - [-1.66318867360354, 49.643426436848614], - [-1.66273674641831, 49.64308904504723], - [-1.66268344918048, 49.64296302598479], - [-1.662610795711255, 49.64290095346879], - [-1.662604427902253, 49.6428955078606], - [-1.662605725837441, 49.642888927468704], - [-1.662616546426261, 49.642884936673234] - ] - }, - "length": 0.08813950731615683, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48004", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18352", - "bus2": "MVBus31654", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.662616546426261, 49.642884936673234], - [-1.662627367015081, 49.642880945877764], - [-1.662633895413466, 49.64288278921881], - [-1.662642199918083, 49.64288979839457], - [-1.662712845657741, 49.64294940144363], - [-1.662769567540072, 49.64308341836134], - [-1.663214068013565, 49.64341475204477], - [-1.663289227604252, 49.64353346527948], - [-1.663289227604252, 49.64353346527948] - ] - }, - "length": 0.08847193216769035, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34678", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus31654", - "bus2": "MVLV10771", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.663289227604252, 49.64353346527948], - [-1.663289227604252, 49.64353346527948], - [-1.663290507510662, 49.643535482198466], - [-1.663364095862103, 49.64353654603603], - [-1.66420036870149, 49.643588723566374], - [-1.664338852350405, 49.64356953800206], - [-1.664384328483134, 49.64354905938166], - [-1.66445033596179, 49.64354228023878], - [-1.664737529852291, 49.64356117522943], - [-1.664744997595997, 49.64359527906002], - [-1.664747913803706, 49.643608617196286], - [-1.6647535760701795, 49.643609126740216] - ] - }, - "length": 0.11146509204153157, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35247", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10771", - "bus2": "MVLV07445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6647535760701795, 49.643609126740216], - [-1.664759238336653, 49.64360963628415], - [-1.664767646656303, 49.64359731723524], - [-1.664789219079585, 49.64356569653633], - [-1.664939594249154, 49.643590224468035], - [-1.665315946043783, 49.643681685798896], - [-1.665396237788029, 49.64344298709537], - [-1.665551887193883, 49.643426208480065], - [-1.665572347472744, 49.64342400259442], - [-1.6655735383084749, 49.643426206784554] - ] - }, - "length": 0.08563439623109449, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35248", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07445", - "bus2": "MVLV18348", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6655735383084749, 49.643426206784554], - [-1.665574729144206, 49.643428410974686], - [-1.665556650533887, 49.643435025241374], - [-1.665443360066482, 49.643476479903825], - [-1.665367480133459, 49.64368440452684], - [-1.665555777430121, 49.64371482561238], - [-1.665740438642227, 49.643734557898995], - [-1.665938981760998, 49.64373760813035], - [-1.666373159424007, 49.64370551200061], - [-1.666475707226651, 49.64370467108537], - [-1.66689483243525, 49.64375953333262], - [-1.666922424598168, 49.64377478815005], - [-1.666931105149032, 49.643796100505696], - [-1.666884304028332, 49.64388505615675], - [-1.666531193668102, 49.64416199514881], - [-1.666460689453163, 49.64418153160582], - [-1.666371583420357, 49.64417226967476], - [-1.666351101155336, 49.6441701420776], - [-1.6663493738929815, 49.64417292395164] - ] - }, - "length": 0.2154444704255203, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40081", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18348", - "bus2": "MVBus33535", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6663493738929815, 49.64417292395164], - [-1.666347646630627, 49.644175705825695], - [-1.666364674374363, 49.644183397172014], - [-1.666460209697166, 49.644226572418866], - [-1.666535687506332, 49.64421676295277], - [-1.666923648583876, 49.64392511858885], - [-1.666967969649731, 49.64383985099012], - [-1.666994279483576, 49.6438056180891], - [-1.667039036422541, 49.64379327340822], - [-1.667101478164154, 49.64379381379485], - [-1.667295385296576, 49.64382493672678], - [-1.667591685433351, 49.64383631159785], - [-1.668271134787657, 49.64380203052457], - [-1.668306361702929, 49.64380428993486], - [-1.668306361702929, 49.64380428993486] - ] - }, - "length": 0.16825509452722598, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39997", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus33535", - "bus2": "MVLV15132", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.668306361702929, 49.64380428993486], - [-1.668306361702929, 49.64380428993486], - [-1.668301560943159, 49.6437340023798], - [-1.668325485566482, 49.643730062657404], - [-1.668351170007161, 49.643717674723874], - [-1.668363070401259, 49.64370469120321], - [-1.668332734943276, 49.64352422901104], - [-1.668346182337516, 49.64346923564381], - [-1.668308740509139, 49.64342431765364], - [-1.668250024141815, 49.64338639894637], - [-1.668215654921807, 49.6433642019151], - [-1.668166609722962, 49.64331153903314], - [-1.668145027090293, 49.64326295740102], - [-1.668131708312377, 49.64316531821767], - [-1.668102411799664, 49.6429506413113], - [-1.667992576488419, 49.64218179386824], - [-1.668010879536981, 49.642146485933026], - [-1.667997117452306, 49.64212306681962], - [-1.667995968679526, 49.641906027680406], - [-1.667618794520165, 49.641833621000856], - [-1.667624429478351, 49.64181121411131], - [-1.667628303059409, 49.64179582568794], - [-1.667628303059409, 49.64179582568794] - ] - }, - "length": 0.25210504809617895, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV02718_production", - "bus": "MVLV02718", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02718_consumption", - "bus": "MVLV02718", - "phases": "abc", - "powers": [ - [58876.53642901245, 19351.7816922007], - [58876.53642901245, 19351.7816922007], - [58876.53642901245, 19351.7816922007] - ] - }, - { - "id": "MVLV15555_production", - "bus": "MVLV15555", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15555_consumption", - "bus": "MVLV15555", - "phases": "abc", - "powers": [ - [87777.58079080317, 28851.095596990508], - [87777.58079080317, 28851.095596990508], - [87777.58079080317, 28851.095596990508] - ] - }, - { - "id": "MVLV07323_production", - "bus": "MVLV07323", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07323_consumption", - "bus": "MVLV07323", - "phases": "abc", - "powers": [ - [58876.53642901245, 19351.7816922007], - [58876.53642901245, 19351.7816922007], - [58876.53642901245, 19351.7816922007] - ] - }, - { - "id": "MVLV05293_production", - "bus": "MVLV05293", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05293_consumption", - "bus": "MVLV05293", - "phases": "abc", - "powers": [ - [87777.58079080317, 28851.095596990508], - [87777.58079080317, 28851.095596990508], - [87777.58079080317, 28851.095596990508] - ] - }, - { - "id": "MVLV14999_production", - "bus": "MVLV14999", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14999_consumption", - "bus": "MVLV14999", - "phases": "abc", - "powers": [ - [58876.53642901245, 19351.7816922007], - [58876.53642901245, 19351.7816922007], - [58876.53642901245, 19351.7816922007] - ] - }, - { - "id": "MVLV08398_production", - "bus": "MVLV08398", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08398_consumption", - "bus": "MVLV08398", - "phases": "abc", - "powers": [ - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109] - ] - }, - { - "id": "MVLV12652_production", - "bus": "MVLV12652", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12652_consumption", - "bus": "MVLV12652", - "phases": "abc", - "powers": [ - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109] - ] - }, - { - "id": "MVLV05297_production", - "bus": "MVLV05297", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05297_consumption", - "bus": "MVLV05297", - "phases": "abc", - "powers": [ - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109] - ] - }, - { - "id": "MVLV09570_production", - "bus": "MVLV09570", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09570_consumption", - "bus": "MVLV09570", - "phases": "abc", - "powers": [ - [74869.1411183394, 24608.296653991416], - [74869.1411183394, 24608.296653991416], - [74869.1411183394, 24608.296653991416] - ] - }, - { - "id": "MVLV12653_production", - "bus": "MVLV12653", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12653_consumption", - "bus": "MVLV12653", - "phases": "abc", - "powers": [ - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109] - ] - }, - { - "id": "MVLV11399_production", - "bus": "MVLV11399", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11399_consumption", - "bus": "MVLV11399", - "phases": "abc", - "powers": [ - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109], - [51137.68102167411, 16808.14292753109] - ] - }, - { - "id": "MVLV04231_production", - "bus": "MVLV04231", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04231_consumption", - "bus": "MVLV04231", - "phases": "abc", - "powers": [ - [50477.83521764816, 16591.262099878793], - [50477.83521764816, 16591.262099878793], - [50477.83521764816, 16591.262099878793] - ] - }, - { - "id": "MVLV11405_production", - "bus": "MVLV11405", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11405_consumption", - "bus": "MVLV11405", - "phases": "abc", - "powers": [ - [50477.83521764816, 16591.262099878793], - [50477.83521764816, 16591.262099878793], - [50477.83521764816, 16591.262099878793] - ] - }, - { - "id": "MVLV18350_production", - "bus": "MVLV18350", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18350_consumption", - "bus": "MVLV18350", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV03811_production", - "bus": "MVLV03811", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03811_consumption", - "bus": "MVLV03811", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV13412_production", - "bus": "MVLV13412", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13412_consumption", - "bus": "MVLV13412", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV18345_production", - "bus": "MVLV18345", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18345_consumption", - "bus": "MVLV18345", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV13415_production", - "bus": "MVLV13415", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13415_consumption", - "bus": "MVLV13415", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV09698_production", - "bus": "MVLV09698", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09698_consumption", - "bus": "MVLV09698", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV10769_production", - "bus": "MVLV10769", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10769_consumption", - "bus": "MVLV10769", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV07448_production", - "bus": "MVLV07448", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07448_consumption", - "bus": "MVLV07448", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV03816_production", - "bus": "MVLV03816", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03816_consumption", - "bus": "MVLV03816", - "phases": "abc", - "powers": [ - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002] - ] - }, - { - "id": "MVLV07432_production", - "bus": "MVLV07432", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07432_consumption", - "bus": "MVLV07432", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV07449_production", - "bus": "MVLV07449", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07449_consumption", - "bus": "MVLV07449", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV09703_production", - "bus": "MVLV09703", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09703_consumption", - "bus": "MVLV09703", - "phases": "abc", - "powers": [ - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002] - ] - }, - { - "id": "MVLV18342_production", - "bus": "MVLV18342", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18342_consumption", - "bus": "MVLV18342", - "phases": "abc", - "powers": [ - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329] - ] - }, - { - "id": "MVLV09708_production", - "bus": "MVLV09708", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09708_consumption", - "bus": "MVLV09708", - "phases": "abc", - "powers": [ - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491], - [15147.99188234269, 4978.904157104491] - ] - }, - { - "id": "MVLV09694_production", - "bus": "MVLV09694", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09694_consumption", - "bus": "MVLV09694", - "phases": "abc", - "powers": [ - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329] - ] - }, - { - "id": "MVLV07442_production", - "bus": "MVLV07442", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07442_consumption", - "bus": "MVLV07442", - "phases": "abc", - "powers": [ - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329] - ] - }, - { - "id": "MVLV18352_production", - "bus": "MVLV18352", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18352_consumption", - "bus": "MVLV18352", - "phases": "abc", - "powers": [ - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002] - ] - }, - { - "id": "MVLV10771_production", - "bus": "MVLV10771", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10771_consumption", - "bus": "MVLV10771", - "phases": "abc", - "powers": [ - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329] - ] - }, - { - "id": "MVLV07445_production", - "bus": "MVLV07445", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07445_consumption", - "bus": "MVLV07445", - "phases": "abc", - "powers": [ - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329] - ] - }, - { - "id": "MVLV18348_production", - "bus": "MVLV18348", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18348_consumption", - "bus": "MVLV18348", - "phases": "abc", - "powers": [ - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329], - [26705.4070573833, 8777.642822093329] - ] - }, - { - "id": "MVLV15132_production", - "bus": "MVLV15132", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15132_consumption", - "bus": "MVLV15132", - "phases": "abc", - "powers": [ - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002], - [25181.02275315091, 8276.601931108002] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder015_summer.json b/data/MVFeeder015_summer.json deleted file mode 100644 index b6ce29db..00000000 --- a/data/MVFeeder015_summer.json +++ /dev/null @@ -1,1277 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "HVMV01", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBus00053", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.623326183809773, 49.63226650711385] - } - }, - { - "id": "MVBus00054", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.622954639870388, 49.631939839160744] - } - }, - { - "id": "MVBus00055", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.622376716573707, 49.62858095368696] - } - }, - { - "id": "MVBus00056", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.620893120270645, 49.62893349771016] - } - }, - { - "id": "MVBus00057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619657875156477, 49.6305746241572] - } - }, - { - "id": "MVLV13304", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619666847988223, 49.630611324646196] - } - }, - { - "id": "MVBus05252", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619631373814167, 49.630590994074986] - } - }, - { - "id": "MVBus05253", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.62001066228858, 49.62832552372274] - } - }, - { - "id": "MVBus05254", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619704923601284, 49.62777414229089] - } - }, - { - "id": "MVLV18242", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6194617020978654, 49.62775867731261] - } - }, - { - "id": "MVBus05775", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617296198248987, 49.627827044271605] - } - }, - { - "id": "MVBus05776", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.618071703010131, 49.62876339045437] - } - }, - { - "id": "MVLV14995", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6175182258464154, 49.62827064068822] - } - }, - { - "id": "MVBus06340", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.61797185105183, 49.628856075992964] - } - }, - { - "id": "MVLV03678", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617288715725815, 49.63252690092534] - } - }, - { - "id": "MVBus06805", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617248593084641, 49.63351059928568] - } - }, - { - "id": "MVBus06806", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.615129260227989, 49.63365678307963] - } - }, - { - "id": "MVLV14994", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6148992023665274, 49.633246093376826] - } - }, - { - "id": "MVBus07237", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.614397172406862, 49.63374451855814] - } - }, - { - "id": "MVLV14997", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6125424847098795, 49.63319064348599] - } - }, - { - "id": "MVLV09569", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.614090551512768, 49.6320247630815] - } - }, - { - "id": "MVLV07320", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.615251585228688, 49.63138183809393] - } - }, - { - "id": "MVBus08445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.609878920214483, 49.63157028321388] - } - }, - { - "id": "MVLV03692", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6101069381645656, 49.63158911474942] - } - }, - { - "id": "MVBus09070", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.60990342767392, 49.63152112320213] - } - }, - { - "id": "MVBus09071", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607828921912095, 49.63040347671234] - } - }, - { - "id": "MVBus09072", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607975529120126, 49.63007036133769] - } - }, - { - "id": "MVLV01557", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607926725745514, 49.630057242522646] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV01", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBranch37115", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV01", - "bus2": "MVBus00053", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.624837162156209, 49.633717544204686], - [-1.624825310272577, 49.63370648540949], - [-1.624825310272577, 49.63370648540949], - [-1.62481345839408, 49.63369542661301], - [-1.623359933106955, 49.632339030267744], - [-1.623326183809773, 49.63226650711385], - [-1.623326183809773, 49.63226650711385] - ] - }, - "length": 0.19373117984134303, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38445", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00053", - "bus2": "MVBus00054", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.623326183809773, 49.63226650711385], - [-1.623326183809773, 49.63226650711385], - [-1.623256964886385, 49.6321205189783], - [-1.622954639870388, 49.631939839160744], - [-1.622954639870388, 49.631939839160744] - ] - }, - "length": 0.0466684979154946, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32902", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00054", - "bus2": "MVBus00055", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.622954639870388, 49.631939839160744], - [-1.622954639870388, 49.631939839160744], - [-1.622791667204805, 49.63187551371534], - [-1.622781372238395, 49.63186506017172], - [-1.622775680986269, 49.631852918176165], - [-1.622724782335082, 49.63148261125394], - [-1.622712141901039, 49.63115678587939], - [-1.622732661751757, 49.6307892742711], - [-1.622728783689761, 49.63078015722843], - [-1.62271851483728, 49.630770215379144], - [-1.622625005204506, 49.630737317786455], - [-1.622619251127881, 49.630732389632094], - [-1.622888503562517, 49.62983181631249], - [-1.623049843133065, 49.629485202799515], - [-1.622900206171288, 49.62943081787617], - [-1.622810625063383, 49.629216309504336], - [-1.62265649682463, 49.62901363574483], - [-1.6225117170979, 49.62869899837995], - [-1.622496693679498, 49.62863243491011], - [-1.622395892564589, 49.628646086284704], - [-1.622376716573707, 49.62858095368696], - [-1.622376716573707, 49.62858095368696] - ] - }, - "length": 0.4092063054473774, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34651", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00055", - "bus2": "MVBus00056", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.622376716573707, 49.62858095368696], - [-1.622376716573707, 49.62858095368696], - [-1.622372026717302, 49.628570649246114], - [-1.622356271165123, 49.62846682770215], - [-1.622261284436479, 49.62837060960379], - [-1.622207717498512, 49.62829989497923], - [-1.622180946060279, 49.62822768236052], - [-1.62216952883881, 49.62815495791898], - [-1.621062541920247, 49.628142475439006], - [-1.620930793007626, 49.628813836115214], - [-1.620913128650989, 49.628888771543224], - [-1.620893120270645, 49.62893349771016], - [-1.620893120270645, 49.62893349771016] - ] - }, - "length": 0.21954342456757106, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43063", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00056", - "bus2": "MVBus00057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.620893120270645, 49.62893349771016], - [-1.620893120270645, 49.62893349771016], - [-1.620803554835318, 49.62906395823792], - [-1.620701482976924, 49.62909389879037], - [-1.620544112067105, 49.629087522188925], - [-1.620457236135225, 49.62897876285862], - [-1.620431085758726, 49.62870182949241], - [-1.620313405703354, 49.628641386731516], - [-1.62017220296288, 49.62863872481972], - [-1.620091100464641, 49.628748738144985], - [-1.620024244254979, 49.62910272201935], - [-1.619657875156477, 49.6305746241572], - [-1.619657875156477, 49.6305746241572] - ] - }, - "length": 0.31996744840118263, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35882", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00057", - "bus2": "MVLV13304", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619657875156477, 49.6305746241572], - [-1.619657875156477, 49.6305746241572], - [-1.619653147688041, 49.630592385699686], - [-1.619650369889454, 49.630602799712065], - [-1.619668883774012, 49.63060481957001], - [-1.619666847988223, 49.630611324646196] - ] - }, - "length": 0.004536545893693076, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37432", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13304", - "bus2": "MVBus05252", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619666847988223, 49.630611324646196], - [-1.619664812202434, 49.63061782972238], - [-1.619625399750188, 49.630614101840614], - [-1.619627157114878, 49.63060730913235], - [-1.619631373814167, 49.630590994074986], - [-1.619631373814167, 49.630590994074986] - ] - }, - "length": 0.005483402606147038, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37555", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05252", - "bus2": "MVBus05253", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619631373814167, 49.630590994074986], - [-1.619631373814167, 49.630590994074986], - [-1.619982173901628, 49.628939081808056], - [-1.620081883775705, 49.6285953078882], - [-1.620126124809151, 49.628559581290794], - [-1.619975680096279, 49.62849898768144], - [-1.62001066228858, 49.62832552372274], - [-1.62001066228858, 49.62832552372274] - ] - }, - "length": 0.2617227298854735, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40864", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05253", - "bus2": "MVBus05254", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.62001066228858, 49.62832552372274], - [-1.62001066228858, 49.62832552372274], - [-1.619990032194904, 49.62831976946931], - [-1.619979781936978, 49.628246700998254], - [-1.619968985717971, 49.62807201066118], - [-1.619958965146112, 49.62800190210659], - [-1.619935847879893, 49.62775564076857], - [-1.619932187501521, 49.62771666212823], - [-1.619891596407082, 49.62768468325065], - [-1.619867669101086, 49.6276812130303], - [-1.61984556474374, 49.62768161276903], - [-1.619826237273845, 49.62768550953946], - [-1.619810072357286, 49.62769127210947], - [-1.619794696637928, 49.62770060576055], - [-1.619776178302717, 49.62771493406426], - [-1.619768985518702, 49.62773249760089], - [-1.619755589830324, 49.62775450850498], - [-1.61974310392571, 49.62777504187375], - [-1.619734678045402, 49.627783311776206], - [-1.619704923601284, 49.62777414229089], - [-1.619704923601284, 49.62777414229089] - ] - }, - "length": 0.09380842822624201, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38827", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05254", - "bus2": "MVLV18242", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619704923601284, 49.62777414229089], - [-1.619704923601284, 49.62777414229089], - [-1.619502549883901, 49.627762556044544], - [-1.619481886854964, 49.62776137086632], - [-1.6194617020978654, 49.62775867731261] - ] - }, - "length": 0.01617639679305394, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34050", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18242", - "bus2": "MVBus05775", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6194617020978654, 49.62775867731261], - [-1.619441517340767, 49.6277559837589], - [-1.619421810857793, 49.627751781830035], - [-1.619279261933552, 49.62772137686995], - [-1.61789222453811, 49.62783084692612], - [-1.61776078783689, 49.6275255786363], - [-1.617493837917352, 49.62760132122202], - [-1.617401565596081, 49.627728729446694], - [-1.617296198248987, 49.627827044271605], - [-1.617296198248987, 49.627827044271605] - ] - }, - "length": 0.19857131245149381, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38529", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05775", - "bus2": "MVBus05776", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617296198248987, 49.627827044271605], - [-1.617296198248987, 49.627827044271605], - [-1.61745357987417, 49.627754868164345], - [-1.61752818166992, 49.62763166179103], - [-1.617732050953237, 49.62758148843141], - [-1.618152228890945, 49.62854322427451], - [-1.618094597392389, 49.62858481049892], - [-1.618071703010131, 49.62876339045437], - [-1.618071703010131, 49.62876339045437] - ] - }, - "length": 0.18173893427682564, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47960", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05776", - "bus2": "MVLV14995", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.618071703010131, 49.62876339045437], - [-1.618071703010131, 49.62876339045437], - [-1.618071643905142, 49.62876387797005], - [-1.617724094908134, 49.62873432334502], - [-1.617708044496505, 49.628535867616634], - [-1.617532776088263, 49.62849413053917], - [-1.617574419981693, 49.62830631381738], - [-1.617540246203886, 49.628279600581955], - [-1.617526997350453, 49.6282692342394], - [-1.6175182258464154, 49.62827064068822] - ] - }, - "length": 0.08743391984267036, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35995", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14995", - "bus2": "MVBus06340", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6175182258464154, 49.62827064068822], - [-1.617509454342378, 49.628272047137045], - [-1.617505146371753, 49.628285226830165], - [-1.617420432131188, 49.628544789765364], - [-1.617601292848718, 49.62858723431532], - [-1.617615817601381, 49.62881815703151], - [-1.61797185105183, 49.628856075992964], - [-1.61797185105183, 49.628856075992964] - ] - }, - "length": 0.09667306913811433, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39548", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06340", - "bus2": "MVLV03678", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.61797185105183, 49.628856075992964], - [-1.61797185105183, 49.628856075992964], - [-1.617980756866947, 49.628857025589376], - [-1.617946172720699, 49.629029288624885], - [-1.618011211234624, 49.629079298145484], - [-1.617599980502613, 49.63150199718768], - [-1.617598150161725, 49.63161642026717], - [-1.617443098013907, 49.632527548362916], - [-1.617309019065242, 49.63252029754535], - [-1.617289930630933, 49.632519267261145], - [-1.617288603123362, 49.63251982323359], - [-1.617288715725815, 49.63252690092534] - ] - }, - "length": 0.42424395751102045, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39549", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03678", - "bus2": "MVBus06805", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617288715725815, 49.63252690092534], - [-1.617288828328268, 49.63253397861709], - [-1.617309305958128, 49.63253614144915], - [-1.617402996914094, 49.63254602605633], - [-1.617255070869215, 49.6335109359625], - [-1.617248593084641, 49.63351059928568], - [-1.617248593084641, 49.63351059928568] - ] - }, - "length": 0.1166751178584927, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42873", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06805", - "bus2": "MVBus06806", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617248593084641, 49.63351059928568], - [-1.617248593084641, 49.63351059928568], - [-1.61606756226302, 49.633449691918756], - [-1.615132562335555, 49.633665271687924], - [-1.615129260227989, 49.63365678307963], - [-1.615129260227989, 49.63365678307963] - ] - }, - "length": 0.15823242540325652, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32598", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06806", - "bus2": "MVLV14994", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.615129260227989, 49.63365678307963], - [-1.615129260227989, 49.63365678307963], - [-1.615038089161312, 49.63342267476121], - [-1.614921048301394, 49.63325706921345], - [-1.614911051602498, 49.63324526547287], - [-1.6148992023665274, 49.633246093376826] - ] - }, - "length": 0.04862324255083111, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36770", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14994", - "bus2": "MVBus07237", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6148992023665274, 49.633246093376826], - [-1.614887353130557, 49.63324692128078], - [-1.614893813584765, 49.63325972183895], - [-1.614985628553693, 49.63344247276457], - [-1.615059069374125, 49.6336821872727], - [-1.614397172406862, 49.63374451855814], - [-1.614397172406862, 49.63374451855814] - ] - }, - "length": 0.0983779462509927, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42879", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07237", - "bus2": "MVLV14997", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.614397172406862, 49.63374451855814], - [-1.614397172406862, 49.63374451855814], - [-1.613934968901359, 49.63378803779377], - [-1.613247679713893, 49.633878097028294], - [-1.61280289549296, 49.63343860308057], - [-1.612640095562403, 49.633187589871596], - [-1.612598231853735, 49.63319477532163], - [-1.612549873019654, 49.63319978999074], - [-1.6125424847098795, 49.63319064348599] - ] - }, - "length": 0.17984323786250975, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41315", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14997", - "bus2": "MVLV09569", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6125424847098795, 49.63319064348599], - [-1.612535096400105, 49.633181496981244], - [-1.61254896881741, 49.6331714851432], - [-1.612595884573013, 49.63313764369573], - [-1.612304891955625, 49.63262440582521], - [-1.611761822849687, 49.63225060514492], - [-1.611816996970732, 49.63207719617671], - [-1.613711604316259, 49.631884377363384], - [-1.613770868814423, 49.631929200324024], - [-1.614070583570374, 49.632020685703246], - [-1.614089815920525, 49.63202572230922], - [-1.614090551512768, 49.6320247630815] - ] - }, - "length": 0.31478369710551507, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43993", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09569", - "bus2": "MVLV07320", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.614090551512768, 49.6320247630815], - [-1.614091287105011, 49.63202380385378], - [-1.614073525940391, 49.63201684879276], - [-1.613794080665256, 49.6319073281487], - [-1.61394971151713, 49.63162019297836], - [-1.615121338857239, 49.63157123639807], - [-1.615244620685993, 49.63139469083286], - [-1.615253181208338, 49.63138242437115], - [-1.615251585228688, 49.63138183809393] - ] - }, - "length": 0.16680800473055252, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36771", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07320", - "bus2": "MVBus08445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.615251585228688, 49.63138183809393], - [-1.615249989249038, 49.631381251816705], - [-1.615238236766404, 49.631392345723505], - [-1.615086562399179, 49.63153550505344], - [-1.613912257270153, 49.631585448049165], - [-1.613762585802799, 49.63185068126129], - [-1.611803788254319, 49.63204606496801], - [-1.611627805842067, 49.632167586843345], - [-1.611311118667244, 49.631974831203785], - [-1.611278253899263, 49.63189401252384], - [-1.610958479131793, 49.631831069201276], - [-1.610736484856756, 49.631828732055354], - [-1.609852441443621, 49.63176518997786], - [-1.609829826166487, 49.631742548538995], - [-1.609822121528065, 49.63171579651127], - [-1.609876880381386, 49.63156986422409], - [-1.609878920214483, 49.63157028321388], - [-1.609878920214483, 49.63157028321388] - ] - }, - "length": 0.4669542724178578, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47616", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08445", - "bus2": "MVLV03692", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.609878920214483, 49.63157028321388], - [-1.609878920214483, 49.63157028321388], - [-1.610031933256469, 49.63160149969727], - [-1.610082941644438, 49.631603548277496], - [-1.610101839129751, 49.631598003635126], - [-1.6101069381645656, 49.63158911474942] - ] - }, - "length": 0.01677643016309775, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35109", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03692", - "bus2": "MVBus09070", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6101069381645656, 49.63158911474942], - [-1.61011203719938, 49.631580225863715], - [-1.610103337791975, 49.63156799273692], - [-1.610065559848792, 49.63155443387497], - [-1.60990342767392, 49.63152112320213], - [-1.60990342767392, 49.63152112320213] - ] - }, - "length": 0.016901585911935392, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45173", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09070", - "bus2": "MVBus09071", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.60990342767392, 49.63152112320213], - [-1.60990342767392, 49.63152112320213], - [-1.609896393916509, 49.63151968026674], - [-1.609971411687376, 49.63129831648937], - [-1.609938911009826, 49.631221990673836], - [-1.608935358453139, 49.63084556674166], - [-1.607751361150486, 49.630517591361695], - [-1.607828921912095, 49.63040347671234], - [-1.607828921912095, 49.63040347671234] - ] - }, - "length": 0.22513392788300826, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36665", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09071", - "bus2": "MVBus09072", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607828921912095, 49.63040347671234], - [-1.607828921912095, 49.63040347671234], - [-1.608014726389757, 49.63008779510236], - [-1.607975529120126, 49.63007036133769], - [-1.607975529120126, 49.63007036133769] - ] - }, - "length": 0.0410212088521344, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47856", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09072", - "bus2": "MVLV01557", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607975529120126, 49.63007036133769], - [-1.607975529120126, 49.63007036133769], - [-1.6079568102343, 49.63006478549265], - [-1.607926725745514, 49.630057242522646], - [-1.607926725745514, 49.630057242522646] - ] - }, - "length": 0.0038174820230672257, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV13304_production", - "bus": "MVLV13304", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV13304_consumption", - "bus": "MVLV13304", - "phases": "abc", - "powers": [ - [5921.330735520133, 1946.247294272535], - [5921.330735520133, 1946.247294272535], - [5921.330735520133, 1946.247294272535] - ] - }, - { - "id": "MVLV18242_production", - "bus": "MVLV18242", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV18242_consumption", - "bus": "MVLV18242", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV14995_production", - "bus": "MVLV14995", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV14995_consumption", - "bus": "MVLV14995", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV03678_production", - "bus": "MVLV03678", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV03678_consumption", - "bus": "MVLV03678", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV14994_production", - "bus": "MVLV14994", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV14994_consumption", - "bus": "MVLV14994", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV14997_production", - "bus": "MVLV14997", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV14997_consumption", - "bus": "MVLV14997", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV09569_production", - "bus": "MVLV09569", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09569_consumption", - "bus": "MVLV09569", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV07320_production", - "bus": "MVLV07320", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV07320_consumption", - "bus": "MVLV07320", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV03692_production", - "bus": "MVLV03692", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV03692_consumption", - "bus": "MVLV03692", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV01557_production", - "bus": "MVLV01557", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV01557_consumption", - "bus": "MVLV01557", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder015_winter.json b/data/MVFeeder015_winter.json deleted file mode 100644 index 30105e90..00000000 --- a/data/MVFeeder015_winter.json +++ /dev/null @@ -1,1277 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "HVMV01", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBus00053", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.623326183809773, 49.63226650711385] - } - }, - { - "id": "MVBus00054", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.622954639870388, 49.631939839160744] - } - }, - { - "id": "MVBus00055", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.622376716573707, 49.62858095368696] - } - }, - { - "id": "MVBus00056", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.620893120270645, 49.62893349771016] - } - }, - { - "id": "MVBus00057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619657875156477, 49.6305746241572] - } - }, - { - "id": "MVLV13304", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619666847988223, 49.630611324646196] - } - }, - { - "id": "MVBus05252", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619631373814167, 49.630590994074986] - } - }, - { - "id": "MVBus05253", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.62001066228858, 49.62832552372274] - } - }, - { - "id": "MVBus05254", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.619704923601284, 49.62777414229089] - } - }, - { - "id": "MVLV18242", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6194617020978654, 49.62775867731261] - } - }, - { - "id": "MVBus05775", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617296198248987, 49.627827044271605] - } - }, - { - "id": "MVBus05776", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.618071703010131, 49.62876339045437] - } - }, - { - "id": "MVLV14995", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6175182258464154, 49.62827064068822] - } - }, - { - "id": "MVBus06340", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.61797185105183, 49.628856075992964] - } - }, - { - "id": "MVLV03678", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617288715725815, 49.63252690092534] - } - }, - { - "id": "MVBus06805", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.617248593084641, 49.63351059928568] - } - }, - { - "id": "MVBus06806", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.615129260227989, 49.63365678307963] - } - }, - { - "id": "MVLV14994", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6148992023665274, 49.633246093376826] - } - }, - { - "id": "MVBus07237", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.614397172406862, 49.63374451855814] - } - }, - { - "id": "MVLV14997", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6125424847098795, 49.63319064348599] - } - }, - { - "id": "MVLV09569", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.614090551512768, 49.6320247630815] - } - }, - { - "id": "MVLV07320", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.615251585228688, 49.63138183809393] - } - }, - { - "id": "MVBus08445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.609878920214483, 49.63157028321388] - } - }, - { - "id": "MVLV03692", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6101069381645656, 49.63158911474942] - } - }, - { - "id": "MVBus09070", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.60990342767392, 49.63152112320213] - } - }, - { - "id": "MVBus09071", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607828921912095, 49.63040347671234] - } - }, - { - "id": "MVBus09072", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607975529120126, 49.63007036133769] - } - }, - { - "id": "MVLV01557", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607926725745514, 49.630057242522646] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV01", - "geometry": { - "type": "Point", - "coordinates": [-1.624837162156209, 49.633717544204686] - } - }, - { - "id": "MVBranch37115", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV01", - "bus2": "MVBus00053", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.624837162156209, 49.633717544204686], - [-1.624825310272577, 49.63370648540949], - [-1.624825310272577, 49.63370648540949], - [-1.62481345839408, 49.63369542661301], - [-1.623359933106955, 49.632339030267744], - [-1.623326183809773, 49.63226650711385], - [-1.623326183809773, 49.63226650711385] - ] - }, - "length": 0.19373117984134303, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38445", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00053", - "bus2": "MVBus00054", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.623326183809773, 49.63226650711385], - [-1.623326183809773, 49.63226650711385], - [-1.623256964886385, 49.6321205189783], - [-1.622954639870388, 49.631939839160744], - [-1.622954639870388, 49.631939839160744] - ] - }, - "length": 0.0466684979154946, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32902", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00054", - "bus2": "MVBus00055", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.622954639870388, 49.631939839160744], - [-1.622954639870388, 49.631939839160744], - [-1.622791667204805, 49.63187551371534], - [-1.622781372238395, 49.63186506017172], - [-1.622775680986269, 49.631852918176165], - [-1.622724782335082, 49.63148261125394], - [-1.622712141901039, 49.63115678587939], - [-1.622732661751757, 49.6307892742711], - [-1.622728783689761, 49.63078015722843], - [-1.62271851483728, 49.630770215379144], - [-1.622625005204506, 49.630737317786455], - [-1.622619251127881, 49.630732389632094], - [-1.622888503562517, 49.62983181631249], - [-1.623049843133065, 49.629485202799515], - [-1.622900206171288, 49.62943081787617], - [-1.622810625063383, 49.629216309504336], - [-1.62265649682463, 49.62901363574483], - [-1.6225117170979, 49.62869899837995], - [-1.622496693679498, 49.62863243491011], - [-1.622395892564589, 49.628646086284704], - [-1.622376716573707, 49.62858095368696], - [-1.622376716573707, 49.62858095368696] - ] - }, - "length": 0.4092063054473774, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34651", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00055", - "bus2": "MVBus00056", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.622376716573707, 49.62858095368696], - [-1.622376716573707, 49.62858095368696], - [-1.622372026717302, 49.628570649246114], - [-1.622356271165123, 49.62846682770215], - [-1.622261284436479, 49.62837060960379], - [-1.622207717498512, 49.62829989497923], - [-1.622180946060279, 49.62822768236052], - [-1.62216952883881, 49.62815495791898], - [-1.621062541920247, 49.628142475439006], - [-1.620930793007626, 49.628813836115214], - [-1.620913128650989, 49.628888771543224], - [-1.620893120270645, 49.62893349771016], - [-1.620893120270645, 49.62893349771016] - ] - }, - "length": 0.21954342456757106, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43063", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00056", - "bus2": "MVBus00057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.620893120270645, 49.62893349771016], - [-1.620893120270645, 49.62893349771016], - [-1.620803554835318, 49.62906395823792], - [-1.620701482976924, 49.62909389879037], - [-1.620544112067105, 49.629087522188925], - [-1.620457236135225, 49.62897876285862], - [-1.620431085758726, 49.62870182949241], - [-1.620313405703354, 49.628641386731516], - [-1.62017220296288, 49.62863872481972], - [-1.620091100464641, 49.628748738144985], - [-1.620024244254979, 49.62910272201935], - [-1.619657875156477, 49.6305746241572], - [-1.619657875156477, 49.6305746241572] - ] - }, - "length": 0.31996744840118263, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35882", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00057", - "bus2": "MVLV13304", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619657875156477, 49.6305746241572], - [-1.619657875156477, 49.6305746241572], - [-1.619653147688041, 49.630592385699686], - [-1.619650369889454, 49.630602799712065], - [-1.619668883774012, 49.63060481957001], - [-1.619666847988223, 49.630611324646196] - ] - }, - "length": 0.004536545893693076, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37432", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13304", - "bus2": "MVBus05252", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619666847988223, 49.630611324646196], - [-1.619664812202434, 49.63061782972238], - [-1.619625399750188, 49.630614101840614], - [-1.619627157114878, 49.63060730913235], - [-1.619631373814167, 49.630590994074986], - [-1.619631373814167, 49.630590994074986] - ] - }, - "length": 0.005483402606147038, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37555", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05252", - "bus2": "MVBus05253", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619631373814167, 49.630590994074986], - [-1.619631373814167, 49.630590994074986], - [-1.619982173901628, 49.628939081808056], - [-1.620081883775705, 49.6285953078882], - [-1.620126124809151, 49.628559581290794], - [-1.619975680096279, 49.62849898768144], - [-1.62001066228858, 49.62832552372274], - [-1.62001066228858, 49.62832552372274] - ] - }, - "length": 0.2617227298854735, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40864", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05253", - "bus2": "MVBus05254", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.62001066228858, 49.62832552372274], - [-1.62001066228858, 49.62832552372274], - [-1.619990032194904, 49.62831976946931], - [-1.619979781936978, 49.628246700998254], - [-1.619968985717971, 49.62807201066118], - [-1.619958965146112, 49.62800190210659], - [-1.619935847879893, 49.62775564076857], - [-1.619932187501521, 49.62771666212823], - [-1.619891596407082, 49.62768468325065], - [-1.619867669101086, 49.6276812130303], - [-1.61984556474374, 49.62768161276903], - [-1.619826237273845, 49.62768550953946], - [-1.619810072357286, 49.62769127210947], - [-1.619794696637928, 49.62770060576055], - [-1.619776178302717, 49.62771493406426], - [-1.619768985518702, 49.62773249760089], - [-1.619755589830324, 49.62775450850498], - [-1.61974310392571, 49.62777504187375], - [-1.619734678045402, 49.627783311776206], - [-1.619704923601284, 49.62777414229089], - [-1.619704923601284, 49.62777414229089] - ] - }, - "length": 0.09380842822624201, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38827", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05254", - "bus2": "MVLV18242", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.619704923601284, 49.62777414229089], - [-1.619704923601284, 49.62777414229089], - [-1.619502549883901, 49.627762556044544], - [-1.619481886854964, 49.62776137086632], - [-1.6194617020978654, 49.62775867731261] - ] - }, - "length": 0.01617639679305394, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34050", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18242", - "bus2": "MVBus05775", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6194617020978654, 49.62775867731261], - [-1.619441517340767, 49.6277559837589], - [-1.619421810857793, 49.627751781830035], - [-1.619279261933552, 49.62772137686995], - [-1.61789222453811, 49.62783084692612], - [-1.61776078783689, 49.6275255786363], - [-1.617493837917352, 49.62760132122202], - [-1.617401565596081, 49.627728729446694], - [-1.617296198248987, 49.627827044271605], - [-1.617296198248987, 49.627827044271605] - ] - }, - "length": 0.19857131245149381, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38529", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05775", - "bus2": "MVBus05776", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617296198248987, 49.627827044271605], - [-1.617296198248987, 49.627827044271605], - [-1.61745357987417, 49.627754868164345], - [-1.61752818166992, 49.62763166179103], - [-1.617732050953237, 49.62758148843141], - [-1.618152228890945, 49.62854322427451], - [-1.618094597392389, 49.62858481049892], - [-1.618071703010131, 49.62876339045437], - [-1.618071703010131, 49.62876339045437] - ] - }, - "length": 0.18173893427682564, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47960", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05776", - "bus2": "MVLV14995", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.618071703010131, 49.62876339045437], - [-1.618071703010131, 49.62876339045437], - [-1.618071643905142, 49.62876387797005], - [-1.617724094908134, 49.62873432334502], - [-1.617708044496505, 49.628535867616634], - [-1.617532776088263, 49.62849413053917], - [-1.617574419981693, 49.62830631381738], - [-1.617540246203886, 49.628279600581955], - [-1.617526997350453, 49.6282692342394], - [-1.6175182258464154, 49.62827064068822] - ] - }, - "length": 0.08743391984267036, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35995", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14995", - "bus2": "MVBus06340", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6175182258464154, 49.62827064068822], - [-1.617509454342378, 49.628272047137045], - [-1.617505146371753, 49.628285226830165], - [-1.617420432131188, 49.628544789765364], - [-1.617601292848718, 49.62858723431532], - [-1.617615817601381, 49.62881815703151], - [-1.61797185105183, 49.628856075992964], - [-1.61797185105183, 49.628856075992964] - ] - }, - "length": 0.09667306913811433, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39548", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06340", - "bus2": "MVLV03678", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.61797185105183, 49.628856075992964], - [-1.61797185105183, 49.628856075992964], - [-1.617980756866947, 49.628857025589376], - [-1.617946172720699, 49.629029288624885], - [-1.618011211234624, 49.629079298145484], - [-1.617599980502613, 49.63150199718768], - [-1.617598150161725, 49.63161642026717], - [-1.617443098013907, 49.632527548362916], - [-1.617309019065242, 49.63252029754535], - [-1.617289930630933, 49.632519267261145], - [-1.617288603123362, 49.63251982323359], - [-1.617288715725815, 49.63252690092534] - ] - }, - "length": 0.42424395751102045, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39549", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03678", - "bus2": "MVBus06805", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617288715725815, 49.63252690092534], - [-1.617288828328268, 49.63253397861709], - [-1.617309305958128, 49.63253614144915], - [-1.617402996914094, 49.63254602605633], - [-1.617255070869215, 49.6335109359625], - [-1.617248593084641, 49.63351059928568], - [-1.617248593084641, 49.63351059928568] - ] - }, - "length": 0.1166751178584927, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42873", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06805", - "bus2": "MVBus06806", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.617248593084641, 49.63351059928568], - [-1.617248593084641, 49.63351059928568], - [-1.61606756226302, 49.633449691918756], - [-1.615132562335555, 49.633665271687924], - [-1.615129260227989, 49.63365678307963], - [-1.615129260227989, 49.63365678307963] - ] - }, - "length": 0.15823242540325652, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32598", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06806", - "bus2": "MVLV14994", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.615129260227989, 49.63365678307963], - [-1.615129260227989, 49.63365678307963], - [-1.615038089161312, 49.63342267476121], - [-1.614921048301394, 49.63325706921345], - [-1.614911051602498, 49.63324526547287], - [-1.6148992023665274, 49.633246093376826] - ] - }, - "length": 0.04862324255083111, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36770", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14994", - "bus2": "MVBus07237", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6148992023665274, 49.633246093376826], - [-1.614887353130557, 49.63324692128078], - [-1.614893813584765, 49.63325972183895], - [-1.614985628553693, 49.63344247276457], - [-1.615059069374125, 49.6336821872727], - [-1.614397172406862, 49.63374451855814], - [-1.614397172406862, 49.63374451855814] - ] - }, - "length": 0.0983779462509927, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42879", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07237", - "bus2": "MVLV14997", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.614397172406862, 49.63374451855814], - [-1.614397172406862, 49.63374451855814], - [-1.613934968901359, 49.63378803779377], - [-1.613247679713893, 49.633878097028294], - [-1.61280289549296, 49.63343860308057], - [-1.612640095562403, 49.633187589871596], - [-1.612598231853735, 49.63319477532163], - [-1.612549873019654, 49.63319978999074], - [-1.6125424847098795, 49.63319064348599] - ] - }, - "length": 0.17984323786250975, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41315", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14997", - "bus2": "MVLV09569", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6125424847098795, 49.63319064348599], - [-1.612535096400105, 49.633181496981244], - [-1.61254896881741, 49.6331714851432], - [-1.612595884573013, 49.63313764369573], - [-1.612304891955625, 49.63262440582521], - [-1.611761822849687, 49.63225060514492], - [-1.611816996970732, 49.63207719617671], - [-1.613711604316259, 49.631884377363384], - [-1.613770868814423, 49.631929200324024], - [-1.614070583570374, 49.632020685703246], - [-1.614089815920525, 49.63202572230922], - [-1.614090551512768, 49.6320247630815] - ] - }, - "length": 0.31478369710551507, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43993", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09569", - "bus2": "MVLV07320", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.614090551512768, 49.6320247630815], - [-1.614091287105011, 49.63202380385378], - [-1.614073525940391, 49.63201684879276], - [-1.613794080665256, 49.6319073281487], - [-1.61394971151713, 49.63162019297836], - [-1.615121338857239, 49.63157123639807], - [-1.615244620685993, 49.63139469083286], - [-1.615253181208338, 49.63138242437115], - [-1.615251585228688, 49.63138183809393] - ] - }, - "length": 0.16680800473055252, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36771", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07320", - "bus2": "MVBus08445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.615251585228688, 49.63138183809393], - [-1.615249989249038, 49.631381251816705], - [-1.615238236766404, 49.631392345723505], - [-1.615086562399179, 49.63153550505344], - [-1.613912257270153, 49.631585448049165], - [-1.613762585802799, 49.63185068126129], - [-1.611803788254319, 49.63204606496801], - [-1.611627805842067, 49.632167586843345], - [-1.611311118667244, 49.631974831203785], - [-1.611278253899263, 49.63189401252384], - [-1.610958479131793, 49.631831069201276], - [-1.610736484856756, 49.631828732055354], - [-1.609852441443621, 49.63176518997786], - [-1.609829826166487, 49.631742548538995], - [-1.609822121528065, 49.63171579651127], - [-1.609876880381386, 49.63156986422409], - [-1.609878920214483, 49.63157028321388], - [-1.609878920214483, 49.63157028321388] - ] - }, - "length": 0.4669542724178578, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47616", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08445", - "bus2": "MVLV03692", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.609878920214483, 49.63157028321388], - [-1.609878920214483, 49.63157028321388], - [-1.610031933256469, 49.63160149969727], - [-1.610082941644438, 49.631603548277496], - [-1.610101839129751, 49.631598003635126], - [-1.6101069381645656, 49.63158911474942] - ] - }, - "length": 0.01677643016309775, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35109", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03692", - "bus2": "MVBus09070", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6101069381645656, 49.63158911474942], - [-1.61011203719938, 49.631580225863715], - [-1.610103337791975, 49.63156799273692], - [-1.610065559848792, 49.63155443387497], - [-1.60990342767392, 49.63152112320213], - [-1.60990342767392, 49.63152112320213] - ] - }, - "length": 0.016901585911935392, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45173", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09070", - "bus2": "MVBus09071", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.60990342767392, 49.63152112320213], - [-1.60990342767392, 49.63152112320213], - [-1.609896393916509, 49.63151968026674], - [-1.609971411687376, 49.63129831648937], - [-1.609938911009826, 49.631221990673836], - [-1.608935358453139, 49.63084556674166], - [-1.607751361150486, 49.630517591361695], - [-1.607828921912095, 49.63040347671234], - [-1.607828921912095, 49.63040347671234] - ] - }, - "length": 0.22513392788300826, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36665", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09071", - "bus2": "MVBus09072", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607828921912095, 49.63040347671234], - [-1.607828921912095, 49.63040347671234], - [-1.608014726389757, 49.63008779510236], - [-1.607975529120126, 49.63007036133769], - [-1.607975529120126, 49.63007036133769] - ] - }, - "length": 0.0410212088521344, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47856", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09072", - "bus2": "MVLV01557", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607975529120126, 49.63007036133769], - [-1.607975529120126, 49.63007036133769], - [-1.6079568102343, 49.63006478549265], - [-1.607926725745514, 49.630057242522646], - [-1.607926725745514, 49.630057242522646] - ] - }, - "length": 0.0038174820230672257, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV13304_production", - "bus": "MVLV13304", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13304_consumption", - "bus": "MVLV13304", - "phases": "abc", - "powers": [ - [29606.65367760067, 9731.236471362676], - [29606.65367760067, 9731.236471362676], - [29606.65367760067, 9731.236471362676] - ] - }, - { - "id": "MVLV18242_production", - "bus": "MVLV18242", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18242_consumption", - "bus": "MVLV18242", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV14995_production", - "bus": "MVLV14995", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14995_consumption", - "bus": "MVLV14995", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV03678_production", - "bus": "MVLV03678", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03678_consumption", - "bus": "MVLV03678", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV14994_production", - "bus": "MVLV14994", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14994_consumption", - "bus": "MVLV14994", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV14997_production", - "bus": "MVLV14997", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14997_consumption", - "bus": "MVLV14997", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV09569_production", - "bus": "MVLV09569", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09569_consumption", - "bus": "MVLV09569", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV07320_production", - "bus": "MVLV07320", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07320_consumption", - "bus": "MVLV07320", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV03692_production", - "bus": "MVLV03692", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03692_consumption", - "bus": "MVLV03692", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV01557_production", - "bus": "MVLV01557", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01557_consumption", - "bus": "MVLV01557", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder032_summer.json b/data/MVFeeder032_summer.json deleted file mode 100644 index 8fa8ab99..00000000 --- a/data/MVFeeder032_summer.json +++ /dev/null @@ -1,2267 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.341143887616421, 49.649368152657914] - } - }, - { - "id": "HVMV02", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341143887616421, 49.649368152657914] - } - }, - { - "id": "MVBus00117", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363073414238841, 49.64304820544189] - } - }, - { - "id": "MVLV10578", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363057844882403, 49.64298359804093] - } - }, - { - "id": "MVBus00118", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38131751047128, 49.64725252932783] - } - }, - { - "id": "MVLV10667", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381823290728951, 49.64701700842836] - } - }, - { - "id": "MVBus08728", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381535312882208, 49.64733699083525] - } - }, - { - "id": "MVBus08729", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396450904235974, 49.66024788508449] - } - }, - { - "id": "MVLV11999", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3964057126467686, 49.660262531967966] - } - }, - { - "id": "MVBus13497", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396160700810953, 49.6605270561942] - } - }, - { - "id": "MVBus13498", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387432288168403, 49.66315379586582] - } - }, - { - "id": "MVBus13500", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.385535507316819, 49.66475968041158] - } - }, - { - "id": "MVBus13502", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381131381360064, 49.665651484021154] - } - }, - { - "id": "MVBus13504", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38122396426964, 49.66615036764246] - } - }, - { - "id": "MVBus13505", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381285976129816, 49.66779511294239] - } - }, - { - "id": "MVBus13506", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381534586991432, 49.6696998371898] - } - }, - { - "id": "MVBus13507", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.378508982637205, 49.67049492628741] - } - }, - { - "id": "MVBus13508", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3732913242456, 49.67126845912352] - } - }, - { - "id": "MVBus13509", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371996551240058, 49.6715045934133] - } - }, - { - "id": "MVLV18939", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371520169196079, 49.67063246231633] - } - }, - { - "id": "MVBus13511", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367021341986308, 49.67251972372232] - } - }, - { - "id": "MVLV16210", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365446752865551, 49.670169257631514] - } - }, - { - "id": "MVLV10341", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364568388218211, 49.67301865165213] - } - }, - { - "id": "MVLV09036", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.378678571365429, 49.6700702299779] - } - }, - { - "id": "MVLV05842", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37861523666604, 49.66583210459457] - } - }, - { - "id": "MVLV13624", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3873025941583055, 49.66617902194447] - } - }, - { - "id": "MVBus19216", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.383768918139199, 49.6761669133056] - } - }, - { - "id": "MVBus19217", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387473067955328, 49.67977113339019] - } - }, - { - "id": "MVBus19219", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.390165074821639, 49.68435695606896] - } - }, - { - "id": "MVLV00333", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387482823059862, 49.679565823143825] - } - }, - { - "id": "MVLV16879", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.383661956464301, 49.67615070129675] - } - }, - { - "id": "MVLV00559", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38732578741805, 49.66311035879193] - } - }, - { - "id": "MVBus16238", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396407487666482, 49.66030127215695] - } - }, - { - "id": "MVBus16239", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396174122247448, 49.660517606384] - } - }, - { - "id": "MVBus16240", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387251985079024, 49.65826499708912] - } - }, - { - "id": "MVLV06250", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38978771053233, 49.657963688996865] - } - }, - { - "id": "MVBus16242", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.377957689760006, 49.658651945322525] - } - }, - { - "id": "MVBus16243", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.377014665176524, 49.65869498771795] - } - }, - { - "id": "MVBus16244", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.376121721428708, 49.65874279740818] - } - }, - { - "id": "MVLV12099", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.377335684181196, 49.657807942425116] - } - }, - { - "id": "MVBus16245", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372533815677704, 49.65884745330522] - } - }, - { - "id": "MVBus16248", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37052573334111, 49.65888465426676] - } - }, - { - "id": "MVLV03705", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.373821100953172, 49.661964717931106] - } - }, - { - "id": "MVBus16250", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366195557635843, 49.65902809491562] - } - }, - { - "id": "MVBus16251", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364874290710226, 49.65897516480102] - } - }, - { - "id": "MVBus16255", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363211977478477, 49.65814335267942] - } - }, - { - "id": "MVLV15015", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362188979845099, 49.6571000586743] - } - }, - { - "id": "MVBus16252", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363212064086434, 49.65900120223403] - } - }, - { - "id": "MVLV03703", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.359611241149069, 49.65929698067572] - } - }, - { - "id": "MVLV18263", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.353621166734196, 49.66271170637617] - } - }, - { - "id": "MVBus16246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372298178279623, 49.658299751045696] - } - }, - { - "id": "MVLV09595", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371150419839853, 49.655825871851405] - } - }, - { - "id": "MVLV15016", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379425423456413, 49.64836189737522] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV02", - "geometry": { - "type": "Point", - "coordinates": [-1.341143887616421, 49.649368152657914] - } - }, - { - "id": "MVBranch46833", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV02", - "bus2": "MVBus00117", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341143887616421, 49.649368152657914], - [-1.341155125505547, 49.649298961446966], - [-1.341155125505547, 49.649298961446966], - [-1.341171924590065, 49.64930687473048], - [-1.34153220499483, 49.64947661010156], - [-1.342281461172416, 49.64959418164936], - [-1.343082352557444, 49.64993697293146], - [-1.343716300356949, 49.64995916606215], - [-1.348459393130546, 49.64758213012024], - [-1.348846309075413, 49.64714257669268], - [-1.349060213719286, 49.64701837110458], - [-1.351136248206694, 49.64621592139255], - [-1.351392627106781, 49.64580421775384], - [-1.351912479370751, 49.64540850044688], - [-1.352134962424792, 49.645330158011404], - [-1.353353500184246, 49.64504433859896], - [-1.35515369511343, 49.64492399855778], - [-1.355584164988894, 49.64478605736917], - [-1.35829665370363, 49.643602195615294], - [-1.360301933076271, 49.64329788143403], - [-1.361665073179857, 49.643247201167185], - [-1.363073414238841, 49.64304820544189], - [-1.363073414238841, 49.64304820544189] - ] - }, - "length": 1.8605918592243234, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38809", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00117", - "bus2": "MVLV10578", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363073414238841, 49.64304820544189], - [-1.363073414238841, 49.64304820544189], - [-1.363057844882403, 49.64298359804093], - [-1.363057844882403, 49.64298359804093] - ] - }, - "length": 0.007273229980418355, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39531", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00117", - "bus2": "MVBus00118", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363073414238841, 49.64304820544189], - [-1.363073414238841, 49.64304820544189], - [-1.365165590719229, 49.6428094259041], - [-1.366704338086834, 49.64277107820396], - [-1.3674497862878, 49.642637427072906], - [-1.368933782102799, 49.642699832847896], - [-1.369682822291606, 49.642741610998094], - [-1.370990146237126, 49.64292397561041], - [-1.371729533556553, 49.64300295323173], - [-1.372107421239513, 49.64337889282862], - [-1.372457416775075, 49.64366118497363], - [-1.373208516268967, 49.644040481439404], - [-1.379249044382182, 49.646483061635756], - [-1.381316654975673, 49.647253140027196], - [-1.38131751047128, 49.64725252932783], - [-1.38131751047128, 49.64725252932783] - ] - }, - "length": 1.478026424760914, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47589", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00118", - "bus2": "MVLV10667", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.38131751047128, 49.64725252932783], - [-1.38131751047128, 49.64725252932783], - [-1.381724259956072, 49.646960977864396], - [-1.381805648342918, 49.64699913177372], - [-1.381822465513448, 49.64700702107947], - [-1.381823290728951, 49.64701700842836] - ] - }, - "length": 0.052501881798752856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34841", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10667", - "bus2": "MVBus08728", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381823290728951, 49.64701700842836], - [-1.381828447398985, 49.64702639208406], - [-1.381817612103909, 49.64703787378427], - [-1.381535312882208, 49.64733699083525], - [-1.381535312882208, 49.64733699083525] - ] - }, - "length": 0.040516118763759885, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38666", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08728", - "bus2": "MVBus08729", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381535312882208, 49.64733699083525], - [-1.381535312882208, 49.64733699083525], - [-1.381532613079363, 49.647339842993034], - [-1.387352677781882, 49.64960724622622], - [-1.388318011605513, 49.650356785906034], - [-1.389201217086399, 49.65086187162395], - [-1.390226223721301, 49.65125494435587], - [-1.391904432767028, 49.65255395121468], - [-1.392331753348779, 49.65302028258035], - [-1.392600201816321, 49.65326189559758], - [-1.393508995490428, 49.65405997151168], - [-1.394724211770671, 49.65625667615101], - [-1.394467101458887, 49.657815195376415], - [-1.394726723388684, 49.658258917718264], - [-1.394998401781996, 49.65841886170976], - [-1.397531312501535, 49.6592875234264], - [-1.396450904235974, 49.66024788508449], - [-1.396450904235974, 49.66024788508449] - ] - }, - "length": 2.014917579745296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33480", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08729", - "bus2": "MVLV11999", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396450904235974, 49.66024788508449], - [-1.396450904235974, 49.66024788508449], - [-1.396443075890358, 49.660255220339025], - [-1.396439420030837, 49.66025863274994], - [-1.396418911804348, 49.66025112001627], - [-1.3964057126467686, 49.660262531967966] - ] - }, - "length": 0.0031549875681026926, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46912", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11999", - "bus2": "MVBus13497", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3964057126467686, 49.660262531967966], - [-1.396407132163299, 49.66026161606427], - [-1.396439489721871, 49.66027452619542], - [-1.396434283961451, 49.66029497889806], - [-1.396202967387727, 49.66051470239752], - [-1.396180631662906, 49.66052725036166], - [-1.396160700810953, 49.6605270561942], - [-1.396160700810953, 49.6605270561942] - ] - }, - "length": 0.03821945416796346, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44703", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13497", - "bus2": "MVBus13498", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396160700810953, 49.6605270561942], - [-1.396160700810953, 49.6605270561942], - [-1.395555468685765, 49.66107580437764], - [-1.395169438387523, 49.661520714559], - [-1.394968188098091, 49.661874880556596], - [-1.394807025928492, 49.66252413376084], - [-1.392529045215136, 49.662455180555675], - [-1.392118170720751, 49.66249125685826], - [-1.391235804967413, 49.66261505445563], - [-1.390545214101071, 49.66259849088318], - [-1.389547806756696, 49.662632389251975], - [-1.38911700419036, 49.66267593791021], - [-1.388473184803178, 49.662836170822466], - [-1.387815332627581, 49.66272135864561], - [-1.387432288168403, 49.66315379586582], - [-1.387432288168403, 49.66315379586582] - ] - }, - "length": 0.8146527229250738, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34586", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13498", - "bus2": "MVBus13500", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387432288168403, 49.66315379586582], - [-1.387432288168403, 49.66315379586582], - [-1.387039886554878, 49.6635881108234], - [-1.386484900543847, 49.66413155710462], - [-1.386120329144697, 49.66439543052622], - [-1.385711827363929, 49.66462187773843], - [-1.385544211792423, 49.66472371984935], - [-1.385535507316819, 49.66475968041158], - [-1.385535507316819, 49.66475968041158] - ] - }, - "length": 0.22734508024316832, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33867", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13500", - "bus2": "MVBus13502", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.385535507316819, 49.66475968041158], - [-1.385535507316819, 49.66475968041158], - [-1.385140982061642, 49.66488642106181], - [-1.384579259595707, 49.6650282107324], - [-1.384074713754928, 49.665188800833455], - [-1.383904502841845, 49.66522877499533], - [-1.383538182686781, 49.66529929660482], - [-1.383391757068411, 49.665320143868925], - [-1.383195978619326, 49.66533567551236], - [-1.382353919959743, 49.665463408079425], - [-1.38198670372907, 49.66554314978261], - [-1.381720671427023, 49.665607508456965], - [-1.381131381360064, 49.665651484021154], - [-1.381131381360064, 49.665651484021154] - ] - }, - "length": 0.3352713149048944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44720", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13502", - "bus2": "MVBus13504", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381131381360064, 49.665651484021154], - [-1.381131381360064, 49.665651484021154], - [-1.381131291762427, 49.665640949805756], - [-1.381156061810941, 49.66563928958973], - [-1.381175292863904, 49.66579850632216], - [-1.381173381494978, 49.665922140657614], - [-1.381170640360787, 49.66604085565299], - [-1.381194184326156, 49.66614753368187], - [-1.38122396426964, 49.66615036764246], - [-1.38122396426964, 49.66615036764246] - ] - }, - "length": 0.061848062572889766, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch04352", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13504", - "bus2": "MVBus13505", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.38122396426964, 49.66615036764246], - [-1.38122396426964, 49.66615036764246], - [-1.381285976129816, 49.66779511294239], - [-1.381285976129816, 49.66779511294239] - ] - }, - "length": 0.1829876796288891, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25753", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13505", - "bus2": "MVBus13506", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381285976129816, 49.66779511294239], - [-1.381285976129816, 49.66779511294239], - [-1.381541559413578, 49.669695532229206], - [-1.381534586991432, 49.6696998371898], - [-1.381534586991432, 49.6696998371898] - ] - }, - "length": 0.21286808031255783, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15088", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13506", - "bus2": "MVBus13507", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381534586991432, 49.6696998371898], - [-1.381534586991432, 49.6696998371898], - [-1.380402066293798, 49.670398261588275], - [-1.378508982637205, 49.67049492628741], - [-1.378508982637205, 49.67049492628741] - ] - }, - "length": 0.24984598448858025, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08590", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13507", - "bus2": "MVBus13508", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.378508982637205, 49.67049492628741], - [-1.378508982637205, 49.67049492628741], - [-1.37678537080522, 49.670631142484865], - [-1.3732913242456, 49.67126845912352], - [-1.3732913242456, 49.67126845912352] - ] - }, - "length": 0.3873225502112333, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08589", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13508", - "bus2": "MVBus13509", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3732913242456, 49.67126845912352], - [-1.3732913242456, 49.67126845912352], - [-1.371996551240058, 49.6715045934133], - [-1.371996551240058, 49.6715045934133] - ] - }, - "length": 0.09708097808053277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25752", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13509", - "bus2": "MVLV18939", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371996551240058, 49.6715045934133], - [-1.371996551240058, 49.6715045934133], - [-1.371520169196079, 49.67063246231633], - [-1.371520169196079, 49.67063246231633] - ] - }, - "length": 0.10291560301491072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15087", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13509", - "bus2": "MVBus13511", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371996551240058, 49.6715045934133], - [-1.371996551240058, 49.6715045934133], - [-1.367021341986308, 49.67251972372232], - [-1.367021341986308, 49.67251972372232] - ] - }, - "length": 0.37645239932160457, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15089", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13511", - "bus2": "MVLV16210", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367021341986308, 49.67251972372232], - [-1.367021341986308, 49.67251972372232], - [-1.366187541297301, 49.67211601147649], - [-1.365713580465351, 49.671078713192856], - [-1.365660273578199, 49.67055825961095], - [-1.365446752865551, 49.670169257631514], - [-1.365446752865551, 49.670169257631514] - ] - }, - "length": 0.2993697297327617, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04353", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13511", - "bus2": "MVLV10341", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367021341986308, 49.67251972372232], - [-1.367021341986308, 49.67251972372232], - [-1.364568388218211, 49.67301865165213], - [-1.364568388218211, 49.67301865165213] - ] - }, - "length": 0.18554949799224277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23450", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13507", - "bus2": "MVLV09036", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.378508982637205, 49.67049492628741], - [-1.378508982637205, 49.67049492628741], - [-1.378678571365429, 49.6700702299779], - [-1.378678571365429, 49.6700702299779] - ] - }, - "length": 0.04879639165804694, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch40852", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13502", - "bus2": "MVLV05842", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381131381360064, 49.665651484021154], - [-1.381131381360064, 49.665651484021154], - [-1.381029501125795, 49.66565904699777], - [-1.380400863813919, 49.66568999592873], - [-1.379404242975954, 49.66576193144422], - [-1.379175224813729, 49.66579180145957], - [-1.379014098968625, 49.66583372817085], - [-1.3788643143604, 49.66589746813244], - [-1.378812474507873, 49.66583807706209], - [-1.378623181633065, 49.66580408874287], - [-1.37861523666604, 49.66583210459457], - [-1.37861523666604, 49.66583210459457] - ] - }, - "length": 0.19257122220997205, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41902", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13500", - "bus2": "MVLV13624", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.385535507316819, 49.66475968041158], - [-1.385535507316819, 49.66475968041158], - [-1.38554535141413, 49.66477631587685], - [-1.385580019595954, 49.66480683332069], - [-1.385712315401383, 49.66486376436848], - [-1.386932371014009, 49.6648547027574], - [-1.387659258928473, 49.66496216257432], - [-1.387813498654389, 49.66500127975286], - [-1.38784507547882, 49.66502662324394], - [-1.3878531652238, 49.66506321780228], - [-1.387464730571561, 49.66570593028453], - [-1.387232752063884, 49.66616392313844], - [-1.387273311325704, 49.66617001110036], - [-1.387304696852681, 49.666174718149186], - [-1.3873025941583055, 49.66617902194447] - ] - }, - "length": 0.31499506964743823, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46758", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13624", - "bus2": "MVBus19216", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3873025941583055, 49.66617902194447], - [-1.38730049146393, 49.66618332573975], - [-1.387281621527715, 49.6661802383753], - [-1.387273595999855, 49.66619874533568], - [-1.387126789522058, 49.66653748988062], - [-1.387068218349722, 49.66662254561626], - [-1.386871015445751, 49.66764372595973], - [-1.386711588591889, 49.66822679044968], - [-1.386729959983745, 49.6685182934495], - [-1.386657288580173, 49.66916813070097], - [-1.386478897791872, 49.66969099197584], - [-1.386286617109939, 49.67025454872399], - [-1.385444441146551, 49.671713913094244], - [-1.385347198037088, 49.672013340742716], - [-1.385044711731814, 49.67262800506158], - [-1.384743229885515, 49.673240587263976], - [-1.384541321821446, 49.67374217477279], - [-1.384465340320264, 49.67439041755782], - [-1.384426869459528, 49.674718693637956], - [-1.384401660405118, 49.67481686309496], - [-1.38421143267843, 49.67522277234288], - [-1.383972504907403, 49.67579928977712], - [-1.383768918139199, 49.6761669133056], - [-1.383768918139199, 49.6761669133056] - ] - }, - "length": 1.147392428120071, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45999", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19216", - "bus2": "MVBus19217", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.383768918139199, 49.6761669133056], - [-1.383768918139199, 49.6761669133056], - [-1.38327036785506, 49.67701266461312], - [-1.383309387303449, 49.67707783296498], - [-1.383401257515831, 49.67712680308007], - [-1.384713669679374, 49.67735186928863], - [-1.384914378253134, 49.67739544152049], - [-1.385480855189906, 49.67745290133123], - [-1.386003702970066, 49.677431244661044], - [-1.386450059053588, 49.67739252854847], - [-1.386510323164695, 49.67741864393641], - [-1.386663950339315, 49.67770771798039], - [-1.386643690403553, 49.67805847630034], - [-1.386702345928535, 49.6784207687566], - [-1.38692992343025, 49.67878002142394], - [-1.387042240259506, 49.67914360233237], - [-1.387329243230438, 49.67950524220256], - [-1.387473067955328, 49.67977113339019], - [-1.387473067955328, 49.67977113339019] - ] - }, - "length": 0.6218432211306393, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44224", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19217", - "bus2": "MVBus19219", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387473067955328, 49.67977113339019], - [-1.387473067955328, 49.67977113339019], - [-1.387806168205325, 49.680327750656254], - [-1.388025554686639, 49.68073489364812], - [-1.388096987643314, 49.68102766376753], - [-1.387994507938074, 49.68159422369477], - [-1.388090698237654, 49.68172638112344], - [-1.38850637036157, 49.68232864353209], - [-1.389254229626828, 49.68330725934507], - [-1.389453424615921, 49.68376935909893], - [-1.389969215781849, 49.68434015999343], - [-1.390073797353083, 49.68440161719534], - [-1.390144320137423, 49.684357370379296], - [-1.390165074821639, 49.68435695606896], - [-1.390165074821639, 49.68435695606896] - ] - }, - "length": 0.5676631752803123, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19217", - "bus2": "MVLV00333", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387473067955328, 49.67977113339019], - [-1.387473067955328, 49.67977113339019], - [-1.387482823059862, 49.679565823143825], - [-1.387482823059862, 49.679565823143825] - ] - }, - "length": 0.02284604834606541, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40555", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19216", - "bus2": "MVLV16879", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.383768918139199, 49.6761669133056], - [-1.383768918139199, 49.6761669133056], - [-1.383661956464301, 49.67615070129675], - [-1.383661956464301, 49.67615070129675] - ] - }, - "length": 0.007927866285498594, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13498", - "bus2": "MVLV00559", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387432288168403, 49.66315379586582], - [-1.387432288168403, 49.66315379586582], - [-1.38732578741805, 49.66311035879193], - [-1.38732578741805, 49.66311035879193] - ] - }, - "length": 0.009080697744007212, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45712", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11999", - "bus2": "MVBus16238", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3964057126467686, 49.660262531967966], - [-1.396391093972659, 49.66027485982339], - [-1.396414518635273, 49.66028758709], - [-1.396419437158045, 49.66029025839718], - [-1.396407487666482, 49.66030127215695], - [-1.396407487666482, 49.66030127215695] - ] - }, - "length": 0.004166795103980359, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39559", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16238", - "bus2": "MVBus16239", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396407487666482, 49.66030127215695], - [-1.396407487666482, 49.66030127215695], - [-1.396174122247448, 49.660517606384], - [-1.396174122247448, 49.660517606384] - ] - }, - "length": 0.029373923231384276, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47672", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16239", - "bus2": "MVBus16240", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396174122247448, 49.660517606384], - [-1.396174122247448, 49.660517606384], - [-1.396111766175311, 49.66050073986271], - [-1.396100144253099, 49.660516796261895], - [-1.396071478395184, 49.66055638580858], - [-1.396011060269304, 49.66052493943121], - [-1.395443563088109, 49.66034353777329], - [-1.394209841555353, 49.659972937785184], - [-1.392963518902197, 49.65959870427206], - [-1.392072147680209, 49.65935175016693], - [-1.391686879205834, 49.65923140750466], - [-1.390093925500851, 49.65872042555155], - [-1.389931312419627, 49.658591914207356], - [-1.389942084642362, 49.65856705571873], - [-1.389948463325861, 49.65852131231217], - [-1.389947776643327, 49.65847895128867], - [-1.389925395580485, 49.65843726757665], - [-1.389883695657536, 49.65839617000445], - [-1.389770329439416, 49.658366702372874], - [-1.389470629259052, 49.6583351254436], - [-1.387636360812467, 49.658316880841426], - [-1.387287809835395, 49.65832580415053], - [-1.387277722611223, 49.65829957415882], - [-1.387251985079024, 49.65826499708912], - [-1.387251985079024, 49.65826499708912] - ] - }, - "length": 0.7266361804865676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch26848", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16240", - "bus2": "MVLV06250", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387251985079024, 49.65826499708912], - [-1.387251985079024, 49.65826499708912], - [-1.38978771053233, 49.657963688996865], - [-1.38978771053233, 49.657963688996865] - ] - }, - "length": 0.18612848590421097, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28780", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16240", - "bus2": "MVBus16242", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387251985079024, 49.65826499708912], - [-1.387251985079024, 49.65826499708912], - [-1.385153802659122, 49.658479102553656], - [-1.377957689760006, 49.658651945322525], - [-1.377957689760006, 49.658651945322525] - ] - }, - "length": 0.6732851019557871, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch06777", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16242", - "bus2": "MVBus16243", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.377957689760006, 49.658651945322525], - [-1.377957689760006, 49.658651945322525], - [-1.377014665176524, 49.65869498771795], - [-1.377014665176524, 49.65869498771795] - ] - }, - "length": 0.06825641112094445, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03344", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16243", - "bus2": "MVBus16244", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.377014665176524, 49.65869498771795], - [-1.377014665176524, 49.65869498771795], - [-1.377010067488537, 49.65869518281012], - [-1.37656422189707, 49.65892372742128], - [-1.376121721428708, 49.65874279740818], - [-1.376121721428708, 49.65874279740818] - ] - }, - "length": 0.07910830682295543, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38652", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16244", - "bus2": "MVLV12099", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.376121721428708, 49.65874279740818], - [-1.376121721428708, 49.65874279740818], - [-1.376128822931988, 49.6587537817668], - [-1.37619260878575, 49.65873640507586], - [-1.376230947417102, 49.65873948989785], - [-1.376444185706649, 49.65855100133291], - [-1.376641338280473, 49.65835407839132], - [-1.376650882341169, 49.65820198754478], - [-1.376681323438947, 49.65812403030884], - [-1.377281246452525, 49.65776350980456], - [-1.377335684181196, 49.657807942425116], - [-1.377335684181196, 49.657807942425116] - ] - }, - "length": 0.15245677642841116, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch03345", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16244", - "bus2": "MVBus16245", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.376121721428708, 49.65874279740818], - [-1.376121721428708, 49.65874279740818], - [-1.376119094518961, 49.658741718243604], - [-1.372533815677704, 49.65884745330522], - [-1.372533815677704, 49.65884745330522] - ] - }, - "length": 0.25935534014258776, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12129", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16245", - "bus2": "MVBus16248", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372533815677704, 49.65884745330522], - [-1.372533815677704, 49.65884745330522], - [-1.37052573334111, 49.65888465426676], - [-1.37052573334111, 49.65888465426676] - ] - }, - "length": 0.14504614489335685, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21189", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16248", - "bus2": "MVLV03705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37052573334111, 49.65888465426676], - [-1.37052573334111, 49.65888465426676], - [-1.372613731669212, 49.6609965695583], - [-1.373821100953172, 49.661964717931106], - [-1.373821100953172, 49.661964717931106] - ] - }, - "length": 0.4176484825338185, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12127", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16248", - "bus2": "MVBus16250", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37052573334111, 49.65888465426676], - [-1.37052573334111, 49.65888465426676], - [-1.366195557635843, 49.65902809491562], - [-1.366195557635843, 49.65902809491562] - ] - }, - "length": 0.3130525985206985, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16250", - "bus2": "MVBus16251", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366195557635843, 49.65902809491562], - [-1.366195557635843, 49.65902809491562], - [-1.364874290710226, 49.65897516480102], - [-1.364874290710226, 49.65897516480102] - ] - }, - "length": 0.09557903096634539, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03347", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16251", - "bus2": "MVBus16255", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364874290710226, 49.65897516480102], - [-1.364874290710226, 49.65897516480102], - [-1.363211977478477, 49.65814335267942], - [-1.363211977478477, 49.65814335267942] - ] - }, - "length": 0.15154109479720265, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch46579", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16255", - "bus2": "MVLV15015", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363211977478477, 49.65814335267942], - [-1.363211977478477, 49.65814335267942], - [-1.362705928317699, 49.657775040494265], - [-1.361999708149692, 49.65727533626031], - [-1.362123100582489, 49.65707333926866], - [-1.362188979845099, 49.6571000586743], - [-1.362188979845099, 49.6571000586743] - ] - }, - "length": 0.16009582724380417, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch17174", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16251", - "bus2": "MVBus16252", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364874290710226, 49.65897516480102], - [-1.364874290710226, 49.65897516480102], - [-1.363212064086434, 49.65900120223403], - [-1.363212064086434, 49.65900120223403] - ] - }, - "length": 0.12005035444768837, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch26847", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16252", - "bus2": "MVLV03703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363212064086434, 49.65900120223403], - [-1.363212064086434, 49.65900120223403], - [-1.359611241149069, 49.65929698067572], - [-1.359611241149069, 49.65929698067572] - ] - }, - "length": 0.26205738228368264, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch17175", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16252", - "bus2": "MVLV18263", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363212064086434, 49.65900120223403], - [-1.363212064086434, 49.65900120223403], - [-1.362202405174957, 49.66056110037333], - [-1.354854791926472, 49.66325901700029], - [-1.353621166734196, 49.66271170637617], - [-1.353621166734196, 49.66271170637617] - ] - }, - "length": 0.9055318059977351, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03346", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16245", - "bus2": "MVBus16246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372533815677704, 49.65884745330522], - [-1.372533815677704, 49.65884745330522], - [-1.372298178279623, 49.658299751045696], - [-1.372298178279623, 49.658299751045696] - ] - }, - "length": 0.0632480621227142, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32611", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16246", - "bus2": "MVLV09595", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372298178279623, 49.658299751045696], - [-1.372298178279623, 49.658299751045696], - [-1.372298077747431, 49.65829951138166], - [-1.372231266154901, 49.65829624642845], - [-1.371985631255131, 49.65805652670265], - [-1.371624906888681, 49.65805455809356], - [-1.371306822773066, 49.657664109747394], - [-1.371203402876501, 49.65737931953817], - [-1.371238334599025, 49.65701719464847], - [-1.371086890486818, 49.65692210387349], - [-1.370972942661989, 49.6566448554951], - [-1.370961928314556, 49.65582325231682], - [-1.371124025505802, 49.65578475761738], - [-1.371150419839853, 49.655825871851405], - [-1.371150419839853, 49.655825871851405] - ] - }, - "length": 0.3408872288632633, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10667", - "bus2": "MVLV15016", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381823290728951, 49.64701700842836], - [-1.38181895927442, 49.647017612121545], - [-1.381798635857504, 49.647020313856906], - [-1.38169652530833, 49.64703389159774], - [-1.381367479305764, 49.647337942868106], - [-1.381201793368014, 49.647328848899605], - [-1.379649402879508, 49.648666940149624], - [-1.379569215225331, 49.64863349504422], - [-1.379502688386823, 49.64834213523793], - [-1.37947066256251, 49.64835032984476], - [-1.379425423456413, 49.64836189737522], - [-1.379425423456413, 49.64836189737522] - ] - }, - "length": 0.2943324039112835, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV10578_production", - "bus": "MVLV10578", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10578_consumption", - "bus": "MVLV10578", - "phases": "abc", - "powers": [ - [1369.6485669397962, 450.18171363411926], - [1369.6485669397962, 450.18171363411926], - [1369.6485669397962, 450.18171363411926] - ] - }, - { - "id": "MVLV10667_production", - "bus": "MVLV10667", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10667_consumption", - "bus": "MVLV10667", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV11999_production", - "bus": "MVLV11999", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11999_consumption", - "bus": "MVLV11999", - "phases": "abc", - "powers": [ - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497] - ] - }, - { - "id": "MVLV18939_production", - "bus": "MVLV18939", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18939_consumption", - "bus": "MVLV18939", - "phases": "abc", - "powers": [ - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299] - ] - }, - { - "id": "MVLV16210_production", - "bus": "MVLV16210", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16210_consumption", - "bus": "MVLV16210", - "phases": "abc", - "powers": [ - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299] - ] - }, - { - "id": "MVLV10341_production", - "bus": "MVLV10341", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10341_consumption", - "bus": "MVLV10341", - "phases": "abc", - "powers": [ - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299] - ] - }, - { - "id": "MVLV09036_production", - "bus": "MVLV09036", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09036_consumption", - "bus": "MVLV09036", - "phases": "abc", - "powers": [ - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299] - ] - }, - { - "id": "MVLV05842_production", - "bus": "MVLV05842", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05842_consumption", - "bus": "MVLV05842", - "phases": "abc", - "powers": [ - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299] - ] - }, - { - "id": "MVLV13624_production", - "bus": "MVLV13624", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13624_consumption", - "bus": "MVLV13624", - "phases": "abc", - "powers": [ - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497] - ] - }, - { - "id": "MVLV00333_production", - "bus": "MVLV00333", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00333_consumption", - "bus": "MVLV00333", - "phases": "abc", - "powers": [ - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497] - ] - }, - { - "id": "MVLV16879_production", - "bus": "MVLV16879", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16879_consumption", - "bus": "MVLV16879", - "phases": "abc", - "powers": [ - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497] - ] - }, - { - "id": "MVLV00559_production", - "bus": "MVLV00559", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00559_consumption", - "bus": "MVLV00559", - "phases": "abc", - "powers": [ - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299], - [2197.2451859864764, 722.1995678145299] - ] - }, - { - "id": "MVLV06250_production", - "bus": "MVLV06250", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06250_consumption", - "bus": "MVLV06250", - "phases": "abc", - "powers": [ - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497], - [6369.904414748488, 2093.686332636497] - ] - }, - { - "id": "MVLV12099_production", - "bus": "MVLV12099", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12099_consumption", - "bus": "MVLV12099", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV03705_production", - "bus": "MVLV03705", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03705_consumption", - "bus": "MVLV03705", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV15015_production", - "bus": "MVLV15015", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15015_consumption", - "bus": "MVLV15015", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV03703_production", - "bus": "MVLV03703", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03703_consumption", - "bus": "MVLV03703", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV18263_production", - "bus": "MVLV18263", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18263_consumption", - "bus": "MVLV18263", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV09595_production", - "bus": "MVLV09595", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09595_consumption", - "bus": "MVLV09595", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - }, - { - "id": "MVLV15016_production", - "bus": "MVLV15016", - "phases": "abc", - "powers": [ - [-1100000.0, 0.0], - [-1100000.0, 0.0], - [-1100000.0, 0.0] - ] - }, - { - "id": "MVLV15016_consumption", - "bus": "MVLV15016", - "phases": "abc", - "powers": [ - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784], - [1627.9332232193008, 535.0757747647784] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder032_winter.json b/data/MVFeeder032_winter.json deleted file mode 100644 index 4c7f5a5b..00000000 --- a/data/MVFeeder032_winter.json +++ /dev/null @@ -1,2267 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.341143887616421, 49.649368152657914] - } - }, - { - "id": "HVMV02", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341143887616421, 49.649368152657914] - } - }, - { - "id": "MVBus00117", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363073414238841, 49.64304820544189] - } - }, - { - "id": "MVLV10578", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363057844882403, 49.64298359804093] - } - }, - { - "id": "MVBus00118", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38131751047128, 49.64725252932783] - } - }, - { - "id": "MVLV10667", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381823290728951, 49.64701700842836] - } - }, - { - "id": "MVBus08728", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381535312882208, 49.64733699083525] - } - }, - { - "id": "MVBus08729", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396450904235974, 49.66024788508449] - } - }, - { - "id": "MVLV11999", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3964057126467686, 49.660262531967966] - } - }, - { - "id": "MVBus13497", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396160700810953, 49.6605270561942] - } - }, - { - "id": "MVBus13498", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387432288168403, 49.66315379586582] - } - }, - { - "id": "MVBus13500", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.385535507316819, 49.66475968041158] - } - }, - { - "id": "MVBus13502", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381131381360064, 49.665651484021154] - } - }, - { - "id": "MVBus13504", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38122396426964, 49.66615036764246] - } - }, - { - "id": "MVBus13505", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381285976129816, 49.66779511294239] - } - }, - { - "id": "MVBus13506", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381534586991432, 49.6696998371898] - } - }, - { - "id": "MVBus13507", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.378508982637205, 49.67049492628741] - } - }, - { - "id": "MVBus13508", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3732913242456, 49.67126845912352] - } - }, - { - "id": "MVBus13509", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371996551240058, 49.6715045934133] - } - }, - { - "id": "MVLV18939", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371520169196079, 49.67063246231633] - } - }, - { - "id": "MVBus13511", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367021341986308, 49.67251972372232] - } - }, - { - "id": "MVLV16210", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365446752865551, 49.670169257631514] - } - }, - { - "id": "MVLV10341", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364568388218211, 49.67301865165213] - } - }, - { - "id": "MVLV09036", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.378678571365429, 49.6700702299779] - } - }, - { - "id": "MVLV05842", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37861523666604, 49.66583210459457] - } - }, - { - "id": "MVLV13624", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3873025941583055, 49.66617902194447] - } - }, - { - "id": "MVBus19216", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.383768918139199, 49.6761669133056] - } - }, - { - "id": "MVBus19217", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387473067955328, 49.67977113339019] - } - }, - { - "id": "MVBus19219", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.390165074821639, 49.68435695606896] - } - }, - { - "id": "MVLV00333", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387482823059862, 49.679565823143825] - } - }, - { - "id": "MVLV16879", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.383661956464301, 49.67615070129675] - } - }, - { - "id": "MVLV00559", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38732578741805, 49.66311035879193] - } - }, - { - "id": "MVBus16238", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396407487666482, 49.66030127215695] - } - }, - { - "id": "MVBus16239", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396174122247448, 49.660517606384] - } - }, - { - "id": "MVBus16240", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387251985079024, 49.65826499708912] - } - }, - { - "id": "MVLV06250", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38978771053233, 49.657963688996865] - } - }, - { - "id": "MVBus16242", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.377957689760006, 49.658651945322525] - } - }, - { - "id": "MVBus16243", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.377014665176524, 49.65869498771795] - } - }, - { - "id": "MVBus16244", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.376121721428708, 49.65874279740818] - } - }, - { - "id": "MVLV12099", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.377335684181196, 49.657807942425116] - } - }, - { - "id": "MVBus16245", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372533815677704, 49.65884745330522] - } - }, - { - "id": "MVBus16248", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37052573334111, 49.65888465426676] - } - }, - { - "id": "MVLV03705", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.373821100953172, 49.661964717931106] - } - }, - { - "id": "MVBus16250", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366195557635843, 49.65902809491562] - } - }, - { - "id": "MVBus16251", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364874290710226, 49.65897516480102] - } - }, - { - "id": "MVBus16255", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363211977478477, 49.65814335267942] - } - }, - { - "id": "MVLV15015", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362188979845099, 49.6571000586743] - } - }, - { - "id": "MVBus16252", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363212064086434, 49.65900120223403] - } - }, - { - "id": "MVLV03703", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.359611241149069, 49.65929698067572] - } - }, - { - "id": "MVLV18263", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.353621166734196, 49.66271170637617] - } - }, - { - "id": "MVBus16246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372298178279623, 49.658299751045696] - } - }, - { - "id": "MVLV09595", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371150419839853, 49.655825871851405] - } - }, - { - "id": "MVLV15016", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379425423456413, 49.64836189737522] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV02", - "geometry": { - "type": "Point", - "coordinates": [-1.341143887616421, 49.649368152657914] - } - }, - { - "id": "MVBranch46833", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV02", - "bus2": "MVBus00117", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341143887616421, 49.649368152657914], - [-1.341155125505547, 49.649298961446966], - [-1.341155125505547, 49.649298961446966], - [-1.341171924590065, 49.64930687473048], - [-1.34153220499483, 49.64947661010156], - [-1.342281461172416, 49.64959418164936], - [-1.343082352557444, 49.64993697293146], - [-1.343716300356949, 49.64995916606215], - [-1.348459393130546, 49.64758213012024], - [-1.348846309075413, 49.64714257669268], - [-1.349060213719286, 49.64701837110458], - [-1.351136248206694, 49.64621592139255], - [-1.351392627106781, 49.64580421775384], - [-1.351912479370751, 49.64540850044688], - [-1.352134962424792, 49.645330158011404], - [-1.353353500184246, 49.64504433859896], - [-1.35515369511343, 49.64492399855778], - [-1.355584164988894, 49.64478605736917], - [-1.35829665370363, 49.643602195615294], - [-1.360301933076271, 49.64329788143403], - [-1.361665073179857, 49.643247201167185], - [-1.363073414238841, 49.64304820544189], - [-1.363073414238841, 49.64304820544189] - ] - }, - "length": 1.8605918592243234, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38809", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00117", - "bus2": "MVLV10578", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363073414238841, 49.64304820544189], - [-1.363073414238841, 49.64304820544189], - [-1.363057844882403, 49.64298359804093], - [-1.363057844882403, 49.64298359804093] - ] - }, - "length": 0.007273229980418355, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39531", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00117", - "bus2": "MVBus00118", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363073414238841, 49.64304820544189], - [-1.363073414238841, 49.64304820544189], - [-1.365165590719229, 49.6428094259041], - [-1.366704338086834, 49.64277107820396], - [-1.3674497862878, 49.642637427072906], - [-1.368933782102799, 49.642699832847896], - [-1.369682822291606, 49.642741610998094], - [-1.370990146237126, 49.64292397561041], - [-1.371729533556553, 49.64300295323173], - [-1.372107421239513, 49.64337889282862], - [-1.372457416775075, 49.64366118497363], - [-1.373208516268967, 49.644040481439404], - [-1.379249044382182, 49.646483061635756], - [-1.381316654975673, 49.647253140027196], - [-1.38131751047128, 49.64725252932783], - [-1.38131751047128, 49.64725252932783] - ] - }, - "length": 1.478026424760914, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47589", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00118", - "bus2": "MVLV10667", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.38131751047128, 49.64725252932783], - [-1.38131751047128, 49.64725252932783], - [-1.381724259956072, 49.646960977864396], - [-1.381805648342918, 49.64699913177372], - [-1.381822465513448, 49.64700702107947], - [-1.381823290728951, 49.64701700842836] - ] - }, - "length": 0.052501881798752856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34841", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10667", - "bus2": "MVBus08728", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381823290728951, 49.64701700842836], - [-1.381828447398985, 49.64702639208406], - [-1.381817612103909, 49.64703787378427], - [-1.381535312882208, 49.64733699083525], - [-1.381535312882208, 49.64733699083525] - ] - }, - "length": 0.040516118763759885, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38666", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08728", - "bus2": "MVBus08729", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381535312882208, 49.64733699083525], - [-1.381535312882208, 49.64733699083525], - [-1.381532613079363, 49.647339842993034], - [-1.387352677781882, 49.64960724622622], - [-1.388318011605513, 49.650356785906034], - [-1.389201217086399, 49.65086187162395], - [-1.390226223721301, 49.65125494435587], - [-1.391904432767028, 49.65255395121468], - [-1.392331753348779, 49.65302028258035], - [-1.392600201816321, 49.65326189559758], - [-1.393508995490428, 49.65405997151168], - [-1.394724211770671, 49.65625667615101], - [-1.394467101458887, 49.657815195376415], - [-1.394726723388684, 49.658258917718264], - [-1.394998401781996, 49.65841886170976], - [-1.397531312501535, 49.6592875234264], - [-1.396450904235974, 49.66024788508449], - [-1.396450904235974, 49.66024788508449] - ] - }, - "length": 2.014917579745296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33480", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08729", - "bus2": "MVLV11999", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396450904235974, 49.66024788508449], - [-1.396450904235974, 49.66024788508449], - [-1.396443075890358, 49.660255220339025], - [-1.396439420030837, 49.66025863274994], - [-1.396418911804348, 49.66025112001627], - [-1.3964057126467686, 49.660262531967966] - ] - }, - "length": 0.0031549875681026926, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46912", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11999", - "bus2": "MVBus13497", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3964057126467686, 49.660262531967966], - [-1.396407132163299, 49.66026161606427], - [-1.396439489721871, 49.66027452619542], - [-1.396434283961451, 49.66029497889806], - [-1.396202967387727, 49.66051470239752], - [-1.396180631662906, 49.66052725036166], - [-1.396160700810953, 49.6605270561942], - [-1.396160700810953, 49.6605270561942] - ] - }, - "length": 0.03821945416796346, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44703", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13497", - "bus2": "MVBus13498", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396160700810953, 49.6605270561942], - [-1.396160700810953, 49.6605270561942], - [-1.395555468685765, 49.66107580437764], - [-1.395169438387523, 49.661520714559], - [-1.394968188098091, 49.661874880556596], - [-1.394807025928492, 49.66252413376084], - [-1.392529045215136, 49.662455180555675], - [-1.392118170720751, 49.66249125685826], - [-1.391235804967413, 49.66261505445563], - [-1.390545214101071, 49.66259849088318], - [-1.389547806756696, 49.662632389251975], - [-1.38911700419036, 49.66267593791021], - [-1.388473184803178, 49.662836170822466], - [-1.387815332627581, 49.66272135864561], - [-1.387432288168403, 49.66315379586582], - [-1.387432288168403, 49.66315379586582] - ] - }, - "length": 0.8146527229250738, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34586", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13498", - "bus2": "MVBus13500", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387432288168403, 49.66315379586582], - [-1.387432288168403, 49.66315379586582], - [-1.387039886554878, 49.6635881108234], - [-1.386484900543847, 49.66413155710462], - [-1.386120329144697, 49.66439543052622], - [-1.385711827363929, 49.66462187773843], - [-1.385544211792423, 49.66472371984935], - [-1.385535507316819, 49.66475968041158], - [-1.385535507316819, 49.66475968041158] - ] - }, - "length": 0.22734508024316832, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33867", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13500", - "bus2": "MVBus13502", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.385535507316819, 49.66475968041158], - [-1.385535507316819, 49.66475968041158], - [-1.385140982061642, 49.66488642106181], - [-1.384579259595707, 49.6650282107324], - [-1.384074713754928, 49.665188800833455], - [-1.383904502841845, 49.66522877499533], - [-1.383538182686781, 49.66529929660482], - [-1.383391757068411, 49.665320143868925], - [-1.383195978619326, 49.66533567551236], - [-1.382353919959743, 49.665463408079425], - [-1.38198670372907, 49.66554314978261], - [-1.381720671427023, 49.665607508456965], - [-1.381131381360064, 49.665651484021154], - [-1.381131381360064, 49.665651484021154] - ] - }, - "length": 0.3352713149048944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44720", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13502", - "bus2": "MVBus13504", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381131381360064, 49.665651484021154], - [-1.381131381360064, 49.665651484021154], - [-1.381131291762427, 49.665640949805756], - [-1.381156061810941, 49.66563928958973], - [-1.381175292863904, 49.66579850632216], - [-1.381173381494978, 49.665922140657614], - [-1.381170640360787, 49.66604085565299], - [-1.381194184326156, 49.66614753368187], - [-1.38122396426964, 49.66615036764246], - [-1.38122396426964, 49.66615036764246] - ] - }, - "length": 0.061848062572889766, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch04352", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13504", - "bus2": "MVBus13505", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.38122396426964, 49.66615036764246], - [-1.38122396426964, 49.66615036764246], - [-1.381285976129816, 49.66779511294239], - [-1.381285976129816, 49.66779511294239] - ] - }, - "length": 0.1829876796288891, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25753", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13505", - "bus2": "MVBus13506", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381285976129816, 49.66779511294239], - [-1.381285976129816, 49.66779511294239], - [-1.381541559413578, 49.669695532229206], - [-1.381534586991432, 49.6696998371898], - [-1.381534586991432, 49.6696998371898] - ] - }, - "length": 0.21286808031255783, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15088", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13506", - "bus2": "MVBus13507", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381534586991432, 49.6696998371898], - [-1.381534586991432, 49.6696998371898], - [-1.380402066293798, 49.670398261588275], - [-1.378508982637205, 49.67049492628741], - [-1.378508982637205, 49.67049492628741] - ] - }, - "length": 0.24984598448858025, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08590", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13507", - "bus2": "MVBus13508", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.378508982637205, 49.67049492628741], - [-1.378508982637205, 49.67049492628741], - [-1.37678537080522, 49.670631142484865], - [-1.3732913242456, 49.67126845912352], - [-1.3732913242456, 49.67126845912352] - ] - }, - "length": 0.3873225502112333, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08589", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13508", - "bus2": "MVBus13509", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3732913242456, 49.67126845912352], - [-1.3732913242456, 49.67126845912352], - [-1.371996551240058, 49.6715045934133], - [-1.371996551240058, 49.6715045934133] - ] - }, - "length": 0.09708097808053277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25752", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13509", - "bus2": "MVLV18939", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371996551240058, 49.6715045934133], - [-1.371996551240058, 49.6715045934133], - [-1.371520169196079, 49.67063246231633], - [-1.371520169196079, 49.67063246231633] - ] - }, - "length": 0.10291560301491072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15087", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13509", - "bus2": "MVBus13511", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371996551240058, 49.6715045934133], - [-1.371996551240058, 49.6715045934133], - [-1.367021341986308, 49.67251972372232], - [-1.367021341986308, 49.67251972372232] - ] - }, - "length": 0.37645239932160457, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15089", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13511", - "bus2": "MVLV16210", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367021341986308, 49.67251972372232], - [-1.367021341986308, 49.67251972372232], - [-1.366187541297301, 49.67211601147649], - [-1.365713580465351, 49.671078713192856], - [-1.365660273578199, 49.67055825961095], - [-1.365446752865551, 49.670169257631514], - [-1.365446752865551, 49.670169257631514] - ] - }, - "length": 0.2993697297327617, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04353", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13511", - "bus2": "MVLV10341", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367021341986308, 49.67251972372232], - [-1.367021341986308, 49.67251972372232], - [-1.364568388218211, 49.67301865165213], - [-1.364568388218211, 49.67301865165213] - ] - }, - "length": 0.18554949799224277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23450", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13507", - "bus2": "MVLV09036", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.378508982637205, 49.67049492628741], - [-1.378508982637205, 49.67049492628741], - [-1.378678571365429, 49.6700702299779], - [-1.378678571365429, 49.6700702299779] - ] - }, - "length": 0.04879639165804694, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch40852", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13502", - "bus2": "MVLV05842", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381131381360064, 49.665651484021154], - [-1.381131381360064, 49.665651484021154], - [-1.381029501125795, 49.66565904699777], - [-1.380400863813919, 49.66568999592873], - [-1.379404242975954, 49.66576193144422], - [-1.379175224813729, 49.66579180145957], - [-1.379014098968625, 49.66583372817085], - [-1.3788643143604, 49.66589746813244], - [-1.378812474507873, 49.66583807706209], - [-1.378623181633065, 49.66580408874287], - [-1.37861523666604, 49.66583210459457], - [-1.37861523666604, 49.66583210459457] - ] - }, - "length": 0.19257122220997205, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41902", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13500", - "bus2": "MVLV13624", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.385535507316819, 49.66475968041158], - [-1.385535507316819, 49.66475968041158], - [-1.38554535141413, 49.66477631587685], - [-1.385580019595954, 49.66480683332069], - [-1.385712315401383, 49.66486376436848], - [-1.386932371014009, 49.6648547027574], - [-1.387659258928473, 49.66496216257432], - [-1.387813498654389, 49.66500127975286], - [-1.38784507547882, 49.66502662324394], - [-1.3878531652238, 49.66506321780228], - [-1.387464730571561, 49.66570593028453], - [-1.387232752063884, 49.66616392313844], - [-1.387273311325704, 49.66617001110036], - [-1.387304696852681, 49.666174718149186], - [-1.3873025941583055, 49.66617902194447] - ] - }, - "length": 0.31499506964743823, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46758", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13624", - "bus2": "MVBus19216", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3873025941583055, 49.66617902194447], - [-1.38730049146393, 49.66618332573975], - [-1.387281621527715, 49.6661802383753], - [-1.387273595999855, 49.66619874533568], - [-1.387126789522058, 49.66653748988062], - [-1.387068218349722, 49.66662254561626], - [-1.386871015445751, 49.66764372595973], - [-1.386711588591889, 49.66822679044968], - [-1.386729959983745, 49.6685182934495], - [-1.386657288580173, 49.66916813070097], - [-1.386478897791872, 49.66969099197584], - [-1.386286617109939, 49.67025454872399], - [-1.385444441146551, 49.671713913094244], - [-1.385347198037088, 49.672013340742716], - [-1.385044711731814, 49.67262800506158], - [-1.384743229885515, 49.673240587263976], - [-1.384541321821446, 49.67374217477279], - [-1.384465340320264, 49.67439041755782], - [-1.384426869459528, 49.674718693637956], - [-1.384401660405118, 49.67481686309496], - [-1.38421143267843, 49.67522277234288], - [-1.383972504907403, 49.67579928977712], - [-1.383768918139199, 49.6761669133056], - [-1.383768918139199, 49.6761669133056] - ] - }, - "length": 1.147392428120071, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45999", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19216", - "bus2": "MVBus19217", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.383768918139199, 49.6761669133056], - [-1.383768918139199, 49.6761669133056], - [-1.38327036785506, 49.67701266461312], - [-1.383309387303449, 49.67707783296498], - [-1.383401257515831, 49.67712680308007], - [-1.384713669679374, 49.67735186928863], - [-1.384914378253134, 49.67739544152049], - [-1.385480855189906, 49.67745290133123], - [-1.386003702970066, 49.677431244661044], - [-1.386450059053588, 49.67739252854847], - [-1.386510323164695, 49.67741864393641], - [-1.386663950339315, 49.67770771798039], - [-1.386643690403553, 49.67805847630034], - [-1.386702345928535, 49.6784207687566], - [-1.38692992343025, 49.67878002142394], - [-1.387042240259506, 49.67914360233237], - [-1.387329243230438, 49.67950524220256], - [-1.387473067955328, 49.67977113339019], - [-1.387473067955328, 49.67977113339019] - ] - }, - "length": 0.6218432211306393, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44224", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19217", - "bus2": "MVBus19219", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387473067955328, 49.67977113339019], - [-1.387473067955328, 49.67977113339019], - [-1.387806168205325, 49.680327750656254], - [-1.388025554686639, 49.68073489364812], - [-1.388096987643314, 49.68102766376753], - [-1.387994507938074, 49.68159422369477], - [-1.388090698237654, 49.68172638112344], - [-1.38850637036157, 49.68232864353209], - [-1.389254229626828, 49.68330725934507], - [-1.389453424615921, 49.68376935909893], - [-1.389969215781849, 49.68434015999343], - [-1.390073797353083, 49.68440161719534], - [-1.390144320137423, 49.684357370379296], - [-1.390165074821639, 49.68435695606896], - [-1.390165074821639, 49.68435695606896] - ] - }, - "length": 0.5676631752803123, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19217", - "bus2": "MVLV00333", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387473067955328, 49.67977113339019], - [-1.387473067955328, 49.67977113339019], - [-1.387482823059862, 49.679565823143825], - [-1.387482823059862, 49.679565823143825] - ] - }, - "length": 0.02284604834606541, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40555", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus19216", - "bus2": "MVLV16879", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.383768918139199, 49.6761669133056], - [-1.383768918139199, 49.6761669133056], - [-1.383661956464301, 49.67615070129675], - [-1.383661956464301, 49.67615070129675] - ] - }, - "length": 0.007927866285498594, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13498", - "bus2": "MVLV00559", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387432288168403, 49.66315379586582], - [-1.387432288168403, 49.66315379586582], - [-1.38732578741805, 49.66311035879193], - [-1.38732578741805, 49.66311035879193] - ] - }, - "length": 0.009080697744007212, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45712", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11999", - "bus2": "MVBus16238", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3964057126467686, 49.660262531967966], - [-1.396391093972659, 49.66027485982339], - [-1.396414518635273, 49.66028758709], - [-1.396419437158045, 49.66029025839718], - [-1.396407487666482, 49.66030127215695], - [-1.396407487666482, 49.66030127215695] - ] - }, - "length": 0.004166795103980359, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39559", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16238", - "bus2": "MVBus16239", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396407487666482, 49.66030127215695], - [-1.396407487666482, 49.66030127215695], - [-1.396174122247448, 49.660517606384], - [-1.396174122247448, 49.660517606384] - ] - }, - "length": 0.029373923231384276, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47672", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16239", - "bus2": "MVBus16240", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396174122247448, 49.660517606384], - [-1.396174122247448, 49.660517606384], - [-1.396111766175311, 49.66050073986271], - [-1.396100144253099, 49.660516796261895], - [-1.396071478395184, 49.66055638580858], - [-1.396011060269304, 49.66052493943121], - [-1.395443563088109, 49.66034353777329], - [-1.394209841555353, 49.659972937785184], - [-1.392963518902197, 49.65959870427206], - [-1.392072147680209, 49.65935175016693], - [-1.391686879205834, 49.65923140750466], - [-1.390093925500851, 49.65872042555155], - [-1.389931312419627, 49.658591914207356], - [-1.389942084642362, 49.65856705571873], - [-1.389948463325861, 49.65852131231217], - [-1.389947776643327, 49.65847895128867], - [-1.389925395580485, 49.65843726757665], - [-1.389883695657536, 49.65839617000445], - [-1.389770329439416, 49.658366702372874], - [-1.389470629259052, 49.6583351254436], - [-1.387636360812467, 49.658316880841426], - [-1.387287809835395, 49.65832580415053], - [-1.387277722611223, 49.65829957415882], - [-1.387251985079024, 49.65826499708912], - [-1.387251985079024, 49.65826499708912] - ] - }, - "length": 0.7266361804865676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch26848", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16240", - "bus2": "MVLV06250", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387251985079024, 49.65826499708912], - [-1.387251985079024, 49.65826499708912], - [-1.38978771053233, 49.657963688996865], - [-1.38978771053233, 49.657963688996865] - ] - }, - "length": 0.18612848590421097, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28780", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16240", - "bus2": "MVBus16242", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387251985079024, 49.65826499708912], - [-1.387251985079024, 49.65826499708912], - [-1.385153802659122, 49.658479102553656], - [-1.377957689760006, 49.658651945322525], - [-1.377957689760006, 49.658651945322525] - ] - }, - "length": 0.6732851019557871, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch06777", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16242", - "bus2": "MVBus16243", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.377957689760006, 49.658651945322525], - [-1.377957689760006, 49.658651945322525], - [-1.377014665176524, 49.65869498771795], - [-1.377014665176524, 49.65869498771795] - ] - }, - "length": 0.06825641112094445, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03344", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16243", - "bus2": "MVBus16244", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.377014665176524, 49.65869498771795], - [-1.377014665176524, 49.65869498771795], - [-1.377010067488537, 49.65869518281012], - [-1.37656422189707, 49.65892372742128], - [-1.376121721428708, 49.65874279740818], - [-1.376121721428708, 49.65874279740818] - ] - }, - "length": 0.07910830682295543, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38652", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16244", - "bus2": "MVLV12099", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.376121721428708, 49.65874279740818], - [-1.376121721428708, 49.65874279740818], - [-1.376128822931988, 49.6587537817668], - [-1.37619260878575, 49.65873640507586], - [-1.376230947417102, 49.65873948989785], - [-1.376444185706649, 49.65855100133291], - [-1.376641338280473, 49.65835407839132], - [-1.376650882341169, 49.65820198754478], - [-1.376681323438947, 49.65812403030884], - [-1.377281246452525, 49.65776350980456], - [-1.377335684181196, 49.657807942425116], - [-1.377335684181196, 49.657807942425116] - ] - }, - "length": 0.15245677642841116, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch03345", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16244", - "bus2": "MVBus16245", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.376121721428708, 49.65874279740818], - [-1.376121721428708, 49.65874279740818], - [-1.376119094518961, 49.658741718243604], - [-1.372533815677704, 49.65884745330522], - [-1.372533815677704, 49.65884745330522] - ] - }, - "length": 0.25935534014258776, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12129", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16245", - "bus2": "MVBus16248", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372533815677704, 49.65884745330522], - [-1.372533815677704, 49.65884745330522], - [-1.37052573334111, 49.65888465426676], - [-1.37052573334111, 49.65888465426676] - ] - }, - "length": 0.14504614489335685, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21189", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16248", - "bus2": "MVLV03705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37052573334111, 49.65888465426676], - [-1.37052573334111, 49.65888465426676], - [-1.372613731669212, 49.6609965695583], - [-1.373821100953172, 49.661964717931106], - [-1.373821100953172, 49.661964717931106] - ] - }, - "length": 0.4176484825338185, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12127", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16248", - "bus2": "MVBus16250", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37052573334111, 49.65888465426676], - [-1.37052573334111, 49.65888465426676], - [-1.366195557635843, 49.65902809491562], - [-1.366195557635843, 49.65902809491562] - ] - }, - "length": 0.3130525985206985, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16250", - "bus2": "MVBus16251", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366195557635843, 49.65902809491562], - [-1.366195557635843, 49.65902809491562], - [-1.364874290710226, 49.65897516480102], - [-1.364874290710226, 49.65897516480102] - ] - }, - "length": 0.09557903096634539, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03347", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16251", - "bus2": "MVBus16255", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364874290710226, 49.65897516480102], - [-1.364874290710226, 49.65897516480102], - [-1.363211977478477, 49.65814335267942], - [-1.363211977478477, 49.65814335267942] - ] - }, - "length": 0.15154109479720265, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch46579", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16255", - "bus2": "MVLV15015", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363211977478477, 49.65814335267942], - [-1.363211977478477, 49.65814335267942], - [-1.362705928317699, 49.657775040494265], - [-1.361999708149692, 49.65727533626031], - [-1.362123100582489, 49.65707333926866], - [-1.362188979845099, 49.6571000586743], - [-1.362188979845099, 49.6571000586743] - ] - }, - "length": 0.16009582724380417, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch17174", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16251", - "bus2": "MVBus16252", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364874290710226, 49.65897516480102], - [-1.364874290710226, 49.65897516480102], - [-1.363212064086434, 49.65900120223403], - [-1.363212064086434, 49.65900120223403] - ] - }, - "length": 0.12005035444768837, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch26847", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16252", - "bus2": "MVLV03703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363212064086434, 49.65900120223403], - [-1.363212064086434, 49.65900120223403], - [-1.359611241149069, 49.65929698067572], - [-1.359611241149069, 49.65929698067572] - ] - }, - "length": 0.26205738228368264, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch17175", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16252", - "bus2": "MVLV18263", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363212064086434, 49.65900120223403], - [-1.363212064086434, 49.65900120223403], - [-1.362202405174957, 49.66056110037333], - [-1.354854791926472, 49.66325901700029], - [-1.353621166734196, 49.66271170637617], - [-1.353621166734196, 49.66271170637617] - ] - }, - "length": 0.9055318059977351, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03346", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16245", - "bus2": "MVBus16246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372533815677704, 49.65884745330522], - [-1.372533815677704, 49.65884745330522], - [-1.372298178279623, 49.658299751045696], - [-1.372298178279623, 49.658299751045696] - ] - }, - "length": 0.0632480621227142, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32611", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16246", - "bus2": "MVLV09595", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372298178279623, 49.658299751045696], - [-1.372298178279623, 49.658299751045696], - [-1.372298077747431, 49.65829951138166], - [-1.372231266154901, 49.65829624642845], - [-1.371985631255131, 49.65805652670265], - [-1.371624906888681, 49.65805455809356], - [-1.371306822773066, 49.657664109747394], - [-1.371203402876501, 49.65737931953817], - [-1.371238334599025, 49.65701719464847], - [-1.371086890486818, 49.65692210387349], - [-1.370972942661989, 49.6566448554951], - [-1.370961928314556, 49.65582325231682], - [-1.371124025505802, 49.65578475761738], - [-1.371150419839853, 49.655825871851405], - [-1.371150419839853, 49.655825871851405] - ] - }, - "length": 0.3408872288632633, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10667", - "bus2": "MVLV15016", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381823290728951, 49.64701700842836], - [-1.38181895927442, 49.647017612121545], - [-1.381798635857504, 49.647020313856906], - [-1.38169652530833, 49.64703389159774], - [-1.381367479305764, 49.647337942868106], - [-1.381201793368014, 49.647328848899605], - [-1.379649402879508, 49.648666940149624], - [-1.379569215225331, 49.64863349504422], - [-1.379502688386823, 49.64834213523793], - [-1.37947066256251, 49.64835032984476], - [-1.379425423456413, 49.64836189737522], - [-1.379425423456413, 49.64836189737522] - ] - }, - "length": 0.2943324039112835, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV10578_production", - "bus": "MVLV10578", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10578_consumption", - "bus": "MVLV10578", - "phases": "abc", - "powers": [ - [6848.242834698981, 2250.908568170596], - [6848.242834698981, 2250.908568170596], - [6848.242834698981, 2250.908568170596] - ] - }, - { - "id": "MVLV10667_production", - "bus": "MVLV10667", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10667_consumption", - "bus": "MVLV10667", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV11999_production", - "bus": "MVLV11999", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11999_consumption", - "bus": "MVLV11999", - "phases": "abc", - "powers": [ - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486] - ] - }, - { - "id": "MVLV18939_production", - "bus": "MVLV18939", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18939_consumption", - "bus": "MVLV18939", - "phases": "abc", - "powers": [ - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496] - ] - }, - { - "id": "MVLV16210_production", - "bus": "MVLV16210", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16210_consumption", - "bus": "MVLV16210", - "phases": "abc", - "powers": [ - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496] - ] - }, - { - "id": "MVLV10341_production", - "bus": "MVLV10341", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10341_consumption", - "bus": "MVLV10341", - "phases": "abc", - "powers": [ - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496] - ] - }, - { - "id": "MVLV09036_production", - "bus": "MVLV09036", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09036_consumption", - "bus": "MVLV09036", - "phases": "abc", - "powers": [ - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496] - ] - }, - { - "id": "MVLV05842_production", - "bus": "MVLV05842", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05842_consumption", - "bus": "MVLV05842", - "phases": "abc", - "powers": [ - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496] - ] - }, - { - "id": "MVLV13624_production", - "bus": "MVLV13624", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13624_consumption", - "bus": "MVLV13624", - "phases": "abc", - "powers": [ - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486] - ] - }, - { - "id": "MVLV00333_production", - "bus": "MVLV00333", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00333_consumption", - "bus": "MVLV00333", - "phases": "abc", - "powers": [ - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486] - ] - }, - { - "id": "MVLV16879_production", - "bus": "MVLV16879", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16879_consumption", - "bus": "MVLV16879", - "phases": "abc", - "powers": [ - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486] - ] - }, - { - "id": "MVLV00559_production", - "bus": "MVLV00559", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00559_consumption", - "bus": "MVLV00559", - "phases": "abc", - "powers": [ - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496], - [10986.225929932383, 3610.9978390726496] - ] - }, - { - "id": "MVLV06250_production", - "bus": "MVLV06250", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06250_consumption", - "bus": "MVLV06250", - "phases": "abc", - "powers": [ - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486], - [31849.52207374244, 10468.431663182486] - ] - }, - { - "id": "MVLV12099_production", - "bus": "MVLV12099", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12099_consumption", - "bus": "MVLV12099", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV03705_production", - "bus": "MVLV03705", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03705_consumption", - "bus": "MVLV03705", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV15015_production", - "bus": "MVLV15015", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15015_consumption", - "bus": "MVLV15015", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV03703_production", - "bus": "MVLV03703", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03703_consumption", - "bus": "MVLV03703", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV18263_production", - "bus": "MVLV18263", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18263_consumption", - "bus": "MVLV18263", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV09595_production", - "bus": "MVLV09595", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09595_consumption", - "bus": "MVLV09595", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - }, - { - "id": "MVLV15016_production", - "bus": "MVLV15016", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15016_consumption", - "bus": "MVLV15016", - "phases": "abc", - "powers": [ - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923], - [8139.666116096504, 2675.3788738238923] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder041_summer.json b/data/MVFeeder041_summer.json deleted file mode 100644 index 37450da9..00000000 --- a/data/MVFeeder041_summer.json +++ /dev/null @@ -1,3554 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.433951450433353, 49.499857308582335] - } - }, - { - "id": "HVMV03", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.433951450433353, 49.499857308582335] - } - }, - { - "id": "MVBus00140", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.433147262174232, 49.49986669937966] - } - }, - { - "id": "MVBus00141", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.432278274736275, 49.5016495516555] - } - }, - { - "id": "MVBus00159", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.432001091043338, 49.50164058103889] - } - }, - { - "id": "MVLV15305", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.429865092470705, 49.50129097345488] - } - }, - { - "id": "MVBus00142", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.426049500668638, 49.510987347109946] - } - }, - { - "id": "MVLV11121", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.426184734665892, 49.51129034911221] - } - }, - { - "id": "MVBus00143", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.412228466426174, 49.51460911594352] - } - }, - { - "id": "MVBus00144", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.412088304372246, 49.515126844272686] - } - }, - { - "id": "MVBus00145", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.412885744293428, 49.519224509065616] - } - }, - { - "id": "MVBus00147", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409262437362678, 49.5215231527115] - } - }, - { - "id": "MVLV01169", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.408590245322735, 49.522215742086814] - } - }, - { - "id": "MVBus00149", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.40853396112505, 49.521971789837664] - } - }, - { - "id": "MVLV05857", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.404682215948554, 49.522898591448595] - } - }, - { - "id": "MVLV05564", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.414107643211931, 49.518812348878335] - } - }, - { - "id": "MVBus00151", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.394277047474696, 49.5192952387995] - } - }, - { - "id": "MVBus00152", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.394833996691817, 49.51880010232737] - } - }, - { - "id": "MVLV11614", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396058529632034, 49.516044410422516] - } - }, - { - "id": "MVBus00154", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.392224691891333, 49.519893527602804] - } - }, - { - "id": "MVBus00156", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391548060075391, 49.51863419448631] - } - }, - { - "id": "MVLV01171", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391472629972477, 49.51846877062308] - } - }, - { - "id": "MVBus00155", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379825737532433, 49.52314398510525] - } - }, - { - "id": "MVBus11466", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380536944462787, 49.52066867702094] - } - }, - { - "id": "MVLV08663", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381398873619378, 49.517696058278425] - } - }, - { - "id": "MVBus14429", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375882006468234, 49.52411966657223] - } - }, - { - "id": "MVLV16705", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3745101402666364, 49.52361539960028] - } - }, - { - "id": "MVBus16340", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372942820931247, 49.52194020096842] - } - }, - { - "id": "MVBus16342", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372488966223399, 49.52151975882387] - } - }, - { - "id": "MVBus16343", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369627420347444, 49.51833205671369] - } - }, - { - "id": "MVLV00567", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371051896813271, 49.51839548894923] - } - }, - { - "id": "MVBus16344", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369179793174285, 49.51719786668166] - } - }, - { - "id": "MVBus16345", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364298189147717, 49.51584715543139] - } - }, - { - "id": "MVBus16347", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360357982063541, 49.5154563553893] - } - }, - { - "id": "MVLV02233", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360706878808562, 49.51449465101565] - } - }, - { - "id": "MVBus16348", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.349385326128443, 49.515722401635294] - } - }, - { - "id": "MVBus16349", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.347835381760062, 49.515790916675066] - } - }, - { - "id": "MVBus16351", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.346685250216569, 49.51574896728357] - } - }, - { - "id": "MVBus16352", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3400486972785, 49.51536127727438] - } - }, - { - "id": "MVBus16353", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.338617730114011, 49.514835961962596] - } - }, - { - "id": "MVBus16354", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3360183377539, 49.51521983680558] - } - }, - { - "id": "MVLV06734", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3359918598331, 49.51522978767321] - } - }, - { - "id": "MVLV12126", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.347829572300763, 49.515809383494506] - } - }, - { - "id": "MVLV00568", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364595749065816, 49.51960541885178] - } - }, - { - "id": "MVLV16704", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.373158136976772, 49.52188870975591] - } - }, - { - "id": "MVBus14431", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37587187309291, 49.52410908925157] - } - }, - { - "id": "MVBus14432", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366071624233616, 49.52669305801903] - } - }, - { - "id": "MVBus14448", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36167574752003, 49.527824051865075] - } - }, - { - "id": "MVBus14462", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360329890364137, 49.52776804669114] - } - }, - { - "id": "MVBus14463", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35732245597545, 49.52750403221727] - } - }, - { - "id": "MVLV06199", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.353213735809931, 49.52741485604408] - } - }, - { - "id": "MVLV08768", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.358129295755885, 49.52661622300191] - } - }, - { - "id": "MVBus14449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345705596674752, 49.53304217442521] - } - }, - { - "id": "MVBus14452", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.334195997784767, 49.538694624646375] - } - }, - { - "id": "MVBus14455", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331985896645413, 49.53865037729998] - } - }, - { - "id": "MVLV01295", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329752701008355, 49.53871148844501] - } - }, - { - "id": "MVBus14453", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331577872310593, 49.54559897556209] - } - }, - { - "id": "MVBus14454", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331348127293804, 49.54573723346734] - } - }, - { - "id": "MVBus14457", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.335112820629712, 49.53873292685697] - } - }, - { - "id": "MVBus14458", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344046592491646, 49.54079005423513] - } - }, - { - "id": "MVBus14459", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344193679792921, 49.540904805026614] - } - }, - { - "id": "MVBus14461", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351486916478262, 49.54663244728472] - } - }, - { - "id": "MVBus32094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351358802263283, 49.54603333478093] - } - }, - { - "id": "MVBus32095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35090701896399, 49.54475576292609] - } - }, - { - "id": "MVLV15565", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.350948561983008, 49.544691867315635] - } - }, - { - "id": "MVLV08413", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.354432689275723, 49.54500115532038] - } - }, - { - "id": "MVBus30327", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.350802154413356, 49.54801832256416] - } - }, - { - "id": "MVLV05831", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351647522126318, 49.549963147222336] - } - }, - { - "id": "MVBus30329", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35002322071283, 49.54846396469262] - } - }, - { - "id": "MVLV01638", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344546726140774, 49.55119579873367] - } - }, - { - "id": "MVLV08412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344261878545574, 49.540375827962926] - } - }, - { - "id": "MVBus14450", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345470629602277, 49.53286059260983] - } - }, - { - "id": "MVLV00730", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345389875331179, 49.53196736281189] - } - }, - { - "id": "MVBus14433", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366703140991816, 49.526996947409266] - } - }, - { - "id": "MVBus14434", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367945629924356, 49.52751533948379] - } - }, - { - "id": "MVBus14435", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375174481199995, 49.5270854765628] - } - }, - { - "id": "MVLV10064", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375391878107113, 49.52819089114238] - } - }, - { - "id": "MVBus14437", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379330368071129, 49.52709876679234] - } - }, - { - "id": "MVLV18656", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379133341172738, 49.5266303066747] - } - }, - { - "id": "MVBus14439", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.382038512535075, 49.52786431943707] - } - }, - { - "id": "MVBus14441", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.382092074428459, 49.529368574793686] - } - }, - { - "id": "MVLV18655", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38420748791955, 49.53207045919828] - } - }, - { - "id": "MVLV11613", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391929859299305, 49.52688747798622] - } - }, - { - "id": "MVBus14443", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.368408922341095, 49.528337782455814] - } - }, - { - "id": "MVBus14445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367532317945696, 49.53266031009273] - } - }, - { - "id": "MVLV10065", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363929569632286, 49.53103421357823] - } - }, - { - "id": "MVLV06198", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366949565087487, 49.53458353417382] - } - }, - { - "id": "MVLV10063", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367321186591, 49.52829954489343] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV03", - "geometry": { - "type": "Point", - "coordinates": [-1.433951450433353, 49.499857308582335] - } - }, - { - "id": "MVBranch45202", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV03", - "bus2": "MVBus00140", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.433951450433353, 49.499857308582335], - [-1.433878199259997, 49.49986473391184], - [-1.433878199259997, 49.49986473391184], - [-1.433829533032811, 49.49986272171756], - [-1.433147262174232, 49.49986669937966], - [-1.433147262174232, 49.49986669937966] - ] - }, - "length": 0.05295578763904262, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch10459", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00140", - "bus2": "MVBus00141", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.433147262174232, 49.49986669937966], - [-1.433147262174232, 49.49986669937966], - [-1.432278274736275, 49.5016495516555], - [-1.432278274736275, 49.5016495516555] - ] - }, - "length": 0.20803891457861706, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch17661", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00141", - "bus2": "MVBus00159", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.432278274736275, 49.5016495516555], - [-1.432278274736275, 49.5016495516555], - [-1.432001091043338, 49.50164058103889], - [-1.432001091043338, 49.50164058103889] - ] - }, - "length": 0.020102333060506964, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch17664", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00159", - "bus2": "MVLV15305", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.432001091043338, 49.50164058103889], - [-1.432001091043338, 49.50164058103889], - [-1.429865092470705, 49.50129097345488], - [-1.429865092470705, 49.50129097345488] - ] - }, - "length": 0.15953088680777358, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10461", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00141", - "bus2": "MVBus00142", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.432278274736275, 49.5016495516555], - [-1.432278274736275, 49.5016495516555], - [-1.427844175772212, 49.51051836185911], - [-1.426049500668638, 49.510987347109946], - [-1.426049500668638, 49.510987347109946] - ] - }, - "length": 1.1773966746299238, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch39160", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00142", - "bus2": "MVLV11121", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.426049500668638, 49.510987347109946], - [-1.426049500668638, 49.510987347109946], - [-1.426145890215806, 49.51130653318748], - [-1.426184734665892, 49.51129034911221], - [-1.426184734665892, 49.51129034911221] - ] - }, - "length": 0.03951925397195987, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch16719", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00142", - "bus2": "MVBus00143", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.426049500668638, 49.510987347109946], - [-1.426049500668638, 49.510987347109946], - [-1.412228466426174, 49.51460911594352], - [-1.412228466426174, 49.51460911594352] - ] - }, - "length": 1.07890324604735, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch18677", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00143", - "bus2": "MVBus00144", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412228466426174, 49.51460911594352], - [-1.412228466426174, 49.51460911594352], - [-1.412088304372246, 49.515126844272686], - [-1.412088304372246, 49.515126844272686] - ] - }, - "length": 0.05846928714576897, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22249", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00144", - "bus2": "MVBus00145", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412088304372246, 49.515126844272686], - [-1.412088304372246, 49.515126844272686], - [-1.412583977554435, 49.51582203449529], - [-1.41361636582413, 49.51612167831818], - [-1.41328256482144, 49.51844635798189], - [-1.412885744293428, 49.519224509065616], - [-1.412885744293428, 49.519224509065616] - ] - }, - "length": 0.5179627421421704, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00957", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00145", - "bus2": "MVBus00147", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412885744293428, 49.519224509065616], - [-1.412885744293428, 49.519224509065616], - [-1.409309956799744, 49.52147418984571], - [-1.409262437362678, 49.5215231527115], - [-1.409262437362678, 49.5215231527115] - ] - }, - "length": 0.3664958381602493, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12739", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00147", - "bus2": "MVLV01169", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409262437362678, 49.5215231527115], - [-1.409262437362678, 49.5215231527115], - [-1.408590245322735, 49.522215742086814], - [-1.408590245322735, 49.522215742086814] - ] - }, - "length": 0.091116949891685, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch26350", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00147", - "bus2": "MVBus00149", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409262437362678, 49.5215231527115], - [-1.409262437362678, 49.5215231527115], - [-1.40853396112505, 49.521971789837664], - [-1.40853396112505, 49.521971789837664] - ] - }, - "length": 0.07260696893063866, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch39970", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00149", - "bus2": "MVLV05857", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40853396112505, 49.521971789837664], - [-1.40853396112505, 49.521971789837664], - [-1.408557168947826, 49.52199444873275], - [-1.408557367825913, 49.52201319105377], - [-1.408403565162502, 49.52205320599162], - [-1.408333163194044, 49.5220715234229], - [-1.407791656966289, 49.52221236988192], - [-1.407353244970395, 49.52232640097521], - [-1.406856586421732, 49.522455582175034], - [-1.406025918145544, 49.52263782777185], - [-1.405375331855827, 49.52278054543903], - [-1.404841603060225, 49.522897631598234], - [-1.404731375867821, 49.52291273994714], - [-1.404682215948554, 49.522898591448595], - [-1.404682215948554, 49.522898591448595] - ] - }, - "length": 0.30372207120162004, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch22250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00145", - "bus2": "MVLV05564", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412885744293428, 49.519224509065616], - [-1.412885744293428, 49.519224509065616], - [-1.414107643211931, 49.518812348878335], - [-1.414107643211931, 49.518812348878335] - ] - }, - "length": 0.09964594277049314, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12736", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00143", - "bus2": "MVBus00151", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412228466426174, 49.51460911594352], - [-1.412228466426174, 49.51460911594352], - [-1.394277047474696, 49.5192952387995], - [-1.394277047474696, 49.5192952387995] - ] - }, - "length": 1.4004826400271495, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch14577", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00151", - "bus2": "MVBus00152", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394277047474696, 49.5192952387995], - [-1.394277047474696, 49.5192952387995], - [-1.394833996691817, 49.51880010232737], - [-1.394833996691817, 49.51880010232737] - ] - }, - "length": 0.06825631635105202, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14579", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00152", - "bus2": "MVLV11614", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394833996691817, 49.51880010232737], - [-1.394833996691817, 49.51880010232737], - [-1.396496479783142, 49.517386950319356], - [-1.396694165154007, 49.516714330965854], - [-1.396058529632034, 49.516044410422516], - [-1.396058529632034, 49.516044410422516] - ] - }, - "length": 0.361719258634167, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12737", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00151", - "bus2": "MVBus00154", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394277047474696, 49.5192952387995], - [-1.394277047474696, 49.5192952387995], - [-1.392224691891333, 49.519893527602804], - [-1.392224691891333, 49.519893527602804] - ] - }, - "length": 0.16282377592133623, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch07833", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00154", - "bus2": "MVBus00156", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.392224691891333, 49.519893527602804], - [-1.392224691891333, 49.519893527602804], - [-1.391548060075391, 49.51863419448631], - [-1.391548060075391, 49.51863419448631] - ] - }, - "length": 0.1483844769179519, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24905", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00156", - "bus2": "MVLV01171", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391548060075391, 49.51863419448631], - [-1.391548060075391, 49.51863419448631], - [-1.391472629972477, 49.51846877062308], - [-1.391472629972477, 49.51846877062308] - ] - }, - "length": 0.019192000479414006, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22252", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00154", - "bus2": "MVBus00155", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.392224691891333, 49.519893527602804], - [-1.392224691891333, 49.519893527602804], - [-1.379825737532433, 49.52314398510525], - [-1.379825737532433, 49.52314398510525] - ] - }, - "length": 0.9678000868795191, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch03063", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00155", - "bus2": "MVBus11466", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379825737532433, 49.52314398510525], - [-1.379825737532433, 49.52314398510525], - [-1.380536944462787, 49.52066867702094], - [-1.380536944462787, 49.52066867702094] - ] - }, - "length": 0.2800778679443321, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22253", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11466", - "bus2": "MVLV08663", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380536944462787, 49.52066867702094], - [-1.380536944462787, 49.52066867702094], - [-1.380135338012356, 49.51790772555488], - [-1.381398873619378, 49.517696058278425], - [-1.381398873619378, 49.517696058278425] - ] - }, - "length": 0.4029193743641605, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25030", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00155", - "bus2": "MVBus14429", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379825737532433, 49.52314398510525], - [-1.379825737532433, 49.52314398510525], - [-1.375882006468234, 49.52411966657223], - [-1.375882006468234, 49.52411966657223] - ] - }, - "length": 0.30545779992426125, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch34113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14429", - "bus2": "MVLV16705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.375882006468234, 49.52411966657223], - [-1.375882006468234, 49.52411966657223], - [-1.37588641915197, 49.52412374796654], - [-1.375880860165431, 49.524127848501855], - [-1.37586540338666, 49.52412880075812], - [-1.37584554885683, 49.52412720877028], - [-1.375807411328535, 49.5241110460851], - [-1.375750303320852, 49.52408473087652], - [-1.375670428398973, 49.52404924317009], - [-1.375587919400292, 49.52400981709691], - [-1.375491459283816, 49.52396411232768], - [-1.375402070908907, 49.523920680630056], - [-1.375311702430374, 49.52387440162309], - [-1.375223539956287, 49.52382920563422], - [-1.3751398718712, 49.523785220077464], - [-1.375060876097653, 49.5237410907041], - [-1.374975165607978, 49.523692941692595], - [-1.374892583496152, 49.52364412088988], - [-1.374869077046494, 49.5236293241206], - [-1.374810869794574, 49.52359413134504], - [-1.374748457020092, 49.52355447307586], - [-1.374715753686123, 49.523532289150474], - [-1.374699457210854, 49.523521101071765], - [-1.374691087832194, 49.52351959615264], - [-1.3746827809573, 49.52352370924028], - [-1.374658902324847, 49.52354107887513], - [-1.37463508477158, 49.52355833872262], - [-1.374596825073989, 49.5235861497596], - [-1.374564695357433, 49.523613349576806], - [-1.374545439534793, 49.52363065789267], - [-1.374538729849515, 49.52363508150769], - [-1.374533093694201, 49.523635075063176], - [-1.374528655814153, 49.52363406962236], - [-1.374508686984242, 49.52362956756616], - [-1.3745101402666364, 49.52361539960028] - ] - }, - "length": 0.1307080187271019, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38547", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16705", - "bus2": "MVBus16340", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3745101402666364, 49.52361539960028], - [-1.374507803738187, 49.52360122533593], - [-1.374526066806178, 49.52360468285858], - [-1.374533394116747, 49.52360248821487], - [-1.374539225399954, 49.52359623929475], - [-1.374542902791684, 49.52359228662578], - [-1.374559665418577, 49.52357374219606], - [-1.37458468390078, 49.52355666122352], - [-1.374608644482612, 49.523538326951446], - [-1.374651289781291, 49.52350985046158], - [-1.374672885292921, 49.52349585109228], - [-1.374676983694804, 49.523490087087836], - [-1.374675508775088, 49.52348346947519], - [-1.374645625305597, 49.52346645003947], - [-1.374594819624124, 49.523431793761624], - [-1.374545544583284, 49.52339691053581], - [-1.374484529202116, 49.523347192181014], - [-1.374424784057626, 49.52329708403555], - [-1.374366781857894, 49.52324624785112], - [-1.374314764190819, 49.52320154883666], - [-1.374218840636028, 49.52311923858923], - [-1.374161365825145, 49.52306957301507], - [-1.374093239530904, 49.52301341022246], - [-1.374031806559135, 49.5229575450475], - [-1.373976459418936, 49.5229073103936], - [-1.373914556492944, 49.52285315009208], - [-1.373851545391469, 49.522799896059894], - [-1.373794617475623, 49.52275223667008], - [-1.373736040825428, 49.522699367710544], - [-1.373671172141087, 49.522648490631525], - [-1.373627609187473, 49.5226138809479], - [-1.373598507155725, 49.522595245664114], - [-1.373557897638867, 49.52256041023802], - [-1.373512963824633, 49.522522515678276], - [-1.373446574410371, 49.52246476149907], - [-1.373382657503204, 49.52241005142744], - [-1.373343808464295, 49.52238748067885], - [-1.373314118545625, 49.52237577817476], - [-1.373275284016497, 49.5223509320102], - [-1.373233341010657, 49.52231560696845], - [-1.373190513691656, 49.522275327600745], - [-1.373154672440506, 49.52224166720789], - [-1.373136387757179, 49.522224578446945], - [-1.373123259338372, 49.52220640494466], - [-1.373118218963762, 49.52219119281035], - [-1.373108839541907, 49.522172337521894], - [-1.373085338914012, 49.522151893331866], - [-1.373046910551303, 49.5221008502141], - [-1.373031009517598, 49.522070353155485], - [-1.37302099477644, 49.52204388328013], - [-1.373012536318817, 49.52202363289315], - [-1.373003933586273, 49.522007676075425], - [-1.372986026152343, 49.5219820783508], - [-1.372969911433426, 49.52196462609999], - [-1.372952597679086, 49.52194949466127], - [-1.372942820931247, 49.52194020096842], - [-1.372942820931247, 49.52194020096842] - ] - }, - "length": 0.2333369549446221, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16340", - "bus2": "MVBus16342", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372942820931247, 49.52194020096842], - [-1.372942820931247, 49.52194020096842], - [-1.372943410384867, 49.52194109102263], - [-1.372930900080305, 49.521938859101546], - [-1.372913668407632, 49.52194256315057], - [-1.372878715660855, 49.521955219572796], - [-1.372860737457037, 49.521960628055034], - [-1.372845794192618, 49.52196427071355], - [-1.372839374207697, 49.52196278665339], - [-1.37283301309268, 49.521958306482176], - [-1.372822490727311, 49.52194368553268], - [-1.372801732098594, 49.521906773739765], - [-1.372768560110694, 49.52185697163041], - [-1.372735754008908, 49.52181221170446], - [-1.372703875088077, 49.521764428957376], - [-1.372667218162021, 49.52171418547647], - [-1.372641986656806, 49.5216828243158], - [-1.37260852656744, 49.52164123162739], - [-1.37256983265634, 49.521590133579544], - [-1.372542243755531, 49.521553692530375], - [-1.372519614001016, 49.521530775658654], - [-1.372509356188701, 49.52152398747884], - [-1.372488966223399, 49.52151975882387], - [-1.372488966223399, 49.52151975882387] - ] - }, - "length": 0.06437146766534582, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch22395", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16342", - "bus2": "MVBus16343", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372488966223399, 49.52151975882387], - [-1.372488966223399, 49.52151975882387], - [-1.370799313389356, 49.520959938596874], - [-1.369627420347444, 49.51833205671369], - [-1.369627420347444, 49.51833205671369] - ] - }, - "length": 0.44161320889387423, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch35548", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16343", - "bus2": "MVLV00567", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369627420347444, 49.51833205671369], - [-1.369627420347444, 49.51833205671369], - [-1.370153177222226, 49.518215011350115], - [-1.370280097133333, 49.518456661999856], - [-1.371051896813271, 49.51839548894923], - [-1.371051896813271, 49.51839548894923] - ] - }, - "length": 0.12493630621683054, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch04360", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16343", - "bus2": "MVBus16344", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369627420347444, 49.51833205671369], - [-1.369627420347444, 49.51833205671369], - [-1.369179793174285, 49.51719786668166], - [-1.369179793174285, 49.51719786668166] - ] - }, - "length": 0.1302420288824289, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08604", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16344", - "bus2": "MVBus16345", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369179793174285, 49.51719786668166], - [-1.369179793174285, 49.51719786668166], - [-1.369179100725938, 49.51719612554071], - [-1.367196176574971, 49.51595242305164], - [-1.365805638447048, 49.51603297208332], - [-1.364298189147717, 49.51584715543139], - [-1.364298189147717, 49.51584715543139] - ] - }, - "length": 0.41176539826094094, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15099", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16345", - "bus2": "MVBus16347", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364298189147717, 49.51584715543139], - [-1.364298189147717, 49.51584715543139], - [-1.360357982063541, 49.5154563553893], - [-1.360357982063541, 49.5154563553893] - ] - }, - "length": 0.28861558620082556, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00874", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16347", - "bus2": "MVLV02233", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360357982063541, 49.5154563553893], - [-1.360357982063541, 49.5154563553893], - [-1.360706878808562, 49.51449465101565], - [-1.360706878808562, 49.51449465101565] - ] - }, - "length": 0.10990392063323207, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20001", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16347", - "bus2": "MVBus16348", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360357982063541, 49.5154563553893], - [-1.360357982063541, 49.5154563553893], - [-1.352723288785866, 49.51564989220757], - [-1.349385326128443, 49.515722401635294], - [-1.349385326128443, 49.515722401635294] - ] - }, - "length": 0.7951221854101156, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch26213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16348", - "bus2": "MVBus16349", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.349385326128443, 49.515722401635294], - [-1.349385326128443, 49.515722401635294], - [-1.347835381760062, 49.515790916675066], - [-1.347835381760062, 49.515790916675066] - ] - }, - "length": 0.11249496678995423, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01486", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16349", - "bus2": "MVBus16351", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.347835381760062, 49.515790916675066], - [-1.347835381760062, 49.515790916675066], - [-1.346685250216569, 49.51574896728357], - [-1.346685250216569, 49.51574896728357] - ] - }, - "length": 0.08341537329519629, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28729", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16351", - "bus2": "MVBus16352", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.346685250216569, 49.51574896728357], - [-1.346685250216569, 49.51574896728357], - [-1.340642618246887, 49.51552839280092], - [-1.3400486972785, 49.51536127727438], - [-1.3400486972785, 49.51536127727438] - ] - }, - "length": 0.48510755176973774, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16352", - "bus2": "MVBus16353", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3400486972785, 49.51536127727438], - [-1.3400486972785, 49.51536127727438], - [-1.339548472842566, 49.515220517430414], - [-1.338617730114011, 49.514835961962596], - [-1.338617730114011, 49.514835961962596] - ] - }, - "length": 0.11928588448450714, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch47808", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16353", - "bus2": "MVBus16354", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.338617730114011, 49.514835961962596], - [-1.338617730114011, 49.514835961962596], - [-1.33860772919924, 49.51483093458505], - [-1.338591176200925, 49.51482140416053], - [-1.338581071794949, 49.5148193562122], - [-1.338550329434943, 49.514820499785266], - [-1.33845698047586, 49.51482638342893], - [-1.33836632594848, 49.51483209498343], - [-1.338288462348311, 49.51483918812175], - [-1.338230881837932, 49.51484506975668], - [-1.338156861354124, 49.51485529174458], - [-1.338055079246872, 49.51486989327254], - [-1.337941740973143, 49.51488780507821], - [-1.337838147258127, 49.51490275834012], - [-1.337731725569168, 49.51491602628484], - [-1.337623456722069, 49.51492876593977], - [-1.337508577536453, 49.51494407169888], - [-1.337396314098531, 49.514958110753135], - [-1.337280355107842, 49.5149710753565], - [-1.337199987887071, 49.51498119334215], - [-1.337103748490176, 49.5149974055893], - [-1.337015680584837, 49.51501394434039], - [-1.336897388255749, 49.51503230276296], - [-1.336789224659492, 49.51504651309811], - [-1.336693312140127, 49.515060934684634], - [-1.336620413002566, 49.51507274007547], - [-1.336538658908484, 49.51508393390104], - [-1.336413934797562, 49.51510100407356], - [-1.33634765230967, 49.515111870471856], - [-1.336284683884853, 49.51512292364849], - [-1.33623904418787, 49.51513258589135], - [-1.336183704848684, 49.51514429687771], - [-1.336146787344298, 49.515153684489306], - [-1.33611996042109, 49.515165120663546], - [-1.336092385343603, 49.515178638726006], - [-1.336082830655308, 49.515184243801556], - [-1.336065868606185, 49.51519420165097], - [-1.336036174270159, 49.51520955560797], - [-1.3360183377539, 49.51521983680558], - [-1.3360183377539, 49.51521983680558] - ] - }, - "length": 0.19558721650133015, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40917", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16354", - "bus2": "MVLV06734", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3360183377539, 49.51521983680558], - [-1.3360183377539, 49.51521983680558], - [-1.336006595808891, 49.515224600308706], - [-1.3359918598331, 49.51522978767321], - [-1.3359918598331, 49.51522978767321] - ] - }, - "length": 0.002214901144747097, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch01485", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16349", - "bus2": "MVLV12126", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.347835381760062, 49.515790916675066], - [-1.347835381760062, 49.515790916675066], - [-1.347829572300763, 49.515809383494506], - [-1.347829572300763, 49.515809383494506] - ] - }, - "length": 0.002096514595334105, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20002", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16345", - "bus2": "MVLV00568", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364298189147717, 49.51584715543139], - [-1.364298189147717, 49.51584715543139], - [-1.364595749065816, 49.51960541885178], - [-1.364595749065816, 49.51960541885178] - ] - }, - "length": 0.41854810346143656, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch45665", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16340", - "bus2": "MVLV16704", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372942820931247, 49.52194020096842], - [-1.372942820931247, 49.52194020096842], - [-1.372960790542537, 49.52194933262995], - [-1.37297912032715, 49.521958669018105], - [-1.37299203962875, 49.5219617785541], - [-1.373003481763346, 49.52195918769556], - [-1.373033297401945, 49.52194407257697], - [-1.373070427262384, 49.5219252526504], - [-1.373110421866682, 49.52190498683359], - [-1.373134258711034, 49.521895801378406], - [-1.373158136976772, 49.52188870975591], - [-1.373158136976772, 49.52188870975591] - ] - }, - "length": 0.01892881924963116, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45844", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16705", - "bus2": "MVBus14431", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3745101402666364, 49.52361539960028], - [-1.37451393007748, 49.52361540589875], - [-1.374530283887948, 49.52361558616777], - [-1.374535695636503, 49.52361668753441], - [-1.374538542263336, 49.52361727435096], - [-1.374547008584166, 49.52361326427178], - [-1.374571696044895, 49.52358610458954], - [-1.374606709717908, 49.5235607672836], - [-1.37464203112261, 49.523535483441506], - [-1.374687886736525, 49.523504992898964], - [-1.374695917146592, 49.523503540923635], - [-1.374704410920078, 49.52350675946603], - [-1.374730660697725, 49.523528332675575], - [-1.374794570832627, 49.523569590400534], - [-1.374868005746312, 49.52361551856498], - [-1.374941582024805, 49.523658825697574], - [-1.375009358926943, 49.52369721282365], - [-1.375091843397271, 49.523743734630685], - [-1.375172926178832, 49.52378788069514], - [-1.375265722313568, 49.52383716032764], - [-1.375355923548697, 49.523883039878754], - [-1.375449131737633, 49.52392828732245], - [-1.375532168682095, 49.52396794901314], - [-1.375619517431518, 49.524010301414194], - [-1.375687451458401, 49.52404265877466], - [-1.375775253436141, 49.524082308545225], - [-1.375845075140324, 49.52411098399693], - [-1.37585939388824, 49.52411376243272], - [-1.37587187309291, 49.52410908925157], - [-1.37587187309291, 49.52410908925157] - ] - }, - "length": 0.12857411755433706, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch12883", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14431", - "bus2": "MVBus14432", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37587187309291, 49.52410908925157], - [-1.37587187309291, 49.52410908925157], - [-1.366071624233616, 49.52669305801903], - [-1.366071624233616, 49.52669305801903] - ] - }, - "length": 0.7655216243145522, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch14738", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14432", - "bus2": "MVBus14448", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366071624233616, 49.52669305801903], - [-1.366071624233616, 49.52669305801903], - [-1.36167574752003, 49.527824051865075], - [-1.36167574752003, 49.527824051865075] - ] - }, - "length": 0.34220306486037083, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch03062", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14448", - "bus2": "MVBus14462", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36167574752003, 49.527824051865075], - [-1.36167574752003, 49.527824051865075], - [-1.360329890364137, 49.52776804669114], - [-1.360329890364137, 49.52776804669114] - ] - }, - "length": 0.09763292837199693, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07967", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14462", - "bus2": "MVBus14463", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360329890364137, 49.52776804669114], - [-1.360329890364137, 49.52776804669114], - [-1.359678002415967, 49.52774387175989], - [-1.35732245597545, 49.52750403221727], - [-1.35732245597545, 49.52750403221727] - ] - }, - "length": 0.21987560879011972, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25029", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14463", - "bus2": "MVLV06199", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35732245597545, 49.52750403221727], - [-1.35732245597545, 49.52750403221727], - [-1.354008785323559, 49.52721369613046], - [-1.353213735809931, 49.52741485604408], - [-1.353213735809931, 49.52741485604408] - ] - }, - "length": 0.30381443432191135, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07968", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14463", - "bus2": "MVLV08768", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35732245597545, 49.52750403221727], - [-1.35732245597545, 49.52750403221727], - [-1.358129295755885, 49.52661622300191], - [-1.358129295755885, 49.52661622300191] - ] - }, - "length": 0.11472582493055589, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08746", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14448", - "bus2": "MVBus14449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36167574752003, 49.527824051865075], - [-1.36167574752003, 49.527824051865075], - [-1.353218624113, 49.530128858750494], - [-1.345705596674752, 49.53304217442521], - [-1.345705596674752, 49.53304217442521] - ] - }, - "length": 1.2968129892721059, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13016", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14449", - "bus2": "MVBus14452", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.345705596674752, 49.53304217442521], - [-1.345705596674752, 49.53304217442521], - [-1.334576919054313, 49.53737519883158], - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375] - ] - }, - "length": 1.0880093751534499, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13015", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14452", - "bus2": "MVBus14455", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375], - [-1.333329995911496, 49.53871656867157], - [-1.332537745687778, 49.538981184015455], - [-1.331985896645413, 49.53865037729998], - [-1.331985896645413, 49.53865037729998] - ] - }, - "length": 0.18148755103329137, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01893", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14455", - "bus2": "MVLV01295", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331985896645413, 49.53865037729998], - [-1.331985896645413, 49.53865037729998], - [-1.329752701008355, 49.53871148844501], - [-1.329752701008355, 49.53871148844501] - ] - }, - "length": 0.1617802964828953, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29784", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14452", - "bus2": "MVBus14453", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375], - [-1.331580741928486, 49.545581777605285], - [-1.331577872310593, 49.54559897556209], - [-1.331577872310593, 49.54559897556209] - ] - }, - "length": 0.7909536117120637, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42897", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14453", - "bus2": "MVBus14454", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331577872310593, 49.54559897556209], - [-1.331577872310593, 49.54559897556209], - [-1.331446712578302, 49.54558423279413], - [-1.331356134499559, 49.54572480669329], - [-1.331348127293804, 49.54573723346734], - [-1.331348127293804, 49.54573723346734] - ] - }, - "length": 0.028084407069707818, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20295", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14452", - "bus2": "MVBus14457", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375], - [-1.335112820629712, 49.53873292685697], - [-1.335112820629712, 49.53873292685697] - ] - }, - "length": 0.06649567910863435, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch27130", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14457", - "bus2": "MVBus14458", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.335112820629712, 49.53873292685697], - [-1.335112820629712, 49.53873292685697], - [-1.342342016364906, 49.539460227675846], - [-1.344046592491646, 49.54079005423513], - [-1.344046592491646, 49.54079005423513] - ] - }, - "length": 0.7220603766026933, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29785", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14458", - "bus2": "MVBus14459", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.344046592491646, 49.54079005423513], - [-1.344046592491646, 49.54079005423513], - [-1.344193679792921, 49.540904805026614], - [-1.344193679792921, 49.540904805026614] - ] - }, - "length": 0.01661967154464987, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31721", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14459", - "bus2": "MVBus14461", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.344193679792921, 49.540904805026614], - [-1.344193679792921, 49.540904805026614], - [-1.350119394602715, 49.54555967300069], - [-1.351486916478262, 49.54663244728472], - [-1.351486916478262, 49.54663244728472] - ] - }, - "length": 0.8272889165536899, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10711", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14461", - "bus2": "MVBus32094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351486916478262, 49.54663244728472], - [-1.351486916478262, 49.54663244728472], - [-1.351358802263283, 49.54603333478093], - [-1.351358802263283, 49.54603333478093] - ] - }, - "length": 0.06727539665020081, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23338", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32094", - "bus2": "MVBus32095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351358802263283, 49.54603333478093], - [-1.351358802263283, 49.54603333478093], - [-1.35090701896399, 49.54475576292609], - [-1.35090701896399, 49.54475576292609] - ] - }, - "length": 0.14580499771374306, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch48105", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32095", - "bus2": "MVLV15565", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35090701896399, 49.54475576292609], - [-1.35090701896399, 49.54475576292609], - [-1.350948561983008, 49.544691867315635], - [-1.350948561983008, 49.544691867315635] - ] - }, - "length": 0.007716290976880467, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch15770", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32094", - "bus2": "MVLV08413", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351358802263283, 49.54603333478093], - [-1.351358802263283, 49.54603333478093], - [-1.352989065702942, 49.54545018022141], - [-1.354432689275723, 49.54500115532038], - [-1.354432689275723, 49.54500115532038] - ] - }, - "length": 0.25043043244191004, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14461", - "bus2": "MVBus30327", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351486916478262, 49.54663244728472], - [-1.351486916478262, 49.54663244728472], - [-1.351373989478891, 49.54713720387661], - [-1.350802154413356, 49.54801832256416], - [-1.350802154413356, 49.54801832256416] - ] - }, - "length": 0.1631080748627394, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02230", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30327", - "bus2": "MVLV05831", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.350802154413356, 49.54801832256416], - [-1.350802154413356, 49.54801832256416], - [-1.351765849407517, 49.548416585119746], - [-1.351647522126318, 49.549963147222336], - [-1.351647522126318, 49.549963147222336] - ] - }, - "length": 0.2548384459288032, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10172", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30327", - "bus2": "MVBus30329", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.350802154413356, 49.54801832256416], - [-1.350802154413356, 49.54801832256416], - [-1.35002322071283, 49.54846396469262], - [-1.35002322071283, 49.54846396469262] - ] - }, - "length": 0.07505973949217395, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12212", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30329", - "bus2": "MVLV01638", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35002322071283, 49.54846396469262], - [-1.35002322071283, 49.54846396469262], - [-1.344546726140774, 49.55119579873367], - [-1.344546726140774, 49.55119579873367] - ] - }, - "length": 0.49936575784781284, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15766", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14459", - "bus2": "MVLV08412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.344193679792921, 49.540904805026614], - [-1.344193679792921, 49.540904805026614], - [-1.344261878545574, 49.540375827962926], - [-1.344261878545574, 49.540375827962926] - ] - }, - "length": 0.05903963211217331, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32042", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14449", - "bus2": "MVBus14450", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.345705596674752, 49.53304217442521], - [-1.345705596674752, 49.53304217442521], - [-1.345470629602277, 49.53286059260983], - [-1.345470629602277, 49.53286059260983] - ] - }, - "length": 0.026403753223718827, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11453", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14450", - "bus2": "MVLV00730", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.345470629602277, 49.53286059260983], - [-1.345470629602277, 49.53286059260983], - [-1.345389875331179, 49.53196736281189], - [-1.345389875331179, 49.53196736281189] - ] - }, - "length": 0.09951689256607632, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12882", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14432", - "bus2": "MVBus14433", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366071624233616, 49.52669305801903], - [-1.366071624233616, 49.52669305801903], - [-1.366703140991816, 49.526996947409266], - [-1.366703140991816, 49.526996947409266] - ] - }, - "length": 0.05685638938740189, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22394", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14433", - "bus2": "MVBus14434", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366703140991816, 49.526996947409266], - [-1.366703140991816, 49.526996947409266], - [-1.367945629924356, 49.52751533948379], - [-1.367945629924356, 49.52751533948379] - ] - }, - "length": 0.10684313253987544, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07966", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14434", - "bus2": "MVBus14435", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367945629924356, 49.52751533948379], - [-1.367945629924356, 49.52751533948379], - [-1.375174481199995, 49.5270854765628], - [-1.375174481199995, 49.5270854765628] - ] - }, - "length": 0.5255209762938511, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12885", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14435", - "bus2": "MVLV10064", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.375174481199995, 49.5270854765628], - [-1.375174481199995, 49.5270854765628], - [-1.374848871805876, 49.527717146130406], - [-1.375391878107113, 49.52819089114238], - [-1.375391878107113, 49.52819089114238] - ] - }, - "length": 0.13984235587319505, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30737", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14435", - "bus2": "MVBus14437", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.375174481199995, 49.5270854765628], - [-1.375174481199995, 49.5270854765628], - [-1.378363959690256, 49.52693985262299], - [-1.379330368071129, 49.52709876679234], - [-1.379330368071129, 49.52709876679234] - ] - }, - "length": 0.30363762939058403, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03064", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14437", - "bus2": "MVLV18656", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379330368071129, 49.52709876679234], - [-1.379330368071129, 49.52709876679234], - [-1.379133341172738, 49.5266303066747], - [-1.379133341172738, 49.5266303066747] - ] - }, - "length": 0.05401939170307853, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03061", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14437", - "bus2": "MVBus14439", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379330368071129, 49.52709876679234], - [-1.379330368071129, 49.52709876679234], - [-1.380320389819758, 49.52722270478576], - [-1.380798267149782, 49.52757827573299], - [-1.382038512535075, 49.52786431943707], - [-1.382038512535075, 49.52786431943707] - ] - }, - "length": 0.2207891744342707, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18779", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14439", - "bus2": "MVBus14441", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.382038512535075, 49.52786431943707], - [-1.382038512535075, 49.52786431943707], - [-1.382294386907641, 49.5286843782084], - [-1.382092074428459, 49.529368574793686], - [-1.382092074428459, 49.529368574793686] - ] - }, - "length": 0.17056196230911183, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18780", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14441", - "bus2": "MVLV18655", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.382092074428459, 49.529368574793686], - [-1.382092074428459, 49.529368574793686], - [-1.38420748791955, 49.53207045919828], - [-1.38420748791955, 49.53207045919828] - ] - }, - "length": 0.33727356210494547, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14580", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14439", - "bus2": "MVLV11613", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.382038512535075, 49.52786431943707], - [-1.382038512535075, 49.52786431943707], - [-1.383473837209671, 49.52818728997186], - [-1.384664541026206, 49.52820300095466], - [-1.390149365906288, 49.52684697064178], - [-1.391929859299305, 49.52688747798622], - [-1.391929859299305, 49.52688747798622] - ] - }, - "length": 0.749899621490495, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22392", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14434", - "bus2": "MVBus14443", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367945629924356, 49.52751533948379], - [-1.367945629924356, 49.52751533948379], - [-1.368408922341095, 49.528337782455814], - [-1.368408922341095, 49.528337782455814] - ] - }, - "length": 0.09742733081950168, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12884", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14443", - "bus2": "MVBus14445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.368408922341095, 49.528337782455814], - [-1.368408922341095, 49.528337782455814], - [-1.367532317945696, 49.53266031009273], - [-1.367532317945696, 49.53266031009273] - ] - }, - "length": 0.4849216955773983, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18782", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14445", - "bus2": "MVLV10065", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367532317945696, 49.53266031009273], - [-1.367532317945696, 49.53266031009273], - [-1.364515741451122, 49.53173053874581], - [-1.363929569632286, 49.53103421357823], - [-1.363929569632286, 49.53103421357823] - ] - }, - "length": 0.32992283723741367, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18781", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14445", - "bus2": "MVLV06198", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367532317945696, 49.53266031009273], - [-1.367532317945696, 49.53266031009273], - [-1.366949565087487, 49.53458353417382], - [-1.366949565087487, 49.53458353417382] - ] - }, - "length": 0.2180209746965883, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22393", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14443", - "bus2": "MVLV10063", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.368408922341095, 49.528337782455814], - [-1.368408922341095, 49.528337782455814], - [-1.367321186591, 49.52829954489343], - [-1.367321186591, 49.52829954489343] - ] - }, - "length": 0.07886110873021954, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV15305_production", - "bus": "MVLV15305", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15305_consumption", - "bus": "MVLV15305", - "phases": "abc", - "powers": [ - [1945.7740196894156, 639.5449925418953], - [1945.7740196894156, 639.5449925418953], - [1945.7740196894156, 639.5449925418953] - ] - }, - { - "id": "MVLV11121_production", - "bus": "MVLV11121", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11121_consumption", - "bus": "MVLV11121", - "phases": "abc", - "powers": [ - [1945.7740196894156, 639.5449925418953], - [1945.7740196894156, 639.5449925418953], - [1945.7740196894156, 639.5449925418953] - ] - }, - { - "id": "MVLV01169_production", - "bus": "MVLV01169", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01169_consumption", - "bus": "MVLV01169", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV05857_production", - "bus": "MVLV05857", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05857_consumption", - "bus": "MVLV05857", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV05564_production", - "bus": "MVLV05564", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05564_consumption", - "bus": "MVLV05564", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV11614_production", - "bus": "MVLV11614", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11614_consumption", - "bus": "MVLV11614", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV01171_production", - "bus": "MVLV01171", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01171_consumption", - "bus": "MVLV01171", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV08663_production", - "bus": "MVLV08663", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08663_consumption", - "bus": "MVLV08663", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV16705_production", - "bus": "MVLV16705", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16705_consumption", - "bus": "MVLV16705", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV00567_production", - "bus": "MVLV00567", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00567_consumption", - "bus": "MVLV00567", - "phases": "abc", - "powers": [ - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747] - ] - }, - { - "id": "MVLV02233_production", - "bus": "MVLV02233", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02233_consumption", - "bus": "MVLV02233", - "phases": "abc", - "powers": [ - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747] - ] - }, - { - "id": "MVLV06734_production", - "bus": "MVLV06734", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06734_consumption", - "bus": "MVLV06734", - "phases": "abc", - "powers": [ - [1991.3632401928019, 654.5294446888527], - [1991.3632401928019, 654.5294446888527], - [1991.3632401928019, 654.5294446888527] - ] - }, - { - "id": "MVLV12126_production", - "bus": "MVLV12126", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12126_consumption", - "bus": "MVLV12126", - "phases": "abc", - "powers": [ - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747] - ] - }, - { - "id": "MVLV00568_production", - "bus": "MVLV00568", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00568_consumption", - "bus": "MVLV00568", - "phases": "abc", - "powers": [ - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747], - [1660.0128728913114, 545.6198457116747] - ] - }, - { - "id": "MVLV16704_production", - "bus": "MVLV16704", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16704_consumption", - "bus": "MVLV16704", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV06199_production", - "bus": "MVLV06199", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06199_consumption", - "bus": "MVLV06199", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV08768_production", - "bus": "MVLV08768", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08768_consumption", - "bus": "MVLV08768", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV01295_production", - "bus": "MVLV01295", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01295_consumption", - "bus": "MVLV01295", - "phases": "abc", - "powers": [ - [4926.209441601012, 1619.1667422362962], - [4926.209441601012, 1619.1667422362962], - [4926.209441601012, 1619.1667422362962] - ] - }, - { - "id": "MVLV15565_production", - "bus": "MVLV15565", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15565_consumption", - "bus": "MVLV15565", - "phases": "abc", - "powers": [ - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701] - ] - }, - { - "id": "MVLV08413_production", - "bus": "MVLV08413", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08413_consumption", - "bus": "MVLV08413", - "phases": "abc", - "powers": [ - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701] - ] - }, - { - "id": "MVLV05831_production", - "bus": "MVLV05831", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05831_consumption", - "bus": "MVLV05831", - "phases": "abc", - "powers": [ - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701] - ] - }, - { - "id": "MVLV01638_production", - "bus": "MVLV01638", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01638_consumption", - "bus": "MVLV01638", - "phases": "abc", - "powers": [ - [1285.1733057056856, 422.4160379856349], - [1285.1733057056856, 422.4160379856349], - [1285.1733057056856, 422.4160379856349] - ] - }, - { - "id": "MVLV08412_production", - "bus": "MVLV08412", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08412_consumption", - "bus": "MVLV08412", - "phases": "abc", - "powers": [ - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701], - [1672.4823237394596, 549.7183560057701] - ] - }, - { - "id": "MVLV00730_production", - "bus": "MVLV00730", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00730_consumption", - "bus": "MVLV00730", - "phases": "abc", - "powers": [ - [1991.3632401928019, 654.5294446888527], - [1991.3632401928019, 654.5294446888527], - [1991.3632401928019, 654.5294446888527] - ] - }, - { - "id": "MVLV10064_production", - "bus": "MVLV10064", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10064_consumption", - "bus": "MVLV10064", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV18656_production", - "bus": "MVLV18656", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18656_consumption", - "bus": "MVLV18656", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV18655_production", - "bus": "MVLV18655", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18655_consumption", - "bus": "MVLV18655", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV11613_production", - "bus": "MVLV11613", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11613_consumption", - "bus": "MVLV11613", - "phases": "abc", - "powers": [ - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868], - [1837.4913281940637, 603.9541929813868] - ] - }, - { - "id": "MVLV10065_production", - "bus": "MVLV10065", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10065_consumption", - "bus": "MVLV10065", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV06198_production", - "bus": "MVLV06198", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06198_consumption", - "bus": "MVLV06198", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - }, - { - "id": "MVLV10063_production", - "bus": "MVLV10063", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10063_consumption", - "bus": "MVLV10063", - "phases": "abc", - "powers": [ - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865], - [1130.5731249515418, 371.60141591396865] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder041_winter.json b/data/MVFeeder041_winter.json deleted file mode 100644 index ea17388d..00000000 --- a/data/MVFeeder041_winter.json +++ /dev/null @@ -1,3554 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.433951450433353, 49.499857308582335] - } - }, - { - "id": "HVMV03", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.433951450433353, 49.499857308582335] - } - }, - { - "id": "MVBus00140", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.433147262174232, 49.49986669937966] - } - }, - { - "id": "MVBus00141", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.432278274736275, 49.5016495516555] - } - }, - { - "id": "MVBus00159", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.432001091043338, 49.50164058103889] - } - }, - { - "id": "MVLV15305", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.429865092470705, 49.50129097345488] - } - }, - { - "id": "MVBus00142", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.426049500668638, 49.510987347109946] - } - }, - { - "id": "MVLV11121", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.426184734665892, 49.51129034911221] - } - }, - { - "id": "MVBus00143", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.412228466426174, 49.51460911594352] - } - }, - { - "id": "MVBus00144", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.412088304372246, 49.515126844272686] - } - }, - { - "id": "MVBus00145", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.412885744293428, 49.519224509065616] - } - }, - { - "id": "MVBus00147", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409262437362678, 49.5215231527115] - } - }, - { - "id": "MVLV01169", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.408590245322735, 49.522215742086814] - } - }, - { - "id": "MVBus00149", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.40853396112505, 49.521971789837664] - } - }, - { - "id": "MVLV05857", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.404682215948554, 49.522898591448595] - } - }, - { - "id": "MVLV05564", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.414107643211931, 49.518812348878335] - } - }, - { - "id": "MVBus00151", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.394277047474696, 49.5192952387995] - } - }, - { - "id": "MVBus00152", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.394833996691817, 49.51880010232737] - } - }, - { - "id": "MVLV11614", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396058529632034, 49.516044410422516] - } - }, - { - "id": "MVBus00154", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.392224691891333, 49.519893527602804] - } - }, - { - "id": "MVBus00156", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391548060075391, 49.51863419448631] - } - }, - { - "id": "MVLV01171", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391472629972477, 49.51846877062308] - } - }, - { - "id": "MVBus00155", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379825737532433, 49.52314398510525] - } - }, - { - "id": "MVBus11466", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380536944462787, 49.52066867702094] - } - }, - { - "id": "MVLV08663", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381398873619378, 49.517696058278425] - } - }, - { - "id": "MVBus14429", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375882006468234, 49.52411966657223] - } - }, - { - "id": "MVLV16705", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3745101402666364, 49.52361539960028] - } - }, - { - "id": "MVBus16340", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372942820931247, 49.52194020096842] - } - }, - { - "id": "MVBus16342", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372488966223399, 49.52151975882387] - } - }, - { - "id": "MVBus16343", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369627420347444, 49.51833205671369] - } - }, - { - "id": "MVLV00567", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371051896813271, 49.51839548894923] - } - }, - { - "id": "MVBus16344", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369179793174285, 49.51719786668166] - } - }, - { - "id": "MVBus16345", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364298189147717, 49.51584715543139] - } - }, - { - "id": "MVBus16347", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360357982063541, 49.5154563553893] - } - }, - { - "id": "MVLV02233", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360706878808562, 49.51449465101565] - } - }, - { - "id": "MVBus16348", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.349385326128443, 49.515722401635294] - } - }, - { - "id": "MVBus16349", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.347835381760062, 49.515790916675066] - } - }, - { - "id": "MVBus16351", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.346685250216569, 49.51574896728357] - } - }, - { - "id": "MVBus16352", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3400486972785, 49.51536127727438] - } - }, - { - "id": "MVBus16353", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.338617730114011, 49.514835961962596] - } - }, - { - "id": "MVBus16354", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3360183377539, 49.51521983680558] - } - }, - { - "id": "MVLV06734", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3359918598331, 49.51522978767321] - } - }, - { - "id": "MVLV12126", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.347829572300763, 49.515809383494506] - } - }, - { - "id": "MVLV00568", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364595749065816, 49.51960541885178] - } - }, - { - "id": "MVLV16704", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.373158136976772, 49.52188870975591] - } - }, - { - "id": "MVBus14431", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37587187309291, 49.52410908925157] - } - }, - { - "id": "MVBus14432", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366071624233616, 49.52669305801903] - } - }, - { - "id": "MVBus14448", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36167574752003, 49.527824051865075] - } - }, - { - "id": "MVBus14462", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360329890364137, 49.52776804669114] - } - }, - { - "id": "MVBus14463", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35732245597545, 49.52750403221727] - } - }, - { - "id": "MVLV06199", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.353213735809931, 49.52741485604408] - } - }, - { - "id": "MVLV08768", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.358129295755885, 49.52661622300191] - } - }, - { - "id": "MVBus14449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345705596674752, 49.53304217442521] - } - }, - { - "id": "MVBus14452", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.334195997784767, 49.538694624646375] - } - }, - { - "id": "MVBus14455", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331985896645413, 49.53865037729998] - } - }, - { - "id": "MVLV01295", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329752701008355, 49.53871148844501] - } - }, - { - "id": "MVBus14453", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331577872310593, 49.54559897556209] - } - }, - { - "id": "MVBus14454", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331348127293804, 49.54573723346734] - } - }, - { - "id": "MVBus14457", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.335112820629712, 49.53873292685697] - } - }, - { - "id": "MVBus14458", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344046592491646, 49.54079005423513] - } - }, - { - "id": "MVBus14459", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344193679792921, 49.540904805026614] - } - }, - { - "id": "MVBus14461", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351486916478262, 49.54663244728472] - } - }, - { - "id": "MVBus32094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351358802263283, 49.54603333478093] - } - }, - { - "id": "MVBus32095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35090701896399, 49.54475576292609] - } - }, - { - "id": "MVLV15565", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.350948561983008, 49.544691867315635] - } - }, - { - "id": "MVLV08413", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.354432689275723, 49.54500115532038] - } - }, - { - "id": "MVBus30327", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.350802154413356, 49.54801832256416] - } - }, - { - "id": "MVLV05831", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351647522126318, 49.549963147222336] - } - }, - { - "id": "MVBus30329", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35002322071283, 49.54846396469262] - } - }, - { - "id": "MVLV01638", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344546726140774, 49.55119579873367] - } - }, - { - "id": "MVLV08412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344261878545574, 49.540375827962926] - } - }, - { - "id": "MVBus14450", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345470629602277, 49.53286059260983] - } - }, - { - "id": "MVLV00730", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345389875331179, 49.53196736281189] - } - }, - { - "id": "MVBus14433", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366703140991816, 49.526996947409266] - } - }, - { - "id": "MVBus14434", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367945629924356, 49.52751533948379] - } - }, - { - "id": "MVBus14435", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375174481199995, 49.5270854765628] - } - }, - { - "id": "MVLV10064", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375391878107113, 49.52819089114238] - } - }, - { - "id": "MVBus14437", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379330368071129, 49.52709876679234] - } - }, - { - "id": "MVLV18656", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379133341172738, 49.5266303066747] - } - }, - { - "id": "MVBus14439", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.382038512535075, 49.52786431943707] - } - }, - { - "id": "MVBus14441", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.382092074428459, 49.529368574793686] - } - }, - { - "id": "MVLV18655", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38420748791955, 49.53207045919828] - } - }, - { - "id": "MVLV11613", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391929859299305, 49.52688747798622] - } - }, - { - "id": "MVBus14443", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.368408922341095, 49.528337782455814] - } - }, - { - "id": "MVBus14445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367532317945696, 49.53266031009273] - } - }, - { - "id": "MVLV10065", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363929569632286, 49.53103421357823] - } - }, - { - "id": "MVLV06198", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366949565087487, 49.53458353417382] - } - }, - { - "id": "MVLV10063", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367321186591, 49.52829954489343] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV03", - "geometry": { - "type": "Point", - "coordinates": [-1.433951450433353, 49.499857308582335] - } - }, - { - "id": "MVBranch45202", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV03", - "bus2": "MVBus00140", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.433951450433353, 49.499857308582335], - [-1.433878199259997, 49.49986473391184], - [-1.433878199259997, 49.49986473391184], - [-1.433829533032811, 49.49986272171756], - [-1.433147262174232, 49.49986669937966], - [-1.433147262174232, 49.49986669937966] - ] - }, - "length": 0.05295578763904262, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch10459", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00140", - "bus2": "MVBus00141", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.433147262174232, 49.49986669937966], - [-1.433147262174232, 49.49986669937966], - [-1.432278274736275, 49.5016495516555], - [-1.432278274736275, 49.5016495516555] - ] - }, - "length": 0.20803891457861706, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch17661", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00141", - "bus2": "MVBus00159", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.432278274736275, 49.5016495516555], - [-1.432278274736275, 49.5016495516555], - [-1.432001091043338, 49.50164058103889], - [-1.432001091043338, 49.50164058103889] - ] - }, - "length": 0.020102333060506964, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch17664", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00159", - "bus2": "MVLV15305", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.432001091043338, 49.50164058103889], - [-1.432001091043338, 49.50164058103889], - [-1.429865092470705, 49.50129097345488], - [-1.429865092470705, 49.50129097345488] - ] - }, - "length": 0.15953088680777358, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10461", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00141", - "bus2": "MVBus00142", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.432278274736275, 49.5016495516555], - [-1.432278274736275, 49.5016495516555], - [-1.427844175772212, 49.51051836185911], - [-1.426049500668638, 49.510987347109946], - [-1.426049500668638, 49.510987347109946] - ] - }, - "length": 1.1773966746299238, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch39160", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00142", - "bus2": "MVLV11121", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.426049500668638, 49.510987347109946], - [-1.426049500668638, 49.510987347109946], - [-1.426145890215806, 49.51130653318748], - [-1.426184734665892, 49.51129034911221], - [-1.426184734665892, 49.51129034911221] - ] - }, - "length": 0.03951925397195987, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch16719", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00142", - "bus2": "MVBus00143", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.426049500668638, 49.510987347109946], - [-1.426049500668638, 49.510987347109946], - [-1.412228466426174, 49.51460911594352], - [-1.412228466426174, 49.51460911594352] - ] - }, - "length": 1.07890324604735, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch18677", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00143", - "bus2": "MVBus00144", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412228466426174, 49.51460911594352], - [-1.412228466426174, 49.51460911594352], - [-1.412088304372246, 49.515126844272686], - [-1.412088304372246, 49.515126844272686] - ] - }, - "length": 0.05846928714576897, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22249", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00144", - "bus2": "MVBus00145", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412088304372246, 49.515126844272686], - [-1.412088304372246, 49.515126844272686], - [-1.412583977554435, 49.51582203449529], - [-1.41361636582413, 49.51612167831818], - [-1.41328256482144, 49.51844635798189], - [-1.412885744293428, 49.519224509065616], - [-1.412885744293428, 49.519224509065616] - ] - }, - "length": 0.5179627421421704, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00957", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00145", - "bus2": "MVBus00147", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412885744293428, 49.519224509065616], - [-1.412885744293428, 49.519224509065616], - [-1.409309956799744, 49.52147418984571], - [-1.409262437362678, 49.5215231527115], - [-1.409262437362678, 49.5215231527115] - ] - }, - "length": 0.3664958381602493, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12739", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00147", - "bus2": "MVLV01169", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409262437362678, 49.5215231527115], - [-1.409262437362678, 49.5215231527115], - [-1.408590245322735, 49.522215742086814], - [-1.408590245322735, 49.522215742086814] - ] - }, - "length": 0.091116949891685, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch26350", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00147", - "bus2": "MVBus00149", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409262437362678, 49.5215231527115], - [-1.409262437362678, 49.5215231527115], - [-1.40853396112505, 49.521971789837664], - [-1.40853396112505, 49.521971789837664] - ] - }, - "length": 0.07260696893063866, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch39970", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00149", - "bus2": "MVLV05857", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40853396112505, 49.521971789837664], - [-1.40853396112505, 49.521971789837664], - [-1.408557168947826, 49.52199444873275], - [-1.408557367825913, 49.52201319105377], - [-1.408403565162502, 49.52205320599162], - [-1.408333163194044, 49.5220715234229], - [-1.407791656966289, 49.52221236988192], - [-1.407353244970395, 49.52232640097521], - [-1.406856586421732, 49.522455582175034], - [-1.406025918145544, 49.52263782777185], - [-1.405375331855827, 49.52278054543903], - [-1.404841603060225, 49.522897631598234], - [-1.404731375867821, 49.52291273994714], - [-1.404682215948554, 49.522898591448595], - [-1.404682215948554, 49.522898591448595] - ] - }, - "length": 0.30372207120162004, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch22250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00145", - "bus2": "MVLV05564", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412885744293428, 49.519224509065616], - [-1.412885744293428, 49.519224509065616], - [-1.414107643211931, 49.518812348878335], - [-1.414107643211931, 49.518812348878335] - ] - }, - "length": 0.09964594277049314, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12736", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00143", - "bus2": "MVBus00151", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.412228466426174, 49.51460911594352], - [-1.412228466426174, 49.51460911594352], - [-1.394277047474696, 49.5192952387995], - [-1.394277047474696, 49.5192952387995] - ] - }, - "length": 1.4004826400271495, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch14577", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00151", - "bus2": "MVBus00152", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394277047474696, 49.5192952387995], - [-1.394277047474696, 49.5192952387995], - [-1.394833996691817, 49.51880010232737], - [-1.394833996691817, 49.51880010232737] - ] - }, - "length": 0.06825631635105202, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14579", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00152", - "bus2": "MVLV11614", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394833996691817, 49.51880010232737], - [-1.394833996691817, 49.51880010232737], - [-1.396496479783142, 49.517386950319356], - [-1.396694165154007, 49.516714330965854], - [-1.396058529632034, 49.516044410422516], - [-1.396058529632034, 49.516044410422516] - ] - }, - "length": 0.361719258634167, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12737", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00151", - "bus2": "MVBus00154", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394277047474696, 49.5192952387995], - [-1.394277047474696, 49.5192952387995], - [-1.392224691891333, 49.519893527602804], - [-1.392224691891333, 49.519893527602804] - ] - }, - "length": 0.16282377592133623, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch07833", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00154", - "bus2": "MVBus00156", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.392224691891333, 49.519893527602804], - [-1.392224691891333, 49.519893527602804], - [-1.391548060075391, 49.51863419448631], - [-1.391548060075391, 49.51863419448631] - ] - }, - "length": 0.1483844769179519, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24905", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00156", - "bus2": "MVLV01171", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391548060075391, 49.51863419448631], - [-1.391548060075391, 49.51863419448631], - [-1.391472629972477, 49.51846877062308], - [-1.391472629972477, 49.51846877062308] - ] - }, - "length": 0.019192000479414006, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22252", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00154", - "bus2": "MVBus00155", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.392224691891333, 49.519893527602804], - [-1.392224691891333, 49.519893527602804], - [-1.379825737532433, 49.52314398510525], - [-1.379825737532433, 49.52314398510525] - ] - }, - "length": 0.9678000868795191, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch03063", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00155", - "bus2": "MVBus11466", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379825737532433, 49.52314398510525], - [-1.379825737532433, 49.52314398510525], - [-1.380536944462787, 49.52066867702094], - [-1.380536944462787, 49.52066867702094] - ] - }, - "length": 0.2800778679443321, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22253", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11466", - "bus2": "MVLV08663", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380536944462787, 49.52066867702094], - [-1.380536944462787, 49.52066867702094], - [-1.380135338012356, 49.51790772555488], - [-1.381398873619378, 49.517696058278425], - [-1.381398873619378, 49.517696058278425] - ] - }, - "length": 0.4029193743641605, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25030", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00155", - "bus2": "MVBus14429", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379825737532433, 49.52314398510525], - [-1.379825737532433, 49.52314398510525], - [-1.375882006468234, 49.52411966657223], - [-1.375882006468234, 49.52411966657223] - ] - }, - "length": 0.30545779992426125, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch34113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14429", - "bus2": "MVLV16705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.375882006468234, 49.52411966657223], - [-1.375882006468234, 49.52411966657223], - [-1.37588641915197, 49.52412374796654], - [-1.375880860165431, 49.524127848501855], - [-1.37586540338666, 49.52412880075812], - [-1.37584554885683, 49.52412720877028], - [-1.375807411328535, 49.5241110460851], - [-1.375750303320852, 49.52408473087652], - [-1.375670428398973, 49.52404924317009], - [-1.375587919400292, 49.52400981709691], - [-1.375491459283816, 49.52396411232768], - [-1.375402070908907, 49.523920680630056], - [-1.375311702430374, 49.52387440162309], - [-1.375223539956287, 49.52382920563422], - [-1.3751398718712, 49.523785220077464], - [-1.375060876097653, 49.5237410907041], - [-1.374975165607978, 49.523692941692595], - [-1.374892583496152, 49.52364412088988], - [-1.374869077046494, 49.5236293241206], - [-1.374810869794574, 49.52359413134504], - [-1.374748457020092, 49.52355447307586], - [-1.374715753686123, 49.523532289150474], - [-1.374699457210854, 49.523521101071765], - [-1.374691087832194, 49.52351959615264], - [-1.3746827809573, 49.52352370924028], - [-1.374658902324847, 49.52354107887513], - [-1.37463508477158, 49.52355833872262], - [-1.374596825073989, 49.5235861497596], - [-1.374564695357433, 49.523613349576806], - [-1.374545439534793, 49.52363065789267], - [-1.374538729849515, 49.52363508150769], - [-1.374533093694201, 49.523635075063176], - [-1.374528655814153, 49.52363406962236], - [-1.374508686984242, 49.52362956756616], - [-1.3745101402666364, 49.52361539960028] - ] - }, - "length": 0.1307080187271019, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38547", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16705", - "bus2": "MVBus16340", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3745101402666364, 49.52361539960028], - [-1.374507803738187, 49.52360122533593], - [-1.374526066806178, 49.52360468285858], - [-1.374533394116747, 49.52360248821487], - [-1.374539225399954, 49.52359623929475], - [-1.374542902791684, 49.52359228662578], - [-1.374559665418577, 49.52357374219606], - [-1.37458468390078, 49.52355666122352], - [-1.374608644482612, 49.523538326951446], - [-1.374651289781291, 49.52350985046158], - [-1.374672885292921, 49.52349585109228], - [-1.374676983694804, 49.523490087087836], - [-1.374675508775088, 49.52348346947519], - [-1.374645625305597, 49.52346645003947], - [-1.374594819624124, 49.523431793761624], - [-1.374545544583284, 49.52339691053581], - [-1.374484529202116, 49.523347192181014], - [-1.374424784057626, 49.52329708403555], - [-1.374366781857894, 49.52324624785112], - [-1.374314764190819, 49.52320154883666], - [-1.374218840636028, 49.52311923858923], - [-1.374161365825145, 49.52306957301507], - [-1.374093239530904, 49.52301341022246], - [-1.374031806559135, 49.5229575450475], - [-1.373976459418936, 49.5229073103936], - [-1.373914556492944, 49.52285315009208], - [-1.373851545391469, 49.522799896059894], - [-1.373794617475623, 49.52275223667008], - [-1.373736040825428, 49.522699367710544], - [-1.373671172141087, 49.522648490631525], - [-1.373627609187473, 49.5226138809479], - [-1.373598507155725, 49.522595245664114], - [-1.373557897638867, 49.52256041023802], - [-1.373512963824633, 49.522522515678276], - [-1.373446574410371, 49.52246476149907], - [-1.373382657503204, 49.52241005142744], - [-1.373343808464295, 49.52238748067885], - [-1.373314118545625, 49.52237577817476], - [-1.373275284016497, 49.5223509320102], - [-1.373233341010657, 49.52231560696845], - [-1.373190513691656, 49.522275327600745], - [-1.373154672440506, 49.52224166720789], - [-1.373136387757179, 49.522224578446945], - [-1.373123259338372, 49.52220640494466], - [-1.373118218963762, 49.52219119281035], - [-1.373108839541907, 49.522172337521894], - [-1.373085338914012, 49.522151893331866], - [-1.373046910551303, 49.5221008502141], - [-1.373031009517598, 49.522070353155485], - [-1.37302099477644, 49.52204388328013], - [-1.373012536318817, 49.52202363289315], - [-1.373003933586273, 49.522007676075425], - [-1.372986026152343, 49.5219820783508], - [-1.372969911433426, 49.52196462609999], - [-1.372952597679086, 49.52194949466127], - [-1.372942820931247, 49.52194020096842], - [-1.372942820931247, 49.52194020096842] - ] - }, - "length": 0.2333369549446221, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16340", - "bus2": "MVBus16342", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372942820931247, 49.52194020096842], - [-1.372942820931247, 49.52194020096842], - [-1.372943410384867, 49.52194109102263], - [-1.372930900080305, 49.521938859101546], - [-1.372913668407632, 49.52194256315057], - [-1.372878715660855, 49.521955219572796], - [-1.372860737457037, 49.521960628055034], - [-1.372845794192618, 49.52196427071355], - [-1.372839374207697, 49.52196278665339], - [-1.37283301309268, 49.521958306482176], - [-1.372822490727311, 49.52194368553268], - [-1.372801732098594, 49.521906773739765], - [-1.372768560110694, 49.52185697163041], - [-1.372735754008908, 49.52181221170446], - [-1.372703875088077, 49.521764428957376], - [-1.372667218162021, 49.52171418547647], - [-1.372641986656806, 49.5216828243158], - [-1.37260852656744, 49.52164123162739], - [-1.37256983265634, 49.521590133579544], - [-1.372542243755531, 49.521553692530375], - [-1.372519614001016, 49.521530775658654], - [-1.372509356188701, 49.52152398747884], - [-1.372488966223399, 49.52151975882387], - [-1.372488966223399, 49.52151975882387] - ] - }, - "length": 0.06437146766534582, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch22395", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16342", - "bus2": "MVBus16343", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372488966223399, 49.52151975882387], - [-1.372488966223399, 49.52151975882387], - [-1.370799313389356, 49.520959938596874], - [-1.369627420347444, 49.51833205671369], - [-1.369627420347444, 49.51833205671369] - ] - }, - "length": 0.44161320889387423, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch35548", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16343", - "bus2": "MVLV00567", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369627420347444, 49.51833205671369], - [-1.369627420347444, 49.51833205671369], - [-1.370153177222226, 49.518215011350115], - [-1.370280097133333, 49.518456661999856], - [-1.371051896813271, 49.51839548894923], - [-1.371051896813271, 49.51839548894923] - ] - }, - "length": 0.12493630621683054, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch04360", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16343", - "bus2": "MVBus16344", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369627420347444, 49.51833205671369], - [-1.369627420347444, 49.51833205671369], - [-1.369179793174285, 49.51719786668166], - [-1.369179793174285, 49.51719786668166] - ] - }, - "length": 0.1302420288824289, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08604", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16344", - "bus2": "MVBus16345", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369179793174285, 49.51719786668166], - [-1.369179793174285, 49.51719786668166], - [-1.369179100725938, 49.51719612554071], - [-1.367196176574971, 49.51595242305164], - [-1.365805638447048, 49.51603297208332], - [-1.364298189147717, 49.51584715543139], - [-1.364298189147717, 49.51584715543139] - ] - }, - "length": 0.41176539826094094, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15099", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16345", - "bus2": "MVBus16347", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364298189147717, 49.51584715543139], - [-1.364298189147717, 49.51584715543139], - [-1.360357982063541, 49.5154563553893], - [-1.360357982063541, 49.5154563553893] - ] - }, - "length": 0.28861558620082556, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00874", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16347", - "bus2": "MVLV02233", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360357982063541, 49.5154563553893], - [-1.360357982063541, 49.5154563553893], - [-1.360706878808562, 49.51449465101565], - [-1.360706878808562, 49.51449465101565] - ] - }, - "length": 0.10990392063323207, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20001", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16347", - "bus2": "MVBus16348", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360357982063541, 49.5154563553893], - [-1.360357982063541, 49.5154563553893], - [-1.352723288785866, 49.51564989220757], - [-1.349385326128443, 49.515722401635294], - [-1.349385326128443, 49.515722401635294] - ] - }, - "length": 0.7951221854101156, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch26213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16348", - "bus2": "MVBus16349", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.349385326128443, 49.515722401635294], - [-1.349385326128443, 49.515722401635294], - [-1.347835381760062, 49.515790916675066], - [-1.347835381760062, 49.515790916675066] - ] - }, - "length": 0.11249496678995423, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01486", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16349", - "bus2": "MVBus16351", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.347835381760062, 49.515790916675066], - [-1.347835381760062, 49.515790916675066], - [-1.346685250216569, 49.51574896728357], - [-1.346685250216569, 49.51574896728357] - ] - }, - "length": 0.08341537329519629, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28729", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16351", - "bus2": "MVBus16352", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.346685250216569, 49.51574896728357], - [-1.346685250216569, 49.51574896728357], - [-1.340642618246887, 49.51552839280092], - [-1.3400486972785, 49.51536127727438], - [-1.3400486972785, 49.51536127727438] - ] - }, - "length": 0.48510755176973774, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16352", - "bus2": "MVBus16353", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3400486972785, 49.51536127727438], - [-1.3400486972785, 49.51536127727438], - [-1.339548472842566, 49.515220517430414], - [-1.338617730114011, 49.514835961962596], - [-1.338617730114011, 49.514835961962596] - ] - }, - "length": 0.11928588448450714, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch47808", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16353", - "bus2": "MVBus16354", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.338617730114011, 49.514835961962596], - [-1.338617730114011, 49.514835961962596], - [-1.33860772919924, 49.51483093458505], - [-1.338591176200925, 49.51482140416053], - [-1.338581071794949, 49.5148193562122], - [-1.338550329434943, 49.514820499785266], - [-1.33845698047586, 49.51482638342893], - [-1.33836632594848, 49.51483209498343], - [-1.338288462348311, 49.51483918812175], - [-1.338230881837932, 49.51484506975668], - [-1.338156861354124, 49.51485529174458], - [-1.338055079246872, 49.51486989327254], - [-1.337941740973143, 49.51488780507821], - [-1.337838147258127, 49.51490275834012], - [-1.337731725569168, 49.51491602628484], - [-1.337623456722069, 49.51492876593977], - [-1.337508577536453, 49.51494407169888], - [-1.337396314098531, 49.514958110753135], - [-1.337280355107842, 49.5149710753565], - [-1.337199987887071, 49.51498119334215], - [-1.337103748490176, 49.5149974055893], - [-1.337015680584837, 49.51501394434039], - [-1.336897388255749, 49.51503230276296], - [-1.336789224659492, 49.51504651309811], - [-1.336693312140127, 49.515060934684634], - [-1.336620413002566, 49.51507274007547], - [-1.336538658908484, 49.51508393390104], - [-1.336413934797562, 49.51510100407356], - [-1.33634765230967, 49.515111870471856], - [-1.336284683884853, 49.51512292364849], - [-1.33623904418787, 49.51513258589135], - [-1.336183704848684, 49.51514429687771], - [-1.336146787344298, 49.515153684489306], - [-1.33611996042109, 49.515165120663546], - [-1.336092385343603, 49.515178638726006], - [-1.336082830655308, 49.515184243801556], - [-1.336065868606185, 49.51519420165097], - [-1.336036174270159, 49.51520955560797], - [-1.3360183377539, 49.51521983680558], - [-1.3360183377539, 49.51521983680558] - ] - }, - "length": 0.19558721650133015, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40917", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16354", - "bus2": "MVLV06734", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3360183377539, 49.51521983680558], - [-1.3360183377539, 49.51521983680558], - [-1.336006595808891, 49.515224600308706], - [-1.3359918598331, 49.51522978767321], - [-1.3359918598331, 49.51522978767321] - ] - }, - "length": 0.002214901144747097, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch01485", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16349", - "bus2": "MVLV12126", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.347835381760062, 49.515790916675066], - [-1.347835381760062, 49.515790916675066], - [-1.347829572300763, 49.515809383494506], - [-1.347829572300763, 49.515809383494506] - ] - }, - "length": 0.002096514595334105, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20002", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16345", - "bus2": "MVLV00568", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364298189147717, 49.51584715543139], - [-1.364298189147717, 49.51584715543139], - [-1.364595749065816, 49.51960541885178], - [-1.364595749065816, 49.51960541885178] - ] - }, - "length": 0.41854810346143656, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch45665", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16340", - "bus2": "MVLV16704", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372942820931247, 49.52194020096842], - [-1.372942820931247, 49.52194020096842], - [-1.372960790542537, 49.52194933262995], - [-1.37297912032715, 49.521958669018105], - [-1.37299203962875, 49.5219617785541], - [-1.373003481763346, 49.52195918769556], - [-1.373033297401945, 49.52194407257697], - [-1.373070427262384, 49.5219252526504], - [-1.373110421866682, 49.52190498683359], - [-1.373134258711034, 49.521895801378406], - [-1.373158136976772, 49.52188870975591], - [-1.373158136976772, 49.52188870975591] - ] - }, - "length": 0.01892881924963116, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45844", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16705", - "bus2": "MVBus14431", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3745101402666364, 49.52361539960028], - [-1.37451393007748, 49.52361540589875], - [-1.374530283887948, 49.52361558616777], - [-1.374535695636503, 49.52361668753441], - [-1.374538542263336, 49.52361727435096], - [-1.374547008584166, 49.52361326427178], - [-1.374571696044895, 49.52358610458954], - [-1.374606709717908, 49.5235607672836], - [-1.37464203112261, 49.523535483441506], - [-1.374687886736525, 49.523504992898964], - [-1.374695917146592, 49.523503540923635], - [-1.374704410920078, 49.52350675946603], - [-1.374730660697725, 49.523528332675575], - [-1.374794570832627, 49.523569590400534], - [-1.374868005746312, 49.52361551856498], - [-1.374941582024805, 49.523658825697574], - [-1.375009358926943, 49.52369721282365], - [-1.375091843397271, 49.523743734630685], - [-1.375172926178832, 49.52378788069514], - [-1.375265722313568, 49.52383716032764], - [-1.375355923548697, 49.523883039878754], - [-1.375449131737633, 49.52392828732245], - [-1.375532168682095, 49.52396794901314], - [-1.375619517431518, 49.524010301414194], - [-1.375687451458401, 49.52404265877466], - [-1.375775253436141, 49.524082308545225], - [-1.375845075140324, 49.52411098399693], - [-1.37585939388824, 49.52411376243272], - [-1.37587187309291, 49.52410908925157], - [-1.37587187309291, 49.52410908925157] - ] - }, - "length": 0.12857411755433706, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch12883", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14431", - "bus2": "MVBus14432", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37587187309291, 49.52410908925157], - [-1.37587187309291, 49.52410908925157], - [-1.366071624233616, 49.52669305801903], - [-1.366071624233616, 49.52669305801903] - ] - }, - "length": 0.7655216243145522, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch14738", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14432", - "bus2": "MVBus14448", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366071624233616, 49.52669305801903], - [-1.366071624233616, 49.52669305801903], - [-1.36167574752003, 49.527824051865075], - [-1.36167574752003, 49.527824051865075] - ] - }, - "length": 0.34220306486037083, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch03062", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14448", - "bus2": "MVBus14462", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36167574752003, 49.527824051865075], - [-1.36167574752003, 49.527824051865075], - [-1.360329890364137, 49.52776804669114], - [-1.360329890364137, 49.52776804669114] - ] - }, - "length": 0.09763292837199693, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07967", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14462", - "bus2": "MVBus14463", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360329890364137, 49.52776804669114], - [-1.360329890364137, 49.52776804669114], - [-1.359678002415967, 49.52774387175989], - [-1.35732245597545, 49.52750403221727], - [-1.35732245597545, 49.52750403221727] - ] - }, - "length": 0.21987560879011972, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25029", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14463", - "bus2": "MVLV06199", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35732245597545, 49.52750403221727], - [-1.35732245597545, 49.52750403221727], - [-1.354008785323559, 49.52721369613046], - [-1.353213735809931, 49.52741485604408], - [-1.353213735809931, 49.52741485604408] - ] - }, - "length": 0.30381443432191135, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07968", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14463", - "bus2": "MVLV08768", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35732245597545, 49.52750403221727], - [-1.35732245597545, 49.52750403221727], - [-1.358129295755885, 49.52661622300191], - [-1.358129295755885, 49.52661622300191] - ] - }, - "length": 0.11472582493055589, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08746", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14448", - "bus2": "MVBus14449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36167574752003, 49.527824051865075], - [-1.36167574752003, 49.527824051865075], - [-1.353218624113, 49.530128858750494], - [-1.345705596674752, 49.53304217442521], - [-1.345705596674752, 49.53304217442521] - ] - }, - "length": 1.2968129892721059, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13016", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14449", - "bus2": "MVBus14452", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.345705596674752, 49.53304217442521], - [-1.345705596674752, 49.53304217442521], - [-1.334576919054313, 49.53737519883158], - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375] - ] - }, - "length": 1.0880093751534499, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13015", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14452", - "bus2": "MVBus14455", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375], - [-1.333329995911496, 49.53871656867157], - [-1.332537745687778, 49.538981184015455], - [-1.331985896645413, 49.53865037729998], - [-1.331985896645413, 49.53865037729998] - ] - }, - "length": 0.18148755103329137, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01893", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14455", - "bus2": "MVLV01295", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331985896645413, 49.53865037729998], - [-1.331985896645413, 49.53865037729998], - [-1.329752701008355, 49.53871148844501], - [-1.329752701008355, 49.53871148844501] - ] - }, - "length": 0.1617802964828953, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29784", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14452", - "bus2": "MVBus14453", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375], - [-1.331580741928486, 49.545581777605285], - [-1.331577872310593, 49.54559897556209], - [-1.331577872310593, 49.54559897556209] - ] - }, - "length": 0.7909536117120637, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42897", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14453", - "bus2": "MVBus14454", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331577872310593, 49.54559897556209], - [-1.331577872310593, 49.54559897556209], - [-1.331446712578302, 49.54558423279413], - [-1.331356134499559, 49.54572480669329], - [-1.331348127293804, 49.54573723346734], - [-1.331348127293804, 49.54573723346734] - ] - }, - "length": 0.028084407069707818, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20295", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14452", - "bus2": "MVBus14457", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334195997784767, 49.538694624646375], - [-1.334195997784767, 49.538694624646375], - [-1.335112820629712, 49.53873292685697], - [-1.335112820629712, 49.53873292685697] - ] - }, - "length": 0.06649567910863435, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch27130", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14457", - "bus2": "MVBus14458", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.335112820629712, 49.53873292685697], - [-1.335112820629712, 49.53873292685697], - [-1.342342016364906, 49.539460227675846], - [-1.344046592491646, 49.54079005423513], - [-1.344046592491646, 49.54079005423513] - ] - }, - "length": 0.7220603766026933, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29785", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14458", - "bus2": "MVBus14459", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.344046592491646, 49.54079005423513], - [-1.344046592491646, 49.54079005423513], - [-1.344193679792921, 49.540904805026614], - [-1.344193679792921, 49.540904805026614] - ] - }, - "length": 0.01661967154464987, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31721", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14459", - "bus2": "MVBus14461", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.344193679792921, 49.540904805026614], - [-1.344193679792921, 49.540904805026614], - [-1.350119394602715, 49.54555967300069], - [-1.351486916478262, 49.54663244728472], - [-1.351486916478262, 49.54663244728472] - ] - }, - "length": 0.8272889165536899, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10711", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14461", - "bus2": "MVBus32094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351486916478262, 49.54663244728472], - [-1.351486916478262, 49.54663244728472], - [-1.351358802263283, 49.54603333478093], - [-1.351358802263283, 49.54603333478093] - ] - }, - "length": 0.06727539665020081, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23338", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32094", - "bus2": "MVBus32095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351358802263283, 49.54603333478093], - [-1.351358802263283, 49.54603333478093], - [-1.35090701896399, 49.54475576292609], - [-1.35090701896399, 49.54475576292609] - ] - }, - "length": 0.14580499771374306, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch48105", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32095", - "bus2": "MVLV15565", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35090701896399, 49.54475576292609], - [-1.35090701896399, 49.54475576292609], - [-1.350948561983008, 49.544691867315635], - [-1.350948561983008, 49.544691867315635] - ] - }, - "length": 0.007716290976880467, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch15770", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32094", - "bus2": "MVLV08413", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351358802263283, 49.54603333478093], - [-1.351358802263283, 49.54603333478093], - [-1.352989065702942, 49.54545018022141], - [-1.354432689275723, 49.54500115532038], - [-1.354432689275723, 49.54500115532038] - ] - }, - "length": 0.25043043244191004, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14461", - "bus2": "MVBus30327", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351486916478262, 49.54663244728472], - [-1.351486916478262, 49.54663244728472], - [-1.351373989478891, 49.54713720387661], - [-1.350802154413356, 49.54801832256416], - [-1.350802154413356, 49.54801832256416] - ] - }, - "length": 0.1631080748627394, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02230", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30327", - "bus2": "MVLV05831", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.350802154413356, 49.54801832256416], - [-1.350802154413356, 49.54801832256416], - [-1.351765849407517, 49.548416585119746], - [-1.351647522126318, 49.549963147222336], - [-1.351647522126318, 49.549963147222336] - ] - }, - "length": 0.2548384459288032, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10172", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30327", - "bus2": "MVBus30329", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.350802154413356, 49.54801832256416], - [-1.350802154413356, 49.54801832256416], - [-1.35002322071283, 49.54846396469262], - [-1.35002322071283, 49.54846396469262] - ] - }, - "length": 0.07505973949217395, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12212", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30329", - "bus2": "MVLV01638", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35002322071283, 49.54846396469262], - [-1.35002322071283, 49.54846396469262], - [-1.344546726140774, 49.55119579873367], - [-1.344546726140774, 49.55119579873367] - ] - }, - "length": 0.49936575784781284, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15766", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14459", - "bus2": "MVLV08412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.344193679792921, 49.540904805026614], - [-1.344193679792921, 49.540904805026614], - [-1.344261878545574, 49.540375827962926], - [-1.344261878545574, 49.540375827962926] - ] - }, - "length": 0.05903963211217331, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32042", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14449", - "bus2": "MVBus14450", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.345705596674752, 49.53304217442521], - [-1.345705596674752, 49.53304217442521], - [-1.345470629602277, 49.53286059260983], - [-1.345470629602277, 49.53286059260983] - ] - }, - "length": 0.026403753223718827, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11453", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14450", - "bus2": "MVLV00730", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.345470629602277, 49.53286059260983], - [-1.345470629602277, 49.53286059260983], - [-1.345389875331179, 49.53196736281189], - [-1.345389875331179, 49.53196736281189] - ] - }, - "length": 0.09951689256607632, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12882", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14432", - "bus2": "MVBus14433", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366071624233616, 49.52669305801903], - [-1.366071624233616, 49.52669305801903], - [-1.366703140991816, 49.526996947409266], - [-1.366703140991816, 49.526996947409266] - ] - }, - "length": 0.05685638938740189, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22394", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14433", - "bus2": "MVBus14434", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366703140991816, 49.526996947409266], - [-1.366703140991816, 49.526996947409266], - [-1.367945629924356, 49.52751533948379], - [-1.367945629924356, 49.52751533948379] - ] - }, - "length": 0.10684313253987544, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07966", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14434", - "bus2": "MVBus14435", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367945629924356, 49.52751533948379], - [-1.367945629924356, 49.52751533948379], - [-1.375174481199995, 49.5270854765628], - [-1.375174481199995, 49.5270854765628] - ] - }, - "length": 0.5255209762938511, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12885", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14435", - "bus2": "MVLV10064", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.375174481199995, 49.5270854765628], - [-1.375174481199995, 49.5270854765628], - [-1.374848871805876, 49.527717146130406], - [-1.375391878107113, 49.52819089114238], - [-1.375391878107113, 49.52819089114238] - ] - }, - "length": 0.13984235587319505, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30737", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14435", - "bus2": "MVBus14437", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.375174481199995, 49.5270854765628], - [-1.375174481199995, 49.5270854765628], - [-1.378363959690256, 49.52693985262299], - [-1.379330368071129, 49.52709876679234], - [-1.379330368071129, 49.52709876679234] - ] - }, - "length": 0.30363762939058403, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03064", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14437", - "bus2": "MVLV18656", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379330368071129, 49.52709876679234], - [-1.379330368071129, 49.52709876679234], - [-1.379133341172738, 49.5266303066747], - [-1.379133341172738, 49.5266303066747] - ] - }, - "length": 0.05401939170307853, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03061", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14437", - "bus2": "MVBus14439", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379330368071129, 49.52709876679234], - [-1.379330368071129, 49.52709876679234], - [-1.380320389819758, 49.52722270478576], - [-1.380798267149782, 49.52757827573299], - [-1.382038512535075, 49.52786431943707], - [-1.382038512535075, 49.52786431943707] - ] - }, - "length": 0.2207891744342707, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18779", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14439", - "bus2": "MVBus14441", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.382038512535075, 49.52786431943707], - [-1.382038512535075, 49.52786431943707], - [-1.382294386907641, 49.5286843782084], - [-1.382092074428459, 49.529368574793686], - [-1.382092074428459, 49.529368574793686] - ] - }, - "length": 0.17056196230911183, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18780", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14441", - "bus2": "MVLV18655", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.382092074428459, 49.529368574793686], - [-1.382092074428459, 49.529368574793686], - [-1.38420748791955, 49.53207045919828], - [-1.38420748791955, 49.53207045919828] - ] - }, - "length": 0.33727356210494547, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14580", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14439", - "bus2": "MVLV11613", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.382038512535075, 49.52786431943707], - [-1.382038512535075, 49.52786431943707], - [-1.383473837209671, 49.52818728997186], - [-1.384664541026206, 49.52820300095466], - [-1.390149365906288, 49.52684697064178], - [-1.391929859299305, 49.52688747798622], - [-1.391929859299305, 49.52688747798622] - ] - }, - "length": 0.749899621490495, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22392", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14434", - "bus2": "MVBus14443", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367945629924356, 49.52751533948379], - [-1.367945629924356, 49.52751533948379], - [-1.368408922341095, 49.528337782455814], - [-1.368408922341095, 49.528337782455814] - ] - }, - "length": 0.09742733081950168, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12884", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14443", - "bus2": "MVBus14445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.368408922341095, 49.528337782455814], - [-1.368408922341095, 49.528337782455814], - [-1.367532317945696, 49.53266031009273], - [-1.367532317945696, 49.53266031009273] - ] - }, - "length": 0.4849216955773983, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18782", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14445", - "bus2": "MVLV10065", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367532317945696, 49.53266031009273], - [-1.367532317945696, 49.53266031009273], - [-1.364515741451122, 49.53173053874581], - [-1.363929569632286, 49.53103421357823], - [-1.363929569632286, 49.53103421357823] - ] - }, - "length": 0.32992283723741367, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18781", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14445", - "bus2": "MVLV06198", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367532317945696, 49.53266031009273], - [-1.367532317945696, 49.53266031009273], - [-1.366949565087487, 49.53458353417382], - [-1.366949565087487, 49.53458353417382] - ] - }, - "length": 0.2180209746965883, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22393", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14443", - "bus2": "MVLV10063", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.368408922341095, 49.528337782455814], - [-1.368408922341095, 49.528337782455814], - [-1.367321186591, 49.52829954489343], - [-1.367321186591, 49.52829954489343] - ] - }, - "length": 0.07886110873021954, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV15305_production", - "bus": "MVLV15305", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15305_consumption", - "bus": "MVLV15305", - "phases": "abc", - "powers": [ - [9728.870098447078, 3197.7249627094766], - [9728.870098447078, 3197.7249627094766], - [9728.870098447078, 3197.7249627094766] - ] - }, - { - "id": "MVLV11121_production", - "bus": "MVLV11121", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11121_consumption", - "bus": "MVLV11121", - "phases": "abc", - "powers": [ - [9728.870098447078, 3197.7249627094766], - [9728.870098447078, 3197.7249627094766], - [9728.870098447078, 3197.7249627094766] - ] - }, - { - "id": "MVLV01169_production", - "bus": "MVLV01169", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01169_consumption", - "bus": "MVLV01169", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV05857_production", - "bus": "MVLV05857", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05857_consumption", - "bus": "MVLV05857", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV05564_production", - "bus": "MVLV05564", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05564_consumption", - "bus": "MVLV05564", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV11614_production", - "bus": "MVLV11614", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11614_consumption", - "bus": "MVLV11614", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV01171_production", - "bus": "MVLV01171", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01171_consumption", - "bus": "MVLV01171", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV08663_production", - "bus": "MVLV08663", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08663_consumption", - "bus": "MVLV08663", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV16705_production", - "bus": "MVLV16705", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16705_consumption", - "bus": "MVLV16705", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV00567_production", - "bus": "MVLV00567", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00567_consumption", - "bus": "MVLV00567", - "phases": "abc", - "powers": [ - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373] - ] - }, - { - "id": "MVLV02233_production", - "bus": "MVLV02233", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02233_consumption", - "bus": "MVLV02233", - "phases": "abc", - "powers": [ - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373] - ] - }, - { - "id": "MVLV06734_production", - "bus": "MVLV06734", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06734_consumption", - "bus": "MVLV06734", - "phases": "abc", - "powers": [ - [9956.81620096401, 3272.647223444263], - [9956.81620096401, 3272.647223444263], - [9956.81620096401, 3272.647223444263] - ] - }, - { - "id": "MVLV12126_production", - "bus": "MVLV12126", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12126_consumption", - "bus": "MVLV12126", - "phases": "abc", - "powers": [ - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373] - ] - }, - { - "id": "MVLV00568_production", - "bus": "MVLV00568", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00568_consumption", - "bus": "MVLV00568", - "phases": "abc", - "powers": [ - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373], - [8300.064364456555, 2728.099228558373] - ] - }, - { - "id": "MVLV16704_production", - "bus": "MVLV16704", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16704_consumption", - "bus": "MVLV16704", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV06199_production", - "bus": "MVLV06199", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06199_consumption", - "bus": "MVLV06199", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV08768_production", - "bus": "MVLV08768", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08768_consumption", - "bus": "MVLV08768", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV01295_production", - "bus": "MVLV01295", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01295_consumption", - "bus": "MVLV01295", - "phases": "abc", - "powers": [ - [24631.047208005057, 8095.83371118148], - [24631.047208005057, 8095.83371118148], - [24631.047208005057, 8095.83371118148] - ] - }, - { - "id": "MVLV15565_production", - "bus": "MVLV15565", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15565_consumption", - "bus": "MVLV15565", - "phases": "abc", - "powers": [ - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503] - ] - }, - { - "id": "MVLV08413_production", - "bus": "MVLV08413", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08413_consumption", - "bus": "MVLV08413", - "phases": "abc", - "powers": [ - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503] - ] - }, - { - "id": "MVLV05831_production", - "bus": "MVLV05831", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05831_consumption", - "bus": "MVLV05831", - "phases": "abc", - "powers": [ - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503] - ] - }, - { - "id": "MVLV01638_production", - "bus": "MVLV01638", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01638_consumption", - "bus": "MVLV01638", - "phases": "abc", - "powers": [ - [6425.866528528429, 2112.0801899281746], - [6425.866528528429, 2112.0801899281746], - [6425.866528528429, 2112.0801899281746] - ] - }, - { - "id": "MVLV08412_production", - "bus": "MVLV08412", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08412_consumption", - "bus": "MVLV08412", - "phases": "abc", - "powers": [ - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503], - [8362.411618697299, 2748.5917800288503] - ] - }, - { - "id": "MVLV00730_production", - "bus": "MVLV00730", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00730_consumption", - "bus": "MVLV00730", - "phases": "abc", - "powers": [ - [9956.81620096401, 3272.647223444263], - [9956.81620096401, 3272.647223444263], - [9956.81620096401, 3272.647223444263] - ] - }, - { - "id": "MVLV10064_production", - "bus": "MVLV10064", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10064_consumption", - "bus": "MVLV10064", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV18656_production", - "bus": "MVLV18656", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18656_consumption", - "bus": "MVLV18656", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV18655_production", - "bus": "MVLV18655", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18655_consumption", - "bus": "MVLV18655", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV11613_production", - "bus": "MVLV11613", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11613_consumption", - "bus": "MVLV11613", - "phases": "abc", - "powers": [ - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334], - [9187.456640970318, 3019.7709649069334] - ] - }, - { - "id": "MVLV10065_production", - "bus": "MVLV10065", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10065_consumption", - "bus": "MVLV10065", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV06198_production", - "bus": "MVLV06198", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06198_consumption", - "bus": "MVLV06198", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - }, - { - "id": "MVLV10063_production", - "bus": "MVLV10063", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10063_consumption", - "bus": "MVLV10063", - "phases": "abc", - "powers": [ - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432], - [5652.865624757709, 1858.0070795698432] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder063_summer.json b/data/MVFeeder063_summer.json deleted file mode 100644 index abfd01ea..00000000 --- a/data/MVFeeder063_summer.json +++ /dev/null @@ -1,1734 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.582499629951565, 49.63030130599146] - } - }, - { - "id": "HVMV04", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.582499629951565, 49.63030130599146] - } - }, - { - "id": "MVBus00398", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.585887124774393, 49.63117410335776] - } - }, - { - "id": "MVLV10302", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5881686185764852, 49.631323645160805] - } - }, - { - "id": "MVLV18891", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5892748994771195, 49.6310861815891] - } - }, - { - "id": "MVBus04692", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.590032629340467, 49.63102752444015] - } - }, - { - "id": "MVLV06425", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.590081200363509, 49.63141304674876] - } - }, - { - "id": "MVBus04777", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.590078988075034, 49.63102584785101] - } - }, - { - "id": "MVBus04778", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.59131012900034, 49.63097303093617] - } - }, - { - "id": "MVLV06406", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5932946079935264, 49.630656322771706] - } - }, - { - "id": "MVBus05110", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.594956260344823, 49.630665631479914] - } - }, - { - "id": "MVLV08988", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5965269482967035, 49.631562422194115] - } - }, - { - "id": "MVBus05359", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.595457274166531, 49.63050713567418] - } - }, - { - "id": "MVLV09578", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5965383406246354, 49.6303996452076] - } - }, - { - "id": "MVLV14988", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5994057208656425, 49.63034836409935] - } - }, - { - "id": "MVLV09576", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600991203513488, 49.63095610639915] - } - }, - { - "id": "MVBus06628", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600131825692311, 49.63110713336656] - } - }, - { - "id": "MVLV12146", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600219567506464, 49.63112047547915] - } - }, - { - "id": "MVBus06630", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600133878496521, 49.63114054424035] - } - }, - { - "id": "MVLV18248", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.601926754639998, 49.632405314831374] - } - }, - { - "id": "MVBus06677", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.598351272185645, 49.633132540303215] - } - }, - { - "id": "MVBus06264", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599741036707661, 49.630149264843865] - } - }, - { - "id": "MVLV10652", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5964751196953948, 49.62873807421219] - } - }, - { - "id": "MVBus06579", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599824989847082, 49.63025102890478] - } - }, - { - "id": "MVLV03675", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.604575713187041, 49.630129604828134] - } - }, - { - "id": "MVBus07545", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.605865051710045, 49.63009983843237] - } - }, - { - "id": "MVBus07546", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.605903527330651, 49.630104005951786] - } - }, - { - "id": "MVLV01569", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6061308511170715, 49.6298018240317] - } - }, - { - "id": "MVBus07763", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.60603073728943, 49.6301220859694] - } - }, - { - "id": "MVBus07764", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.606844381112045, 49.630642083548835] - } - }, - { - "id": "MVLV13299", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6068386972174165, 49.63067770263442] - } - }, - { - "id": "MVLV01559", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6052536577382486, 49.631471343367366] - } - }, - { - "id": "MVLV03697", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.606013751391186, 49.63197746387231] - } - }, - { - "id": "MVLV14993", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6059420225212007, 49.63270438210968] - } - }, - { - "id": "MVLV10647", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6074521494066876, 49.63158659606066] - } - }, - { - "id": "MVBus09044", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607809567268233, 49.630398631969165] - } - }, - { - "id": "MVBus09045", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607963282202793, 49.63008098506603] - } - }, - { - "id": "MVBus09046", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607922857761914, 49.63006092963809] - } - }, - { - "id": "MVLV18429", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.592232380383244, 49.62734036551845] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV04", - "geometry": { - "type": "Point", - "coordinates": [-1.582499629951565, 49.63030130599146] - } - }, - { - "id": "MVBranch43857", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV04", - "bus2": "MVBus00398", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.582499629951565, 49.63030130599146], - [-1.582457614736368, 49.630431568941255], - [-1.582457614736368, 49.630431568941255], - [-1.582473246228667, 49.630440422918284], - [-1.582578484333074, 49.63050003650204], - [-1.583369908056276, 49.63117289685149], - [-1.583891877875295, 49.631026476614196], - [-1.584268296346088, 49.63100114072498], - [-1.584659143737118, 49.63103473710885], - [-1.585577291539704, 49.63114413204489], - [-1.585887124774393, 49.63117410335776], - [-1.585887124774393, 49.63117410335776] - ] - }, - "length": 0.29272696710627666, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47151", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00398", - "bus2": "MVLV10302", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.585887124774393, 49.63117410335776], - [-1.585887124774393, 49.63117410335776], - [-1.585894433355167, 49.631174810392274], - [-1.586060807467087, 49.63120970556265], - [-1.588012421086478, 49.631120216905174], - [-1.58815331318397, 49.6313120297285], - [-1.588162236523714, 49.631324185056314], - [-1.5881686185764852, 49.631323645160805] - ] - }, - "length": 0.1796403071794525, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36458", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10302", - "bus2": "MVLV18891", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5881686185764852, 49.631323645160805], - [-1.588175000629256, 49.6313231052653], - [-1.58817884138881, 49.631309870147], - [-1.588238497198527, 49.63110445197659], - [-1.589229311013137, 49.63106549205088], - [-1.589242795801626, 49.63107845234356], - [-1.589252235847672, 49.63108760545372], - [-1.5892748994771195, 49.6310861815891] - ] - }, - "length": 0.09942329994366059, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18891", - "bus2": "MVBus04692", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5892748994771195, 49.6310861815891], - [-1.589297563106567, 49.631084757724466], - [-1.589312210074494, 49.631075227062105], - [-1.589336929625482, 49.6310591467841], - [-1.590032629340467, 49.63102752444015], - [-1.590032629340467, 49.63102752444015] - ] - }, - "length": 0.05440747326591015, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04692", - "bus2": "MVLV06425", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.590032629340467, 49.63102752444015], - [-1.590032629340467, 49.63102752444015], - [-1.59003720921662, 49.63102731274123], - [-1.590061795161727, 49.631400962237706], - [-1.590062397349204, 49.63141004265828], - [-1.59006707050888, 49.631413199957606], - [-1.590081200363509, 49.63141304674876] - ] - }, - "length": 0.04342566480759927, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06425", - "bus2": "MVBus04777", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.590081200363509, 49.63141304674876], - [-1.590095330218138, 49.631412893539924], - [-1.590098491181968, 49.63141061478891], - [-1.590097801973846, 49.631400224351815], - [-1.590073151546796, 49.63102610036799], - [-1.590078988075034, 49.63102584785101], - [-1.590078988075034, 49.63102584785101] - ] - }, - "length": 0.043569334620479676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43814", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04777", - "bus2": "MVBus04778", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.590078988075034, 49.63102584785101], - [-1.590078988075034, 49.63102584785101], - [-1.59131012900034, 49.63097303093617], - [-1.59131012900034, 49.63097303093617] - ] - }, - "length": 0.0891351018547783, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39808", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04778", - "bus2": "MVLV06406", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.59131012900034, 49.63097303093617], - [-1.59131012900034, 49.63097303093617], - [-1.59217025879419, 49.63093611661641], - [-1.592359942925573, 49.631053944114726], - [-1.592712554378385, 49.63104288863784], - [-1.592667504616526, 49.6308274095797], - [-1.593231716327097, 49.63079297442431], - [-1.593276712268867, 49.63067587334755], - [-1.593281727528354, 49.63066280665203], - [-1.5932946079935264, 49.630656322771706] - ] - }, - "length": 0.1867858831234055, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32865", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06406", - "bus2": "MVBus05110", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5932946079935264, 49.630656322771706], - [-1.593307488458699, 49.63064983889138], - [-1.593328233441076, 49.63064992885346], - [-1.593661170228589, 49.63065145159545], - [-1.593807807362896, 49.630716705797546], - [-1.594006946568672, 49.630727963754794], - [-1.594956260344823, 49.630665631479914], - [-1.594956260344823, 49.630665631479914] - ] - }, - "length": 0.12176520566195435, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46784", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05110", - "bus2": "MVLV08988", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594956260344823, 49.630665631479914], - [-1.594956260344823, 49.630665631479914], - [-1.595283878116689, 49.630644123093084], - [-1.595485369975571, 49.630615682851264], - [-1.595832592176104, 49.630968569411536], - [-1.596514512394846, 49.63147602143405], - [-1.596521580252994, 49.631547746364326], - [-1.596523301958769, 49.63156037821939], - [-1.5965269482967035, 49.631562422194115] - ] - }, - "length": 0.16958490464876844, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41322", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08988", - "bus2": "MVBus05359", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5965269482967035, 49.631562422194115], - [-1.596530594634638, 49.63156446616884], - [-1.596538935694694, 49.63154516749901], - [-1.596568202693209, 49.63146367299588], - [-1.595893646808499, 49.630952088121326], - [-1.595457274166531, 49.63050713567418], - [-1.595457274166531, 49.63050713567418] - ] - }, - "length": 0.1451287670349226, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40369", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05359", - "bus2": "MVLV09578", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.595457274166531, 49.63050713567418], - [-1.595457274166531, 49.63050713567418], - [-1.595070655749525, 49.63011290668581], - [-1.595014596452464, 49.629915815242335], - [-1.59556662626041, 49.629919594817196], - [-1.595887238387095, 49.630096903492536], - [-1.596170633553712, 49.630242160226175], - [-1.596328495422259, 49.63029173273002], - [-1.596484912519411, 49.63030622881062], - [-1.596508270547654, 49.63039065125154], - [-1.596510327067297, 49.63039811075034], - [-1.596518918723145, 49.630400016314034], - [-1.5965383406246354, 49.6303996452076] - ] - }, - "length": 0.20578413900606038, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44814", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09578", - "bus2": "MVLV14988", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5965383406246354, 49.6303996452076], - [-1.596557762526126, 49.63039927410117], - [-1.596569769188971, 49.63039609591247], - [-1.596570419598952, 49.63039106613977], - [-1.59658169022995, 49.63030294533156], - [-1.599353488655153, 49.63027727030881], - [-1.599389324445609, 49.63033603617886], - [-1.599396963345673, 49.63034855630855], - [-1.5994057208656425, 49.63034836409935] - ] - }, - "length": 0.2201270935428412, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35110", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14988", - "bus2": "MVLV09576", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5994057208656425, 49.63034836409935], - [-1.599413321767373, 49.63034885098645], - [-1.599422041281082, 49.6303366255345], - [-1.5994506868453, 49.63029647816279], - [-1.599742169728719, 49.63030098832903], - [-1.59988048956103, 49.63041784236984], - [-1.59999356868067, 49.630978569811646], - [-1.600860498221293, 49.63101935195073], - [-1.600971677869119, 49.63096266818522], - [-1.600987994515759, 49.63095434954539], - [-1.600991203513488, 49.63095610639915] - ] - }, - "length": 0.18127899117716112, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37968", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09576", - "bus2": "MVBus06628", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600991203513488, 49.63095610639915], - [-1.600994412511217, 49.6309578632529], - [-1.600984513860767, 49.630969695601515], - [-1.600898086848737, 49.63107299773739], - [-1.600198873343388, 49.63104903693187], - [-1.600131825692311, 49.63110713336656], - [-1.600131825692311, 49.63110713336656] - ] - }, - "length": 0.07323313243705727, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34317", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06628", - "bus2": "MVLV12146", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600131825692311, 49.63110713336656], - [-1.600131825692311, 49.63110713336656], - [-1.600141397631577, 49.63111689286139], - [-1.600197159594712, 49.631115077034636], - [-1.60021664451948, 49.6311144425235], - [-1.600219567506464, 49.63112047547915] - ] - }, - "length": 0.006729896400067992, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41829", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12146", - "bus2": "MVBus06630", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600219567506464, 49.63112047547915], - [-1.600222490493448, 49.63112650843481], - [-1.600202597628942, 49.63112777668832], - [-1.60013764391163, 49.631131933049055], - [-1.600133878496521, 49.63114054424035], - [-1.600133878496521, 49.63114054424035] - ] - }, - "length": 0.0071548122839469085, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46365", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06630", - "bus2": "MVLV18248", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600133878496521, 49.63114054424035], - [-1.600133878496521, 49.63114054424035], - [-1.600132989738073, 49.6316251322541], - [-1.600127607633422, 49.63197169331527], - [-1.600124745619519, 49.632005102342184], - [-1.600144456326674, 49.632026041607276], - [-1.600189279469739, 49.632031721768584], - [-1.602111456145106, 49.631852054064865], - [-1.601931564151185, 49.63239220947645], - [-1.601927181375222, 49.632405372866444], - [-1.601926754639998, 49.632405314831374] - ] - }, - "length": 0.30545062371481124, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42877", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18248", - "bus2": "MVBus06677", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.601926754639998, 49.632405314831374], - [-1.601926327904774, 49.632405256796304], - [-1.601929857210709, 49.63239197733624], - [-1.602058963254476, 49.631906071519865], - [-1.599877734329078, 49.63210534175751], - [-1.598957576101803, 49.632660636772], - [-1.598867923178912, 49.6328212588667], - [-1.598839977011486, 49.63297347881945], - [-1.598381917760524, 49.633104287789024], - [-1.598363215189414, 49.63312153191067], - [-1.598351272185645, 49.633132540303215], - [-1.598351272185645, 49.633132540303215] - ] - }, - "length": 0.3822476021700914, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41317", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14988", - "bus2": "MVBus06264", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5994057208656425, 49.63034836409935], - [-1.599406877483881, 49.63034768500303], - [-1.599409152717084, 49.630334293568175], - [-1.59942247928665, 49.63025601472934], - [-1.59974197387622, 49.630246969920925], - [-1.599741036707661, 49.630149264843865], - [-1.599741036707661, 49.630149264843865] - ] - }, - "length": 0.044228529691174134, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32599", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06264", - "bus2": "MVLV10652", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.599741036707661, 49.630149264843865], - [-1.599741036707661, 49.630149264843865], - [-1.599736383418121, 49.629660981036345], - [-1.599512540866027, 49.62875734663733], - [-1.599370851231332, 49.62866761429518], - [-1.596554863870048, 49.62876323245091], - [-1.596499269421502, 49.628750312113155], - [-1.596479745983694, 49.62874576783746], - [-1.5964751196953948, 49.62873807421219] - ] - }, - "length": 0.37988895822058255, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42871", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10652", - "bus2": "MVBus06579", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5964751196953948, 49.62873807421219], - [-1.596480922446136, 49.62874037923972], - [-1.596501621650563, 49.62873952594771], - [-1.59941685670076, 49.6286192313008], - [-1.599579636349769, 49.62872985806198], - [-1.599817214111654, 49.62966633408429], - [-1.599819905230955, 49.630250618970976], - [-1.599824989847082, 49.63025102890478], - [-1.599824989847082, 49.63025102890478] - ] - }, - "length": 0.4004758816236516, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32596", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06579", - "bus2": "MVLV03675", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.599824989847082, 49.63025102890478], - [-1.599824989847082, 49.63025102890478], - [-1.601896244129133, 49.63041958472674], - [-1.601996260348348, 49.6303189412671], - [-1.602233863374785, 49.63039461125765], - [-1.602300391981994, 49.63032571285353], - [-1.602347024907456, 49.630336737503946], - [-1.602419502921724, 49.630341470781], - [-1.602475087898543, 49.63032608148295], - [-1.602544597902495, 49.63029399858802], - [-1.60270357876518, 49.630288602418], - [-1.602700319036958, 49.63024818997145], - [-1.602705435140406, 49.630191291729695], - [-1.60274286249122, 49.630139590148964], - [-1.602831724381774, 49.63008974640218], - [-1.60303394609506, 49.63003605555776], - [-1.603338750099672, 49.62999957723929], - [-1.604465431683123, 49.63001258808894], - [-1.604557972114728, 49.630118583304885], - [-1.604568208129951, 49.63013029910956], - [-1.604575713187041, 49.630129604828134] - ] - }, - "length": 0.3834768388448617, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42629", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03675", - "bus2": "MVBus07545", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.604575713187041, 49.630129604828134], - [-1.604583218244131, 49.63012891054671], - [-1.604588006144933, 49.63011580572965], - [-1.604624993570211, 49.630014364153666], - [-1.605202766983136, 49.63002803316902], - [-1.605865051710045, 49.63009983843237], - [-1.605865051710045, 49.63009983843237] - ] - }, - "length": 0.1033695620553855, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36766", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07545", - "bus2": "MVBus07546", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.605865051710045, 49.63009983843237], - [-1.605865051710045, 49.63009983843237], - [-1.605903527330651, 49.630104005951786], - [-1.605903527330651, 49.630104005951786] - ] - }, - "length": 0.00281802750527586, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42870", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07546", - "bus2": "MVLV01569", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.605903527330651, 49.630104005951786], - [-1.605903527330651, 49.630104005951786], - [-1.605983448277625, 49.63011673120155], - [-1.606110822631136, 49.62982246236862], - [-1.6061154985613, 49.629814540622036], - [-1.606122915451323, 49.629801961452436], - [-1.6061308511170715, 49.6298018240317] - ] - }, - "length": 0.04238473359688498, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32603", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01569", - "bus2": "MVBus07763", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6061308511170715, 49.6298018240317], - [-1.60613878678282, 49.62980168661096], - [-1.606147227423134, 49.629813991389355], - [-1.606161750381372, 49.629835134939675], - [-1.60603073728943, 49.6301220859694], - [-1.60603073728943, 49.6301220859694] - ] - }, - "length": 0.037362505005135126, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41319", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07763", - "bus2": "MVBus07764", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.60603073728943, 49.6301220859694], - [-1.60603073728943, 49.6301220859694], - [-1.606029789962838, 49.63012415808932], - [-1.606534054795468, 49.6302060498832], - [-1.607160392552816, 49.630374724477], - [-1.606937151074058, 49.630597522523814], - [-1.606869119336498, 49.63059623477136], - [-1.606844381112045, 49.630642083548835], - [-1.606844381112045, 49.630642083548835] - ] - }, - "length": 0.12666260023360498, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37175", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07764", - "bus2": "MVLV13299", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.606844381112045, 49.630642083548835], - [-1.606844381112045, 49.630642083548835], - [-1.606835820605765, 49.630657955226134], - [-1.606828954112441, 49.63067066934315], - [-1.6068386972174165, 49.63067770263442] - ] - }, - "length": 0.003369048735334049, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40365", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13299", - "bus2": "MVLV01559", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6068386972174165, 49.63067770263442], - [-1.606848440322392, 49.6306847359257], - [-1.606863725864885, 49.63068082028975], - [-1.606901323807323, 49.63066897408878], - [-1.606898480804468, 49.630702391842064], - [-1.606749736545868, 49.631127052493035], - [-1.606541079339864, 49.63108372701454], - [-1.606255466377593, 49.6317021359408], - [-1.605337646054881, 49.63154607230891], - [-1.605269489275635, 49.63148138396481], - [-1.605257776087073, 49.63147026490842], - [-1.6052536577382486, 49.631471343367366] - ] - }, - "length": 0.22275764658959776, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36000", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01559", - "bus2": "MVLV03697", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6052536577382486, 49.631471343367366], - [-1.605249539389424, 49.6314724218263], - [-1.605253015877039, 49.6314856978016], - [-1.605278106199127, 49.63158141056193], - [-1.606243734949964, 49.63174576187006], - [-1.60614978519823, 49.63197316238006], - [-1.606036071381895, 49.63197374158696], - [-1.606015326590593, 49.631973842614265], - [-1.606013751391186, 49.63197746387231] - ] - }, - "length": 0.12031108048261688, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38837", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03697", - "bus2": "MVLV14993", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.606013751391186, 49.63197746387231], - [-1.606012176191779, 49.631981085130356], - [-1.606029769895893, 49.631988217650516], - [-1.606137908075605, 49.63203209769212], - [-1.605854040183553, 49.632654943879984], - [-1.605925965848163, 49.63269582365155], - [-1.605941575873448, 49.63270469341623], - [-1.6059420225212007, 49.63270438210968] - ] - }, - "length": 0.09135789011304539, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32605", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14993", - "bus2": "MVLV10647", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6059420225212007, 49.63270438210968], - [-1.605942469168953, 49.63270407080312], - [-1.605927752439219, 49.63269457842556], - [-1.605885542280693, 49.63266737784878], - [-1.606587112041124, 49.63113889424461], - [-1.607629270838647, 49.63135824320703], - [-1.607565088252944, 49.63159363916435], - [-1.607473667267332, 49.63158619979585], - [-1.607453089798027, 49.63158452415805], - [-1.6074521494066876, 49.63158659606066] - ] - }, - "length": 0.2970741181967918, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37965", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10647", - "bus2": "MVBus09044", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6074521494066876, 49.63158659606066], - [-1.607451209015348, 49.63158866796327], - [-1.607469905704893, 49.63159448740688], - [-1.607604571721994, 49.63163642166085], - [-1.607707070225681, 49.63130877476193], - [-1.60682293860637, 49.63114076972017], - [-1.606979497719956, 49.63077887123005], - [-1.607005849684557, 49.630761771737134], - [-1.60702755753267, 49.63070430497387], - [-1.606983703433533, 49.63064186407979], - [-1.607233441120983, 49.63038664800551], - [-1.607732825676685, 49.63051170376156], - [-1.607809567268233, 49.630398631969165], - [-1.607809567268233, 49.630398631969165] - ] - }, - "length": 0.2607811328062301, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35858", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09044", - "bus2": "MVBus09045", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607809567268233, 49.630398631969165], - [-1.607809567268233, 49.630398631969165], - [-1.607989467903642, 49.63009289056437], - [-1.607963282202793, 49.63008098506603], - [-1.607963282202793, 49.63008098506603] - ] - }, - "length": 0.03871335222757685, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36664", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09045", - "bus2": "MVBus09046", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607963282202793, 49.63008098506603], - [-1.607963282202793, 49.63008098506603], - [-1.607949074963442, 49.630072168694824], - [-1.607922857761914, 49.63006092963809], - [-1.607922857761914, 49.63006092963809] - ] - }, - "length": 0.003688866872294023, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44819", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10652", - "bus2": "MVLV18429", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5964751196953948, 49.62873807421219], - [-1.596464690656354, 49.6287280755594], - [-1.596469158069387, 49.62871491859022], - [-1.596549865784263, 49.628477067386115], - [-1.596503431317334, 49.62824453071181], - [-1.59626923888142, 49.62809039940601], - [-1.593442751994083, 49.627934175396426], - [-1.593380231363017, 49.627846250703925], - [-1.592712351077759, 49.62781488103925], - [-1.592425766957521, 49.62769854000063], - [-1.592274541262333, 49.627541587835616], - [-1.592232380383244, 49.62734036551845], - [-1.592232380383244, 49.62734036551845] - ] - }, - "length": 0.41044522166928754, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV10302_production", - "bus": "MVLV10302", - "phases": "abc", - "powers": [ - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0] - ] - }, - { - "id": "MVLV10302_consumption", - "bus": "MVLV10302", - "phases": "abc", - "powers": [ - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496] - ] - }, - { - "id": "MVLV18891_production", - "bus": "MVLV18891", - "phases": "abc", - "powers": [ - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0] - ] - }, - { - "id": "MVLV18891_consumption", - "bus": "MVLV18891", - "phases": "abc", - "powers": [ - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496] - ] - }, - { - "id": "MVLV06425_production", - "bus": "MVLV06425", - "phases": "abc", - "powers": [ - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0] - ] - }, - { - "id": "MVLV06425_consumption", - "bus": "MVLV06425", - "phases": "abc", - "powers": [ - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496] - ] - }, - { - "id": "MVLV06406_production", - "bus": "MVLV06406", - "phases": "abc", - "powers": [ - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0] - ] - }, - { - "id": "MVLV06406_consumption", - "bus": "MVLV06406", - "phases": "abc", - "powers": [ - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496] - ] - }, - { - "id": "MVLV08988_production", - "bus": "MVLV08988", - "phases": "abc", - "powers": [ - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0], - [-515.4694360013509, 0.0] - ] - }, - { - "id": "MVLV08988_consumption", - "bus": "MVLV08988", - "phases": "abc", - "powers": [ - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496], - [7448.5676611738645, 2448.2257965771496] - ] - }, - { - "id": "MVLV09578_production", - "bus": "MVLV09578", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09578_consumption", - "bus": "MVLV09578", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV14988_production", - "bus": "MVLV14988", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV14988_consumption", - "bus": "MVLV14988", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV09576_production", - "bus": "MVLV09576", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09576_consumption", - "bus": "MVLV09576", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV12146_production", - "bus": "MVLV12146", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV12146_consumption", - "bus": "MVLV12146", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV18248_production", - "bus": "MVLV18248", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV18248_consumption", - "bus": "MVLV18248", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV10652_production", - "bus": "MVLV10652", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV10652_consumption", - "bus": "MVLV10652", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV03675_production", - "bus": "MVLV03675", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV03675_consumption", - "bus": "MVLV03675", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV01569_production", - "bus": "MVLV01569", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV01569_consumption", - "bus": "MVLV01569", - "phases": "abc", - "powers": [ - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438], - [13586.610797541593, 4465.703012403438] - ] - }, - { - "id": "MVLV13299_production", - "bus": "MVLV13299", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV13299_consumption", - "bus": "MVLV13299", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV01559_production", - "bus": "MVLV01559", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV01559_consumption", - "bus": "MVLV01559", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV03697_production", - "bus": "MVLV03697", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV03697_consumption", - "bus": "MVLV03697", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV14993_production", - "bus": "MVLV14993", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV14993_consumption", - "bus": "MVLV14993", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV10647_production", - "bus": "MVLV10647", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV10647_consumption", - "bus": "MVLV10647", - "phases": "abc", - "powers": [ - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634], - [7813.441318636708, 2568.1539681836634] - ] - }, - { - "id": "MVLV18429_production", - "bus": "MVLV18429", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV18429_consumption", - "bus": "MVLV18429", - "phases": "abc", - "powers": [ - [1790.0939030163242, 588.3754126990592], - [1790.0939030163242, 588.3754126990592], - [1790.0939030163242, 588.3754126990592] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder063_winter.json b/data/MVFeeder063_winter.json deleted file mode 100644 index 9cd1077d..00000000 --- a/data/MVFeeder063_winter.json +++ /dev/null @@ -1,1734 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.582499629951565, 49.63030130599146] - } - }, - { - "id": "HVMV04", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.582499629951565, 49.63030130599146] - } - }, - { - "id": "MVBus00398", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.585887124774393, 49.63117410335776] - } - }, - { - "id": "MVLV10302", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5881686185764852, 49.631323645160805] - } - }, - { - "id": "MVLV18891", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5892748994771195, 49.6310861815891] - } - }, - { - "id": "MVBus04692", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.590032629340467, 49.63102752444015] - } - }, - { - "id": "MVLV06425", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.590081200363509, 49.63141304674876] - } - }, - { - "id": "MVBus04777", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.590078988075034, 49.63102584785101] - } - }, - { - "id": "MVBus04778", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.59131012900034, 49.63097303093617] - } - }, - { - "id": "MVLV06406", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5932946079935264, 49.630656322771706] - } - }, - { - "id": "MVBus05110", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.594956260344823, 49.630665631479914] - } - }, - { - "id": "MVLV08988", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5965269482967035, 49.631562422194115] - } - }, - { - "id": "MVBus05359", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.595457274166531, 49.63050713567418] - } - }, - { - "id": "MVLV09578", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5965383406246354, 49.6303996452076] - } - }, - { - "id": "MVLV14988", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5994057208656425, 49.63034836409935] - } - }, - { - "id": "MVLV09576", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600991203513488, 49.63095610639915] - } - }, - { - "id": "MVBus06628", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600131825692311, 49.63110713336656] - } - }, - { - "id": "MVLV12146", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600219567506464, 49.63112047547915] - } - }, - { - "id": "MVBus06630", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.600133878496521, 49.63114054424035] - } - }, - { - "id": "MVLV18248", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.601926754639998, 49.632405314831374] - } - }, - { - "id": "MVBus06677", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.598351272185645, 49.633132540303215] - } - }, - { - "id": "MVBus06264", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599741036707661, 49.630149264843865] - } - }, - { - "id": "MVLV10652", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5964751196953948, 49.62873807421219] - } - }, - { - "id": "MVBus06579", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.599824989847082, 49.63025102890478] - } - }, - { - "id": "MVLV03675", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.604575713187041, 49.630129604828134] - } - }, - { - "id": "MVBus07545", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.605865051710045, 49.63009983843237] - } - }, - { - "id": "MVBus07546", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.605903527330651, 49.630104005951786] - } - }, - { - "id": "MVLV01569", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6061308511170715, 49.6298018240317] - } - }, - { - "id": "MVBus07763", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.60603073728943, 49.6301220859694] - } - }, - { - "id": "MVBus07764", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.606844381112045, 49.630642083548835] - } - }, - { - "id": "MVLV13299", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6068386972174165, 49.63067770263442] - } - }, - { - "id": "MVLV01559", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6052536577382486, 49.631471343367366] - } - }, - { - "id": "MVLV03697", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.606013751391186, 49.63197746387231] - } - }, - { - "id": "MVLV14993", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6059420225212007, 49.63270438210968] - } - }, - { - "id": "MVLV10647", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6074521494066876, 49.63158659606066] - } - }, - { - "id": "MVBus09044", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607809567268233, 49.630398631969165] - } - }, - { - "id": "MVBus09045", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607963282202793, 49.63008098506603] - } - }, - { - "id": "MVBus09046", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.607922857761914, 49.63006092963809] - } - }, - { - "id": "MVLV18429", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.592232380383244, 49.62734036551845] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV04", - "geometry": { - "type": "Point", - "coordinates": [-1.582499629951565, 49.63030130599146] - } - }, - { - "id": "MVBranch43857", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV04", - "bus2": "MVBus00398", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.582499629951565, 49.63030130599146], - [-1.582457614736368, 49.630431568941255], - [-1.582457614736368, 49.630431568941255], - [-1.582473246228667, 49.630440422918284], - [-1.582578484333074, 49.63050003650204], - [-1.583369908056276, 49.63117289685149], - [-1.583891877875295, 49.631026476614196], - [-1.584268296346088, 49.63100114072498], - [-1.584659143737118, 49.63103473710885], - [-1.585577291539704, 49.63114413204489], - [-1.585887124774393, 49.63117410335776], - [-1.585887124774393, 49.63117410335776] - ] - }, - "length": 0.29272696710627666, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47151", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00398", - "bus2": "MVLV10302", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.585887124774393, 49.63117410335776], - [-1.585887124774393, 49.63117410335776], - [-1.585894433355167, 49.631174810392274], - [-1.586060807467087, 49.63120970556265], - [-1.588012421086478, 49.631120216905174], - [-1.58815331318397, 49.6313120297285], - [-1.588162236523714, 49.631324185056314], - [-1.5881686185764852, 49.631323645160805] - ] - }, - "length": 0.1796403071794525, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36458", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10302", - "bus2": "MVLV18891", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5881686185764852, 49.631323645160805], - [-1.588175000629256, 49.6313231052653], - [-1.58817884138881, 49.631309870147], - [-1.588238497198527, 49.63110445197659], - [-1.589229311013137, 49.63106549205088], - [-1.589242795801626, 49.63107845234356], - [-1.589252235847672, 49.63108760545372], - [-1.5892748994771195, 49.6310861815891] - ] - }, - "length": 0.09942329994366059, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18891", - "bus2": "MVBus04692", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5892748994771195, 49.6310861815891], - [-1.589297563106567, 49.631084757724466], - [-1.589312210074494, 49.631075227062105], - [-1.589336929625482, 49.6310591467841], - [-1.590032629340467, 49.63102752444015], - [-1.590032629340467, 49.63102752444015] - ] - }, - "length": 0.05440747326591015, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04692", - "bus2": "MVLV06425", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.590032629340467, 49.63102752444015], - [-1.590032629340467, 49.63102752444015], - [-1.59003720921662, 49.63102731274123], - [-1.590061795161727, 49.631400962237706], - [-1.590062397349204, 49.63141004265828], - [-1.59006707050888, 49.631413199957606], - [-1.590081200363509, 49.63141304674876] - ] - }, - "length": 0.04342566480759927, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06425", - "bus2": "MVBus04777", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.590081200363509, 49.63141304674876], - [-1.590095330218138, 49.631412893539924], - [-1.590098491181968, 49.63141061478891], - [-1.590097801973846, 49.631400224351815], - [-1.590073151546796, 49.63102610036799], - [-1.590078988075034, 49.63102584785101], - [-1.590078988075034, 49.63102584785101] - ] - }, - "length": 0.043569334620479676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43814", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04777", - "bus2": "MVBus04778", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.590078988075034, 49.63102584785101], - [-1.590078988075034, 49.63102584785101], - [-1.59131012900034, 49.63097303093617], - [-1.59131012900034, 49.63097303093617] - ] - }, - "length": 0.0891351018547783, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39808", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04778", - "bus2": "MVLV06406", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.59131012900034, 49.63097303093617], - [-1.59131012900034, 49.63097303093617], - [-1.59217025879419, 49.63093611661641], - [-1.592359942925573, 49.631053944114726], - [-1.592712554378385, 49.63104288863784], - [-1.592667504616526, 49.6308274095797], - [-1.593231716327097, 49.63079297442431], - [-1.593276712268867, 49.63067587334755], - [-1.593281727528354, 49.63066280665203], - [-1.5932946079935264, 49.630656322771706] - ] - }, - "length": 0.1867858831234055, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32865", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06406", - "bus2": "MVBus05110", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5932946079935264, 49.630656322771706], - [-1.593307488458699, 49.63064983889138], - [-1.593328233441076, 49.63064992885346], - [-1.593661170228589, 49.63065145159545], - [-1.593807807362896, 49.630716705797546], - [-1.594006946568672, 49.630727963754794], - [-1.594956260344823, 49.630665631479914], - [-1.594956260344823, 49.630665631479914] - ] - }, - "length": 0.12176520566195435, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46784", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05110", - "bus2": "MVLV08988", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.594956260344823, 49.630665631479914], - [-1.594956260344823, 49.630665631479914], - [-1.595283878116689, 49.630644123093084], - [-1.595485369975571, 49.630615682851264], - [-1.595832592176104, 49.630968569411536], - [-1.596514512394846, 49.63147602143405], - [-1.596521580252994, 49.631547746364326], - [-1.596523301958769, 49.63156037821939], - [-1.5965269482967035, 49.631562422194115] - ] - }, - "length": 0.16958490464876844, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41322", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08988", - "bus2": "MVBus05359", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5965269482967035, 49.631562422194115], - [-1.596530594634638, 49.63156446616884], - [-1.596538935694694, 49.63154516749901], - [-1.596568202693209, 49.63146367299588], - [-1.595893646808499, 49.630952088121326], - [-1.595457274166531, 49.63050713567418], - [-1.595457274166531, 49.63050713567418] - ] - }, - "length": 0.1451287670349226, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40369", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05359", - "bus2": "MVLV09578", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.595457274166531, 49.63050713567418], - [-1.595457274166531, 49.63050713567418], - [-1.595070655749525, 49.63011290668581], - [-1.595014596452464, 49.629915815242335], - [-1.59556662626041, 49.629919594817196], - [-1.595887238387095, 49.630096903492536], - [-1.596170633553712, 49.630242160226175], - [-1.596328495422259, 49.63029173273002], - [-1.596484912519411, 49.63030622881062], - [-1.596508270547654, 49.63039065125154], - [-1.596510327067297, 49.63039811075034], - [-1.596518918723145, 49.630400016314034], - [-1.5965383406246354, 49.6303996452076] - ] - }, - "length": 0.20578413900606038, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44814", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09578", - "bus2": "MVLV14988", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5965383406246354, 49.6303996452076], - [-1.596557762526126, 49.63039927410117], - [-1.596569769188971, 49.63039609591247], - [-1.596570419598952, 49.63039106613977], - [-1.59658169022995, 49.63030294533156], - [-1.599353488655153, 49.63027727030881], - [-1.599389324445609, 49.63033603617886], - [-1.599396963345673, 49.63034855630855], - [-1.5994057208656425, 49.63034836409935] - ] - }, - "length": 0.2201270935428412, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35110", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14988", - "bus2": "MVLV09576", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5994057208656425, 49.63034836409935], - [-1.599413321767373, 49.63034885098645], - [-1.599422041281082, 49.6303366255345], - [-1.5994506868453, 49.63029647816279], - [-1.599742169728719, 49.63030098832903], - [-1.59988048956103, 49.63041784236984], - [-1.59999356868067, 49.630978569811646], - [-1.600860498221293, 49.63101935195073], - [-1.600971677869119, 49.63096266818522], - [-1.600987994515759, 49.63095434954539], - [-1.600991203513488, 49.63095610639915] - ] - }, - "length": 0.18127899117716112, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37968", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09576", - "bus2": "MVBus06628", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600991203513488, 49.63095610639915], - [-1.600994412511217, 49.6309578632529], - [-1.600984513860767, 49.630969695601515], - [-1.600898086848737, 49.63107299773739], - [-1.600198873343388, 49.63104903693187], - [-1.600131825692311, 49.63110713336656], - [-1.600131825692311, 49.63110713336656] - ] - }, - "length": 0.07323313243705727, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34317", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06628", - "bus2": "MVLV12146", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600131825692311, 49.63110713336656], - [-1.600131825692311, 49.63110713336656], - [-1.600141397631577, 49.63111689286139], - [-1.600197159594712, 49.631115077034636], - [-1.60021664451948, 49.6311144425235], - [-1.600219567506464, 49.63112047547915] - ] - }, - "length": 0.006729896400067992, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41829", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12146", - "bus2": "MVBus06630", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600219567506464, 49.63112047547915], - [-1.600222490493448, 49.63112650843481], - [-1.600202597628942, 49.63112777668832], - [-1.60013764391163, 49.631131933049055], - [-1.600133878496521, 49.63114054424035], - [-1.600133878496521, 49.63114054424035] - ] - }, - "length": 0.0071548122839469085, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46365", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06630", - "bus2": "MVLV18248", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.600133878496521, 49.63114054424035], - [-1.600133878496521, 49.63114054424035], - [-1.600132989738073, 49.6316251322541], - [-1.600127607633422, 49.63197169331527], - [-1.600124745619519, 49.632005102342184], - [-1.600144456326674, 49.632026041607276], - [-1.600189279469739, 49.632031721768584], - [-1.602111456145106, 49.631852054064865], - [-1.601931564151185, 49.63239220947645], - [-1.601927181375222, 49.632405372866444], - [-1.601926754639998, 49.632405314831374] - ] - }, - "length": 0.30545062371481124, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42877", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18248", - "bus2": "MVBus06677", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.601926754639998, 49.632405314831374], - [-1.601926327904774, 49.632405256796304], - [-1.601929857210709, 49.63239197733624], - [-1.602058963254476, 49.631906071519865], - [-1.599877734329078, 49.63210534175751], - [-1.598957576101803, 49.632660636772], - [-1.598867923178912, 49.6328212588667], - [-1.598839977011486, 49.63297347881945], - [-1.598381917760524, 49.633104287789024], - [-1.598363215189414, 49.63312153191067], - [-1.598351272185645, 49.633132540303215], - [-1.598351272185645, 49.633132540303215] - ] - }, - "length": 0.3822476021700914, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41317", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14988", - "bus2": "MVBus06264", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5994057208656425, 49.63034836409935], - [-1.599406877483881, 49.63034768500303], - [-1.599409152717084, 49.630334293568175], - [-1.59942247928665, 49.63025601472934], - [-1.59974197387622, 49.630246969920925], - [-1.599741036707661, 49.630149264843865], - [-1.599741036707661, 49.630149264843865] - ] - }, - "length": 0.044228529691174134, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32599", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06264", - "bus2": "MVLV10652", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.599741036707661, 49.630149264843865], - [-1.599741036707661, 49.630149264843865], - [-1.599736383418121, 49.629660981036345], - [-1.599512540866027, 49.62875734663733], - [-1.599370851231332, 49.62866761429518], - [-1.596554863870048, 49.62876323245091], - [-1.596499269421502, 49.628750312113155], - [-1.596479745983694, 49.62874576783746], - [-1.5964751196953948, 49.62873807421219] - ] - }, - "length": 0.37988895822058255, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42871", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10652", - "bus2": "MVBus06579", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5964751196953948, 49.62873807421219], - [-1.596480922446136, 49.62874037923972], - [-1.596501621650563, 49.62873952594771], - [-1.59941685670076, 49.6286192313008], - [-1.599579636349769, 49.62872985806198], - [-1.599817214111654, 49.62966633408429], - [-1.599819905230955, 49.630250618970976], - [-1.599824989847082, 49.63025102890478], - [-1.599824989847082, 49.63025102890478] - ] - }, - "length": 0.4004758816236516, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32596", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06579", - "bus2": "MVLV03675", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.599824989847082, 49.63025102890478], - [-1.599824989847082, 49.63025102890478], - [-1.601896244129133, 49.63041958472674], - [-1.601996260348348, 49.6303189412671], - [-1.602233863374785, 49.63039461125765], - [-1.602300391981994, 49.63032571285353], - [-1.602347024907456, 49.630336737503946], - [-1.602419502921724, 49.630341470781], - [-1.602475087898543, 49.63032608148295], - [-1.602544597902495, 49.63029399858802], - [-1.60270357876518, 49.630288602418], - [-1.602700319036958, 49.63024818997145], - [-1.602705435140406, 49.630191291729695], - [-1.60274286249122, 49.630139590148964], - [-1.602831724381774, 49.63008974640218], - [-1.60303394609506, 49.63003605555776], - [-1.603338750099672, 49.62999957723929], - [-1.604465431683123, 49.63001258808894], - [-1.604557972114728, 49.630118583304885], - [-1.604568208129951, 49.63013029910956], - [-1.604575713187041, 49.630129604828134] - ] - }, - "length": 0.3834768388448617, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42629", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03675", - "bus2": "MVBus07545", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.604575713187041, 49.630129604828134], - [-1.604583218244131, 49.63012891054671], - [-1.604588006144933, 49.63011580572965], - [-1.604624993570211, 49.630014364153666], - [-1.605202766983136, 49.63002803316902], - [-1.605865051710045, 49.63009983843237], - [-1.605865051710045, 49.63009983843237] - ] - }, - "length": 0.1033695620553855, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36766", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07545", - "bus2": "MVBus07546", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.605865051710045, 49.63009983843237], - [-1.605865051710045, 49.63009983843237], - [-1.605903527330651, 49.630104005951786], - [-1.605903527330651, 49.630104005951786] - ] - }, - "length": 0.00281802750527586, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42870", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07546", - "bus2": "MVLV01569", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.605903527330651, 49.630104005951786], - [-1.605903527330651, 49.630104005951786], - [-1.605983448277625, 49.63011673120155], - [-1.606110822631136, 49.62982246236862], - [-1.6061154985613, 49.629814540622036], - [-1.606122915451323, 49.629801961452436], - [-1.6061308511170715, 49.6298018240317] - ] - }, - "length": 0.04238473359688498, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32603", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01569", - "bus2": "MVBus07763", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6061308511170715, 49.6298018240317], - [-1.60613878678282, 49.62980168661096], - [-1.606147227423134, 49.629813991389355], - [-1.606161750381372, 49.629835134939675], - [-1.60603073728943, 49.6301220859694], - [-1.60603073728943, 49.6301220859694] - ] - }, - "length": 0.037362505005135126, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41319", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07763", - "bus2": "MVBus07764", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.60603073728943, 49.6301220859694], - [-1.60603073728943, 49.6301220859694], - [-1.606029789962838, 49.63012415808932], - [-1.606534054795468, 49.6302060498832], - [-1.607160392552816, 49.630374724477], - [-1.606937151074058, 49.630597522523814], - [-1.606869119336498, 49.63059623477136], - [-1.606844381112045, 49.630642083548835], - [-1.606844381112045, 49.630642083548835] - ] - }, - "length": 0.12666260023360498, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37175", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07764", - "bus2": "MVLV13299", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.606844381112045, 49.630642083548835], - [-1.606844381112045, 49.630642083548835], - [-1.606835820605765, 49.630657955226134], - [-1.606828954112441, 49.63067066934315], - [-1.6068386972174165, 49.63067770263442] - ] - }, - "length": 0.003369048735334049, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40365", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13299", - "bus2": "MVLV01559", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6068386972174165, 49.63067770263442], - [-1.606848440322392, 49.6306847359257], - [-1.606863725864885, 49.63068082028975], - [-1.606901323807323, 49.63066897408878], - [-1.606898480804468, 49.630702391842064], - [-1.606749736545868, 49.631127052493035], - [-1.606541079339864, 49.63108372701454], - [-1.606255466377593, 49.6317021359408], - [-1.605337646054881, 49.63154607230891], - [-1.605269489275635, 49.63148138396481], - [-1.605257776087073, 49.63147026490842], - [-1.6052536577382486, 49.631471343367366] - ] - }, - "length": 0.22275764658959776, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36000", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01559", - "bus2": "MVLV03697", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6052536577382486, 49.631471343367366], - [-1.605249539389424, 49.6314724218263], - [-1.605253015877039, 49.6314856978016], - [-1.605278106199127, 49.63158141056193], - [-1.606243734949964, 49.63174576187006], - [-1.60614978519823, 49.63197316238006], - [-1.606036071381895, 49.63197374158696], - [-1.606015326590593, 49.631973842614265], - [-1.606013751391186, 49.63197746387231] - ] - }, - "length": 0.12031108048261688, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38837", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03697", - "bus2": "MVLV14993", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.606013751391186, 49.63197746387231], - [-1.606012176191779, 49.631981085130356], - [-1.606029769895893, 49.631988217650516], - [-1.606137908075605, 49.63203209769212], - [-1.605854040183553, 49.632654943879984], - [-1.605925965848163, 49.63269582365155], - [-1.605941575873448, 49.63270469341623], - [-1.6059420225212007, 49.63270438210968] - ] - }, - "length": 0.09135789011304539, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32605", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14993", - "bus2": "MVLV10647", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6059420225212007, 49.63270438210968], - [-1.605942469168953, 49.63270407080312], - [-1.605927752439219, 49.63269457842556], - [-1.605885542280693, 49.63266737784878], - [-1.606587112041124, 49.63113889424461], - [-1.607629270838647, 49.63135824320703], - [-1.607565088252944, 49.63159363916435], - [-1.607473667267332, 49.63158619979585], - [-1.607453089798027, 49.63158452415805], - [-1.6074521494066876, 49.63158659606066] - ] - }, - "length": 0.2970741181967918, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37965", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10647", - "bus2": "MVBus09044", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6074521494066876, 49.63158659606066], - [-1.607451209015348, 49.63158866796327], - [-1.607469905704893, 49.63159448740688], - [-1.607604571721994, 49.63163642166085], - [-1.607707070225681, 49.63130877476193], - [-1.60682293860637, 49.63114076972017], - [-1.606979497719956, 49.63077887123005], - [-1.607005849684557, 49.630761771737134], - [-1.60702755753267, 49.63070430497387], - [-1.606983703433533, 49.63064186407979], - [-1.607233441120983, 49.63038664800551], - [-1.607732825676685, 49.63051170376156], - [-1.607809567268233, 49.630398631969165], - [-1.607809567268233, 49.630398631969165] - ] - }, - "length": 0.2607811328062301, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35858", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09044", - "bus2": "MVBus09045", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607809567268233, 49.630398631969165], - [-1.607809567268233, 49.630398631969165], - [-1.607989467903642, 49.63009289056437], - [-1.607963282202793, 49.63008098506603], - [-1.607963282202793, 49.63008098506603] - ] - }, - "length": 0.03871335222757685, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36664", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09045", - "bus2": "MVBus09046", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.607963282202793, 49.63008098506603], - [-1.607963282202793, 49.63008098506603], - [-1.607949074963442, 49.630072168694824], - [-1.607922857761914, 49.63006092963809], - [-1.607922857761914, 49.63006092963809] - ] - }, - "length": 0.003688866872294023, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44819", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10652", - "bus2": "MVLV18429", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5964751196953948, 49.62873807421219], - [-1.596464690656354, 49.6287280755594], - [-1.596469158069387, 49.62871491859022], - [-1.596549865784263, 49.628477067386115], - [-1.596503431317334, 49.62824453071181], - [-1.59626923888142, 49.62809039940601], - [-1.593442751994083, 49.627934175396426], - [-1.593380231363017, 49.627846250703925], - [-1.592712351077759, 49.62781488103925], - [-1.592425766957521, 49.62769854000063], - [-1.592274541262333, 49.627541587835616], - [-1.592232380383244, 49.62734036551845], - [-1.592232380383244, 49.62734036551845] - ] - }, - "length": 0.41044522166928754, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV10302_production", - "bus": "MVLV10302", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10302_consumption", - "bus": "MVLV10302", - "phases": "abc", - "powers": [ - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748] - ] - }, - { - "id": "MVLV18891_production", - "bus": "MVLV18891", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18891_consumption", - "bus": "MVLV18891", - "phases": "abc", - "powers": [ - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748] - ] - }, - { - "id": "MVLV06425_production", - "bus": "MVLV06425", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06425_consumption", - "bus": "MVLV06425", - "phases": "abc", - "powers": [ - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748] - ] - }, - { - "id": "MVLV06406_production", - "bus": "MVLV06406", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06406_consumption", - "bus": "MVLV06406", - "phases": "abc", - "powers": [ - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748] - ] - }, - { - "id": "MVLV08988_production", - "bus": "MVLV08988", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08988_consumption", - "bus": "MVLV08988", - "phases": "abc", - "powers": [ - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748], - [37242.83830586932, 12241.128982885748] - ] - }, - { - "id": "MVLV09578_production", - "bus": "MVLV09578", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09578_consumption", - "bus": "MVLV09578", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV14988_production", - "bus": "MVLV14988", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14988_consumption", - "bus": "MVLV14988", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV09576_production", - "bus": "MVLV09576", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09576_consumption", - "bus": "MVLV09576", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV12146_production", - "bus": "MVLV12146", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12146_consumption", - "bus": "MVLV12146", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV18248_production", - "bus": "MVLV18248", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18248_consumption", - "bus": "MVLV18248", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV10652_production", - "bus": "MVLV10652", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10652_consumption", - "bus": "MVLV10652", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV03675_production", - "bus": "MVLV03675", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03675_consumption", - "bus": "MVLV03675", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV01569_production", - "bus": "MVLV01569", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01569_consumption", - "bus": "MVLV01569", - "phases": "abc", - "powers": [ - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719], - [67933.05398770796, 22328.51506201719] - ] - }, - { - "id": "MVLV13299_production", - "bus": "MVLV13299", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13299_consumption", - "bus": "MVLV13299", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV01559_production", - "bus": "MVLV01559", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01559_consumption", - "bus": "MVLV01559", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV03697_production", - "bus": "MVLV03697", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03697_consumption", - "bus": "MVLV03697", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV14993_production", - "bus": "MVLV14993", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14993_consumption", - "bus": "MVLV14993", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV10647_production", - "bus": "MVLV10647", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10647_consumption", - "bus": "MVLV10647", - "phases": "abc", - "powers": [ - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316], - [39067.20659318354, 12840.769840918316] - ] - }, - { - "id": "MVLV18429_production", - "bus": "MVLV18429", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18429_consumption", - "bus": "MVLV18429", - "phases": "abc", - "powers": [ - [8950.46951508162, 2941.877063495296], - [8950.46951508162, 2941.877063495296], - [8950.46951508162, 2941.877063495296] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder078_summer.json b/data/MVFeeder078_summer.json deleted file mode 100644 index 7412738d..00000000 --- a/data/MVFeeder078_summer.json +++ /dev/null @@ -1,3105 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.861907220519602, 48.85275990396129] - } - }, - { - "id": "HVMV06", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.861907220519602, 48.85275990396129] - } - }, - { - "id": "MVLV03394", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8600627007696874, 48.85333737772175] - } - }, - { - "id": "MVBus04323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.860106265907068, 48.853379550930796] - } - }, - { - "id": "MVBus04325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8599909640364121, 48.853403618584366] - } - }, - { - "id": "MVBus04335", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.860150118595222, 48.85333739287977] - } - }, - { - "id": "MVBus04336", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.861013888394328, 48.85275771061705] - } - }, - { - "id": "MVBus04337", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.860681733449894, 48.85162594273506] - } - }, - { - "id": "MVBus04338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.856679771196076, 48.8393331890979] - } - }, - { - "id": "MVBus04339", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.859015429167717, 48.8390977033655] - } - }, - { - "id": "MVBus04340", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863845928420918, 48.83892360687616] - } - }, - { - "id": "MVBus04341", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.868646658997884, 48.838745743786326] - } - }, - { - "id": "MVLV16339", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8686998101678213, 48.838526097189025] - } - }, - { - "id": "MVBus07965", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.869200703510018, 48.83872826590689] - } - }, - { - "id": "MVBus07966", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.871765069885203, 48.83861872799665] - } - }, - { - "id": "MVBus07967", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872413202730643, 48.838592842785516] - } - }, - { - "id": "MVBus07968", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872214961209678, 48.838120113328216] - } - }, - { - "id": "MVLV06613", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872280137987934, 48.83809987122305] - } - }, - { - "id": "MVLV07909", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8752082433672413, 48.8350261440061] - } - }, - { - "id": "MVLV17318", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8785649436214537, 48.8332075950315] - } - }, - { - "id": "MVBus11094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875101921835193, 48.83012230580406] - } - }, - { - "id": "MVLV00077", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875095059017632, 48.830122149229794] - } - }, - { - "id": "MVLV14187", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880775799819524, 48.82987719698311] - } - }, - { - "id": "MVLV06614", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8817425294272689, 48.8315149122372] - } - }, - { - "id": "MVBus12384", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.884273548054826, 48.83387686483468] - } - }, - { - "id": "MVLV16352", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8824449607734131, 48.834537732363174] - } - }, - { - "id": "MVBus15325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.884286491972944, 48.833908447025685] - } - }, - { - "id": "MVLV17323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.885308108952521, 48.83400488371018] - } - }, - { - "id": "MVBus16410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.885832178874871, 48.832586304212874] - } - }, - { - "id": "MVLV03392", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8848244135284965, 48.830527334184154] - } - }, - { - "id": "MVBus18343", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.884841385788525, 48.830452372763254] - } - }, - { - "id": "MVLV06627", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.881830223376614, 48.82710345299199] - } - }, - { - "id": "MVBus18345", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.885597781304912, 48.83063412127371] - } - }, - { - "id": "MVBus18346", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.887865142307306, 48.82833235071164] - } - }, - { - "id": "MVBus18347", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.888557428715923, 48.826631641066605] - } - }, - { - "id": "MVLV19250", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.888514962274334, 48.82656655184295] - } - }, - { - "id": "MVBus10081", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.874502738373467, 48.834940067597074] - } - }, - { - "id": "MVLV16338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875658580600804, 48.83676048053651] - } - }, - { - "id": "MVBus07970", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872246199468391, 48.838151697990995] - } - }, - { - "id": "MVBus07971", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872467795554653, 48.83862329391957] - } - }, - { - "id": "MVLV07908", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8756189144606039, 48.838468138861174] - } - }, - { - "id": "MVLV06624", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8794877577508065, 48.838063656216335] - } - }, - { - "id": "MVBus08685", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880674679188671, 48.8373468095376] - } - }, - { - "id": "MVBus08686", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.881772418257212, 48.837005846464045] - } - }, - { - "id": "MVLV06618", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.88406440710997, 48.836928020339315] - } - }, - { - "id": "MVBus07199", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.868817103520342, 48.838763622546615] - } - }, - { - "id": "MVBus07200", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.871876996225313, 48.8388095884613] - } - }, - { - "id": "MVBus07201", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872146518973825, 48.839822200116686] - } - }, - { - "id": "MVBus07202", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872898415892355, 48.84142980041824] - } - }, - { - "id": "MVBus07203", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.873007234026652, 48.84148884120062] - } - }, - { - "id": "MVLV14197", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8717518762744035, 48.84182098477776] - } - }, - { - "id": "MVBus08183", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.870691717544495, 48.84198811304198] - } - }, - { - "id": "MVLV17331", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.86695823363757, 48.84303468142016] - } - }, - { - "id": "MVBus07204", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.873675944485619, 48.84146590316994] - } - }, - { - "id": "MVBus07205", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876293704382707, 48.841087077107254] - } - }, - { - "id": "MVLV14202", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.874905311669654, 48.839830229741395] - } - }, - { - "id": "MVBus08702", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876492203069748, 48.84105368987994] - } - }, - { - "id": "MVBus08703", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876689117189963, 48.841427008610744] - } - }, - { - "id": "MVBus08704", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876715779516786, 48.84145658387014] - } - }, - { - "id": "MVBus08705", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875473232182965, 48.84208025906252] - } - }, - { - "id": "MVLV17336", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8616552619450155, 48.85683610333325] - } - }, - { - "id": "MVBus04731", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863918222964227, 48.85700255077768] - } - }, - { - "id": "MVBus04732", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863762652584391, 48.85793512380676] - } - }, - { - "id": "MVLV00093", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.864077991992518, 48.858894496901186] - } - }, - { - "id": "MVBus05173", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863774645581598, 48.85794501052119] - } - }, - { - "id": "MVBus05174", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.864145676144476, 48.85700715758124] - } - }, - { - "id": "MVBus05175", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.865158661585753, 48.85696769446948] - } - }, - { - "id": "MVBus05176", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.865356031015941, 48.8569050172066] - } - }, - { - "id": "MVLV16267", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.86001853756168, 48.85337575425656] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV06", - "geometry": { - "type": "Point", - "coordinates": [-0.861907220519602, 48.85275990396129] - } - }, - { - "id": "MVBranch38953", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV06", - "bus2": "MVLV03394", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.861907220519602, 48.85275990396129], - [-0.861888314271604, 48.852754808166644], - [-0.861888314271604, 48.852754808166644], - [-0.861869408027325, 48.85274971236901], - [-0.861368673543466, 48.8526147865462], - [-0.861049320568241, 48.8527812427962], - [-0.860169527273028, 48.853373840425675], - [-0.860149647433513, 48.85336179950876], - [-0.860092076860964, 48.85333225936424], - [-0.860084771759453, 48.85332851579644], - [-0.860072260429244, 48.853323014123966], - [-0.8600627007696874, 48.85333737772175] - ] - }, - "length": 0.1724292254349832, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38947", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03394", - "bus2": "MVBus04323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8600627007696874, 48.85333737772175], - [-0.860064721160006, 48.85334287927401], - [-0.860079895072474, 48.853356854535264], - [-0.860106265907068, 48.853379550930796], - [-0.860106265907068, 48.853379550930796] - ] - }, - "length": 0.005092436730597999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38704", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04323", - "bus2": "MVBus04325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860106265907068, 48.853379550930796], - [-0.860106265907068, 48.853379550930796], - [-0.8600163028267, 48.85343278750661], - [-0.86000994418003, 48.85343510801778], - [-0.860001070273415, 48.853434437828625], - [-0.8599939335223, 48.853431877051975], - [-0.859979190789972, 48.853421578081765], - [-0.8599909640364121, 48.853403618584366] - ] - }, - "length": 0.012228134551066085, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34347", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04325", - "bus2": "MVBus04335", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8599909640364121, 48.853403618584366], - [-0.860002737282852, 48.85338565908697], - [-0.860017184353527, 48.85339381622982], - [-0.860028993381016, 48.853400748954925], - [-0.860036652137753, 48.853403817412136], - [-0.860044145542325, 48.85340442572612], - [-0.860049877979954, 48.85340344426834], - [-0.860150118595222, 48.85333739287977], - [-0.860150118595222, 48.85333739287977] - ] - }, - "length": 0.014597094628989744, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44798", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04335", - "bus2": "MVBus04336", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860150118595222, 48.85333739287977], - [-0.860150118595222, 48.85333739287977], - [-0.861013888394328, 48.85275771061705], - [-0.861013888394328, 48.85275771061705] - ] - }, - "length": 0.09040961235896791, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47178", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04336", - "bus2": "MVBus04337", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.861013888394328, 48.85275771061705], - [-0.861013888394328, 48.85275771061705], - [-0.861026308616059, 48.85273367559381], - [-0.860340072911525, 48.85206688936424], - [-0.86032562358509, 48.852036811896866], - [-0.86035029558328, 48.85200567478345], - [-0.860467329603989, 48.85186124066065], - [-0.860648657339723, 48.851647663190434], - [-0.860681733449894, 48.85162594273506], - [-0.860681733449894, 48.85162594273506] - ] - }, - "length": 0.14874056292248092, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch21891", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04337", - "bus2": "MVBus04338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860681733449894, 48.85162594273506], - [-0.860681733449894, 48.85162594273506], - [-0.858409909480369, 48.84912569509092], - [-0.856679771196076, 48.8393331890979], - [-0.856679771196076, 48.8393331890979] - ] - }, - "length": 1.4205755596337886, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch47177", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04338", - "bus2": "MVBus04339", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.856679771196076, 48.8393331890979], - [-0.856679771196076, 48.8393331890979], - [-0.856661212898628, 48.839171697597386], - [-0.857642747219776, 48.839146922274196], - [-0.859015429167717, 48.8390977033655], - [-0.859015429167717, 48.8390977033655] - ] - }, - "length": 0.19102802193987503, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45915", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04339", - "bus2": "MVBus04340", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.859015429167717, 48.8390977033655], - [-0.859015429167717, 48.8390977033655], - [-0.859018121143696, 48.8390976040966], - [-0.858947615612684, 48.83918868197558], - [-0.858967015313405, 48.83927814631989], - [-0.859771801979231, 48.83928260141979], - [-0.860450036039239, 48.83922759422397], - [-0.860931046676199, 48.83928612729581], - [-0.861434667467907, 48.83927201042151], - [-0.861836059636044, 48.83915274458074], - [-0.862388898406028, 48.83905623844159], - [-0.863824198630521, 48.83902677864632], - [-0.863845928420918, 48.83892360687616], - [-0.863845928420918, 48.83892360687616] - ] - }, - "length": 0.3950562373152476, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41998", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04340", - "bus2": "MVBus04341", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863845928420918, 48.83892360687616], - [-0.863845928420918, 48.83892360687616], - [-0.863846128696252, 48.83892265702046], - [-0.868646658997884, 48.838745743786326], - [-0.868646658997884, 48.838745743786326] - ] - }, - "length": 0.3530507631966376, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45916", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04341", - "bus2": "MVLV16339", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.868646658997884, 48.838745743786326], - [-0.868646658997884, 48.838745743786326], - [-0.868692683463817, 48.83874651908009], - [-0.868676239033346, 48.83856449893863], - [-0.868675510877745, 48.838536850008595], - [-0.868687059984101, 48.83852572699374], - [-0.8686998101678213, 48.838526097189025] - ] - }, - "length": 0.028232269363577034, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41390", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16339", - "bus2": "MVBus07965", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8686998101678213, 48.838526097189025], - [-0.868712466165582, 48.83852450301946], - [-0.868726323250959, 48.83853440205953], - [-0.868727566232987, 48.83855627134506], - [-0.868747945655592, 48.83874617303756], - [-0.869200703510018, 48.83872826590689], - [-0.869200703510018, 48.83872826590689] - ] - }, - "length": 0.05839935889291249, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40021", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07965", - "bus2": "MVBus07966", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.869200703510018, 48.83872826590689], - [-0.869200703510018, 48.83872826590689], - [-0.871765069885203, 48.83861872799665], - [-0.871765069885203, 48.83861872799665] - ] - }, - "length": 0.1886382705981941, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33223", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07966", - "bus2": "MVBus07967", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.871765069885203, 48.83861872799665], - [-0.871765069885203, 48.83861872799665], - [-0.871795530743376, 48.83861991267546], - [-0.871815033615213, 48.83863097243188], - [-0.872423624198983, 48.838620095440184], - [-0.872413202730643, 48.838592842785516], - [-0.872413202730643, 48.838592842785516] - ] - }, - "length": 0.05194483150364374, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45917", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07967", - "bus2": "MVBus07968", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872413202730643, 48.838592842785516], - [-0.872413202730643, 48.838592842785516], - [-0.872214961209678, 48.838120113328216], - [-0.872214961209678, 48.838120113328216] - ] - }, - "length": 0.05454767906198296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35587", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07968", - "bus2": "MVLV06613", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872214961209678, 48.838120113328216], - [-0.872214961209678, 48.838120113328216], - [-0.872256982326507, 48.83810663017048], - [-0.872275563537051, 48.83810103798684], - [-0.872280137987934, 48.83809987122305] - ] - }, - "length": 0.004928925184248028, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40022", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06613", - "bus2": "MVLV07909", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872280137987934, 48.83809987122305], - [-0.872276311796317, 48.838087147530715], - [-0.872252104016431, 48.83808571342212], - [-0.872233654174436, 48.83808219912663], - [-0.872224200606974, 48.83806265604554], - [-0.872151690647924, 48.83808000156608], - [-0.871588360259366, 48.83680962440633], - [-0.871316477191573, 48.83675876503669], - [-0.871152039874733, 48.83670398347678], - [-0.870983382857406, 48.83662591944109], - [-0.870713485181455, 48.836457998275456], - [-0.870488433898687, 48.83620329850673], - [-0.870262745683259, 48.83572720352523], - [-0.869853254863085, 48.83500154705229], - [-0.869778652800155, 48.834901931604605], - [-0.869900362224382, 48.83486520872472], - [-0.869933506907551, 48.83480847461936], - [-0.872188034827993, 48.83416542872751], - [-0.872354195262133, 48.83412024561571], - [-0.87240103864092, 48.834127932455765], - [-0.87278362855321, 48.834267480705606], - [-0.872883395792063, 48.834313282119076], - [-0.873094063121389, 48.83442976149543], - [-0.873158966452131, 48.834484643544144], - [-0.873274865981431, 48.83459029415274], - [-0.873380562133205, 48.83466471931383], - [-0.873899640777921, 48.83486973600969], - [-0.874392297501488, 48.83491887805648], - [-0.874509716103237, 48.834900265212084], - [-0.875221549060217, 48.834986440628654], - [-0.875216709133885, 48.83500839319945], - [-0.875214168333963, 48.835019948427785], - [-0.875212988103713, 48.83502157240236], - [-0.8752082433672413, 48.8350261440061] - ] - }, - "length": 0.8770431551619805, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45129", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07909", - "bus2": "MVLV17318", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8752082433672413, 48.8350261440061], - [-0.875224158969585, 48.835030994526335], - [-0.875244156303354, 48.83502826900243], - [-0.875262275049929, 48.835025792069665], - [-0.876015080951546, 48.83509190439377], - [-0.876340703242326, 48.835045828796595], - [-0.877340633308082, 48.834990663517246], - [-0.877462796493591, 48.834961116555206], - [-0.877951758763579, 48.83478442428809], - [-0.878751822064349, 48.83467456793186], - [-0.879039225633376, 48.83460705683724], - [-0.879070136734034, 48.83453687870594], - [-0.879033637971451, 48.834478506663814], - [-0.878980691439924, 48.83441878904795], - [-0.878815171394929, 48.834283946288345], - [-0.878776940554386, 48.834240921550204], - [-0.878711265733503, 48.834089753246104], - [-0.878520148340708, 48.83358029214511], - [-0.878511556484565, 48.83348962926064], - [-0.878533951997466, 48.83337198950142], - [-0.878588239133895, 48.833241740494586], - [-0.878574995133073, 48.83322899254004], - [-0.878563433156581, 48.83321788121288], - [-0.8785649436214537, 48.8332075950315] - ] - }, - "length": 0.45466041701091836, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38930", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17318", - "bus2": "MVBus11094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8785649436214537, 48.8332075950315], - [-0.878559904510659, 48.83319437352441], - [-0.87856552389082, 48.83318567638942], - [-0.878571446961239, 48.83318473378293], - [-0.878641093614399, 48.83317365002125], - [-0.878712996309697, 48.83306271408234], - [-0.879450088217662, 48.831872312229684], - [-0.879391519891046, 48.831871961217274], - [-0.879108841637731, 48.831868653764666], - [-0.878796959272483, 48.83181910857779], - [-0.878579053354476, 48.831758648972944], - [-0.878470801456295, 48.83172807626024], - [-0.87841001803686, 48.83168781953582], - [-0.878237286329989, 48.83160988468384], - [-0.878110192621694, 48.83156306289502], - [-0.877968416288142, 48.83152115314989], - [-0.877807473434428, 48.83147797997653], - [-0.877390506894023, 48.83129171140898], - [-0.877220300434519, 48.831189402254395], - [-0.877055329096531, 48.83110494160875], - [-0.87678024764586, 48.830920074059115], - [-0.876365333997544, 48.83065993307908], - [-0.87605658935329, 48.83048141489835], - [-0.87523612232251, 48.83010183568745], - [-0.875142897384062, 48.83012725348], - [-0.875101921835193, 48.83012230580406], - [-0.875101921835193, 48.83012230580406] - ] - }, - "length": 0.5484946533037999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42000", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11094", - "bus2": "MVLV00077", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.875101921835193, 48.83012230580406], - [-0.875101921835193, 48.83012230580406], - [-0.875095059017632, 48.830122149229794], - [-0.875095059017632, 48.830122149229794] - ] - }, - "length": 0.0005041710094409629, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35208", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17318", - "bus2": "MVLV14187", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8785649436214537, 48.8332075950315], - [-0.878571493197121, 48.83321053035723], - [-0.878591101609507, 48.833214291194274], - [-0.878658187266171, 48.83322716749238], - [-0.878758729365904, 48.83307402645225], - [-0.879519269841079, 48.83184826956906], - [-0.879518106809841, 48.83178799804584], - [-0.879611634787979, 48.831484728875765], - [-0.879849610742601, 48.830969471904865], - [-0.879918535550077, 48.830918027894384], - [-0.88001312407312, 48.830883853261355], - [-0.880421778946045, 48.830836330529905], - [-0.880429196031522, 48.83086672227627], - [-0.880907894988345, 48.83082711813949], - [-0.881186638954922, 48.830815650101506], - [-0.881342466899555, 48.83082205945419], - [-0.88138553374052, 48.8308343424745], - [-0.881095512999948, 48.83035557782821], - [-0.880828381454944, 48.82993557913011], - [-0.880785274666487, 48.829889259578614], - [-0.880774588980799, 48.82987777392479], - [-0.880775799819524, 48.82987719698311] - ] - }, - "length": 0.509338459446997, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47179", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14187", - "bus2": "MVLV06614", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880775799819524, 48.82987719698311], - [-0.880777010658249, 48.82987662004143], - [-0.880790118021883, 48.82988695181146], - [-0.880811318694876, 48.82990365815257], - [-0.880858182499768, 48.82989063444164], - [-0.881146401935904, 48.8303415456667], - [-0.881432411844581, 48.83082131817827], - [-0.881438669850986, 48.830876054951844], - [-0.881572504646165, 48.831090098670714], - [-0.881591230157907, 48.83116877599112], - [-0.881592283746379, 48.831290253100946], - [-0.881604274668738, 48.83141233391639], - [-0.881624945067519, 48.831499953700195], - [-0.881727931756154, 48.8314970425184], - [-0.881731087424485, 48.83149695717268], - [-0.88174287189475, 48.83150528273355], - [-0.8817425294272689, 48.8315149122372] - ] - }, - "length": 0.20617450395313525, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46291", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06614", - "bus2": "MVBus12384", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8817425294272689, 48.8315149122372], - [-0.881742186959788, 48.831524541740855], - [-0.881731941982377, 48.83153114236234], - [-0.881725848831322, 48.83153131614784], - [-0.881632600012673, 48.831533945981654], - [-0.881636489464634, 48.8315518309589], - [-0.881692119662777, 48.831695183264685], - [-0.881751945180938, 48.831797899232164], - [-0.881842719733717, 48.8318943540911], - [-0.881984416855336, 48.83199836370007], - [-0.882523993051504, 48.83235127157024], - [-0.882914498764284, 48.83257067543426], - [-0.883157727724404, 48.83274742346493], - [-0.884053290775894, 48.83352322077135], - [-0.884098563308161, 48.83356965144726], - [-0.884165377983124, 48.83367487559109], - [-0.884277937328702, 48.83387601743591], - [-0.884273548054826, 48.83387686483468], - [-0.884273548054826, 48.83387686483468] - ] - }, - "length": 0.33868712643538773, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34235", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus12384", - "bus2": "MVLV16352", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884273548054826, 48.83387686483468], - [-0.884273548054826, 48.83387686483468], - [-0.883778137940943, 48.83398040291884], - [-0.883106886263018, 48.834151931834015], - [-0.882350436333162, 48.83436768738502], - [-0.88235547646301, 48.83450638088338], - [-0.882414863716839, 48.83453853298295], - [-0.882417634229258, 48.83454058087732], - [-0.882433504139233, 48.834542931078886], - [-0.8824449607734131, 48.834537732363174] - ] - }, - "length": 0.17405376330025718, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43533", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16352", - "bus2": "MVBus15325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8824449607734131, 48.834537732363174], - [-0.882456417407593, 48.834532533647454], - [-0.882458713158862, 48.83452232511511], - [-0.882455752094948, 48.83451984161787], - [-0.882421244799962, 48.83449097437869], - [-0.882421046072519, 48.83435805967731], - [-0.883069593986549, 48.834170598109246], - [-0.88378035818785, 48.83398916700418], - [-0.884255699372143, 48.833892450649415], - [-0.884286491972944, 48.833908447025685], - [-0.884286491972944, 48.833908447025685] - ] - }, - "length": 0.1676849766963774, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40027", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15325", - "bus2": "MVLV17323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884286491972944, 48.833908447025685], - [-0.884286491972944, 48.833908447025685], - [-0.884298972203125, 48.83390602238361], - [-0.884418286341134, 48.83393775688206], - [-0.884514024243277, 48.8339845575173], - [-0.884707243144837, 48.83395750537349], - [-0.884855303452504, 48.83394881999516], - [-0.88528210098068, 48.83399166796117], - [-0.885283593003777, 48.83399309376456], - [-0.885295209845906, 48.83400418501409], - [-0.885308108952521, 48.83400488371018] - ] - }, - "length": 0.07794340751148783, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42005", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17323", - "bus2": "MVBus16410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.885308108952521, 48.83400488371018], - [-0.885321008059136, 48.83400558240626], - [-0.885332928229382, 48.83399743395683], - [-0.885336140264641, 48.833997814737565], - [-0.886403291338323, 48.83412472147533], - [-0.885720739927985, 48.83266065291953], - [-0.885855538138068, 48.83263704263954], - [-0.885836358483477, 48.832593486053305], - [-0.885832178874871, 48.832586304212874], - [-0.885832178874871, 48.832586304212874] - ] - }, - "length": 0.2675941982774448, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38935", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16410", - "bus2": "MVLV03392", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.885832178874871, 48.832586304212874], - [-0.885832178874871, 48.832586304212874], - [-0.885570983953207, 48.83213833305527], - [-0.885460822092599, 48.8317427071721], - [-0.885448835160519, 48.831662939381076], - [-0.885441919378381, 48.83136700795914], - [-0.885587016471366, 48.83065032510885], - [-0.884893696009653, 48.83047943511494], - [-0.884855394653674, 48.83052128280466], - [-0.884852264975556, 48.8305226628263], - [-0.884835276836073, 48.83053014790389], - [-0.8848244135284965, 48.830527334184154] - ] - }, - "length": 0.2818985234228485, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40023", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03392", - "bus2": "MVBus18343", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8848244135284965, 48.830527334184154], - [-0.88481355022092, 48.83052452046441], - [-0.884808811752556, 48.830511407949444], - [-0.884808316674619, 48.83051001811575], - [-0.884841385788525, 48.830452372763254], - [-0.884841385788525, 48.830452372763254] - ] - }, - "length": 0.008512807915317425, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18343", - "bus2": "MVLV06627", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884841385788525, 48.830452372763254], - [-0.884841385788525, 48.830452372763254], - [-0.884998645214429, 48.83022831093096], - [-0.885114245361454, 48.83013548197546], - [-0.884611166410639, 48.82990396681405], - [-0.884510555462498, 48.829823998314524], - [-0.884455021654836, 48.82974546310337], - [-0.884423703229472, 48.829661738851755], - [-0.884391756350623, 48.8290309309633], - [-0.884305165282771, 48.82895686137081], - [-0.884179196509307, 48.82890641730952], - [-0.884038885893279, 48.82888697166403], - [-0.883095349088948, 48.82893687340285], - [-0.882717518791388, 48.82902963522865], - [-0.882672209340558, 48.82896189558289], - [-0.882614504651665, 48.828832308090576], - [-0.882558776955788, 48.82867793952929], - [-0.882311839004826, 48.827222266563524], - [-0.881843354130384, 48.82714029262931], - [-0.88182335490009, 48.82711615097813], - [-0.881830223376614, 48.82710345299199], - [-0.881830223376614, 48.82710345299199] - ] - }, - "length": 0.5616143176910369, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38931", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18343", - "bus2": "MVBus18345", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884841385788525, 48.830452372763254], - [-0.884841385788525, 48.830452372763254], - [-0.885597781304912, 48.83063412127371], - [-0.885597781304912, 48.83063412127371] - ] - }, - "length": 0.05909798077216007, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47181", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18345", - "bus2": "MVBus18346", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.885597781304912, 48.83063412127371], - [-0.885597781304912, 48.83063412127371], - [-0.885598929223246, 48.830634396023754], - [-0.885640976898373, 48.830483794737205], - [-0.885733137051884, 48.830328175392104], - [-0.88599332504746, 48.83000939475607], - [-0.886165307632451, 48.829844327153836], - [-0.887385905104967, 48.82886294304822], - [-0.887678248824724, 48.828599047482015], - [-0.887865142307306, 48.82833235071164], - [-0.887865142307306, 48.82833235071164] - ] - }, - "length": 0.3085057547490667, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45645", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18346", - "bus2": "MVBus18347", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.887865142307306, 48.82833235071164], - [-0.887865142307306, 48.82833235071164], - [-0.888272197021335, 48.82775147751906], - [-0.888450060715209, 48.827425116573586], - [-0.888641527272161, 48.827035366514444], - [-0.888691611384006, 48.826882737556524], - [-0.888730478192353, 48.82664131566306], - [-0.888557428715923, 48.826631641066605], - [-0.888557428715923, 48.826631641066605] - ] - }, - "length": 0.2124307166983533, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42114", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18347", - "bus2": "MVLV19250", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.888557428715923, 48.826631641066605], - [-0.888557428715923, 48.826631641066605], - [-0.888534060370761, 48.82662741708644], - [-0.888528413626648, 48.82662468269833], - [-0.888518102903748, 48.82661968201679], - [-0.888515574905479, 48.82661167289431], - [-0.888515245861116, 48.82658732295027], - [-0.888514962274334, 48.82656655184295], - [-0.888514962274334, 48.82656655184295] - ] - }, - "length": 0.009160255971882254, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46290", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07909", - "bus2": "MVBus10081", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8752082433672413, 48.8350261440061], - [-0.875187583028426, 48.83502586508961], - [-0.875171003315681, 48.83501799216996], - [-0.875164770551753, 48.835015039115014], - [-0.874503695787453, 48.83493374524362], - [-0.874502738373467, 48.834940067597074], - [-0.874502738373467, 48.834940067597074] - ] - }, - "length": 0.052135624147050294, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch21890", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10081", - "bus2": "MVLV16338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.874502738373467, 48.834940067597074], - [-0.874502738373467, 48.834940067597074], - [-0.875244745483283, 48.8362738031421], - [-0.875658580600804, 48.83676048053651], - [-0.875658580600804, 48.83676048053651] - ] - }, - "length": 0.22007202509458926, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch45128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06613", - "bus2": "MVBus07970", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872280137987934, 48.83809987122305], - [-0.872288538630434, 48.83811142815161], - [-0.872274923580696, 48.83813010907154], - [-0.872263624316597, 48.83814525548005], - [-0.872246199468391, 48.838151697990995], - [-0.872246199468391, 48.838151697990995] - ] - }, - "length": 0.0056490097905787925, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36231", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07970", - "bus2": "MVBus07971", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872246199468391, 48.838151697990995], - [-0.872246199468391, 48.838151697990995], - [-0.872441960336122, 48.83859446900614], - [-0.872467795554653, 48.83862329391957], - [-0.872467795554653, 48.83862329391957] - ] - }, - "length": 0.05501775862392058, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45361", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07971", - "bus2": "MVLV07908", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872467795554653, 48.83862329391957], - [-0.872467795554653, 48.83862329391957], - [-0.87256804753389, 48.838619115395936], - [-0.873887818148142, 48.83860232776013], - [-0.875614989175285, 48.83852905104814], - [-0.875612694014847, 48.8384834273658], - [-0.875612738880777, 48.83846875530065], - [-0.8756189144606039, 48.838468138861174] - ] - }, - "length": 0.23803136074272874, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35209", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07908", - "bus2": "MVLV06624", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8756189144606039, 48.838468138861174], - [-0.875625090040431, 48.8384675224217], - [-0.875632692301686, 48.83848003616146], - [-0.875633482047457, 48.838481346105645], - [-0.875646502843988, 48.83850279854413], - [-0.875655605404486, 48.8386015518763], - [-0.876011804333123, 48.83858521758397], - [-0.87629120191588, 48.83856205061363], - [-0.876635057864226, 48.83852356014651], - [-0.877209529238721, 48.8384245742052], - [-0.877605872041018, 48.83833330192875], - [-0.878236013264491, 48.83814632923142], - [-0.879363550632015, 48.83774674486525], - [-0.879462426068044, 48.83805366369281], - [-0.879462743669991, 48.838055049338855], - [-0.879474926456854, 48.83806406593972], - [-0.8794877577508065, 48.838063656216335] - ] - }, - "length": 0.3431661150296938, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06624", - "bus2": "MVBus08685", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8794877577508065, 48.838063656216335], - [-0.879500589044759, 48.83806324649294], - [-0.879512655216932, 48.83805236924446], - [-0.879514294333455, 48.83805089473879], - [-0.87952517731772, 48.83799238482006], - [-0.879461609615496, 48.83773272520922], - [-0.880674679188671, 48.8373468095376], - [-0.880674679188671, 48.8373468095376] - ] - }, - "length": 0.1363614003299588, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47187", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08685", - "bus2": "MVBus08686", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880674679188671, 48.8373468095376], - [-0.880674679188671, 48.8373468095376], - [-0.881143023044725, 48.837197585032015], - [-0.881432024565952, 48.83709132911235], - [-0.881770234427886, 48.83700798337583], - [-0.881772418257212, 48.837005846464045], - [-0.881772418257212, 48.837005846464045] - ] - }, - "length": 0.08924914276914384, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08686", - "bus2": "MVLV06618", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.881772418257212, 48.837005846464045], - [-0.881772418257212, 48.837005846464045], - [-0.881795879161887, 48.83698295827619], - [-0.882339212587704, 48.8369298188577], - [-0.882602846093529, 48.836916085556226], - [-0.883055786007381, 48.836927093962686], - [-0.883520640213844, 48.83696209190501], - [-0.883707673530247, 48.836987740215186], - [-0.883730622181711, 48.836913836551645], - [-0.884040930989612, 48.83697390077044], - [-0.884049704575048, 48.836956761634546], - [-0.88406440710997, 48.836928020339315], - [-0.88406440710997, 48.836928020339315] - ] - }, - "length": 0.1819650302869982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43529", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16339", - "bus2": "MVBus07199", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8686998101678213, 48.838526097189025], - [-0.868699904353781, 48.83852806155387], - [-0.868701199622738, 48.83854151912993], - [-0.868702757777487, 48.838557686107755], - [-0.868722503320463, 48.83876687210722], - [-0.868817103520342, 48.838763622546615], - [-0.868817103520342, 48.838763622546615] - ] - }, - "length": 0.03356285654781796, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35588", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07199", - "bus2": "MVBus07200", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.868817103520342, 48.838763622546615], - [-0.868817103520342, 48.838763622546615], - [-0.869121961776541, 48.838746892769265], - [-0.871772221648429, 48.83864093270986], - [-0.871797152835766, 48.838734429103454], - [-0.871842737324107, 48.838764646639575], - [-0.871876996225313, 48.8388095884613], - [-0.871876996225313, 48.8388095884613] - ] - }, - "length": 0.2382568731010173, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch09864", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07200", - "bus2": "MVBus07201", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.871876996225313, 48.8388095884613], - [-0.871876996225313, 48.8388095884613], - [-0.87223218247948, 48.83939005621284], - [-0.872145403855815, 48.839820035406966], - [-0.872146518973825, 48.839822200116686], - [-0.872146518973825, 48.839822200116686] - ] - }, - "length": 0.11811189257521192, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31026", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07201", - "bus2": "MVBus07202", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872146518973825, 48.839822200116686], - [-0.872146518973825, 48.839822200116686], - [-0.872572820690305, 48.84065318427284], - [-0.872898415892355, 48.84142980041824], - [-0.872898415892355, 48.84142980041824] - ] - }, - "length": 0.1871763949567639, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34400", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07202", - "bus2": "MVBus07203", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872898415892355, 48.84142980041824], - [-0.872898415892355, 48.84142980041824], - [-0.872949275566414, 48.8414148644425], - [-0.873007234026652, 48.84148884120062], - [-0.873007234026652, 48.84148884120062] - ] - }, - "length": 0.013347777466179678, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38933", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07203", - "bus2": "MVLV14197", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.873007234026652, 48.84148884120062], - [-0.873007234026652, 48.84148884120062], - [-0.873000946705299, 48.84149712422277], - [-0.872975878534332, 48.841531126631715], - [-0.872958792812237, 48.8415622152741], - [-0.872940831259644, 48.84157981708505], - [-0.872919399390211, 48.84158582801061], - [-0.872264316792551, 48.841661860400315], - [-0.87174837779979, 48.84171776742304], - [-0.871765352594382, 48.841791455319445], - [-0.871767328755778, 48.84180004620782], - [-0.871770256353902, 48.84181894666179], - [-0.8717518762744035, 48.84182098477776] - ] - }, - "length": 0.11155221210230411, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35212", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14197", - "bus2": "MVBus08183", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8717518762744035, 48.84182098477776], - [-0.871733496194905, 48.841823022893735], - [-0.871693086112716, 48.84183484322423], - [-0.870691717544495, 48.84198811304198], - [-0.870691717544495, 48.84198811304198] - ] - }, - "length": 0.07869834569086104, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch09867", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08183", - "bus2": "MVLV17331", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.870691717544495, 48.84198811304198], - [-0.870691717544495, 48.84198811304198], - [-0.86695823363757, 48.84303468142016], - [-0.86695823363757, 48.84303468142016] - ] - }, - "length": 0.29773606681183895, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34239", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07203", - "bus2": "MVBus07204", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.873007234026652, 48.84148884120062], - [-0.873007234026652, 48.84148884120062], - [-0.873028693247802, 48.84146214108333], - [-0.873059271332494, 48.84142887157235], - [-0.873090433645613, 48.841404599258745], - [-0.87314903914039, 48.841383148822345], - [-0.873225759601226, 48.84136748828711], - [-0.873311628832019, 48.84136687240857], - [-0.873387365404252, 48.84137824121766], - [-0.87347070999812, 48.84140199774015], - [-0.873521461135424, 48.84142756881493], - [-0.873569533929123, 48.84145412060402], - [-0.873631653450116, 48.841465874542116], - [-0.873671242842053, 48.84146656069455], - [-0.873675944485619, 48.84146590316994], - [-0.873675944485619, 48.84146590316994] - ] - }, - "length": 0.05800011596560066, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43531", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07204", - "bus2": "MVBus07205", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.873675944485619, 48.84146590316994], - [-0.873675944485619, 48.84146590316994], - [-0.87614693743563, 48.841118743702616], - [-0.876294976468256, 48.841088472969375], - [-0.876293704382707, 48.841087077107254], - [-0.876293704382707, 48.841087077107254] - ] - }, - "length": 0.1970012070090857, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39505", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07205", - "bus2": "MVLV14202", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876293704382707, 48.841087077107254], - [-0.876293704382707, 48.841087077107254], - [-0.875801635325687, 48.84054431672589], - [-0.875755736316278, 48.84046729920373], - [-0.87563047253042, 48.84032231683844], - [-0.875336553754776, 48.84001555978465], - [-0.875138041651559, 48.83985553522315], - [-0.874939079648074, 48.839772924400776], - [-0.874927729253643, 48.83981979777247], - [-0.874927230280244, 48.83982186209571], - [-0.874916570160602, 48.839830820933166], - [-0.874905311669654, 48.839830229741395] - ] - }, - "length": 0.18550175870020472, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39512", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14202", - "bus2": "MVBus08702", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.874905311669654, 48.839830229741395], - [-0.874894053178706, 48.83982963854963], - [-0.874884152119823, 48.83981785243795], - [-0.874878841031003, 48.839811528356755], - [-0.87489979176762, 48.83971372712899], - [-0.875166300137308, 48.839828633158874], - [-0.87537605670389, 48.83999375119793], - [-0.875669352047677, 48.84031221847985], - [-0.875798835746705, 48.84045888590148], - [-0.875844609925364, 48.840534107780144], - [-0.876341977157856, 48.8410772556702], - [-0.876492203069748, 48.84105368987994], - [-0.876492203069748, 48.84105368987994] - ] - }, - "length": 0.21186886508195796, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38943", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08702", - "bus2": "MVBus08703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876492203069748, 48.84105368987994], - [-0.876492203069748, 48.84105368987994], - [-0.876495874028596, 48.84105311403799], - [-0.876518913112242, 48.841135272931126], - [-0.876488077688784, 48.84114544221755], - [-0.876451654357169, 48.8411679145853], - [-0.876689117189963, 48.841427008610744], - [-0.876689117189963, 48.841427008610744] - ] - }, - "length": 0.04943394118866002, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47195", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08703", - "bus2": "MVBus08704", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876689117189963, 48.841427008610744], - [-0.876689117189963, 48.841427008610744], - [-0.876715779516786, 48.84145658387014], - [-0.876715779516786, 48.84145658387014] - ] - }, - "length": 0.003827218082576422, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08704", - "bus2": "MVBus08705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876715779516786, 48.84145658387014], - [-0.876715779516786, 48.84145658387014], - [-0.876921910227358, 48.841679320106984], - [-0.876881552107111, 48.84173021505582], - [-0.875596693390097, 48.841995495403836], - [-0.875618931920973, 48.8420394563213], - [-0.875489653542762, 48.84206794249989], - [-0.875486723189695, 48.84207013540643], - [-0.875473232182965, 48.84208025906252], - [-0.875473232182965, 48.84208025906252] - ] - }, - "length": 0.15121557062525562, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43092", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04323", - "bus2": "MVLV17336", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860106265907068, 48.853379550930796], - [-0.860106265907068, 48.853379550930796], - [-0.860112973852066, 48.853385325374795], - [-0.860284997954703, 48.85348422726446], - [-0.86031822396588, 48.85388370373491], - [-0.860213147252814, 48.85394318393929], - [-0.860277750652852, 48.8547380215247], - [-0.860337470882132, 48.854891668341494], - [-0.860688093091416, 48.855843519013675], - [-0.860827465146773, 48.85620048575599], - [-0.860875436691069, 48.85628229138118], - [-0.860924986486662, 48.856343276583026], - [-0.861073201614667, 48.85648117973047], - [-0.861283333858406, 48.85660940513099], - [-0.861500693050619, 48.856701420811575], - [-0.861712935684085, 48.85675667685235], - [-0.861647319373766, 48.8568166270699], - [-0.861647365349113, 48.85681936025709], - [-0.861645231472531, 48.8568329367829], - [-0.8616552619450155, 48.85683610333325] - ] - }, - "length": 0.43128229512606414, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17336", - "bus2": "MVBus04731", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8616552619450155, 48.85683610333325], - [-0.8616652924175, 48.8568392698836], - [-0.861682714956507, 48.85683222662069], - [-0.861688686801552, 48.856829817483856], - [-0.861695722418727, 48.856826975001795], - [-0.861707674408914, 48.85675823038369], - [-0.861792186526136, 48.856707603801034], - [-0.861893013080362, 48.85672519623623], - [-0.862694924872872, 48.85673387122094], - [-0.86292437714827, 48.856750569604074], - [-0.863182873633129, 48.85680362651025], - [-0.863693528154539, 48.8569810220965], - [-0.863855818413339, 48.857001673903724], - [-0.863918222964227, 48.85700255077768], - [-0.863918222964227, 48.85700255077768] - ] - }, - "length": 0.18105763300261443, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35221", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04731", - "bus2": "MVBus04732", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863918222964227, 48.85700255077768], - [-0.863918222964227, 48.85700255077768], - [-0.863966461523803, 48.85699013633603], - [-0.86397193271409, 48.85699132048057], - [-0.863976793703651, 48.85699542635625], - [-0.86397844410508, 48.85699963653583], - [-0.863980238431354, 48.85700595662856], - [-0.863976038582072, 48.85706222419284], - [-0.863763541152754, 48.857926554849435], - [-0.863762652584391, 48.85793512380676], - [-0.863762652584391, 48.85793512380676] - ] - }, - "length": 0.1105963897080451, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47847", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04732", - "bus2": "MVLV00093", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863762652584391, 48.85793512380676], - [-0.863762652584391, 48.85793512380676], - [-0.863652098146194, 48.85797020715481], - [-0.863644249366891, 48.85797467268345], - [-0.86363988513144, 48.857978612792806], - [-0.863636561543085, 48.857982848741585], - [-0.863635174335102, 48.8579870956023], - [-0.863635321052109, 48.857996536209306], - [-0.863629454090578, 48.85801963068446], - [-0.863607983625426, 48.85808739905594], - [-0.863598662759524, 48.858132488730874], - [-0.86358807516244, 48.85820717838946], - [-0.863583042207501, 48.85823274200076], - [-0.86356619935817, 48.858307240000826], - [-0.863557061976745, 48.85834757547212], - [-0.863540696178101, 48.85841986590374], - [-0.863527748120029, 48.85848789986443], - [-0.863516757163843, 48.858539501671636], - [-0.863507366526449, 48.85858368471885], - [-0.863504166097039, 48.85859874709582], - [-0.863494606206984, 48.85866094228821], - [-0.863490600465937, 48.858687026956055], - [-0.863492869319609, 48.85873635644208], - [-0.863498292409483, 48.85877649840076], - [-0.863505424396394, 48.85881958969367], - [-0.863528945280578, 48.85889077197597], - [-0.863532594689243, 48.858901746484285], - [-0.863554142463127, 48.85894649210044], - [-0.863614476471104, 48.85903367601244], - [-0.863620638428401, 48.85903655062091], - [-0.863627838730102, 48.859038138045726], - [-0.863634641177402, 48.85903835995974], - [-0.863643098779868, 48.85903779081348], - [-0.863651512275242, 48.85903672813808], - [-0.863712938803964, 48.85902261014858], - [-0.863779140442815, 48.85900149173398], - [-0.863832855496586, 48.858981041754475], - [-0.863996296445628, 48.85892287706804], - [-0.864067599774143, 48.85890358220162], - [-0.864068498293527, 48.858903342170414], - [-0.864080807594573, 48.858900024970026], - [-0.864077991992518, 48.858894496901186] - ] - }, - "length": 0.16785434440432762, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37894", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00093", - "bus2": "MVBus05173", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.864077991992518, 48.858894496901186], - [-0.864075176390463, 48.85888896883235], - [-0.864061426670129, 48.85889280148125], - [-0.863989047566625, 48.85891299776108], - [-0.863982227369626, 48.8589153578539], - [-0.863820345645456, 48.85897117793674], - [-0.863770857072501, 48.85899097460846], - [-0.863706983003681, 48.859011373830896], - [-0.863640560369019, 48.85902626474628], - [-0.863633336031125, 48.859026054173206], - [-0.86362889058395, 48.85902514826085], - [-0.863626207046427, 48.85902253094914], - [-0.863596581247106, 48.858980970769636], - [-0.86356924196568, 48.858936039033715], - [-0.863565248690335, 48.858927664273004], - [-0.863556427941519, 48.85891219644656], - [-0.8635491969277, 48.85889730652924], - [-0.863535602952256, 48.85885178044349], - [-0.863524606510693, 48.85882293285934], - [-0.863523300198474, 48.85881634779683], - [-0.86351820872964, 48.858790849461954], - [-0.863512688026298, 48.858744269848145], - [-0.863511328118163, 48.85872776495653], - [-0.863509889980825, 48.85871043464547], - [-0.863509766040245, 48.85868634989009], - [-0.863514793863072, 48.858650325473164], - [-0.863523377386478, 48.858588876106815], - [-0.863541758516472, 48.85850440651901], - [-0.863558944631487, 48.8584160383125], - [-0.86358975916166, 48.858276618017285], - [-0.863601312713498, 48.858227285747546], - [-0.863616550127998, 48.85813297035221], - [-0.863626241208668, 48.85809034429648], - [-0.863647493919965, 48.85801485523275], - [-0.863654123033808, 48.85799129952321], - [-0.863655719669438, 48.857986912110476], - [-0.863659609404082, 48.8579841181018], - [-0.863663824347541, 48.85798151323684], - [-0.863754139523726, 48.857952011045036], - [-0.863764406091378, 48.857949171538266], - [-0.863767699851741, 48.857948426374094], - [-0.863770978085763, 48.85794742977247], - [-0.863772695150138, 48.85794653810193], - [-0.863774645581598, 48.85794501052119], - [-0.863774645581598, 48.85794501052119] - ] - }, - "length": 0.16391793277881303, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46083", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05173", - "bus2": "MVBus05174", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863774645581598, 48.85794501052119], - [-0.863774645581598, 48.85794501052119], - [-0.863776138998672, 48.85792923844988], - [-0.86377796201692, 48.85792189465115], - [-0.863990567148061, 48.85706637598586], - [-0.863993841022684, 48.85701012432034], - [-0.863995215438887, 48.85700280156644], - [-0.864145676144476, 48.85700715758124], - [-0.864145676144476, 48.85700715758124] - ] - }, - "length": 0.11712757505255547, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41408", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05174", - "bus2": "MVBus05175", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.864145676144476, 48.85700715758124], - [-0.864145676144476, 48.85700715758124], - [-0.864728212747039, 48.8570114897373], - [-0.864874424283763, 48.85701215428628], - [-0.865019678090283, 48.85699753522224], - [-0.865158661585753, 48.85696769446948], - [-0.865158661585753, 48.85696769446948] - ] - }, - "length": 0.07498646770260328, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34243", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05175", - "bus2": "MVBus05176", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.865158661585753, 48.85696769446948], - [-0.865158661585753, 48.85696769446948], - [-0.865239863600235, 48.85695378132356], - [-0.86533921910663, 48.85693032208085], - [-0.865356650561167, 48.856916810749716], - [-0.865359827595317, 48.85691594275052], - [-0.865356031015941, 48.8569050172066], - [-0.865356031015941, 48.8569050172066] - ] - }, - "length": 0.017371955947210974, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47051", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03394", - "bus2": "MVLV16267", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8600627007696874, 48.85333737772175], - [-0.860051120719812, 48.85334623976728], - [-0.860055956692353, 48.853359233361104], - [-0.860060695512664, 48.853371977708335], - [-0.860060013612219, 48.85337418176287], - [-0.860044505754894, 48.85338418668452], - [-0.860040419883453, 48.85338512392681], - [-0.860033692009081, 48.85338366753167], - [-0.860029232393533, 48.85338119677501], - [-0.86001853756168, 48.85337575425656], - [-0.86001853756168, 48.85337575425656] - ] - }, - "length": 0.007044467725210111, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV03394_production", - "bus": "MVLV03394", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV03394_consumption", - "bus": "MVLV03394", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV16339_production", - "bus": "MVLV16339", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV16339_consumption", - "bus": "MVLV16339", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV06613_production", - "bus": "MVLV06613", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV06613_consumption", - "bus": "MVLV06613", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV07909_production", - "bus": "MVLV07909", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV07909_consumption", - "bus": "MVLV07909", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV17318_production", - "bus": "MVLV17318", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV17318_consumption", - "bus": "MVLV17318", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV00077_production", - "bus": "MVLV00077", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV00077_consumption", - "bus": "MVLV00077", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV14187_production", - "bus": "MVLV14187", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV14187_consumption", - "bus": "MVLV14187", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV06614_production", - "bus": "MVLV06614", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV06614_consumption", - "bus": "MVLV06614", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV16352_production", - "bus": "MVLV16352", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV16352_consumption", - "bus": "MVLV16352", - "phases": "abc", - "powers": [ - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334] - ] - }, - { - "id": "MVLV17323_production", - "bus": "MVLV17323", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV17323_consumption", - "bus": "MVLV17323", - "phases": "abc", - "powers": [ - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334] - ] - }, - { - "id": "MVLV03392_production", - "bus": "MVLV03392", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV03392_consumption", - "bus": "MVLV03392", - "phases": "abc", - "powers": [ - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334] - ] - }, - { - "id": "MVLV06627_production", - "bus": "MVLV06627", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV06627_consumption", - "bus": "MVLV06627", - "phases": "abc", - "powers": [ - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334] - ] - }, - { - "id": "MVLV19250_production", - "bus": "MVLV19250", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV19250_consumption", - "bus": "MVLV19250", - "phases": "abc", - "powers": [ - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334] - ] - }, - { - "id": "MVLV16338_production", - "bus": "MVLV16338", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV16338_consumption", - "bus": "MVLV16338", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV07908_production", - "bus": "MVLV07908", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV07908_consumption", - "bus": "MVLV07908", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV06624_production", - "bus": "MVLV06624", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV06624_consumption", - "bus": "MVLV06624", - "phases": "abc", - "powers": [ - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003] - ] - }, - { - "id": "MVLV06618_production", - "bus": "MVLV06618", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV06618_consumption", - "bus": "MVLV06618", - "phases": "abc", - "powers": [ - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334], - [12183.291900653947, 4004.454396499334] - ] - }, - { - "id": "MVLV14197_production", - "bus": "MVLV14197", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV14197_consumption", - "bus": "MVLV14197", - "phases": "abc", - "powers": [ - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003] - ] - }, - { - "id": "MVLV17331_production", - "bus": "MVLV17331", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV17331_consumption", - "bus": "MVLV17331", - "phases": "abc", - "powers": [ - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003] - ] - }, - { - "id": "MVLV14202_production", - "bus": "MVLV14202", - "phases": "abc", - "powers": [ - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0], - [-67.17044500419816, 0.0] - ] - }, - { - "id": "MVLV14202_consumption", - "bus": "MVLV14202", - "phases": "abc", - "powers": [ - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003], - [11678.248738804068, 3838.454736770003] - ] - }, - { - "id": "MVLV17336_production", - "bus": "MVLV17336", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV17336_consumption", - "bus": "MVLV17336", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV00093_production", - "bus": "MVLV00093", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV00093_consumption", - "bus": "MVLV00093", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - }, - { - "id": "MVLV16267_production", - "bus": "MVLV16267", - "phases": "abc", - "powers": [ - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0], - [-1360.099737933491, 0.0] - ] - }, - { - "id": "MVLV16267_consumption", - "bus": "MVLV16267", - "phases": "abc", - "powers": [ - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502], - [17620.23491162705, 5791.491144969502] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder078_winter.json b/data/MVFeeder078_winter.json deleted file mode 100644 index cab45d7b..00000000 --- a/data/MVFeeder078_winter.json +++ /dev/null @@ -1,3105 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.861907220519602, 48.85275990396129] - } - }, - { - "id": "HVMV06", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.861907220519602, 48.85275990396129] - } - }, - { - "id": "MVLV03394", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8600627007696874, 48.85333737772175] - } - }, - { - "id": "MVBus04323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.860106265907068, 48.853379550930796] - } - }, - { - "id": "MVBus04325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8599909640364121, 48.853403618584366] - } - }, - { - "id": "MVBus04335", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.860150118595222, 48.85333739287977] - } - }, - { - "id": "MVBus04336", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.861013888394328, 48.85275771061705] - } - }, - { - "id": "MVBus04337", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.860681733449894, 48.85162594273506] - } - }, - { - "id": "MVBus04338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.856679771196076, 48.8393331890979] - } - }, - { - "id": "MVBus04339", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.859015429167717, 48.8390977033655] - } - }, - { - "id": "MVBus04340", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863845928420918, 48.83892360687616] - } - }, - { - "id": "MVBus04341", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.868646658997884, 48.838745743786326] - } - }, - { - "id": "MVLV16339", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8686998101678213, 48.838526097189025] - } - }, - { - "id": "MVBus07965", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.869200703510018, 48.83872826590689] - } - }, - { - "id": "MVBus07966", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.871765069885203, 48.83861872799665] - } - }, - { - "id": "MVBus07967", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872413202730643, 48.838592842785516] - } - }, - { - "id": "MVBus07968", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872214961209678, 48.838120113328216] - } - }, - { - "id": "MVLV06613", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872280137987934, 48.83809987122305] - } - }, - { - "id": "MVLV07909", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8752082433672413, 48.8350261440061] - } - }, - { - "id": "MVLV17318", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8785649436214537, 48.8332075950315] - } - }, - { - "id": "MVBus11094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875101921835193, 48.83012230580406] - } - }, - { - "id": "MVLV00077", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875095059017632, 48.830122149229794] - } - }, - { - "id": "MVLV14187", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880775799819524, 48.82987719698311] - } - }, - { - "id": "MVLV06614", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8817425294272689, 48.8315149122372] - } - }, - { - "id": "MVBus12384", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.884273548054826, 48.83387686483468] - } - }, - { - "id": "MVLV16352", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8824449607734131, 48.834537732363174] - } - }, - { - "id": "MVBus15325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.884286491972944, 48.833908447025685] - } - }, - { - "id": "MVLV17323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.885308108952521, 48.83400488371018] - } - }, - { - "id": "MVBus16410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.885832178874871, 48.832586304212874] - } - }, - { - "id": "MVLV03392", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8848244135284965, 48.830527334184154] - } - }, - { - "id": "MVBus18343", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.884841385788525, 48.830452372763254] - } - }, - { - "id": "MVLV06627", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.881830223376614, 48.82710345299199] - } - }, - { - "id": "MVBus18345", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.885597781304912, 48.83063412127371] - } - }, - { - "id": "MVBus18346", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.887865142307306, 48.82833235071164] - } - }, - { - "id": "MVBus18347", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.888557428715923, 48.826631641066605] - } - }, - { - "id": "MVLV19250", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.888514962274334, 48.82656655184295] - } - }, - { - "id": "MVBus10081", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.874502738373467, 48.834940067597074] - } - }, - { - "id": "MVLV16338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875658580600804, 48.83676048053651] - } - }, - { - "id": "MVBus07970", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872246199468391, 48.838151697990995] - } - }, - { - "id": "MVBus07971", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872467795554653, 48.83862329391957] - } - }, - { - "id": "MVLV07908", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8756189144606039, 48.838468138861174] - } - }, - { - "id": "MVLV06624", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8794877577508065, 48.838063656216335] - } - }, - { - "id": "MVBus08685", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880674679188671, 48.8373468095376] - } - }, - { - "id": "MVBus08686", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.881772418257212, 48.837005846464045] - } - }, - { - "id": "MVLV06618", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.88406440710997, 48.836928020339315] - } - }, - { - "id": "MVBus07199", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.868817103520342, 48.838763622546615] - } - }, - { - "id": "MVBus07200", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.871876996225313, 48.8388095884613] - } - }, - { - "id": "MVBus07201", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872146518973825, 48.839822200116686] - } - }, - { - "id": "MVBus07202", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.872898415892355, 48.84142980041824] - } - }, - { - "id": "MVBus07203", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.873007234026652, 48.84148884120062] - } - }, - { - "id": "MVLV14197", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8717518762744035, 48.84182098477776] - } - }, - { - "id": "MVBus08183", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.870691717544495, 48.84198811304198] - } - }, - { - "id": "MVLV17331", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.86695823363757, 48.84303468142016] - } - }, - { - "id": "MVBus07204", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.873675944485619, 48.84146590316994] - } - }, - { - "id": "MVBus07205", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876293704382707, 48.841087077107254] - } - }, - { - "id": "MVLV14202", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.874905311669654, 48.839830229741395] - } - }, - { - "id": "MVBus08702", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876492203069748, 48.84105368987994] - } - }, - { - "id": "MVBus08703", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876689117189963, 48.841427008610744] - } - }, - { - "id": "MVBus08704", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.876715779516786, 48.84145658387014] - } - }, - { - "id": "MVBus08705", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.875473232182965, 48.84208025906252] - } - }, - { - "id": "MVLV17336", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8616552619450155, 48.85683610333325] - } - }, - { - "id": "MVBus04731", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863918222964227, 48.85700255077768] - } - }, - { - "id": "MVBus04732", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863762652584391, 48.85793512380676] - } - }, - { - "id": "MVLV00093", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.864077991992518, 48.858894496901186] - } - }, - { - "id": "MVBus05173", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.863774645581598, 48.85794501052119] - } - }, - { - "id": "MVBus05174", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.864145676144476, 48.85700715758124] - } - }, - { - "id": "MVBus05175", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.865158661585753, 48.85696769446948] - } - }, - { - "id": "MVBus05176", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.865356031015941, 48.8569050172066] - } - }, - { - "id": "MVLV16267", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.86001853756168, 48.85337575425656] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV06", - "geometry": { - "type": "Point", - "coordinates": [-0.861907220519602, 48.85275990396129] - } - }, - { - "id": "MVBranch38953", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV06", - "bus2": "MVLV03394", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.861907220519602, 48.85275990396129], - [-0.861888314271604, 48.852754808166644], - [-0.861888314271604, 48.852754808166644], - [-0.861869408027325, 48.85274971236901], - [-0.861368673543466, 48.8526147865462], - [-0.861049320568241, 48.8527812427962], - [-0.860169527273028, 48.853373840425675], - [-0.860149647433513, 48.85336179950876], - [-0.860092076860964, 48.85333225936424], - [-0.860084771759453, 48.85332851579644], - [-0.860072260429244, 48.853323014123966], - [-0.8600627007696874, 48.85333737772175] - ] - }, - "length": 0.1724292254349832, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38947", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03394", - "bus2": "MVBus04323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8600627007696874, 48.85333737772175], - [-0.860064721160006, 48.85334287927401], - [-0.860079895072474, 48.853356854535264], - [-0.860106265907068, 48.853379550930796], - [-0.860106265907068, 48.853379550930796] - ] - }, - "length": 0.005092436730597999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38704", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04323", - "bus2": "MVBus04325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860106265907068, 48.853379550930796], - [-0.860106265907068, 48.853379550930796], - [-0.8600163028267, 48.85343278750661], - [-0.86000994418003, 48.85343510801778], - [-0.860001070273415, 48.853434437828625], - [-0.8599939335223, 48.853431877051975], - [-0.859979190789972, 48.853421578081765], - [-0.8599909640364121, 48.853403618584366] - ] - }, - "length": 0.012228134551066085, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34347", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04325", - "bus2": "MVBus04335", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8599909640364121, 48.853403618584366], - [-0.860002737282852, 48.85338565908697], - [-0.860017184353527, 48.85339381622982], - [-0.860028993381016, 48.853400748954925], - [-0.860036652137753, 48.853403817412136], - [-0.860044145542325, 48.85340442572612], - [-0.860049877979954, 48.85340344426834], - [-0.860150118595222, 48.85333739287977], - [-0.860150118595222, 48.85333739287977] - ] - }, - "length": 0.014597094628989744, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44798", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04335", - "bus2": "MVBus04336", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860150118595222, 48.85333739287977], - [-0.860150118595222, 48.85333739287977], - [-0.861013888394328, 48.85275771061705], - [-0.861013888394328, 48.85275771061705] - ] - }, - "length": 0.09040961235896791, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47178", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04336", - "bus2": "MVBus04337", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.861013888394328, 48.85275771061705], - [-0.861013888394328, 48.85275771061705], - [-0.861026308616059, 48.85273367559381], - [-0.860340072911525, 48.85206688936424], - [-0.86032562358509, 48.852036811896866], - [-0.86035029558328, 48.85200567478345], - [-0.860467329603989, 48.85186124066065], - [-0.860648657339723, 48.851647663190434], - [-0.860681733449894, 48.85162594273506], - [-0.860681733449894, 48.85162594273506] - ] - }, - "length": 0.14874056292248092, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch21891", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04337", - "bus2": "MVBus04338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860681733449894, 48.85162594273506], - [-0.860681733449894, 48.85162594273506], - [-0.858409909480369, 48.84912569509092], - [-0.856679771196076, 48.8393331890979], - [-0.856679771196076, 48.8393331890979] - ] - }, - "length": 1.4205755596337886, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch47177", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04338", - "bus2": "MVBus04339", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.856679771196076, 48.8393331890979], - [-0.856679771196076, 48.8393331890979], - [-0.856661212898628, 48.839171697597386], - [-0.857642747219776, 48.839146922274196], - [-0.859015429167717, 48.8390977033655], - [-0.859015429167717, 48.8390977033655] - ] - }, - "length": 0.19102802193987503, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45915", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04339", - "bus2": "MVBus04340", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.859015429167717, 48.8390977033655], - [-0.859015429167717, 48.8390977033655], - [-0.859018121143696, 48.8390976040966], - [-0.858947615612684, 48.83918868197558], - [-0.858967015313405, 48.83927814631989], - [-0.859771801979231, 48.83928260141979], - [-0.860450036039239, 48.83922759422397], - [-0.860931046676199, 48.83928612729581], - [-0.861434667467907, 48.83927201042151], - [-0.861836059636044, 48.83915274458074], - [-0.862388898406028, 48.83905623844159], - [-0.863824198630521, 48.83902677864632], - [-0.863845928420918, 48.83892360687616], - [-0.863845928420918, 48.83892360687616] - ] - }, - "length": 0.3950562373152476, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41998", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04340", - "bus2": "MVBus04341", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863845928420918, 48.83892360687616], - [-0.863845928420918, 48.83892360687616], - [-0.863846128696252, 48.83892265702046], - [-0.868646658997884, 48.838745743786326], - [-0.868646658997884, 48.838745743786326] - ] - }, - "length": 0.3530507631966376, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45916", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04341", - "bus2": "MVLV16339", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.868646658997884, 48.838745743786326], - [-0.868646658997884, 48.838745743786326], - [-0.868692683463817, 48.83874651908009], - [-0.868676239033346, 48.83856449893863], - [-0.868675510877745, 48.838536850008595], - [-0.868687059984101, 48.83852572699374], - [-0.8686998101678213, 48.838526097189025] - ] - }, - "length": 0.028232269363577034, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41390", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16339", - "bus2": "MVBus07965", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8686998101678213, 48.838526097189025], - [-0.868712466165582, 48.83852450301946], - [-0.868726323250959, 48.83853440205953], - [-0.868727566232987, 48.83855627134506], - [-0.868747945655592, 48.83874617303756], - [-0.869200703510018, 48.83872826590689], - [-0.869200703510018, 48.83872826590689] - ] - }, - "length": 0.05839935889291249, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40021", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07965", - "bus2": "MVBus07966", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.869200703510018, 48.83872826590689], - [-0.869200703510018, 48.83872826590689], - [-0.871765069885203, 48.83861872799665], - [-0.871765069885203, 48.83861872799665] - ] - }, - "length": 0.1886382705981941, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33223", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07966", - "bus2": "MVBus07967", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.871765069885203, 48.83861872799665], - [-0.871765069885203, 48.83861872799665], - [-0.871795530743376, 48.83861991267546], - [-0.871815033615213, 48.83863097243188], - [-0.872423624198983, 48.838620095440184], - [-0.872413202730643, 48.838592842785516], - [-0.872413202730643, 48.838592842785516] - ] - }, - "length": 0.05194483150364374, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45917", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07967", - "bus2": "MVBus07968", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872413202730643, 48.838592842785516], - [-0.872413202730643, 48.838592842785516], - [-0.872214961209678, 48.838120113328216], - [-0.872214961209678, 48.838120113328216] - ] - }, - "length": 0.05454767906198296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35587", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07968", - "bus2": "MVLV06613", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872214961209678, 48.838120113328216], - [-0.872214961209678, 48.838120113328216], - [-0.872256982326507, 48.83810663017048], - [-0.872275563537051, 48.83810103798684], - [-0.872280137987934, 48.83809987122305] - ] - }, - "length": 0.004928925184248028, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40022", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06613", - "bus2": "MVLV07909", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872280137987934, 48.83809987122305], - [-0.872276311796317, 48.838087147530715], - [-0.872252104016431, 48.83808571342212], - [-0.872233654174436, 48.83808219912663], - [-0.872224200606974, 48.83806265604554], - [-0.872151690647924, 48.83808000156608], - [-0.871588360259366, 48.83680962440633], - [-0.871316477191573, 48.83675876503669], - [-0.871152039874733, 48.83670398347678], - [-0.870983382857406, 48.83662591944109], - [-0.870713485181455, 48.836457998275456], - [-0.870488433898687, 48.83620329850673], - [-0.870262745683259, 48.83572720352523], - [-0.869853254863085, 48.83500154705229], - [-0.869778652800155, 48.834901931604605], - [-0.869900362224382, 48.83486520872472], - [-0.869933506907551, 48.83480847461936], - [-0.872188034827993, 48.83416542872751], - [-0.872354195262133, 48.83412024561571], - [-0.87240103864092, 48.834127932455765], - [-0.87278362855321, 48.834267480705606], - [-0.872883395792063, 48.834313282119076], - [-0.873094063121389, 48.83442976149543], - [-0.873158966452131, 48.834484643544144], - [-0.873274865981431, 48.83459029415274], - [-0.873380562133205, 48.83466471931383], - [-0.873899640777921, 48.83486973600969], - [-0.874392297501488, 48.83491887805648], - [-0.874509716103237, 48.834900265212084], - [-0.875221549060217, 48.834986440628654], - [-0.875216709133885, 48.83500839319945], - [-0.875214168333963, 48.835019948427785], - [-0.875212988103713, 48.83502157240236], - [-0.8752082433672413, 48.8350261440061] - ] - }, - "length": 0.8770431551619805, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45129", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07909", - "bus2": "MVLV17318", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8752082433672413, 48.8350261440061], - [-0.875224158969585, 48.835030994526335], - [-0.875244156303354, 48.83502826900243], - [-0.875262275049929, 48.835025792069665], - [-0.876015080951546, 48.83509190439377], - [-0.876340703242326, 48.835045828796595], - [-0.877340633308082, 48.834990663517246], - [-0.877462796493591, 48.834961116555206], - [-0.877951758763579, 48.83478442428809], - [-0.878751822064349, 48.83467456793186], - [-0.879039225633376, 48.83460705683724], - [-0.879070136734034, 48.83453687870594], - [-0.879033637971451, 48.834478506663814], - [-0.878980691439924, 48.83441878904795], - [-0.878815171394929, 48.834283946288345], - [-0.878776940554386, 48.834240921550204], - [-0.878711265733503, 48.834089753246104], - [-0.878520148340708, 48.83358029214511], - [-0.878511556484565, 48.83348962926064], - [-0.878533951997466, 48.83337198950142], - [-0.878588239133895, 48.833241740494586], - [-0.878574995133073, 48.83322899254004], - [-0.878563433156581, 48.83321788121288], - [-0.8785649436214537, 48.8332075950315] - ] - }, - "length": 0.45466041701091836, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38930", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17318", - "bus2": "MVBus11094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8785649436214537, 48.8332075950315], - [-0.878559904510659, 48.83319437352441], - [-0.87856552389082, 48.83318567638942], - [-0.878571446961239, 48.83318473378293], - [-0.878641093614399, 48.83317365002125], - [-0.878712996309697, 48.83306271408234], - [-0.879450088217662, 48.831872312229684], - [-0.879391519891046, 48.831871961217274], - [-0.879108841637731, 48.831868653764666], - [-0.878796959272483, 48.83181910857779], - [-0.878579053354476, 48.831758648972944], - [-0.878470801456295, 48.83172807626024], - [-0.87841001803686, 48.83168781953582], - [-0.878237286329989, 48.83160988468384], - [-0.878110192621694, 48.83156306289502], - [-0.877968416288142, 48.83152115314989], - [-0.877807473434428, 48.83147797997653], - [-0.877390506894023, 48.83129171140898], - [-0.877220300434519, 48.831189402254395], - [-0.877055329096531, 48.83110494160875], - [-0.87678024764586, 48.830920074059115], - [-0.876365333997544, 48.83065993307908], - [-0.87605658935329, 48.83048141489835], - [-0.87523612232251, 48.83010183568745], - [-0.875142897384062, 48.83012725348], - [-0.875101921835193, 48.83012230580406], - [-0.875101921835193, 48.83012230580406] - ] - }, - "length": 0.5484946533037999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42000", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11094", - "bus2": "MVLV00077", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.875101921835193, 48.83012230580406], - [-0.875101921835193, 48.83012230580406], - [-0.875095059017632, 48.830122149229794], - [-0.875095059017632, 48.830122149229794] - ] - }, - "length": 0.0005041710094409629, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35208", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17318", - "bus2": "MVLV14187", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8785649436214537, 48.8332075950315], - [-0.878571493197121, 48.83321053035723], - [-0.878591101609507, 48.833214291194274], - [-0.878658187266171, 48.83322716749238], - [-0.878758729365904, 48.83307402645225], - [-0.879519269841079, 48.83184826956906], - [-0.879518106809841, 48.83178799804584], - [-0.879611634787979, 48.831484728875765], - [-0.879849610742601, 48.830969471904865], - [-0.879918535550077, 48.830918027894384], - [-0.88001312407312, 48.830883853261355], - [-0.880421778946045, 48.830836330529905], - [-0.880429196031522, 48.83086672227627], - [-0.880907894988345, 48.83082711813949], - [-0.881186638954922, 48.830815650101506], - [-0.881342466899555, 48.83082205945419], - [-0.88138553374052, 48.8308343424745], - [-0.881095512999948, 48.83035557782821], - [-0.880828381454944, 48.82993557913011], - [-0.880785274666487, 48.829889259578614], - [-0.880774588980799, 48.82987777392479], - [-0.880775799819524, 48.82987719698311] - ] - }, - "length": 0.509338459446997, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47179", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14187", - "bus2": "MVLV06614", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880775799819524, 48.82987719698311], - [-0.880777010658249, 48.82987662004143], - [-0.880790118021883, 48.82988695181146], - [-0.880811318694876, 48.82990365815257], - [-0.880858182499768, 48.82989063444164], - [-0.881146401935904, 48.8303415456667], - [-0.881432411844581, 48.83082131817827], - [-0.881438669850986, 48.830876054951844], - [-0.881572504646165, 48.831090098670714], - [-0.881591230157907, 48.83116877599112], - [-0.881592283746379, 48.831290253100946], - [-0.881604274668738, 48.83141233391639], - [-0.881624945067519, 48.831499953700195], - [-0.881727931756154, 48.8314970425184], - [-0.881731087424485, 48.83149695717268], - [-0.88174287189475, 48.83150528273355], - [-0.8817425294272689, 48.8315149122372] - ] - }, - "length": 0.20617450395313525, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46291", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06614", - "bus2": "MVBus12384", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8817425294272689, 48.8315149122372], - [-0.881742186959788, 48.831524541740855], - [-0.881731941982377, 48.83153114236234], - [-0.881725848831322, 48.83153131614784], - [-0.881632600012673, 48.831533945981654], - [-0.881636489464634, 48.8315518309589], - [-0.881692119662777, 48.831695183264685], - [-0.881751945180938, 48.831797899232164], - [-0.881842719733717, 48.8318943540911], - [-0.881984416855336, 48.83199836370007], - [-0.882523993051504, 48.83235127157024], - [-0.882914498764284, 48.83257067543426], - [-0.883157727724404, 48.83274742346493], - [-0.884053290775894, 48.83352322077135], - [-0.884098563308161, 48.83356965144726], - [-0.884165377983124, 48.83367487559109], - [-0.884277937328702, 48.83387601743591], - [-0.884273548054826, 48.83387686483468], - [-0.884273548054826, 48.83387686483468] - ] - }, - "length": 0.33868712643538773, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34235", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus12384", - "bus2": "MVLV16352", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884273548054826, 48.83387686483468], - [-0.884273548054826, 48.83387686483468], - [-0.883778137940943, 48.83398040291884], - [-0.883106886263018, 48.834151931834015], - [-0.882350436333162, 48.83436768738502], - [-0.88235547646301, 48.83450638088338], - [-0.882414863716839, 48.83453853298295], - [-0.882417634229258, 48.83454058087732], - [-0.882433504139233, 48.834542931078886], - [-0.8824449607734131, 48.834537732363174] - ] - }, - "length": 0.17405376330025718, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43533", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16352", - "bus2": "MVBus15325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8824449607734131, 48.834537732363174], - [-0.882456417407593, 48.834532533647454], - [-0.882458713158862, 48.83452232511511], - [-0.882455752094948, 48.83451984161787], - [-0.882421244799962, 48.83449097437869], - [-0.882421046072519, 48.83435805967731], - [-0.883069593986549, 48.834170598109246], - [-0.88378035818785, 48.83398916700418], - [-0.884255699372143, 48.833892450649415], - [-0.884286491972944, 48.833908447025685], - [-0.884286491972944, 48.833908447025685] - ] - }, - "length": 0.1676849766963774, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40027", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15325", - "bus2": "MVLV17323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884286491972944, 48.833908447025685], - [-0.884286491972944, 48.833908447025685], - [-0.884298972203125, 48.83390602238361], - [-0.884418286341134, 48.83393775688206], - [-0.884514024243277, 48.8339845575173], - [-0.884707243144837, 48.83395750537349], - [-0.884855303452504, 48.83394881999516], - [-0.88528210098068, 48.83399166796117], - [-0.885283593003777, 48.83399309376456], - [-0.885295209845906, 48.83400418501409], - [-0.885308108952521, 48.83400488371018] - ] - }, - "length": 0.07794340751148783, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42005", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17323", - "bus2": "MVBus16410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.885308108952521, 48.83400488371018], - [-0.885321008059136, 48.83400558240626], - [-0.885332928229382, 48.83399743395683], - [-0.885336140264641, 48.833997814737565], - [-0.886403291338323, 48.83412472147533], - [-0.885720739927985, 48.83266065291953], - [-0.885855538138068, 48.83263704263954], - [-0.885836358483477, 48.832593486053305], - [-0.885832178874871, 48.832586304212874], - [-0.885832178874871, 48.832586304212874] - ] - }, - "length": 0.2675941982774448, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38935", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16410", - "bus2": "MVLV03392", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.885832178874871, 48.832586304212874], - [-0.885832178874871, 48.832586304212874], - [-0.885570983953207, 48.83213833305527], - [-0.885460822092599, 48.8317427071721], - [-0.885448835160519, 48.831662939381076], - [-0.885441919378381, 48.83136700795914], - [-0.885587016471366, 48.83065032510885], - [-0.884893696009653, 48.83047943511494], - [-0.884855394653674, 48.83052128280466], - [-0.884852264975556, 48.8305226628263], - [-0.884835276836073, 48.83053014790389], - [-0.8848244135284965, 48.830527334184154] - ] - }, - "length": 0.2818985234228485, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40023", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03392", - "bus2": "MVBus18343", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8848244135284965, 48.830527334184154], - [-0.88481355022092, 48.83052452046441], - [-0.884808811752556, 48.830511407949444], - [-0.884808316674619, 48.83051001811575], - [-0.884841385788525, 48.830452372763254], - [-0.884841385788525, 48.830452372763254] - ] - }, - "length": 0.008512807915317425, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18343", - "bus2": "MVLV06627", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884841385788525, 48.830452372763254], - [-0.884841385788525, 48.830452372763254], - [-0.884998645214429, 48.83022831093096], - [-0.885114245361454, 48.83013548197546], - [-0.884611166410639, 48.82990396681405], - [-0.884510555462498, 48.829823998314524], - [-0.884455021654836, 48.82974546310337], - [-0.884423703229472, 48.829661738851755], - [-0.884391756350623, 48.8290309309633], - [-0.884305165282771, 48.82895686137081], - [-0.884179196509307, 48.82890641730952], - [-0.884038885893279, 48.82888697166403], - [-0.883095349088948, 48.82893687340285], - [-0.882717518791388, 48.82902963522865], - [-0.882672209340558, 48.82896189558289], - [-0.882614504651665, 48.828832308090576], - [-0.882558776955788, 48.82867793952929], - [-0.882311839004826, 48.827222266563524], - [-0.881843354130384, 48.82714029262931], - [-0.88182335490009, 48.82711615097813], - [-0.881830223376614, 48.82710345299199], - [-0.881830223376614, 48.82710345299199] - ] - }, - "length": 0.5616143176910369, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38931", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18343", - "bus2": "MVBus18345", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.884841385788525, 48.830452372763254], - [-0.884841385788525, 48.830452372763254], - [-0.885597781304912, 48.83063412127371], - [-0.885597781304912, 48.83063412127371] - ] - }, - "length": 0.05909798077216007, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47181", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18345", - "bus2": "MVBus18346", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.885597781304912, 48.83063412127371], - [-0.885597781304912, 48.83063412127371], - [-0.885598929223246, 48.830634396023754], - [-0.885640976898373, 48.830483794737205], - [-0.885733137051884, 48.830328175392104], - [-0.88599332504746, 48.83000939475607], - [-0.886165307632451, 48.829844327153836], - [-0.887385905104967, 48.82886294304822], - [-0.887678248824724, 48.828599047482015], - [-0.887865142307306, 48.82833235071164], - [-0.887865142307306, 48.82833235071164] - ] - }, - "length": 0.3085057547490667, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45645", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18346", - "bus2": "MVBus18347", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.887865142307306, 48.82833235071164], - [-0.887865142307306, 48.82833235071164], - [-0.888272197021335, 48.82775147751906], - [-0.888450060715209, 48.827425116573586], - [-0.888641527272161, 48.827035366514444], - [-0.888691611384006, 48.826882737556524], - [-0.888730478192353, 48.82664131566306], - [-0.888557428715923, 48.826631641066605], - [-0.888557428715923, 48.826631641066605] - ] - }, - "length": 0.2124307166983533, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42114", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18347", - "bus2": "MVLV19250", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.888557428715923, 48.826631641066605], - [-0.888557428715923, 48.826631641066605], - [-0.888534060370761, 48.82662741708644], - [-0.888528413626648, 48.82662468269833], - [-0.888518102903748, 48.82661968201679], - [-0.888515574905479, 48.82661167289431], - [-0.888515245861116, 48.82658732295027], - [-0.888514962274334, 48.82656655184295], - [-0.888514962274334, 48.82656655184295] - ] - }, - "length": 0.009160255971882254, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46290", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07909", - "bus2": "MVBus10081", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8752082433672413, 48.8350261440061], - [-0.875187583028426, 48.83502586508961], - [-0.875171003315681, 48.83501799216996], - [-0.875164770551753, 48.835015039115014], - [-0.874503695787453, 48.83493374524362], - [-0.874502738373467, 48.834940067597074], - [-0.874502738373467, 48.834940067597074] - ] - }, - "length": 0.052135624147050294, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch21890", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10081", - "bus2": "MVLV16338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.874502738373467, 48.834940067597074], - [-0.874502738373467, 48.834940067597074], - [-0.875244745483283, 48.8362738031421], - [-0.875658580600804, 48.83676048053651], - [-0.875658580600804, 48.83676048053651] - ] - }, - "length": 0.22007202509458926, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch45128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06613", - "bus2": "MVBus07970", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872280137987934, 48.83809987122305], - [-0.872288538630434, 48.83811142815161], - [-0.872274923580696, 48.83813010907154], - [-0.872263624316597, 48.83814525548005], - [-0.872246199468391, 48.838151697990995], - [-0.872246199468391, 48.838151697990995] - ] - }, - "length": 0.0056490097905787925, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36231", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07970", - "bus2": "MVBus07971", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872246199468391, 48.838151697990995], - [-0.872246199468391, 48.838151697990995], - [-0.872441960336122, 48.83859446900614], - [-0.872467795554653, 48.83862329391957], - [-0.872467795554653, 48.83862329391957] - ] - }, - "length": 0.05501775862392058, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45361", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07971", - "bus2": "MVLV07908", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872467795554653, 48.83862329391957], - [-0.872467795554653, 48.83862329391957], - [-0.87256804753389, 48.838619115395936], - [-0.873887818148142, 48.83860232776013], - [-0.875614989175285, 48.83852905104814], - [-0.875612694014847, 48.8384834273658], - [-0.875612738880777, 48.83846875530065], - [-0.8756189144606039, 48.838468138861174] - ] - }, - "length": 0.23803136074272874, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35209", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07908", - "bus2": "MVLV06624", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8756189144606039, 48.838468138861174], - [-0.875625090040431, 48.8384675224217], - [-0.875632692301686, 48.83848003616146], - [-0.875633482047457, 48.838481346105645], - [-0.875646502843988, 48.83850279854413], - [-0.875655605404486, 48.8386015518763], - [-0.876011804333123, 48.83858521758397], - [-0.87629120191588, 48.83856205061363], - [-0.876635057864226, 48.83852356014651], - [-0.877209529238721, 48.8384245742052], - [-0.877605872041018, 48.83833330192875], - [-0.878236013264491, 48.83814632923142], - [-0.879363550632015, 48.83774674486525], - [-0.879462426068044, 48.83805366369281], - [-0.879462743669991, 48.838055049338855], - [-0.879474926456854, 48.83806406593972], - [-0.8794877577508065, 48.838063656216335] - ] - }, - "length": 0.3431661150296938, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06624", - "bus2": "MVBus08685", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8794877577508065, 48.838063656216335], - [-0.879500589044759, 48.83806324649294], - [-0.879512655216932, 48.83805236924446], - [-0.879514294333455, 48.83805089473879], - [-0.87952517731772, 48.83799238482006], - [-0.879461609615496, 48.83773272520922], - [-0.880674679188671, 48.8373468095376], - [-0.880674679188671, 48.8373468095376] - ] - }, - "length": 0.1363614003299588, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47187", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08685", - "bus2": "MVBus08686", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880674679188671, 48.8373468095376], - [-0.880674679188671, 48.8373468095376], - [-0.881143023044725, 48.837197585032015], - [-0.881432024565952, 48.83709132911235], - [-0.881770234427886, 48.83700798337583], - [-0.881772418257212, 48.837005846464045], - [-0.881772418257212, 48.837005846464045] - ] - }, - "length": 0.08924914276914384, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08686", - "bus2": "MVLV06618", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.881772418257212, 48.837005846464045], - [-0.881772418257212, 48.837005846464045], - [-0.881795879161887, 48.83698295827619], - [-0.882339212587704, 48.8369298188577], - [-0.882602846093529, 48.836916085556226], - [-0.883055786007381, 48.836927093962686], - [-0.883520640213844, 48.83696209190501], - [-0.883707673530247, 48.836987740215186], - [-0.883730622181711, 48.836913836551645], - [-0.884040930989612, 48.83697390077044], - [-0.884049704575048, 48.836956761634546], - [-0.88406440710997, 48.836928020339315], - [-0.88406440710997, 48.836928020339315] - ] - }, - "length": 0.1819650302869982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43529", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16339", - "bus2": "MVBus07199", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8686998101678213, 48.838526097189025], - [-0.868699904353781, 48.83852806155387], - [-0.868701199622738, 48.83854151912993], - [-0.868702757777487, 48.838557686107755], - [-0.868722503320463, 48.83876687210722], - [-0.868817103520342, 48.838763622546615], - [-0.868817103520342, 48.838763622546615] - ] - }, - "length": 0.03356285654781796, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35588", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07199", - "bus2": "MVBus07200", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.868817103520342, 48.838763622546615], - [-0.868817103520342, 48.838763622546615], - [-0.869121961776541, 48.838746892769265], - [-0.871772221648429, 48.83864093270986], - [-0.871797152835766, 48.838734429103454], - [-0.871842737324107, 48.838764646639575], - [-0.871876996225313, 48.8388095884613], - [-0.871876996225313, 48.8388095884613] - ] - }, - "length": 0.2382568731010173, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch09864", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07200", - "bus2": "MVBus07201", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.871876996225313, 48.8388095884613], - [-0.871876996225313, 48.8388095884613], - [-0.87223218247948, 48.83939005621284], - [-0.872145403855815, 48.839820035406966], - [-0.872146518973825, 48.839822200116686], - [-0.872146518973825, 48.839822200116686] - ] - }, - "length": 0.11811189257521192, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31026", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07201", - "bus2": "MVBus07202", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872146518973825, 48.839822200116686], - [-0.872146518973825, 48.839822200116686], - [-0.872572820690305, 48.84065318427284], - [-0.872898415892355, 48.84142980041824], - [-0.872898415892355, 48.84142980041824] - ] - }, - "length": 0.1871763949567639, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34400", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07202", - "bus2": "MVBus07203", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.872898415892355, 48.84142980041824], - [-0.872898415892355, 48.84142980041824], - [-0.872949275566414, 48.8414148644425], - [-0.873007234026652, 48.84148884120062], - [-0.873007234026652, 48.84148884120062] - ] - }, - "length": 0.013347777466179678, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38933", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07203", - "bus2": "MVLV14197", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.873007234026652, 48.84148884120062], - [-0.873007234026652, 48.84148884120062], - [-0.873000946705299, 48.84149712422277], - [-0.872975878534332, 48.841531126631715], - [-0.872958792812237, 48.8415622152741], - [-0.872940831259644, 48.84157981708505], - [-0.872919399390211, 48.84158582801061], - [-0.872264316792551, 48.841661860400315], - [-0.87174837779979, 48.84171776742304], - [-0.871765352594382, 48.841791455319445], - [-0.871767328755778, 48.84180004620782], - [-0.871770256353902, 48.84181894666179], - [-0.8717518762744035, 48.84182098477776] - ] - }, - "length": 0.11155221210230411, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35212", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14197", - "bus2": "MVBus08183", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8717518762744035, 48.84182098477776], - [-0.871733496194905, 48.841823022893735], - [-0.871693086112716, 48.84183484322423], - [-0.870691717544495, 48.84198811304198], - [-0.870691717544495, 48.84198811304198] - ] - }, - "length": 0.07869834569086104, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch09867", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08183", - "bus2": "MVLV17331", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.870691717544495, 48.84198811304198], - [-0.870691717544495, 48.84198811304198], - [-0.86695823363757, 48.84303468142016], - [-0.86695823363757, 48.84303468142016] - ] - }, - "length": 0.29773606681183895, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34239", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07203", - "bus2": "MVBus07204", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.873007234026652, 48.84148884120062], - [-0.873007234026652, 48.84148884120062], - [-0.873028693247802, 48.84146214108333], - [-0.873059271332494, 48.84142887157235], - [-0.873090433645613, 48.841404599258745], - [-0.87314903914039, 48.841383148822345], - [-0.873225759601226, 48.84136748828711], - [-0.873311628832019, 48.84136687240857], - [-0.873387365404252, 48.84137824121766], - [-0.87347070999812, 48.84140199774015], - [-0.873521461135424, 48.84142756881493], - [-0.873569533929123, 48.84145412060402], - [-0.873631653450116, 48.841465874542116], - [-0.873671242842053, 48.84146656069455], - [-0.873675944485619, 48.84146590316994], - [-0.873675944485619, 48.84146590316994] - ] - }, - "length": 0.05800011596560066, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43531", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07204", - "bus2": "MVBus07205", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.873675944485619, 48.84146590316994], - [-0.873675944485619, 48.84146590316994], - [-0.87614693743563, 48.841118743702616], - [-0.876294976468256, 48.841088472969375], - [-0.876293704382707, 48.841087077107254], - [-0.876293704382707, 48.841087077107254] - ] - }, - "length": 0.1970012070090857, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39505", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07205", - "bus2": "MVLV14202", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876293704382707, 48.841087077107254], - [-0.876293704382707, 48.841087077107254], - [-0.875801635325687, 48.84054431672589], - [-0.875755736316278, 48.84046729920373], - [-0.87563047253042, 48.84032231683844], - [-0.875336553754776, 48.84001555978465], - [-0.875138041651559, 48.83985553522315], - [-0.874939079648074, 48.839772924400776], - [-0.874927729253643, 48.83981979777247], - [-0.874927230280244, 48.83982186209571], - [-0.874916570160602, 48.839830820933166], - [-0.874905311669654, 48.839830229741395] - ] - }, - "length": 0.18550175870020472, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39512", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14202", - "bus2": "MVBus08702", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.874905311669654, 48.839830229741395], - [-0.874894053178706, 48.83982963854963], - [-0.874884152119823, 48.83981785243795], - [-0.874878841031003, 48.839811528356755], - [-0.87489979176762, 48.83971372712899], - [-0.875166300137308, 48.839828633158874], - [-0.87537605670389, 48.83999375119793], - [-0.875669352047677, 48.84031221847985], - [-0.875798835746705, 48.84045888590148], - [-0.875844609925364, 48.840534107780144], - [-0.876341977157856, 48.8410772556702], - [-0.876492203069748, 48.84105368987994], - [-0.876492203069748, 48.84105368987994] - ] - }, - "length": 0.21186886508195796, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38943", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08702", - "bus2": "MVBus08703", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876492203069748, 48.84105368987994], - [-0.876492203069748, 48.84105368987994], - [-0.876495874028596, 48.84105311403799], - [-0.876518913112242, 48.841135272931126], - [-0.876488077688784, 48.84114544221755], - [-0.876451654357169, 48.8411679145853], - [-0.876689117189963, 48.841427008610744], - [-0.876689117189963, 48.841427008610744] - ] - }, - "length": 0.04943394118866002, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47195", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08703", - "bus2": "MVBus08704", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876689117189963, 48.841427008610744], - [-0.876689117189963, 48.841427008610744], - [-0.876715779516786, 48.84145658387014], - [-0.876715779516786, 48.84145658387014] - ] - }, - "length": 0.003827218082576422, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08704", - "bus2": "MVBus08705", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.876715779516786, 48.84145658387014], - [-0.876715779516786, 48.84145658387014], - [-0.876921910227358, 48.841679320106984], - [-0.876881552107111, 48.84173021505582], - [-0.875596693390097, 48.841995495403836], - [-0.875618931920973, 48.8420394563213], - [-0.875489653542762, 48.84206794249989], - [-0.875486723189695, 48.84207013540643], - [-0.875473232182965, 48.84208025906252], - [-0.875473232182965, 48.84208025906252] - ] - }, - "length": 0.15121557062525562, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43092", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04323", - "bus2": "MVLV17336", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.860106265907068, 48.853379550930796], - [-0.860106265907068, 48.853379550930796], - [-0.860112973852066, 48.853385325374795], - [-0.860284997954703, 48.85348422726446], - [-0.86031822396588, 48.85388370373491], - [-0.860213147252814, 48.85394318393929], - [-0.860277750652852, 48.8547380215247], - [-0.860337470882132, 48.854891668341494], - [-0.860688093091416, 48.855843519013675], - [-0.860827465146773, 48.85620048575599], - [-0.860875436691069, 48.85628229138118], - [-0.860924986486662, 48.856343276583026], - [-0.861073201614667, 48.85648117973047], - [-0.861283333858406, 48.85660940513099], - [-0.861500693050619, 48.856701420811575], - [-0.861712935684085, 48.85675667685235], - [-0.861647319373766, 48.8568166270699], - [-0.861647365349113, 48.85681936025709], - [-0.861645231472531, 48.8568329367829], - [-0.8616552619450155, 48.85683610333325] - ] - }, - "length": 0.43128229512606414, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17336", - "bus2": "MVBus04731", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8616552619450155, 48.85683610333325], - [-0.8616652924175, 48.8568392698836], - [-0.861682714956507, 48.85683222662069], - [-0.861688686801552, 48.856829817483856], - [-0.861695722418727, 48.856826975001795], - [-0.861707674408914, 48.85675823038369], - [-0.861792186526136, 48.856707603801034], - [-0.861893013080362, 48.85672519623623], - [-0.862694924872872, 48.85673387122094], - [-0.86292437714827, 48.856750569604074], - [-0.863182873633129, 48.85680362651025], - [-0.863693528154539, 48.8569810220965], - [-0.863855818413339, 48.857001673903724], - [-0.863918222964227, 48.85700255077768], - [-0.863918222964227, 48.85700255077768] - ] - }, - "length": 0.18105763300261443, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35221", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04731", - "bus2": "MVBus04732", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863918222964227, 48.85700255077768], - [-0.863918222964227, 48.85700255077768], - [-0.863966461523803, 48.85699013633603], - [-0.86397193271409, 48.85699132048057], - [-0.863976793703651, 48.85699542635625], - [-0.86397844410508, 48.85699963653583], - [-0.863980238431354, 48.85700595662856], - [-0.863976038582072, 48.85706222419284], - [-0.863763541152754, 48.857926554849435], - [-0.863762652584391, 48.85793512380676], - [-0.863762652584391, 48.85793512380676] - ] - }, - "length": 0.1105963897080451, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47847", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04732", - "bus2": "MVLV00093", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863762652584391, 48.85793512380676], - [-0.863762652584391, 48.85793512380676], - [-0.863652098146194, 48.85797020715481], - [-0.863644249366891, 48.85797467268345], - [-0.86363988513144, 48.857978612792806], - [-0.863636561543085, 48.857982848741585], - [-0.863635174335102, 48.8579870956023], - [-0.863635321052109, 48.857996536209306], - [-0.863629454090578, 48.85801963068446], - [-0.863607983625426, 48.85808739905594], - [-0.863598662759524, 48.858132488730874], - [-0.86358807516244, 48.85820717838946], - [-0.863583042207501, 48.85823274200076], - [-0.86356619935817, 48.858307240000826], - [-0.863557061976745, 48.85834757547212], - [-0.863540696178101, 48.85841986590374], - [-0.863527748120029, 48.85848789986443], - [-0.863516757163843, 48.858539501671636], - [-0.863507366526449, 48.85858368471885], - [-0.863504166097039, 48.85859874709582], - [-0.863494606206984, 48.85866094228821], - [-0.863490600465937, 48.858687026956055], - [-0.863492869319609, 48.85873635644208], - [-0.863498292409483, 48.85877649840076], - [-0.863505424396394, 48.85881958969367], - [-0.863528945280578, 48.85889077197597], - [-0.863532594689243, 48.858901746484285], - [-0.863554142463127, 48.85894649210044], - [-0.863614476471104, 48.85903367601244], - [-0.863620638428401, 48.85903655062091], - [-0.863627838730102, 48.859038138045726], - [-0.863634641177402, 48.85903835995974], - [-0.863643098779868, 48.85903779081348], - [-0.863651512275242, 48.85903672813808], - [-0.863712938803964, 48.85902261014858], - [-0.863779140442815, 48.85900149173398], - [-0.863832855496586, 48.858981041754475], - [-0.863996296445628, 48.85892287706804], - [-0.864067599774143, 48.85890358220162], - [-0.864068498293527, 48.858903342170414], - [-0.864080807594573, 48.858900024970026], - [-0.864077991992518, 48.858894496901186] - ] - }, - "length": 0.16785434440432762, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37894", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00093", - "bus2": "MVBus05173", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.864077991992518, 48.858894496901186], - [-0.864075176390463, 48.85888896883235], - [-0.864061426670129, 48.85889280148125], - [-0.863989047566625, 48.85891299776108], - [-0.863982227369626, 48.8589153578539], - [-0.863820345645456, 48.85897117793674], - [-0.863770857072501, 48.85899097460846], - [-0.863706983003681, 48.859011373830896], - [-0.863640560369019, 48.85902626474628], - [-0.863633336031125, 48.859026054173206], - [-0.86362889058395, 48.85902514826085], - [-0.863626207046427, 48.85902253094914], - [-0.863596581247106, 48.858980970769636], - [-0.86356924196568, 48.858936039033715], - [-0.863565248690335, 48.858927664273004], - [-0.863556427941519, 48.85891219644656], - [-0.8635491969277, 48.85889730652924], - [-0.863535602952256, 48.85885178044349], - [-0.863524606510693, 48.85882293285934], - [-0.863523300198474, 48.85881634779683], - [-0.86351820872964, 48.858790849461954], - [-0.863512688026298, 48.858744269848145], - [-0.863511328118163, 48.85872776495653], - [-0.863509889980825, 48.85871043464547], - [-0.863509766040245, 48.85868634989009], - [-0.863514793863072, 48.858650325473164], - [-0.863523377386478, 48.858588876106815], - [-0.863541758516472, 48.85850440651901], - [-0.863558944631487, 48.8584160383125], - [-0.86358975916166, 48.858276618017285], - [-0.863601312713498, 48.858227285747546], - [-0.863616550127998, 48.85813297035221], - [-0.863626241208668, 48.85809034429648], - [-0.863647493919965, 48.85801485523275], - [-0.863654123033808, 48.85799129952321], - [-0.863655719669438, 48.857986912110476], - [-0.863659609404082, 48.8579841181018], - [-0.863663824347541, 48.85798151323684], - [-0.863754139523726, 48.857952011045036], - [-0.863764406091378, 48.857949171538266], - [-0.863767699851741, 48.857948426374094], - [-0.863770978085763, 48.85794742977247], - [-0.863772695150138, 48.85794653810193], - [-0.863774645581598, 48.85794501052119], - [-0.863774645581598, 48.85794501052119] - ] - }, - "length": 0.16391793277881303, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46083", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05173", - "bus2": "MVBus05174", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.863774645581598, 48.85794501052119], - [-0.863774645581598, 48.85794501052119], - [-0.863776138998672, 48.85792923844988], - [-0.86377796201692, 48.85792189465115], - [-0.863990567148061, 48.85706637598586], - [-0.863993841022684, 48.85701012432034], - [-0.863995215438887, 48.85700280156644], - [-0.864145676144476, 48.85700715758124], - [-0.864145676144476, 48.85700715758124] - ] - }, - "length": 0.11712757505255547, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41408", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05174", - "bus2": "MVBus05175", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.864145676144476, 48.85700715758124], - [-0.864145676144476, 48.85700715758124], - [-0.864728212747039, 48.8570114897373], - [-0.864874424283763, 48.85701215428628], - [-0.865019678090283, 48.85699753522224], - [-0.865158661585753, 48.85696769446948], - [-0.865158661585753, 48.85696769446948] - ] - }, - "length": 0.07498646770260328, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34243", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05175", - "bus2": "MVBus05176", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.865158661585753, 48.85696769446948], - [-0.865158661585753, 48.85696769446948], - [-0.865239863600235, 48.85695378132356], - [-0.86533921910663, 48.85693032208085], - [-0.865356650561167, 48.856916810749716], - [-0.865359827595317, 48.85691594275052], - [-0.865356031015941, 48.8569050172066], - [-0.865356031015941, 48.8569050172066] - ] - }, - "length": 0.017371955947210974, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47051", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03394", - "bus2": "MVLV16267", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8600627007696874, 48.85333737772175], - [-0.860051120719812, 48.85334623976728], - [-0.860055956692353, 48.853359233361104], - [-0.860060695512664, 48.853371977708335], - [-0.860060013612219, 48.85337418176287], - [-0.860044505754894, 48.85338418668452], - [-0.860040419883453, 48.85338512392681], - [-0.860033692009081, 48.85338366753167], - [-0.860029232393533, 48.85338119677501], - [-0.86001853756168, 48.85337575425656], - [-0.86001853756168, 48.85337575425656] - ] - }, - "length": 0.007044467725210111, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV03394_production", - "bus": "MVLV03394", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03394_consumption", - "bus": "MVLV03394", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV16339_production", - "bus": "MVLV16339", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16339_consumption", - "bus": "MVLV16339", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV06613_production", - "bus": "MVLV06613", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06613_consumption", - "bus": "MVLV06613", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV07909_production", - "bus": "MVLV07909", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07909_consumption", - "bus": "MVLV07909", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV17318_production", - "bus": "MVLV17318", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17318_consumption", - "bus": "MVLV17318", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV00077_production", - "bus": "MVLV00077", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00077_consumption", - "bus": "MVLV00077", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV14187_production", - "bus": "MVLV14187", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14187_consumption", - "bus": "MVLV14187", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV06614_production", - "bus": "MVLV06614", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06614_consumption", - "bus": "MVLV06614", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV16352_production", - "bus": "MVLV16352", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16352_consumption", - "bus": "MVLV16352", - "phases": "abc", - "powers": [ - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667] - ] - }, - { - "id": "MVLV17323_production", - "bus": "MVLV17323", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17323_consumption", - "bus": "MVLV17323", - "phases": "abc", - "powers": [ - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667] - ] - }, - { - "id": "MVLV03392_production", - "bus": "MVLV03392", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03392_consumption", - "bus": "MVLV03392", - "phases": "abc", - "powers": [ - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667] - ] - }, - { - "id": "MVLV06627_production", - "bus": "MVLV06627", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06627_consumption", - "bus": "MVLV06627", - "phases": "abc", - "powers": [ - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667] - ] - }, - { - "id": "MVLV19250_production", - "bus": "MVLV19250", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19250_consumption", - "bus": "MVLV19250", - "phases": "abc", - "powers": [ - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667] - ] - }, - { - "id": "MVLV16338_production", - "bus": "MVLV16338", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16338_consumption", - "bus": "MVLV16338", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV07908_production", - "bus": "MVLV07908", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07908_consumption", - "bus": "MVLV07908", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV06624_production", - "bus": "MVLV06624", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06624_consumption", - "bus": "MVLV06624", - "phases": "abc", - "powers": [ - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013] - ] - }, - { - "id": "MVLV06618_production", - "bus": "MVLV06618", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06618_consumption", - "bus": "MVLV06618", - "phases": "abc", - "powers": [ - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667], - [60916.45950326973, 20022.27198249667] - ] - }, - { - "id": "MVLV14197_production", - "bus": "MVLV14197", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14197_consumption", - "bus": "MVLV14197", - "phases": "abc", - "powers": [ - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013] - ] - }, - { - "id": "MVLV17331_production", - "bus": "MVLV17331", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17331_consumption", - "bus": "MVLV17331", - "phases": "abc", - "powers": [ - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013] - ] - }, - { - "id": "MVLV14202_production", - "bus": "MVLV14202", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14202_consumption", - "bus": "MVLV14202", - "phases": "abc", - "powers": [ - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013], - [58391.24369402034, 19192.273683850013] - ] - }, - { - "id": "MVLV17336_production", - "bus": "MVLV17336", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17336_consumption", - "bus": "MVLV17336", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV00093_production", - "bus": "MVLV00093", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00093_consumption", - "bus": "MVLV00093", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - }, - { - "id": "MVLV16267_production", - "bus": "MVLV16267", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16267_consumption", - "bus": "MVLV16267", - "phases": "abc", - "powers": [ - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507], - [88101.17455813523, 28957.455724847507] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder115_summer.json b/data/MVFeeder115_summer.json deleted file mode 100644 index 5976a05d..00000000 --- a/data/MVFeeder115_summer.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.687159292228112, 49.48974276829431] - } - }, - { - "id": "HVMV07", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.687159292228112, 49.48974276829431] - } - }, - { - "id": "MVLV14092", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6650298238154546, 49.46180069059946] - } - }, - { - "id": "MVLV05996", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.626239709998294, 49.43249717368583] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV07", - "geometry": { - "type": "Point", - "coordinates": [-1.687159292228112, 49.48974276829431] - } - }, - { - "id": "MVBranch48268", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV07", - "bus2": "MVLV14092", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.687159292228112, 49.48974276829431], - [-1.687208163893635, 49.48976202984574], - [-1.687208163893635, 49.48976202984574], - [-1.687224018535021, 49.48976805718449], - [-1.687430783993926, 49.48985719226643], - [-1.687541737944976, 49.49016189962252], - [-1.687659173697866, 49.49024117311308], - [-1.687615613788664, 49.4902859241784], - [-1.68675950613287, 49.49078269890351], - [-1.68662118929768, 49.49078901524194], - [-1.684348191361692, 49.491001725794675], - [-1.682879543397161, 49.49116652038543], - [-1.681416891160085, 49.49142531696421], - [-1.680243941448098, 49.49153947086583], - [-1.679307023878961, 49.49160200394196], - [-1.678285723941946, 49.4915860084893], - [-1.677483533549372, 49.49150939278706], - [-1.677277748768471, 49.49141571157867], - [-1.677771968678011, 49.49026822890711], - [-1.677806142259258, 49.49000139344616], - [-1.677647110805917, 49.48895824463737], - [-1.677537129796116, 49.48851120500794], - [-1.677356127071978, 49.488068140126884], - [-1.67729115491888, 49.487240157191806], - [-1.677090163735787, 49.486675278083105], - [-1.677321148850147, 49.48589186973337], - [-1.677429869430512, 49.48368359327891], - [-1.677209720359986, 49.48287438262977], - [-1.676884860721908, 49.48206185870231], - [-1.676106724527331, 49.481461753592455], - [-1.675529096354016, 49.48115435975139], - [-1.674873315966908, 49.48051615929721], - [-1.674312533622679, 49.47935764094288], - [-1.673974167184083, 49.47757250040996], - [-1.673680791981945, 49.477160383214475], - [-1.673392740984098, 49.476816136590884], - [-1.672944069166365, 49.476021328640364], - [-1.673761322344521, 49.4741909262947], - [-1.674781032160666, 49.47201354701551], - [-1.67567987985738, 49.470159987009836], - [-1.676203375966493, 49.46871358586538], - [-1.67701105581831, 49.46689707685337], - [-1.676879701981912, 49.46681979510555], - [-1.674470429452406, 49.466852395138005], - [-1.670455470981454, 49.46690662200656], - [-1.669502378959354, 49.46687479188464], - [-1.668227991572027, 49.4667334382557], - [-1.666850849753254, 49.46647980454698], - [-1.665210005131523, 49.46605799326564], - [-1.663956799995638, 49.46578660275987], - [-1.66296732733047, 49.46568336606076], - [-1.660861689875882, 49.4657260332333], - [-1.658235032053802, 49.465779204099725], - [-1.659936765935147, 49.464844906008366], - [-1.661544399709459, 49.46396221764614], - [-1.664333945847665, 49.462330960840106], - [-1.665001984512108, 49.461940285883294], - [-1.66499793038946, 49.461831430434415], - [-1.664997490891627, 49.46181945594003], - [-1.6650298238154546, 49.46180069059946] - ] - }, - "length": 5.766634582124083, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "MVBranch39083", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14092", - "bus2": "MVLV05996", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6650298238154546, 49.46180069059946], - [-1.665062156739282, 49.46178192525889], - [-1.665079299356057, 49.4617743944145], - [-1.665922748216245, 49.461403834739585], - [-1.666675164238545, 49.46103161687154], - [-1.667064096088348, 49.46071716466963], - [-1.667486059341152, 49.460287397012266], - [-1.668469000759015, 49.45959226949676], - [-1.66754867205653, 49.458937567424314], - [-1.667279192030924, 49.45871809227462], - [-1.666020022033455, 49.45677715913894], - [-1.665955712160401, 49.45631329262616], - [-1.66588591301336, 49.45605764245268], - [-1.665787565973307, 49.45593483065401], - [-1.665642711710583, 49.45561653869461], - [-1.665570185070392, 49.45514739523584], - [-1.665457808502842, 49.45478564343815], - [-1.664864575924415, 49.454010405843526], - [-1.664801086071352, 49.45377534858149], - [-1.664778383422543, 49.45353204676319], - [-1.664750928695544, 49.45344309835057], - [-1.664715044966024, 49.45337745494814], - [-1.664365400324017, 49.45300360777296], - [-1.663941262278689, 49.45267391275986], - [-1.6634575633963, 49.452358768207674], - [-1.662521012730601, 49.45178915819017], - [-1.662318507761525, 49.45168717860438], - [-1.662154729392529, 49.451616993429845], - [-1.661519261766548, 49.45138601063132], - [-1.660746542391683, 49.45113043891435], - [-1.659732007492689, 49.450745195023444], - [-1.659630090963317, 49.45069721112411], - [-1.659479016903996, 49.45055728312873], - [-1.65939166493412, 49.45049086350554], - [-1.65926776530641, 49.450435891699996], - [-1.658544711531244, 49.45025901231274], - [-1.657499108646347, 49.449969498194974], - [-1.65617302732469, 49.44970401539244], - [-1.655824131670615, 49.449674010566724], - [-1.655161313518678, 49.44964496579746], - [-1.654836327774363, 49.44963072385811], - [-1.65453558052459, 49.449658768644085], - [-1.653547096409656, 49.44997256911071], - [-1.651951099735394, 49.45035437462746], - [-1.651396900353868, 49.45043668334064], - [-1.651188754480879, 49.450396689008315], - [-1.651093682339142, 49.45028290462896], - [-1.650970813937655, 49.44988824655155], - [-1.65071667345514, 49.44901788331174], - [-1.650511520914955, 49.44875037303698], - [-1.650360399216343, 49.447810023528945], - [-1.650290256698077, 49.4472809734883], - [-1.649860859039988, 49.44654938680829], - [-1.649937134617494, 49.44627894513112], - [-1.650009567025331, 49.44604171091064], - [-1.65001874924865, 49.44586201915364], - [-1.649882344906865, 49.44543712796742], - [-1.649452852837525, 49.44490904351998], - [-1.648990621610768, 49.44453563386657], - [-1.648662112342258, 49.4441705150223], - [-1.648472910984314, 49.44401539444214], - [-1.648221925864255, 49.44389462492231], - [-1.64800996890672, 49.443855795237404], - [-1.646433377364146, 49.44410436462664], - [-1.646241415644245, 49.44409683561565], - [-1.645943952141011, 49.44290021976039], - [-1.645820152637303, 49.44284202059801], - [-1.645589363666875, 49.44279951041141], - [-1.643094734213601, 49.44207662719116], - [-1.642607529304422, 49.44212580783593], - [-1.641815225315199, 49.44240925374231], - [-1.641306202273998, 49.44249083600409], - [-1.640739856643976, 49.442403610306684], - [-1.639766478477356, 49.44218858877706], - [-1.639408213269007, 49.44222395588984], - [-1.6387319609021, 49.4423974098495], - [-1.638662137299313, 49.44234657774967], - [-1.638614129523796, 49.44233120867681], - [-1.638556321971131, 49.44232197326178], - [-1.638448284120058, 49.442067445183206], - [-1.637839502846353, 49.44025014453263], - [-1.637675404893065, 49.439501953456734], - [-1.636815393816563, 49.438525216377904], - [-1.636451394016763, 49.43811485473001], - [-1.636161528623046, 49.437696622618816], - [-1.635938867821376, 49.43737535074427], - [-1.635852394011747, 49.43702994235667], - [-1.635805046474285, 49.43641960721379], - [-1.635918174025514, 49.43466680352085], - [-1.635959897762616, 49.43317086906634], - [-1.635993133167653, 49.43197851371761], - [-1.636008229846451, 49.43078007274172], - [-1.63395592797031, 49.43091142678521], - [-1.630159384376024, 49.43110589408643], - [-1.626316521869996, 49.43133379348475], - [-1.626677826001981, 49.43204211302102], - [-1.62645933724806, 49.432098871702124], - [-1.626137691403677, 49.43242237277039], - [-1.626220660544817, 49.432483212250645], - [-1.626239709998294, 49.43249717368583], - [-1.626239709998294, 49.43249717368583] - ] - }, - "length": 6.070765210726548, - "params_id": "S_AL_240", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV14092_production", - "bus": "MVLV14092", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14092_consumption", - "bus": "MVLV14092", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05996_production", - "bus": "MVLV05996", - "phases": "abc", - "powers": [ - [-3333333.3333333335, 0.0], - [-3333333.3333333335, 0.0], - [-3333333.3333333335, 0.0] - ] - }, - { - "id": "MVLV05996_consumption", - "bus": "MVLV05996", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.12499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.12499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.12499999999999999 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00018346901096964396, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00018346901096964396, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00018346901096964396 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder115_winter.json b/data/MVFeeder115_winter.json deleted file mode 100644 index f3918bd3..00000000 --- a/data/MVFeeder115_winter.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.687159292228112, 49.48974276829431] - } - }, - { - "id": "HVMV07", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.687159292228112, 49.48974276829431] - } - }, - { - "id": "MVLV14092", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6650298238154546, 49.46180069059946] - } - }, - { - "id": "MVLV05996", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.626239709998294, 49.43249717368583] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV07", - "geometry": { - "type": "Point", - "coordinates": [-1.687159292228112, 49.48974276829431] - } - }, - { - "id": "MVBranch48268", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV07", - "bus2": "MVLV14092", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.687159292228112, 49.48974276829431], - [-1.687208163893635, 49.48976202984574], - [-1.687208163893635, 49.48976202984574], - [-1.687224018535021, 49.48976805718449], - [-1.687430783993926, 49.48985719226643], - [-1.687541737944976, 49.49016189962252], - [-1.687659173697866, 49.49024117311308], - [-1.687615613788664, 49.4902859241784], - [-1.68675950613287, 49.49078269890351], - [-1.68662118929768, 49.49078901524194], - [-1.684348191361692, 49.491001725794675], - [-1.682879543397161, 49.49116652038543], - [-1.681416891160085, 49.49142531696421], - [-1.680243941448098, 49.49153947086583], - [-1.679307023878961, 49.49160200394196], - [-1.678285723941946, 49.4915860084893], - [-1.677483533549372, 49.49150939278706], - [-1.677277748768471, 49.49141571157867], - [-1.677771968678011, 49.49026822890711], - [-1.677806142259258, 49.49000139344616], - [-1.677647110805917, 49.48895824463737], - [-1.677537129796116, 49.48851120500794], - [-1.677356127071978, 49.488068140126884], - [-1.67729115491888, 49.487240157191806], - [-1.677090163735787, 49.486675278083105], - [-1.677321148850147, 49.48589186973337], - [-1.677429869430512, 49.48368359327891], - [-1.677209720359986, 49.48287438262977], - [-1.676884860721908, 49.48206185870231], - [-1.676106724527331, 49.481461753592455], - [-1.675529096354016, 49.48115435975139], - [-1.674873315966908, 49.48051615929721], - [-1.674312533622679, 49.47935764094288], - [-1.673974167184083, 49.47757250040996], - [-1.673680791981945, 49.477160383214475], - [-1.673392740984098, 49.476816136590884], - [-1.672944069166365, 49.476021328640364], - [-1.673761322344521, 49.4741909262947], - [-1.674781032160666, 49.47201354701551], - [-1.67567987985738, 49.470159987009836], - [-1.676203375966493, 49.46871358586538], - [-1.67701105581831, 49.46689707685337], - [-1.676879701981912, 49.46681979510555], - [-1.674470429452406, 49.466852395138005], - [-1.670455470981454, 49.46690662200656], - [-1.669502378959354, 49.46687479188464], - [-1.668227991572027, 49.4667334382557], - [-1.666850849753254, 49.46647980454698], - [-1.665210005131523, 49.46605799326564], - [-1.663956799995638, 49.46578660275987], - [-1.66296732733047, 49.46568336606076], - [-1.660861689875882, 49.4657260332333], - [-1.658235032053802, 49.465779204099725], - [-1.659936765935147, 49.464844906008366], - [-1.661544399709459, 49.46396221764614], - [-1.664333945847665, 49.462330960840106], - [-1.665001984512108, 49.461940285883294], - [-1.66499793038946, 49.461831430434415], - [-1.664997490891627, 49.46181945594003], - [-1.6650298238154546, 49.46180069059946] - ] - }, - "length": 5.766634582124083, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "MVBranch39083", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14092", - "bus2": "MVLV05996", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6650298238154546, 49.46180069059946], - [-1.665062156739282, 49.46178192525889], - [-1.665079299356057, 49.4617743944145], - [-1.665922748216245, 49.461403834739585], - [-1.666675164238545, 49.46103161687154], - [-1.667064096088348, 49.46071716466963], - [-1.667486059341152, 49.460287397012266], - [-1.668469000759015, 49.45959226949676], - [-1.66754867205653, 49.458937567424314], - [-1.667279192030924, 49.45871809227462], - [-1.666020022033455, 49.45677715913894], - [-1.665955712160401, 49.45631329262616], - [-1.66588591301336, 49.45605764245268], - [-1.665787565973307, 49.45593483065401], - [-1.665642711710583, 49.45561653869461], - [-1.665570185070392, 49.45514739523584], - [-1.665457808502842, 49.45478564343815], - [-1.664864575924415, 49.454010405843526], - [-1.664801086071352, 49.45377534858149], - [-1.664778383422543, 49.45353204676319], - [-1.664750928695544, 49.45344309835057], - [-1.664715044966024, 49.45337745494814], - [-1.664365400324017, 49.45300360777296], - [-1.663941262278689, 49.45267391275986], - [-1.6634575633963, 49.452358768207674], - [-1.662521012730601, 49.45178915819017], - [-1.662318507761525, 49.45168717860438], - [-1.662154729392529, 49.451616993429845], - [-1.661519261766548, 49.45138601063132], - [-1.660746542391683, 49.45113043891435], - [-1.659732007492689, 49.450745195023444], - [-1.659630090963317, 49.45069721112411], - [-1.659479016903996, 49.45055728312873], - [-1.65939166493412, 49.45049086350554], - [-1.65926776530641, 49.450435891699996], - [-1.658544711531244, 49.45025901231274], - [-1.657499108646347, 49.449969498194974], - [-1.65617302732469, 49.44970401539244], - [-1.655824131670615, 49.449674010566724], - [-1.655161313518678, 49.44964496579746], - [-1.654836327774363, 49.44963072385811], - [-1.65453558052459, 49.449658768644085], - [-1.653547096409656, 49.44997256911071], - [-1.651951099735394, 49.45035437462746], - [-1.651396900353868, 49.45043668334064], - [-1.651188754480879, 49.450396689008315], - [-1.651093682339142, 49.45028290462896], - [-1.650970813937655, 49.44988824655155], - [-1.65071667345514, 49.44901788331174], - [-1.650511520914955, 49.44875037303698], - [-1.650360399216343, 49.447810023528945], - [-1.650290256698077, 49.4472809734883], - [-1.649860859039988, 49.44654938680829], - [-1.649937134617494, 49.44627894513112], - [-1.650009567025331, 49.44604171091064], - [-1.65001874924865, 49.44586201915364], - [-1.649882344906865, 49.44543712796742], - [-1.649452852837525, 49.44490904351998], - [-1.648990621610768, 49.44453563386657], - [-1.648662112342258, 49.4441705150223], - [-1.648472910984314, 49.44401539444214], - [-1.648221925864255, 49.44389462492231], - [-1.64800996890672, 49.443855795237404], - [-1.646433377364146, 49.44410436462664], - [-1.646241415644245, 49.44409683561565], - [-1.645943952141011, 49.44290021976039], - [-1.645820152637303, 49.44284202059801], - [-1.645589363666875, 49.44279951041141], - [-1.643094734213601, 49.44207662719116], - [-1.642607529304422, 49.44212580783593], - [-1.641815225315199, 49.44240925374231], - [-1.641306202273998, 49.44249083600409], - [-1.640739856643976, 49.442403610306684], - [-1.639766478477356, 49.44218858877706], - [-1.639408213269007, 49.44222395588984], - [-1.6387319609021, 49.4423974098495], - [-1.638662137299313, 49.44234657774967], - [-1.638614129523796, 49.44233120867681], - [-1.638556321971131, 49.44232197326178], - [-1.638448284120058, 49.442067445183206], - [-1.637839502846353, 49.44025014453263], - [-1.637675404893065, 49.439501953456734], - [-1.636815393816563, 49.438525216377904], - [-1.636451394016763, 49.43811485473001], - [-1.636161528623046, 49.437696622618816], - [-1.635938867821376, 49.43737535074427], - [-1.635852394011747, 49.43702994235667], - [-1.635805046474285, 49.43641960721379], - [-1.635918174025514, 49.43466680352085], - [-1.635959897762616, 49.43317086906634], - [-1.635993133167653, 49.43197851371761], - [-1.636008229846451, 49.43078007274172], - [-1.63395592797031, 49.43091142678521], - [-1.630159384376024, 49.43110589408643], - [-1.626316521869996, 49.43133379348475], - [-1.626677826001981, 49.43204211302102], - [-1.62645933724806, 49.432098871702124], - [-1.626137691403677, 49.43242237277039], - [-1.626220660544817, 49.432483212250645], - [-1.626239709998294, 49.43249717368583], - [-1.626239709998294, 49.43249717368583] - ] - }, - "length": 6.070765210726548, - "params_id": "S_AL_240", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV14092_production", - "bus": "MVLV14092", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14092_consumption", - "bus": "MVLV14092", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05996_production", - "bus": "MVLV05996", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05996_consumption", - "bus": "MVLV05996", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.12499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.12499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.12499999999999999 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00018346901096964396, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00018346901096964396, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00018346901096964396 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder128_summer.json b/data/MVFeeder128_summer.json deleted file mode 100644 index 30c74739..00000000 --- a/data/MVFeeder128_summer.json +++ /dev/null @@ -1,2496 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.446077484045924, 49.034241235768725] - } - }, - { - "id": "HVMV09", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.446077484045924, 49.034241235768725] - } - }, - { - "id": "MVBus00916", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.445903151201629, 49.03333590409346] - } - }, - { - "id": "MVBus00917", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.447048659446956, 49.03194944491505] - } - }, - { - "id": "MVBus00918", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.448327090288608, 49.031163231442164] - } - }, - { - "id": "MVBus00919", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.44905973033842, 49.03077803898317] - } - }, - { - "id": "MVBus00920", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.46220824503751, 49.029201861100134] - } - }, - { - "id": "MVBus00921", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461736098180515, 49.03010660944954] - } - }, - { - "id": "MVBus00922", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461764829853785, 49.031439486446786] - } - }, - { - "id": "MVBus00923", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461397716173976, 49.033603497990065] - } - }, - { - "id": "MVBus00924", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461516985174621, 49.035477339466745] - } - }, - { - "id": "MVBus00925", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.463937029008645, 49.043696863573665] - } - }, - { - "id": "MVBus00926", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.463995464115393, 49.046275309101084] - } - }, - { - "id": "MVBus00927", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.487571747077065, 49.052234116603024] - } - }, - { - "id": "MVLV06709", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5210751434046905, 49.05368710146948] - } - }, - { - "id": "MVBus23996", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527305659304398, 49.050631392784375] - } - }, - { - "id": "MVBus23998", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530799108036813, 49.05005551741369] - } - }, - { - "id": "MVLV16847", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5390729458236736, 49.04797870565177] - } - }, - { - "id": "MVBus28325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542619622656282, 49.04779553766782] - } - }, - { - "id": "MVBus28327", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542770401208704, 49.04781922444621] - } - }, - { - "id": "MVBus28328", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544702393697539, 49.04846880559844] - } - }, - { - "id": "MVLV07026", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544752904038435, 49.04845138404925] - } - }, - { - "id": "MVBus28330", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542862708504378, 49.04736940703681] - } - }, - { - "id": "MVBus28331", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543922806647433, 49.046880850250076] - } - }, - { - "id": "MVLV03204", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544018357653604, 49.04697501147895] - } - }, - { - "id": "MVBus30451", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543968182557054, 49.04686214725682] - } - }, - { - "id": "MVBus30452", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544605930612236, 49.04663486061268] - } - }, - { - "id": "MVBus30453", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548385077336012, 49.04625140406671] - } - }, - { - "id": "MVLV06428", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549997403449801, 49.04903588566835] - } - }, - { - "id": "MVBus30454", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548795047362359, 49.04590439339881] - } - }, - { - "id": "MVLV10304", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548856389053909, 49.04604765320563] - } - }, - { - "id": "MVLV19090", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.55881269212674, 49.04125814200877] - } - }, - { - "id": "MVBus35324", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.559514529559971, 49.04118696896896] - } - }, - { - "id": "MVBus35325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.561893552787597, 49.04154118410379] - } - }, - { - "id": "MVLV07041", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.56199895611086, 49.04162613053569] - } - }, - { - "id": "MVBus35326", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564656394675905, 49.0399616456111] - } - }, - { - "id": "MVBus35327", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.56889755134967, 49.03931854303925] - } - }, - { - "id": "MVLV12057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5732046465483145, 49.03784077453285] - } - }, - { - "id": "MVBus38707", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.575603504890467, 49.03309437846214] - } - }, - { - "id": "MVBus38708", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.575415481427542, 49.02875745070805] - } - }, - { - "id": "MVLV10414", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.573983343738142, 49.02677037365746] - } - }, - { - "id": "MVBus38709", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.586163645822428, 49.02561765715403] - } - }, - { - "id": "MVLV14661", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.575820358399386, 49.03313333990028] - } - }, - { - "id": "MVLV18001", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.568312137481616, 49.03765478152067] - } - }, - { - "id": "MVLV06710", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564732788462391, 49.039903908577465] - } - }, - { - "id": "MVBus30458", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544615426108271, 49.04665466011679] - } - }, - { - "id": "MVLV18902", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542632731877063, 49.0478457642589] - } - }, - { - "id": "MVLV13802", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530576179130021, 49.05011528391853] - } - }, - { - "id": "MVLV10305", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527356876822457, 49.05063026709952] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV09", - "geometry": { - "type": "Point", - "coordinates": [-1.446077484045924, 49.034241235768725] - } - }, - { - "id": "MVBranch44642", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV09", - "bus2": "MVBus00916", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.446077484045924, 49.034241235768725], - [-1.446089321542839, 49.03419419641659], - [-1.446089321542839, 49.03419419641659], - [-1.44609019272388, 49.03416313115167], - [-1.446076988694361, 49.034047891233236], - [-1.445614044006718, 49.03390884749059], - [-1.44601396527957, 49.03341359656575], - [-1.445875189552959, 49.033373333096414], - [-1.445903151201629, 49.03333590409346], - [-1.445903151201629, 49.03333590409346] - ] - }, - "length": 0.13161178225571488, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41155", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00916", - "bus2": "MVBus00917", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.445903151201629, 49.03333590409346], - [-1.445903151201629, 49.03333590409346], - [-1.446053327345197, 49.033134899957865], - [-1.446469116526517, 49.03261265880293], - [-1.446826395935171, 49.03215974247694], - [-1.447048659446956, 49.03194944491505], - [-1.447048659446956, 49.03194944491505] - ] - }, - "length": 0.17568267802562318, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43162", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00917", - "bus2": "MVBus00918", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.447048659446956, 49.03194944491505], - [-1.447048659446956, 49.03194944491505], - [-1.447187370746948, 49.03181820967314], - [-1.44768981615452, 49.03142818254009], - [-1.448042929122802, 49.031192523161145], - [-1.448248689332893, 49.03119920976466], - [-1.448327090288608, 49.031163231442164], - [-1.448327090288608, 49.031163231442164] - ] - }, - "length": 0.13346570850969364, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37533", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00918", - "bus2": "MVBus00919", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.448327090288608, 49.031163231442164], - [-1.448327090288608, 49.031163231442164], - [-1.44866677092218, 49.03097900565769], - [-1.44905973033842, 49.03077803898317], - [-1.44905973033842, 49.03077803898317] - ] - }, - "length": 0.06860263079628186, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00919", - "bus2": "MVBus00920", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.44905973033842, 49.03077803898317], - [-1.44905973033842, 49.03077803898317], - [-1.44945519479327, 49.03061501057651], - [-1.449518020860817, 49.03059857965217], - [-1.449576707037814, 49.03060032685851], - [-1.449661317807766, 49.03063133640318], - [-1.449740616412923, 49.03066490735919], - [-1.449810778534484, 49.03067351481081], - [-1.449871385301471, 49.03060181673669], - [-1.449897974891566, 49.030590142001756], - [-1.449928913280018, 49.03058795561711], - [-1.449976374531152, 49.03058645091119], - [-1.450037737732442, 49.03057488819762], - [-1.450142110773407, 49.03055112105596], - [-1.450258595639544, 49.030524603723094], - [-1.450351927360375, 49.03051800089154], - [-1.450531603631356, 49.030523135473125], - [-1.450850227809575, 49.03055152780828], - [-1.451276856437632, 49.03055604498573], - [-1.451728063103816, 49.03052128509536], - [-1.452093620252944, 49.03046637140379], - [-1.452424824749186, 49.03039210637347], - [-1.45244680029795, 49.0303673435888], - [-1.45249649637903, 49.03034651448132], - [-1.452555589015656, 49.03032900382792], - [-1.452684314838213, 49.030312891508714], - [-1.452796252986193, 49.030292489566406], - [-1.452935936718546, 49.030267041800165], - [-1.452971911245631, 49.03026767266503], - [-1.453107058137133, 49.03023931883264], - [-1.453129040909092, 49.0302398268357], - [-1.453563875862572, 49.030181513734846], - [-1.453927458963233, 49.03014952603635], - [-1.454684284019186, 49.03001601643393], - [-1.4556041114158, 49.02983522273534], - [-1.45633528749164, 49.029701320231226], - [-1.456599470815935, 49.029636386894715], - [-1.456859884566635, 49.02954510491541], - [-1.457216958094627, 49.029449546392286], - [-1.457657695862679, 49.02939704018672], - [-1.457952697401475, 49.02937805056121], - [-1.458543529630631, 49.02937611885037], - [-1.459418890113739, 49.02941205804522], - [-1.4595588367873, 49.02939918914138], - [-1.459647808524431, 49.02939100818684], - [-1.45981173834437, 49.02935505624181], - [-1.459977955563748, 49.029301650035116], - [-1.46007702482525, 49.0292804536462], - [-1.460185843302788, 49.02926736800293], - [-1.460367080607095, 49.02926883046293], - [-1.460804929187744, 49.02927234486838], - [-1.46094192158442, 49.029273449924396], - [-1.461061860422605, 49.029262375975044], - [-1.461209953194966, 49.02923601216176], - [-1.461492302710045, 49.02916928451514], - [-1.461874652308826, 49.02906930026454], - [-1.461994303421172, 49.02902940055602], - [-1.462033715309178, 49.02899325838838], - [-1.462039050386169, 49.028941358516114], - [-1.462002487375867, 49.028891987799454], - [-1.462061373216727, 49.02884680544972], - [-1.462112364275487, 49.02889330616393], - [-1.46220824503751, 49.029201861100134], - [-1.46220824503751, 49.029201861100134] - ] - }, - "length": 1.0533444699184005, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44628", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00920", - "bus2": "MVBus00921", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.46220824503751, 49.029201861100134], - [-1.46220824503751, 49.029201861100134], - [-1.462290390398361, 49.02946968459122], - [-1.462371704516555, 49.029572213825645], - [-1.462402626709977, 49.02965815490035], - [-1.462401320349518, 49.029723898258666], - [-1.462339844977394, 49.02980772229685], - [-1.462271825440518, 49.02984425267264], - [-1.462051101816434, 49.029936173574164], - [-1.461815657267072, 49.03005787295793], - [-1.461736098180515, 49.03010660944954], - [-1.461736098180515, 49.03010660944954] - ] - }, - "length": 0.1261069012522324, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35802", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00921", - "bus2": "MVBus00922", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461736098180515, 49.03010660944954], - [-1.461736098180515, 49.03010660944954], - [-1.461688708940827, 49.03014852003263], - [-1.461636165584485, 49.03022303603474], - [-1.4616182930593, 49.03028752484309], - [-1.461595620092388, 49.03042997738192], - [-1.461598743787536, 49.03059539637252], - [-1.461611710527563, 49.03073075976338], - [-1.461604314478343, 49.03089062052405], - [-1.461584532035902, 49.0310785125175], - [-1.461592122187334, 49.031202162416], - [-1.461610475380447, 49.031287801540905], - [-1.461657194212456, 49.0313695697353], - [-1.461710376473961, 49.031416441731], - [-1.461764829853785, 49.031439486446786], - [-1.461764829853785, 49.031439486446786] - ] - }, - "length": 0.15470776890167054, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44629", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00922", - "bus2": "MVBus00923", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461764829853785, 49.031439486446786], - [-1.461764829853785, 49.031439486446786], - [-1.461860958343164, 49.03148037735713], - [-1.461943203005254, 49.03155553671749], - [-1.461961166928875, 49.0316258310834], - [-1.461930122452196, 49.03176254009382], - [-1.461830112763931, 49.032079204786434], - [-1.461618693822098, 49.03268167812438], - [-1.461554088632036, 49.03287256955884], - [-1.46149220999655, 49.033155408592826], - [-1.461455604951194, 49.03332276525344], - [-1.461397716173976, 49.033603497990065], - [-1.461397716173976, 49.033603497990065] - ] - }, - "length": 0.2505341950033376, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40644", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00923", - "bus2": "MVBus00924", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461397716173976, 49.033603497990065], - [-1.461397716173976, 49.033603497990065], - [-1.461374334072053, 49.03373633729623], - [-1.461313027865901, 49.03419124299641], - [-1.461339950046074, 49.03472244037516], - [-1.461430258548458, 49.03515735668398], - [-1.461516985174621, 49.035477339466745], - [-1.461516985174621, 49.035477339466745] - ] - }, - "length": 0.209729608293412, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36669", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00924", - "bus2": "MVBus00925", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461516985174621, 49.035477339466745], - [-1.461516985174621, 49.035477339466745], - [-1.461636332041758, 49.03583319748804], - [-1.461816284715681, 49.03634269548755], - [-1.462016424917492, 49.03693273545428], - [-1.462146034652944, 49.03720964603532], - [-1.462095133531544, 49.03748604452549], - [-1.462084116795383, 49.03772371318449], - [-1.461985445551021, 49.03825455769082], - [-1.461950971820154, 49.038302489626595], - [-1.461974505019591, 49.038364194840355], - [-1.46212063599448, 49.038478202386436], - [-1.462193923769989, 49.03863511842277], - [-1.462168237053737, 49.038673405629154], - [-1.462180093910419, 49.03876983066938], - [-1.46243221826143, 49.03903347017005], - [-1.46263604146269, 49.03928615826684], - [-1.462766500065885, 49.0395099526952], - [-1.462851100287034, 49.03969149170124], - [-1.462989132345855, 49.04040528968407], - [-1.463040807545705, 49.04067251449128], - [-1.463061651999394, 49.04087447890193], - [-1.463032542056454, 49.04105963441946], - [-1.462973299953647, 49.04135191554204], - [-1.462916592883118, 49.0416784643918], - [-1.462946167168396, 49.041886736392236], - [-1.463136404391613, 49.04227724041701], - [-1.463329820395658, 49.04267426437182], - [-1.463544397108902, 49.043044893991826], - [-1.463828008882034, 49.04340292716677], - [-1.463895209017004, 49.04348776704204], - [-1.463927453590852, 49.04355174059892], - [-1.463938172038025, 49.04359211754275], - [-1.463944322304577, 49.043645729645746], - [-1.463937029008645, 49.043696863573665], - [-1.463937029008645, 49.043696863573665] - ] - }, - "length": 0.9535930549356172, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00925", - "bus2": "MVBus00926", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.463937029008645, 49.043696863573665], - [-1.463937029008645, 49.043696863573665], - [-1.463932036108716, 49.04371771424355], - [-1.464028315492035, 49.04395531525315], - [-1.464101011375718, 49.04413467675768], - [-1.464170822826148, 49.04431017153663], - [-1.4642307685798, 49.044548136567656], - [-1.464242126929302, 49.04465296161326], - [-1.464192634662235, 49.044738212101564], - [-1.464123005795986, 49.04478027252261], - [-1.463878359794863, 49.04484941111561], - [-1.463829558240103, 49.04487806084146], - [-1.463797276912264, 49.044900598232616], - [-1.463773006878715, 49.04493324466457], - [-1.463760217927605, 49.04497349671277], - [-1.463763475431285, 49.045100098907064], - [-1.463787589992099, 49.04542765671082], - [-1.463821255391476, 49.04595093383802], - [-1.463835997570601, 49.0461799907788], - [-1.463995464115393, 49.046275309101084], - [-1.463995464115393, 49.046275309101084] - ] - }, - "length": 0.312439862493794, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42221", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00926", - "bus2": "MVBus00927", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.463995464115393, 49.046275309101084], - [-1.463995464115393, 49.046275309101084], - [-1.464069042560407, 49.04630805448473], - [-1.464140902913082, 49.04631746376791], - [-1.465217946428581, 49.04630190746093], - [-1.466279929493993, 49.04627512544945], - [-1.466413516530068, 49.04630128113903], - [-1.46676497215578, 49.04629009305314], - [-1.46691734142602, 49.046329684706066], - [-1.468030228897367, 49.04631764005887], - [-1.468455203328844, 49.04629007125595], - [-1.4703770481289, 49.0462943407502], - [-1.47131735893747, 49.046306477203075], - [-1.471435026930273, 49.046309743935716], - [-1.471676151068217, 49.04634650061685], - [-1.471935671419052, 49.046386062051376], - [-1.472327425401432, 49.046395911187254], - [-1.47284001029685, 49.04639828072449], - [-1.473152070203375, 49.04638365183779], - [-1.474118581233217, 49.04626862023006], - [-1.474679953079951, 49.046201799104665], - [-1.47489493713142, 49.04618069916942], - [-1.4750842949228, 49.04619103149806], - [-1.475332693490119, 49.04622988787032], - [-1.475766004920796, 49.04636342399073], - [-1.476145378400156, 49.04648932360601], - [-1.476330395378819, 49.04653721794178], - [-1.476592479618372, 49.04656861772087], - [-1.477012937754514, 49.04657624846328], - [-1.477695238534076, 49.04656382168347], - [-1.47819266270097, 49.046601737538595], - [-1.478625741644053, 49.046683818969136], - [-1.47925463743429, 49.046911676246324], - [-1.479822424071774, 49.04708300527772], - [-1.480038189922119, 49.04711353762354], - [-1.48037069037245, 49.047086540734135], - [-1.480587418197079, 49.04708195496803], - [-1.480816349401783, 49.047098030693704], - [-1.481276208974316, 49.04710906517078], - [-1.481587049376394, 49.04707807891043], - [-1.481891418404565, 49.047007534062715], - [-1.482179762587331, 49.04696089162068], - [-1.482357439581577, 49.04695755992133], - [-1.482483073332732, 49.04697225640185], - [-1.482609535036043, 49.0469870432378], - [-1.482729409695775, 49.046983093854905], - [-1.482854449721809, 49.04694167061444], - [-1.483175454271017, 49.04680743491148], - [-1.483706524272305, 49.04662671606613], - [-1.484111075449247, 49.046515535981584], - [-1.484454315362873, 49.046441402057084], - [-1.484669830905945, 49.046420473865055], - [-1.484714676998851, 49.04644944765004], - [-1.484704778096456, 49.046604144902865], - [-1.484528551174364, 49.04720391302258], - [-1.48454047037633, 49.04736492956399], - [-1.484666398692526, 49.047672001629984], - [-1.485184862589901, 49.04881093069458], - [-1.485381284192793, 49.04910872946407], - [-1.485759352242295, 49.049552766543556], - [-1.486005671513143, 49.04975540402274], - [-1.486403444498629, 49.04993682097672], - [-1.487346462473604, 49.05032066105498], - [-1.488836559704555, 49.05097936517104], - [-1.488862704304587, 49.0510440227481], - [-1.488848930437791, 49.051098263007546], - [-1.488227127771161, 49.051639789405506], - [-1.487556489830751, 49.05221422786104], - [-1.487556424187144, 49.05222498079158], - [-1.487571747077065, 49.052234116603024], - [-1.487571747077065, 49.052234116603024] - ] - }, - "length": 2.372234450264817, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40645", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00927", - "bus2": "MVLV06709", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.487571747077065, 49.052234116603024], - [-1.487571747077065, 49.052234116603024], - [-1.487651890320432, 49.05227754151106], - [-1.487822553785858, 49.05234445561092], - [-1.489515792790746, 49.05299984324265], - [-1.489857570275332, 49.053167487575], - [-1.490140828951293, 49.05343440155237], - [-1.490300367950366, 49.053660223145656], - [-1.490385669777245, 49.05410766739315], - [-1.490395847296826, 49.05422535762595], - [-1.490409177190194, 49.054238983212024], - [-1.49047246004676, 49.05425063090957], - [-1.491034531883442, 49.05425484723805], - [-1.49151536338405, 49.05421551174843], - [-1.492099029931455, 49.05419510942734], - [-1.49232210376549, 49.05422214766643], - [-1.492428989749512, 49.054225559648884], - [-1.492794706365494, 49.05421212946958], - [-1.493222489847871, 49.0542291861421], - [-1.494326600450905, 49.054352758481116], - [-1.495167833961877, 49.054438599375935], - [-1.496501911794578, 49.054506914985375], - [-1.497981927213178, 49.0545790879453], - [-1.499113964089357, 49.0546931736638], - [-1.500871438503947, 49.054858955339654], - [-1.501250579299137, 49.05488609256451], - [-1.501806537308233, 49.05491267641779], - [-1.502761443817919, 49.054930667119464], - [-1.50336542424111, 49.05492653372335], - [-1.505015876537338, 49.054852471957986], - [-1.5053352571529, 49.05484984074067], - [-1.50614700417173, 49.05486574117562], - [-1.506632090929439, 49.05490360559451], - [-1.507468529447238, 49.05505617989572], - [-1.508595945035842, 49.05521466076088], - [-1.509358017674797, 49.055304695874256], - [-1.510441859022179, 49.05534617582712], - [-1.511507872963141, 49.055304209748975], - [-1.512865308022292, 49.05513101312053], - [-1.515033691375231, 49.054743802561354], - [-1.516813952978659, 49.05438788174744], - [-1.517100914513969, 49.05431260892745], - [-1.518491808439635, 49.05404525110661], - [-1.519765288864623, 49.05380619132052], - [-1.520110602903428, 49.05376084880229], - [-1.520902379222519, 49.05360814668655], - [-1.521008870275287, 49.053570161144826], - [-1.521056703707298, 49.05366913668579], - [-1.521066080032439, 49.05368854568226], - [-1.5210751434046905, 49.05368710146948] - ] - }, - "length": 2.615219412770797, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35804", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06709", - "bus2": "MVBus23996", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5210751434046905, 49.05368710146948], - [-1.521084206776942, 49.05368565725669], - [-1.521074659293919, 49.053665057228606], - [-1.521019038424444, 49.053545037975155], - [-1.521031745635214, 49.05352714712934], - [-1.521298437560975, 49.05346853239154], - [-1.52301610506183, 49.053166439178405], - [-1.52429125419748, 49.052952403545596], - [-1.524862199034329, 49.052856571189004], - [-1.525869579659604, 49.0526839023093], - [-1.527064397653925, 49.05246272577289], - [-1.527646099962972, 49.05235328866881], - [-1.527754331702429, 49.052313234264034], - [-1.527730429914871, 49.05205523429216], - [-1.527703405020569, 49.05172498351828], - [-1.52762871213291, 49.05144199588262], - [-1.527603181273045, 49.05136644833384], - [-1.527326083913721, 49.05083072981464], - [-1.527280366294644, 49.05073070715918], - [-1.527272379353617, 49.050683804542594], - [-1.527295823545118, 49.05064152634071], - [-1.527305659304398, 49.050631392784375], - [-1.527305659304398, 49.050631392784375] - ] - }, - "length": 0.720675603266393, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35803", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23996", - "bus2": "MVBus23998", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527305659304398, 49.050631392784375], - [-1.527305659304398, 49.050631392784375], - [-1.527327795736221, 49.05060858083972], - [-1.527714856237386, 49.05050963903404], - [-1.527960395447837, 49.05044686148177], - [-1.528224832317365, 49.050379270582894], - [-1.528526227661762, 49.050339677843084], - [-1.5287272517413, 49.05032916148638], - [-1.528853481701537, 49.050320048163094], - [-1.529255856264083, 49.05028290823768], - [-1.529585909187001, 49.05021896688841], - [-1.529928455344019, 49.05015864181593], - [-1.53019609145295, 49.05011882384198], - [-1.530567897579363, 49.050081661171], - [-1.530750873019423, 49.05006337659347], - [-1.530799108036813, 49.05005551741369], - [-1.530799108036813, 49.05005551741369] - ] - }, - "length": 0.2653430767218643, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42222", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23998", - "bus2": "MVLV16847", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530799108036813, 49.05005551741369], - [-1.530799108036813, 49.05005551741369], - [-1.531148774597256, 49.04999854796747], - [-1.531745002481844, 49.04989582567005], - [-1.532032387461069, 49.04985436537959], - [-1.532601502578957, 49.049777644667515], - [-1.532825836433212, 49.049731188963754], - [-1.53333247636557, 49.04959619171755], - [-1.533898658024065, 49.04941907453518], - [-1.53501054220607, 49.04907754206871], - [-1.535164964641367, 49.04903010858185], - [-1.535659149246876, 49.04889874349167], - [-1.536239538693067, 49.04874827947066], - [-1.536526048629258, 49.04868506410161], - [-1.536860671923363, 49.04860656788547], - [-1.537021619929697, 49.048560953579134], - [-1.53715418505952, 49.04851813972706], - [-1.537564194458377, 49.048420291941994], - [-1.538061599815586, 49.048306454790044], - [-1.538624104150744, 49.04818392710703], - [-1.538920579868436, 49.04811934786248], - [-1.539089925695431, 49.04801098421811], - [-1.539085781863044, 49.047994987336814], - [-1.539071700833383, 49.047983361416655], - [-1.5390729458236736, 49.04797870565177] - ] - }, - "length": 0.654051154512833, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43258", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16847", - "bus2": "MVBus28325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5390729458236736, 49.04797870565177], - [-1.539074190813964, 49.04797404988689], - [-1.53908716103271, 49.047980907536555], - [-1.539101185446201, 49.047988315777985], - [-1.539316605693734, 49.047851025638565], - [-1.539347393978268, 49.047812824813754], - [-1.539351613721101, 49.047799390584025], - [-1.539354579098979, 49.04779604651547], - [-1.539451083943058, 49.04774387363535], - [-1.539474870357235, 49.04773254857634], - [-1.539493036727845, 49.04772712784839], - [-1.539543500143926, 49.047726021307405], - [-1.539561202747304, 49.047721533293696], - [-1.539618930783724, 49.04769267868199], - [-1.540530019017743, 49.047228988219814], - [-1.54063297161658, 49.047183784507276], - [-1.540651282952445, 49.04717993333371], - [-1.540664008955005, 49.0471851793114], - [-1.540789769187251, 49.04727014831849], - [-1.540883135200533, 49.04742730671792], - [-1.541076723447483, 49.0477483283096], - [-1.541267472799378, 49.048044646429545], - [-1.541277164852435, 49.0480583309047], - [-1.541298138103624, 49.04806258036238], - [-1.541313581198498, 49.04805862427436], - [-1.541390796303494, 49.04802900126815], - [-1.541469818361159, 49.04800448373887], - [-1.541550867843203, 49.047972702861664], - [-1.542321682529178, 49.04758500516208], - [-1.542345103576804, 49.047579755249956], - [-1.542477765494462, 49.04759587047988], - [-1.542515582025845, 49.04760696821268], - [-1.542537705937597, 49.04762416254769], - [-1.542552232788907, 49.047649178920054], - [-1.542619622656282, 49.04779553766782], - [-1.542619622656282, 49.04779553766782] - ] - }, - "length": 0.38872330148286005, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36671", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28325", - "bus2": "MVBus28327", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542619622656282, 49.04779553766782], - [-1.542619622656282, 49.04779553766782], - [-1.542641658386537, 49.047807003852895], - [-1.542744749183823, 49.047787686778726], - [-1.542757617444419, 49.047791542407566], - [-1.542770401208704, 49.04781922444621], - [-1.542770401208704, 49.04781922444621] - ] - }, - "length": 0.014141871633893131, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42285", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28327", - "bus2": "MVBus28328", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542770401208704, 49.04781922444621], - [-1.542770401208704, 49.04781922444621], - [-1.543160132707009, 49.04855842579815], - [-1.543239284572438, 49.04870644447264], - [-1.543252843482533, 49.04871766403634], - [-1.543274146587015, 49.0487230180555], - [-1.54329582926091, 49.04872231386107], - [-1.543398491285356, 49.04869872771487], - [-1.54349701216967, 49.04872147480368], - [-1.543880961875083, 49.04864378567214], - [-1.543922152243239, 49.04861071580438], - [-1.544634814721229, 49.048458369585916], - [-1.544702393697539, 49.04846880559844], - [-1.544702393697539, 49.04846880559844] - ] - }, - "length": 0.21885935424672956, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40598", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28328", - "bus2": "MVLV07026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544702393697539, 49.04846880559844], - [-1.544702393697539, 49.04846880559844], - [-1.544764431904579, 49.048466897964474], - [-1.544752904038435, 49.04845138404925], - [-1.544752904038435, 49.04845138404925] - ] - }, - "length": 0.006460115007856009, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45089", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28327", - "bus2": "MVBus28330", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542770401208704, 49.04781922444621], - [-1.542770401208704, 49.04781922444621], - [-1.54269578108089, 49.0477870187179], - [-1.542593000971066, 49.047579892861926], - [-1.542633707477476, 49.04748756783966], - [-1.542862708504378, 49.04736940703681], - [-1.542862708504378, 49.04736940703681] - ] - }, - "length": 0.06272664872796083, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42356", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28330", - "bus2": "MVBus28331", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542862708504378, 49.04736940703681], - [-1.542862708504378, 49.04736940703681], - [-1.542944055746831, 49.0473286815882], - [-1.542914598163958, 49.047267631884175], - [-1.543687668838576, 49.046970116754935], - [-1.543922806647433, 49.046880850250076], - [-1.543922806647433, 49.046880850250076] - ] - }, - "length": 0.09993459681209216, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38222", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28331", - "bus2": "MVLV03204", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543922806647433, 49.046880850250076], - [-1.543922806647433, 49.046880850250076], - [-1.54394434314334, 49.04687475253979], - [-1.544013663228632, 49.0469762885837], - [-1.544018357653604, 49.04697501147895] - ] - }, - "length": 0.01409106855686576, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36543", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03204", - "bus2": "MVBus30451", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544018357653604, 49.04697501147895], - [-1.544023052078576, 49.04697373437419], - [-1.543953161366732, 49.04686824925286], - [-1.543968182557054, 49.04686214725682], - [-1.543968182557054, 49.04686214725682] - ] - }, - "length": 0.014086255823606729, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37010", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30451", - "bus2": "MVBus30452", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543968182557054, 49.04686214725682], - [-1.543968182557054, 49.04686214725682], - [-1.544605930612236, 49.04663486061268], - [-1.544605930612236, 49.04663486061268] - ] - }, - "length": 0.053032760086801294, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44728", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30452", - "bus2": "MVBus30453", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544605930612236, 49.04663486061268], - [-1.544605930612236, 49.04663486061268], - [-1.544687266748538, 49.04661568174298], - [-1.544873477507897, 49.046579653945265], - [-1.545161809170049, 49.04653566514119], - [-1.545870476732643, 49.04648912641739], - [-1.54642582085625, 49.04651351450512], - [-1.546565506483741, 49.046617737268065], - [-1.547051839426172, 49.04689749314179], - [-1.547863685664065, 49.04722293849653], - [-1.547947345951973, 49.04729393860409], - [-1.548474597424071, 49.04730937037455], - [-1.548408612820894, 49.047149527293634], - [-1.548357265100732, 49.04693155608327], - [-1.548313755206265, 49.04625321973305], - [-1.548385077336012, 49.04625140406671], - [-1.548385077336012, 49.04625140406671] - ] - }, - "length": 0.43934262295050397, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36461", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30453", - "bus2": "MVLV06428", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548385077336012, 49.04625140406671], - [-1.548385077336012, 49.04625140406671], - [-1.548400674688752, 49.04647265231329], - [-1.548377048131278, 49.046503164420834], - [-1.548489932114923, 49.0471557715872], - [-1.548693332290306, 49.04758288751493], - [-1.548803567535187, 49.04762596910421], - [-1.549760548142787, 49.04856059337284], - [-1.550092824062448, 49.0489365146065], - [-1.549997403449801, 49.04903588566835], - [-1.549997403449801, 49.04903588566835] - ] - }, - "length": 0.3473397731794154, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37534", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30453", - "bus2": "MVBus30454", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548385077336012, 49.04625140406671], - [-1.548385077336012, 49.04625140406671], - [-1.548364120203606, 49.04610387973278], - [-1.548355356077129, 49.046009796288175], - [-1.548360955608255, 49.04600072524646], - [-1.548377885164062, 49.045989801244055], - [-1.548508240919533, 49.045940199402885], - [-1.54868542533753, 49.045857954060715], - [-1.548694609138635, 49.0458543175118], - [-1.548706004463852, 49.045854423719675], - [-1.548712488296865, 49.04585692090286], - [-1.548786100796683, 49.04590499927998], - [-1.548795047362359, 49.04590439339881], - [-1.548795047362359, 49.04590439339881] - ] - }, - "length": 0.06706091210200767, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40646", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30454", - "bus2": "MVLV10304", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548795047362359, 49.04590439339881], - [-1.548795047362359, 49.04590439339881], - [-1.548796872525014, 49.04590554861655], - [-1.548818826142154, 49.04593173530309], - [-1.548833187871386, 49.04595815991977], - [-1.548856389053909, 49.04604765320563], - [-1.548856389053909, 49.04604765320563] - ] - }, - "length": 0.0167271216600722, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33972", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30454", - "bus2": "MVLV19090", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548795047362359, 49.04590439339881], - [-1.548795047362359, 49.04590439339881], - [-1.54874415457815, 49.045871041746736], - [-1.548716449275836, 49.04584972050827], - [-1.548717643632098, 49.04583976707605], - [-1.548860464140761, 49.045759574796705], - [-1.549451583508427, 49.04544475317919], - [-1.550124675523013, 49.04510063033477], - [-1.550542210145414, 49.044888338323226], - [-1.551003323565583, 49.044621040772924], - [-1.551452675126317, 49.044343012852565], - [-1.55147494894388, 49.04433509932164], - [-1.551493557475337, 49.044331218752085], - [-1.551520085330858, 49.04432708940905], - [-1.551536357145032, 49.04431871445041], - [-1.55170559862644, 49.04421582284543], - [-1.551773515207925, 49.04418027845073], - [-1.552397691066736, 49.043807656922176], - [-1.553450620192724, 49.04324002412785], - [-1.553616765696485, 49.04313591675201], - [-1.554536364969822, 49.04261835593874], - [-1.554630935627503, 49.0425731604297], - [-1.554728121323984, 49.04253778530313], - [-1.554793246841393, 49.042526999598884], - [-1.555128642161776, 49.04237734847322], - [-1.555215804189633, 49.04230886677218], - [-1.555291918479844, 49.04224905815403], - [-1.55556690835119, 49.04211782924832], - [-1.555773706653381, 49.0420367756479], - [-1.555927460897082, 49.0420020392582], - [-1.5563621559803, 49.041870210308446], - [-1.557243754481307, 49.04164329797238], - [-1.557577765808976, 49.041575431176554], - [-1.557911290374896, 49.04152615806614], - [-1.558023430028632, 49.041464291224436], - [-1.55860027153412, 49.041386380315835], - [-1.558701413702804, 49.04133566782017], - [-1.558726454865058, 49.04126796753512], - [-1.558809121298518, 49.04125226196462], - [-1.55881269212674, 49.04125814200877] - ] - }, - "length": 0.9222868288749778, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV19090", - "bus2": "MVBus35324", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.55881269212674, 49.04125814200877], - [-1.558816262954962, 49.04126402205292], - [-1.55879960852441, 49.041267480218785], - [-1.558784975477743, 49.04127052157784], - [-1.558783151353761, 49.041281170529324], - [-1.558804685499073, 49.04130628962899], - [-1.558842483103754, 49.04132548913312], - [-1.558887539075615, 49.041328068381716], - [-1.559019832525288, 49.041309682528684], - [-1.559063379597612, 49.041292265614636], - [-1.559193882095625, 49.0412733621665], - [-1.559305690169221, 49.041263165618645], - [-1.55936280454823, 49.0412508932076], - [-1.559427355561703, 49.04122835554723], - [-1.559514529559971, 49.04118696896896], - [-1.559514529559971, 49.04118696896896] - ] - }, - "length": 0.06282985142000849, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44630", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35324", - "bus2": "MVBus35325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559514529559971, 49.04118696896896], - [-1.559514529559971, 49.04118696896896], - [-1.559709096386036, 49.04111279398212], - [-1.559745683551936, 49.04111160050436], - [-1.559821585839333, 49.04115678164543], - [-1.559892725026131, 49.041219905192385], - [-1.559943136765103, 49.041251558581735], - [-1.560000274635698, 49.04126806650347], - [-1.560334006180506, 49.04130426026244], - [-1.560412409457703, 49.04130170232339], - [-1.560461807273766, 49.04130813399454], - [-1.560806126227082, 49.041345699454745], - [-1.561545394372359, 49.041513337826096], - [-1.561893552787597, 49.04154118410379], - [-1.561893552787597, 49.04154118410379] - ] - }, - "length": 0.1874883237140566, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33280", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35325", - "bus2": "MVLV07041", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561893552787597, 49.04154118410379], - [-1.561893552787597, 49.04154118410379], - [-1.561927522567093, 49.04155625201814], - [-1.561970866675699, 49.041560622411126], - [-1.56199895611086, 49.04162613053569], - [-1.56199895611086, 49.04162613053569] - ] - }, - "length": 0.01377110907182497, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42224", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35325", - "bus2": "MVBus35326", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561893552787597, 49.04154118410379], - [-1.561893552787597, 49.04154118410379], - [-1.562524220667454, 49.04159162112046], - [-1.562785661856347, 49.04158423815972], - [-1.563003832429402, 49.0415357743919], - [-1.563065351941532, 49.04151768825974], - [-1.563086273529028, 49.041471075439105], - [-1.56329632690482, 49.04129197847891], - [-1.563041784408246, 49.040419552504396], - [-1.564656394675905, 49.0399616456111], - [-1.564656394675905, 49.0399616456111] - ] - }, - "length": 0.3452553851048107, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43259", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35326", - "bus2": "MVBus35327", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564656394675905, 49.0399616456111], - [-1.564656394675905, 49.0399616456111], - [-1.56477166927779, 49.04006908383008], - [-1.564846152553497, 49.04018074239322], - [-1.564944563084799, 49.0403022448436], - [-1.565293663892719, 49.04062619676181], - [-1.565553656895697, 49.040849583902435], - [-1.56575972902615, 49.040805891692656], - [-1.566786580333107, 49.040206038020955], - [-1.567592032234608, 49.039726108679], - [-1.567785322782766, 49.03958767763209], - [-1.567923196296619, 49.039552688609305], - [-1.568512926040833, 49.03949090683377], - [-1.568582327630608, 49.03946092678065], - [-1.568672147050414, 49.03936653489037], - [-1.568819877921556, 49.03932401583802], - [-1.56889755134967, 49.03931854303925], - [-1.56889755134967, 49.03931854303925] - ] - }, - "length": 0.4259832199447021, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43094", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35327", - "bus2": "MVLV12057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56889755134967, 49.03931854303925], - [-1.56889755134967, 49.03931854303925], - [-1.569207283853655, 49.03928810855918], - [-1.569336793905305, 49.03926089488837], - [-1.569520780594536, 49.03922223665458], - [-1.569801212742898, 49.03914586607496], - [-1.570369458462948, 49.03897495921441], - [-1.570755358618667, 49.03884795560977], - [-1.570958583583596, 49.03878415764787], - [-1.571311362440169, 49.0386734138073], - [-1.571681307813345, 49.03853202987447], - [-1.571859227161483, 49.03845196386364], - [-1.572196877148248, 49.03829562919721], - [-1.572383303985448, 49.038212089947066], - [-1.57258962514206, 49.03813429617895], - [-1.572806169237924, 49.03802416473127], - [-1.573001586241041, 49.03791660481103], - [-1.5731605367009, 49.0378228342147], - [-1.573176480418269, 49.037838929947284], - [-1.573180852027758, 49.03784334837375], - [-1.573190573011825, 49.03785316989166], - [-1.5732046465483145, 49.03784077453285] - ] - }, - "length": 0.3608666904470401, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42542", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12057", - "bus2": "MVBus38707", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5732046465483145, 49.03784077453285], - [-1.573218720084804, 49.03782837917405], - [-1.573219651809008, 49.037819720451296], - [-1.57322154365186, 49.03781596970849], - [-1.573227549864818, 49.03781215625664], - [-1.573258148212849, 49.03779913446993], - [-1.573312324229853, 49.037779591683716], - [-1.573325829780514, 49.03777487593759], - [-1.573331638301449, 49.03777025921228], - [-1.57333527060948, 49.03776437315942], - [-1.573339785855734, 49.03774864236069], - [-1.57334169597768, 49.03769833099782], - [-1.573342790395212, 49.03760978164462], - [-1.573343277836613, 49.03754321409212], - [-1.57334572821313, 49.03751521585298], - [-1.573352388295262, 49.0374920282099], - [-1.573361087536584, 49.03747390216129], - [-1.573372352155105, 49.03745875114554], - [-1.573387770905307, 49.03744930325708], - [-1.573412089368376, 49.03744154337803], - [-1.573449039487969, 49.03743596113151], - [-1.573463336845917, 49.03743501622289], - [-1.573545656555698, 49.03743329292324], - [-1.573791882873774, 49.037429469250924], - [-1.573799928885973, 49.03743072633203], - [-1.573809545526832, 49.03742941279846], - [-1.573828886943377, 49.037428032786806], - [-1.574062099194975, 49.03742240336289], - [-1.57413641939213, 49.037423469769344], - [-1.574167198997303, 49.03742115735632], - [-1.574266818502687, 49.03741838125526], - [-1.574296785444005, 49.03741979323224], - [-1.574327059797006, 49.03741803714888], - [-1.574457772344386, 49.0374169058892], - [-1.574640115048536, 49.037407074981736], - [-1.574821864527245, 49.03739501394241], - [-1.574941200380019, 49.03739201444614], - [-1.575122163416115, 49.03738727536484], - [-1.575394193281306, 49.037385905212446], - [-1.575498663890308, 49.03738881731566], - [-1.575639549947427, 49.03739354154789], - [-1.575757799980146, 49.03739752257972], - [-1.575788401204087, 49.03739827461094], - [-1.575794645891708, 49.037397611198905], - [-1.575801949128659, 49.03739466383085], - [-1.575810063932191, 49.037391590909166], - [-1.575818206129822, 49.03739068539587], - [-1.575834270796418, 49.03739121181995], - [-1.575957898138581, 49.03739409879968], - [-1.576095318777356, 49.03739462639695], - [-1.576215091482847, 49.03739377962248], - [-1.576486992239081, 49.03738727385578], - [-1.576546879239658, 49.037384241099375], - [-1.576573031719577, 49.037382268603565], - [-1.576581760527585, 49.03738007522339], - [-1.576590121040657, 49.03737681425423], - [-1.576593473177484, 49.037370667353066], - [-1.576596601253085, 49.03735993925844], - [-1.576608053162535, 49.03732127227581], - [-1.576641915144342, 49.03715524546071], - [-1.576653583140471, 49.037058584888], - [-1.576648428526834, 49.03699509008956], - [-1.576636201038921, 49.03694967733421], - [-1.576619850091405, 49.03691088661069], - [-1.576604424216662, 49.03688718975103], - [-1.576553450964756, 49.03682112945253], - [-1.576480923776967, 49.03672833406783], - [-1.576413985226045, 49.03664391181168], - [-1.576358296651647, 49.036573588328686], - [-1.57607637655589, 49.036267969824294], - [-1.575998648032988, 49.03619084661254], - [-1.575874203252597, 49.03606155884443], - [-1.575802824516908, 49.03597287311777], - [-1.575756275334331, 49.03590377048766], - [-1.575727691538593, 49.035854142942476], - [-1.575693926884324, 49.035776955936235], - [-1.57566337528602, 49.03570587169013], - [-1.575636608013797, 49.03561845063443], - [-1.575624434750906, 49.0355787941511], - [-1.575604884901121, 49.03550463236389], - [-1.575578677413021, 49.03535325930008], - [-1.575545520041772, 49.035150434312186], - [-1.575530783310489, 49.035035042894926], - [-1.575498337365689, 49.034731975399154], - [-1.57547572298852, 49.0345324757854], - [-1.575446320871773, 49.03432502007674], - [-1.575396063433757, 49.03387119483934], - [-1.575393172148881, 49.03379655024464], - [-1.575384540079603, 49.03373065897707], - [-1.575385733663119, 49.03370415026993], - [-1.575398440902064, 49.03366742153607], - [-1.575414634194523, 49.03363823518167], - [-1.575447523911081, 49.03358650387202], - [-1.575463612374894, 49.03356839643247], - [-1.575478589266007, 49.033544648200454], - [-1.575516519112069, 49.03347527929619], - [-1.575582252380262, 49.0333296754309], - [-1.575600779975003, 49.03326429799713], - [-1.575607794489839, 49.03320246470485], - [-1.575603504890467, 49.03309437846214], - [-1.575603504890467, 49.03309437846214] - ] - }, - "length": 0.7810390610336964, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34031", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38707", - "bus2": "MVBus38708", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575603504890467, 49.03309437846214], - [-1.575603504890467, 49.03309437846214], - [-1.575602996997248, 49.033042886390724], - [-1.575601372013147, 49.03295136657925], - [-1.57559477053379, 49.03286441839019], - [-1.575589899301903, 49.03276454758031], - [-1.575583251210392, 49.03267355218401], - [-1.575575970203807, 49.03257618953205], - [-1.575563503307198, 49.03244613913025], - [-1.575553558445611, 49.03236201757182], - [-1.575539233951937, 49.03226903332029], - [-1.575521126114076, 49.032192574822034], - [-1.575509459945001, 49.03211426781591], - [-1.575495114429851, 49.032026241668795], - [-1.575482505888749, 49.03195518124611], - [-1.575480886009266, 49.03193452284231], - [-1.575473482255541, 49.03190163782298], - [-1.575451210957967, 49.03179821622847], - [-1.575436647969154, 49.03173693675176], - [-1.575414180308222, 49.03162604492889], - [-1.575386765238798, 49.03151649378895], - [-1.575380339240479, 49.03147502042222], - [-1.575360382267668, 49.03139925223867], - [-1.57533491590319, 49.03130404170185], - [-1.575308538661513, 49.03119391669762], - [-1.57528219235144, 49.031097925218546], - [-1.575257767889541, 49.03101411592138], - [-1.575235218451927, 49.03093663318588], - [-1.575201281883382, 49.03085387322508], - [-1.575179878456012, 49.03080993936897], - [-1.575137494188849, 49.03075546429381], - [-1.57509519538822, 49.03068640199159], - [-1.575025393797894, 49.030601982652335], - [-1.574994935010283, 49.03056133243352], - [-1.574948495115009, 49.03051960416846], - [-1.574897217331448, 49.03048066152195], - [-1.574818544446792, 49.03042958824526], - [-1.574724373268428, 49.03038850555287], - [-1.574648501390273, 49.030353814247924], - [-1.574557700390914, 49.0303172995776], - [-1.574418378028872, 49.03027154135467], - [-1.574289911980064, 49.030226399132665], - [-1.574122499501011, 49.03017178958353], - [-1.573924786762042, 49.03010281387126], - [-1.573742698751843, 49.03004104578526], - [-1.573524216044866, 49.029970977103666], - [-1.573334467002688, 49.029905779424695], - [-1.573141121844727, 49.02984530574219], - [-1.572973976724636, 49.02979238635705], - [-1.572810449324507, 49.02974007708292], - [-1.572692315969053, 49.02969908453164], - [-1.572683931400068, 49.029693519851854], - [-1.572677615651301, 49.029682750065305], - [-1.572676439284145, 49.02966793425671], - [-1.572677573923785, 49.02963376187036], - [-1.572674852933138, 49.02957667396216], - [-1.572677885032044, 49.02956828831333], - [-1.572686430911811, 49.02955863350618], - [-1.572702625592692, 49.02954862033733], - [-1.572736461513759, 49.02953324315701], - [-1.572825811149359, 49.02950110430073], - [-1.572947111279, 49.02946085658546], - [-1.57306906367093, 49.02942886477975], - [-1.573236218396324, 49.0293848841838], - [-1.573412073815963, 49.02933655173863], - [-1.573561608963296, 49.02929497400124], - [-1.573715621311486, 49.02925109013898], - [-1.573783937844556, 49.02922651309621], - [-1.573859548036811, 49.02920429735396], - [-1.574028292177208, 49.02915783431091], - [-1.574122927628097, 49.02912848139886], - [-1.574404882709284, 49.02904357212648], - [-1.574517922141982, 49.029011528786114], - [-1.574658045937291, 49.02896855738001], - [-1.574837352385783, 49.028915422166094], - [-1.574967177186988, 49.02888443007432], - [-1.575201529299176, 49.02882608126887], - [-1.575284264037069, 49.02879696427797], - [-1.575415481427542, 49.02875745070805], - [-1.575415481427542, 49.02875745070805] - ] - }, - "length": 0.7174874457617614, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45219", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38708", - "bus2": "MVLV10414", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575415481427542, 49.02875745070805], - [-1.575415481427542, 49.02875745070805], - [-1.575226867647049, 49.02878253259593], - [-1.573983343738142, 49.02677037365746], - [-1.573983343738142, 49.02677037365746] - ] - }, - "length": 0.255618279052932, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33025", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38708", - "bus2": "MVBus38709", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575415481427542, 49.02875745070805], - [-1.575415481427542, 49.02875745070805], - [-1.584103053761133, 49.026184808059035], - [-1.586145591666526, 49.025624035517666], - [-1.586163645822428, 49.02561765715403], - [-1.586163645822428, 49.02561765715403] - ] - }, - "length": 0.8601561712055001, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43303", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38707", - "bus2": "MVLV14661", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575603504890467, 49.03309437846214], - [-1.575603504890467, 49.03309437846214], - [-1.575606556441053, 49.033086253036196], - [-1.575612726752676, 49.03308118344505], - [-1.575623380423884, 49.033075508129706], - [-1.575664329282691, 49.03305484080282], - [-1.575677643206582, 49.03305176848409], - [-1.575698736056475, 49.033053479738435], - [-1.575754110854216, 49.0330660881236], - [-1.575789041057706, 49.03307488566882], - [-1.575798893480743, 49.0330817516294], - [-1.575815021719877, 49.033102096665246], - [-1.575820358399386, 49.03313333990028], - [-1.575820358399386, 49.03313333990028] - ] - }, - "length": 0.02313408212857222, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35327", - "bus2": "MVLV18001", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56889755134967, 49.03931854303925], - [-1.56889755134967, 49.03931854303925], - [-1.568893756419509, 49.039313241894895], - [-1.568819670901675, 49.0393127762733], - [-1.568810550960936, 49.03926982557076], - [-1.568804059103535, 49.039169351653605], - [-1.568882278627921, 49.03901009209144], - [-1.568935462374124, 49.03883375590814], - [-1.568895962584171, 49.038684985337596], - [-1.568851605304648, 49.03857656349965], - [-1.568575460855304, 49.03810838786614], - [-1.568448332100217, 49.03792261618062], - [-1.568360055316023, 49.037657416502604], - [-1.568312137481616, 49.03765478152067], - [-1.568312137481616, 49.03765478152067] - ] - }, - "length": 0.20216554723497288, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36107", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35326", - "bus2": "MVLV06710", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564656394675905, 49.0399616456111], - [-1.564656394675905, 49.0399616456111], - [-1.564706981331512, 49.03996552650747], - [-1.564727924823297, 49.039952372540434], - [-1.56473933858268, 49.0399329979881], - [-1.56474072503813, 49.039914400807675], - [-1.564732788462391, 49.039903908577465], - [-1.564732788462391, 49.039903908577465] - ] - }, - "length": 0.011525816996281366, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39035", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30452", - "bus2": "MVBus30458", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544605930612236, 49.04663486061268], - [-1.544605930612236, 49.04663486061268], - [-1.544615426108271, 49.04665466011679], - [-1.544615426108271, 49.04665466011679] - ] - }, - "length": 0.0023087401532615463, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42223", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28325", - "bus2": "MVLV18902", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542619622656282, 49.04779553766782], - [-1.542619622656282, 49.04779553766782], - [-1.542641442635851, 49.04784292629337], - [-1.542632731877063, 49.0478457642589], - [-1.542632731877063, 49.0478457642589] - ] - }, - "length": 0.0062169144119620864, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36670", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23998", - "bus2": "MVLV13802", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530799108036813, 49.05005551741369], - [-1.530799108036813, 49.05005551741369], - [-1.53077414365494, 49.0500686961079], - [-1.530575403425454, 49.05009159355121], - [-1.530576179130021, 49.05011528391853], - [-1.530576179130021, 49.05011528391853] - ] - }, - "length": 0.01972485063828715, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43398", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23996", - "bus2": "MVLV10305", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527305659304398, 49.050631392784375], - [-1.527305659304398, 49.050631392784375], - [-1.527331567016426, 49.05061818434851], - [-1.527340753067769, 49.0506372212535], - [-1.527356876822457, 49.05063026709952], - [-1.527356876822457, 49.05063026709952] - ] - }, - "length": 0.006027432985588235, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV06709_production", - "bus": "MVLV06709", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06709_consumption", - "bus": "MVLV06709", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV16847_production", - "bus": "MVLV16847", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16847_consumption", - "bus": "MVLV16847", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV07026_production", - "bus": "MVLV07026", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07026_consumption", - "bus": "MVLV07026", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV03204_production", - "bus": "MVLV03204", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03204_consumption", - "bus": "MVLV03204", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV06428_production", - "bus": "MVLV06428", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06428_consumption", - "bus": "MVLV06428", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV10304_production", - "bus": "MVLV10304", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10304_consumption", - "bus": "MVLV10304", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV19090_production", - "bus": "MVLV19090", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19090_consumption", - "bus": "MVLV19090", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV07041_production", - "bus": "MVLV07041", - "phases": "abc", - "powers": [ - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0] - ] - }, - { - "id": "MVLV07041_consumption", - "bus": "MVLV07041", - "phases": "abc", - "powers": [ - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405] - ] - }, - { - "id": "MVLV12057_production", - "bus": "MVLV12057", - "phases": "abc", - "powers": [ - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0] - ] - }, - { - "id": "MVLV12057_consumption", - "bus": "MVLV12057", - "phases": "abc", - "powers": [ - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405] - ] - }, - { - "id": "MVLV10414_production", - "bus": "MVLV10414", - "phases": "abc", - "powers": [ - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0] - ] - }, - { - "id": "MVLV10414_consumption", - "bus": "MVLV10414", - "phases": "abc", - "powers": [ - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405] - ] - }, - { - "id": "MVLV14661_production", - "bus": "MVLV14661", - "phases": "abc", - "powers": [ - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0] - ] - }, - { - "id": "MVLV14661_consumption", - "bus": "MVLV14661", - "phases": "abc", - "powers": [ - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405] - ] - }, - { - "id": "MVLV18001_production", - "bus": "MVLV18001", - "phases": "abc", - "powers": [ - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0] - ] - }, - { - "id": "MVLV18001_consumption", - "bus": "MVLV18001", - "phases": "abc", - "powers": [ - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405] - ] - }, - { - "id": "MVLV06710_production", - "bus": "MVLV06710", - "phases": "abc", - "powers": [ - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0], - [-279.53216374269005, 0.0] - ] - }, - { - "id": "MVLV06710_consumption", - "bus": "MVLV06710", - "phases": "abc", - "powers": [ - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405], - [8511.608108560731, 2797.6302947954405] - ] - }, - { - "id": "MVLV18902_production", - "bus": "MVLV18902", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18902_consumption", - "bus": "MVLV18902", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV13802_production", - "bus": "MVLV13802", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13802_consumption", - "bus": "MVLV13802", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - }, - { - "id": "MVLV10305_production", - "bus": "MVLV10305", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10305_consumption", - "bus": "MVLV10305", - "phases": "abc", - "powers": [ - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291], - [3584.153335041426, 1178.0542317519291] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder128_winter.json b/data/MVFeeder128_winter.json deleted file mode 100644 index 5bac1657..00000000 --- a/data/MVFeeder128_winter.json +++ /dev/null @@ -1,2496 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.446077484045924, 49.034241235768725] - } - }, - { - "id": "HVMV09", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.446077484045924, 49.034241235768725] - } - }, - { - "id": "MVBus00916", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.445903151201629, 49.03333590409346] - } - }, - { - "id": "MVBus00917", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.447048659446956, 49.03194944491505] - } - }, - { - "id": "MVBus00918", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.448327090288608, 49.031163231442164] - } - }, - { - "id": "MVBus00919", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.44905973033842, 49.03077803898317] - } - }, - { - "id": "MVBus00920", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.46220824503751, 49.029201861100134] - } - }, - { - "id": "MVBus00921", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461736098180515, 49.03010660944954] - } - }, - { - "id": "MVBus00922", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461764829853785, 49.031439486446786] - } - }, - { - "id": "MVBus00923", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461397716173976, 49.033603497990065] - } - }, - { - "id": "MVBus00924", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.461516985174621, 49.035477339466745] - } - }, - { - "id": "MVBus00925", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.463937029008645, 49.043696863573665] - } - }, - { - "id": "MVBus00926", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.463995464115393, 49.046275309101084] - } - }, - { - "id": "MVBus00927", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.487571747077065, 49.052234116603024] - } - }, - { - "id": "MVLV06709", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5210751434046905, 49.05368710146948] - } - }, - { - "id": "MVBus23996", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527305659304398, 49.050631392784375] - } - }, - { - "id": "MVBus23998", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530799108036813, 49.05005551741369] - } - }, - { - "id": "MVLV16847", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5390729458236736, 49.04797870565177] - } - }, - { - "id": "MVBus28325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542619622656282, 49.04779553766782] - } - }, - { - "id": "MVBus28327", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542770401208704, 49.04781922444621] - } - }, - { - "id": "MVBus28328", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544702393697539, 49.04846880559844] - } - }, - { - "id": "MVLV07026", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544752904038435, 49.04845138404925] - } - }, - { - "id": "MVBus28330", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542862708504378, 49.04736940703681] - } - }, - { - "id": "MVBus28331", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543922806647433, 49.046880850250076] - } - }, - { - "id": "MVLV03204", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544018357653604, 49.04697501147895] - } - }, - { - "id": "MVBus30451", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543968182557054, 49.04686214725682] - } - }, - { - "id": "MVBus30452", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544605930612236, 49.04663486061268] - } - }, - { - "id": "MVBus30453", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548385077336012, 49.04625140406671] - } - }, - { - "id": "MVLV06428", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549997403449801, 49.04903588566835] - } - }, - { - "id": "MVBus30454", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548795047362359, 49.04590439339881] - } - }, - { - "id": "MVLV10304", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548856389053909, 49.04604765320563] - } - }, - { - "id": "MVLV19090", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.55881269212674, 49.04125814200877] - } - }, - { - "id": "MVBus35324", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.559514529559971, 49.04118696896896] - } - }, - { - "id": "MVBus35325", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.561893552787597, 49.04154118410379] - } - }, - { - "id": "MVLV07041", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.56199895611086, 49.04162613053569] - } - }, - { - "id": "MVBus35326", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564656394675905, 49.0399616456111] - } - }, - { - "id": "MVBus35327", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.56889755134967, 49.03931854303925] - } - }, - { - "id": "MVLV12057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5732046465483145, 49.03784077453285] - } - }, - { - "id": "MVBus38707", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.575603504890467, 49.03309437846214] - } - }, - { - "id": "MVBus38708", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.575415481427542, 49.02875745070805] - } - }, - { - "id": "MVLV10414", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.573983343738142, 49.02677037365746] - } - }, - { - "id": "MVBus38709", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.586163645822428, 49.02561765715403] - } - }, - { - "id": "MVLV14661", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.575820358399386, 49.03313333990028] - } - }, - { - "id": "MVLV18001", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.568312137481616, 49.03765478152067] - } - }, - { - "id": "MVLV06710", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564732788462391, 49.039903908577465] - } - }, - { - "id": "MVBus30458", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544615426108271, 49.04665466011679] - } - }, - { - "id": "MVLV18902", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542632731877063, 49.0478457642589] - } - }, - { - "id": "MVLV13802", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530576179130021, 49.05011528391853] - } - }, - { - "id": "MVLV10305", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527356876822457, 49.05063026709952] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV09", - "geometry": { - "type": "Point", - "coordinates": [-1.446077484045924, 49.034241235768725] - } - }, - { - "id": "MVBranch44642", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV09", - "bus2": "MVBus00916", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.446077484045924, 49.034241235768725], - [-1.446089321542839, 49.03419419641659], - [-1.446089321542839, 49.03419419641659], - [-1.44609019272388, 49.03416313115167], - [-1.446076988694361, 49.034047891233236], - [-1.445614044006718, 49.03390884749059], - [-1.44601396527957, 49.03341359656575], - [-1.445875189552959, 49.033373333096414], - [-1.445903151201629, 49.03333590409346], - [-1.445903151201629, 49.03333590409346] - ] - }, - "length": 0.13161178225571488, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41155", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00916", - "bus2": "MVBus00917", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.445903151201629, 49.03333590409346], - [-1.445903151201629, 49.03333590409346], - [-1.446053327345197, 49.033134899957865], - [-1.446469116526517, 49.03261265880293], - [-1.446826395935171, 49.03215974247694], - [-1.447048659446956, 49.03194944491505], - [-1.447048659446956, 49.03194944491505] - ] - }, - "length": 0.17568267802562318, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43162", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00917", - "bus2": "MVBus00918", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.447048659446956, 49.03194944491505], - [-1.447048659446956, 49.03194944491505], - [-1.447187370746948, 49.03181820967314], - [-1.44768981615452, 49.03142818254009], - [-1.448042929122802, 49.031192523161145], - [-1.448248689332893, 49.03119920976466], - [-1.448327090288608, 49.031163231442164], - [-1.448327090288608, 49.031163231442164] - ] - }, - "length": 0.13346570850969364, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37533", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00918", - "bus2": "MVBus00919", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.448327090288608, 49.031163231442164], - [-1.448327090288608, 49.031163231442164], - [-1.44866677092218, 49.03097900565769], - [-1.44905973033842, 49.03077803898317], - [-1.44905973033842, 49.03077803898317] - ] - }, - "length": 0.06860263079628186, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00919", - "bus2": "MVBus00920", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.44905973033842, 49.03077803898317], - [-1.44905973033842, 49.03077803898317], - [-1.44945519479327, 49.03061501057651], - [-1.449518020860817, 49.03059857965217], - [-1.449576707037814, 49.03060032685851], - [-1.449661317807766, 49.03063133640318], - [-1.449740616412923, 49.03066490735919], - [-1.449810778534484, 49.03067351481081], - [-1.449871385301471, 49.03060181673669], - [-1.449897974891566, 49.030590142001756], - [-1.449928913280018, 49.03058795561711], - [-1.449976374531152, 49.03058645091119], - [-1.450037737732442, 49.03057488819762], - [-1.450142110773407, 49.03055112105596], - [-1.450258595639544, 49.030524603723094], - [-1.450351927360375, 49.03051800089154], - [-1.450531603631356, 49.030523135473125], - [-1.450850227809575, 49.03055152780828], - [-1.451276856437632, 49.03055604498573], - [-1.451728063103816, 49.03052128509536], - [-1.452093620252944, 49.03046637140379], - [-1.452424824749186, 49.03039210637347], - [-1.45244680029795, 49.0303673435888], - [-1.45249649637903, 49.03034651448132], - [-1.452555589015656, 49.03032900382792], - [-1.452684314838213, 49.030312891508714], - [-1.452796252986193, 49.030292489566406], - [-1.452935936718546, 49.030267041800165], - [-1.452971911245631, 49.03026767266503], - [-1.453107058137133, 49.03023931883264], - [-1.453129040909092, 49.0302398268357], - [-1.453563875862572, 49.030181513734846], - [-1.453927458963233, 49.03014952603635], - [-1.454684284019186, 49.03001601643393], - [-1.4556041114158, 49.02983522273534], - [-1.45633528749164, 49.029701320231226], - [-1.456599470815935, 49.029636386894715], - [-1.456859884566635, 49.02954510491541], - [-1.457216958094627, 49.029449546392286], - [-1.457657695862679, 49.02939704018672], - [-1.457952697401475, 49.02937805056121], - [-1.458543529630631, 49.02937611885037], - [-1.459418890113739, 49.02941205804522], - [-1.4595588367873, 49.02939918914138], - [-1.459647808524431, 49.02939100818684], - [-1.45981173834437, 49.02935505624181], - [-1.459977955563748, 49.029301650035116], - [-1.46007702482525, 49.0292804536462], - [-1.460185843302788, 49.02926736800293], - [-1.460367080607095, 49.02926883046293], - [-1.460804929187744, 49.02927234486838], - [-1.46094192158442, 49.029273449924396], - [-1.461061860422605, 49.029262375975044], - [-1.461209953194966, 49.02923601216176], - [-1.461492302710045, 49.02916928451514], - [-1.461874652308826, 49.02906930026454], - [-1.461994303421172, 49.02902940055602], - [-1.462033715309178, 49.02899325838838], - [-1.462039050386169, 49.028941358516114], - [-1.462002487375867, 49.028891987799454], - [-1.462061373216727, 49.02884680544972], - [-1.462112364275487, 49.02889330616393], - [-1.46220824503751, 49.029201861100134], - [-1.46220824503751, 49.029201861100134] - ] - }, - "length": 1.0533444699184005, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44628", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00920", - "bus2": "MVBus00921", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.46220824503751, 49.029201861100134], - [-1.46220824503751, 49.029201861100134], - [-1.462290390398361, 49.02946968459122], - [-1.462371704516555, 49.029572213825645], - [-1.462402626709977, 49.02965815490035], - [-1.462401320349518, 49.029723898258666], - [-1.462339844977394, 49.02980772229685], - [-1.462271825440518, 49.02984425267264], - [-1.462051101816434, 49.029936173574164], - [-1.461815657267072, 49.03005787295793], - [-1.461736098180515, 49.03010660944954], - [-1.461736098180515, 49.03010660944954] - ] - }, - "length": 0.1261069012522324, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35802", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00921", - "bus2": "MVBus00922", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461736098180515, 49.03010660944954], - [-1.461736098180515, 49.03010660944954], - [-1.461688708940827, 49.03014852003263], - [-1.461636165584485, 49.03022303603474], - [-1.4616182930593, 49.03028752484309], - [-1.461595620092388, 49.03042997738192], - [-1.461598743787536, 49.03059539637252], - [-1.461611710527563, 49.03073075976338], - [-1.461604314478343, 49.03089062052405], - [-1.461584532035902, 49.0310785125175], - [-1.461592122187334, 49.031202162416], - [-1.461610475380447, 49.031287801540905], - [-1.461657194212456, 49.0313695697353], - [-1.461710376473961, 49.031416441731], - [-1.461764829853785, 49.031439486446786], - [-1.461764829853785, 49.031439486446786] - ] - }, - "length": 0.15470776890167054, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44629", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00922", - "bus2": "MVBus00923", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461764829853785, 49.031439486446786], - [-1.461764829853785, 49.031439486446786], - [-1.461860958343164, 49.03148037735713], - [-1.461943203005254, 49.03155553671749], - [-1.461961166928875, 49.0316258310834], - [-1.461930122452196, 49.03176254009382], - [-1.461830112763931, 49.032079204786434], - [-1.461618693822098, 49.03268167812438], - [-1.461554088632036, 49.03287256955884], - [-1.46149220999655, 49.033155408592826], - [-1.461455604951194, 49.03332276525344], - [-1.461397716173976, 49.033603497990065], - [-1.461397716173976, 49.033603497990065] - ] - }, - "length": 0.2505341950033376, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40644", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00923", - "bus2": "MVBus00924", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461397716173976, 49.033603497990065], - [-1.461397716173976, 49.033603497990065], - [-1.461374334072053, 49.03373633729623], - [-1.461313027865901, 49.03419124299641], - [-1.461339950046074, 49.03472244037516], - [-1.461430258548458, 49.03515735668398], - [-1.461516985174621, 49.035477339466745], - [-1.461516985174621, 49.035477339466745] - ] - }, - "length": 0.209729608293412, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36669", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00924", - "bus2": "MVBus00925", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.461516985174621, 49.035477339466745], - [-1.461516985174621, 49.035477339466745], - [-1.461636332041758, 49.03583319748804], - [-1.461816284715681, 49.03634269548755], - [-1.462016424917492, 49.03693273545428], - [-1.462146034652944, 49.03720964603532], - [-1.462095133531544, 49.03748604452549], - [-1.462084116795383, 49.03772371318449], - [-1.461985445551021, 49.03825455769082], - [-1.461950971820154, 49.038302489626595], - [-1.461974505019591, 49.038364194840355], - [-1.46212063599448, 49.038478202386436], - [-1.462193923769989, 49.03863511842277], - [-1.462168237053737, 49.038673405629154], - [-1.462180093910419, 49.03876983066938], - [-1.46243221826143, 49.03903347017005], - [-1.46263604146269, 49.03928615826684], - [-1.462766500065885, 49.0395099526952], - [-1.462851100287034, 49.03969149170124], - [-1.462989132345855, 49.04040528968407], - [-1.463040807545705, 49.04067251449128], - [-1.463061651999394, 49.04087447890193], - [-1.463032542056454, 49.04105963441946], - [-1.462973299953647, 49.04135191554204], - [-1.462916592883118, 49.0416784643918], - [-1.462946167168396, 49.041886736392236], - [-1.463136404391613, 49.04227724041701], - [-1.463329820395658, 49.04267426437182], - [-1.463544397108902, 49.043044893991826], - [-1.463828008882034, 49.04340292716677], - [-1.463895209017004, 49.04348776704204], - [-1.463927453590852, 49.04355174059892], - [-1.463938172038025, 49.04359211754275], - [-1.463944322304577, 49.043645729645746], - [-1.463937029008645, 49.043696863573665], - [-1.463937029008645, 49.043696863573665] - ] - }, - "length": 0.9535930549356172, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00925", - "bus2": "MVBus00926", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.463937029008645, 49.043696863573665], - [-1.463937029008645, 49.043696863573665], - [-1.463932036108716, 49.04371771424355], - [-1.464028315492035, 49.04395531525315], - [-1.464101011375718, 49.04413467675768], - [-1.464170822826148, 49.04431017153663], - [-1.4642307685798, 49.044548136567656], - [-1.464242126929302, 49.04465296161326], - [-1.464192634662235, 49.044738212101564], - [-1.464123005795986, 49.04478027252261], - [-1.463878359794863, 49.04484941111561], - [-1.463829558240103, 49.04487806084146], - [-1.463797276912264, 49.044900598232616], - [-1.463773006878715, 49.04493324466457], - [-1.463760217927605, 49.04497349671277], - [-1.463763475431285, 49.045100098907064], - [-1.463787589992099, 49.04542765671082], - [-1.463821255391476, 49.04595093383802], - [-1.463835997570601, 49.0461799907788], - [-1.463995464115393, 49.046275309101084], - [-1.463995464115393, 49.046275309101084] - ] - }, - "length": 0.312439862493794, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42221", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00926", - "bus2": "MVBus00927", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.463995464115393, 49.046275309101084], - [-1.463995464115393, 49.046275309101084], - [-1.464069042560407, 49.04630805448473], - [-1.464140902913082, 49.04631746376791], - [-1.465217946428581, 49.04630190746093], - [-1.466279929493993, 49.04627512544945], - [-1.466413516530068, 49.04630128113903], - [-1.46676497215578, 49.04629009305314], - [-1.46691734142602, 49.046329684706066], - [-1.468030228897367, 49.04631764005887], - [-1.468455203328844, 49.04629007125595], - [-1.4703770481289, 49.0462943407502], - [-1.47131735893747, 49.046306477203075], - [-1.471435026930273, 49.046309743935716], - [-1.471676151068217, 49.04634650061685], - [-1.471935671419052, 49.046386062051376], - [-1.472327425401432, 49.046395911187254], - [-1.47284001029685, 49.04639828072449], - [-1.473152070203375, 49.04638365183779], - [-1.474118581233217, 49.04626862023006], - [-1.474679953079951, 49.046201799104665], - [-1.47489493713142, 49.04618069916942], - [-1.4750842949228, 49.04619103149806], - [-1.475332693490119, 49.04622988787032], - [-1.475766004920796, 49.04636342399073], - [-1.476145378400156, 49.04648932360601], - [-1.476330395378819, 49.04653721794178], - [-1.476592479618372, 49.04656861772087], - [-1.477012937754514, 49.04657624846328], - [-1.477695238534076, 49.04656382168347], - [-1.47819266270097, 49.046601737538595], - [-1.478625741644053, 49.046683818969136], - [-1.47925463743429, 49.046911676246324], - [-1.479822424071774, 49.04708300527772], - [-1.480038189922119, 49.04711353762354], - [-1.48037069037245, 49.047086540734135], - [-1.480587418197079, 49.04708195496803], - [-1.480816349401783, 49.047098030693704], - [-1.481276208974316, 49.04710906517078], - [-1.481587049376394, 49.04707807891043], - [-1.481891418404565, 49.047007534062715], - [-1.482179762587331, 49.04696089162068], - [-1.482357439581577, 49.04695755992133], - [-1.482483073332732, 49.04697225640185], - [-1.482609535036043, 49.0469870432378], - [-1.482729409695775, 49.046983093854905], - [-1.482854449721809, 49.04694167061444], - [-1.483175454271017, 49.04680743491148], - [-1.483706524272305, 49.04662671606613], - [-1.484111075449247, 49.046515535981584], - [-1.484454315362873, 49.046441402057084], - [-1.484669830905945, 49.046420473865055], - [-1.484714676998851, 49.04644944765004], - [-1.484704778096456, 49.046604144902865], - [-1.484528551174364, 49.04720391302258], - [-1.48454047037633, 49.04736492956399], - [-1.484666398692526, 49.047672001629984], - [-1.485184862589901, 49.04881093069458], - [-1.485381284192793, 49.04910872946407], - [-1.485759352242295, 49.049552766543556], - [-1.486005671513143, 49.04975540402274], - [-1.486403444498629, 49.04993682097672], - [-1.487346462473604, 49.05032066105498], - [-1.488836559704555, 49.05097936517104], - [-1.488862704304587, 49.0510440227481], - [-1.488848930437791, 49.051098263007546], - [-1.488227127771161, 49.051639789405506], - [-1.487556489830751, 49.05221422786104], - [-1.487556424187144, 49.05222498079158], - [-1.487571747077065, 49.052234116603024], - [-1.487571747077065, 49.052234116603024] - ] - }, - "length": 2.372234450264817, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40645", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus00927", - "bus2": "MVLV06709", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.487571747077065, 49.052234116603024], - [-1.487571747077065, 49.052234116603024], - [-1.487651890320432, 49.05227754151106], - [-1.487822553785858, 49.05234445561092], - [-1.489515792790746, 49.05299984324265], - [-1.489857570275332, 49.053167487575], - [-1.490140828951293, 49.05343440155237], - [-1.490300367950366, 49.053660223145656], - [-1.490385669777245, 49.05410766739315], - [-1.490395847296826, 49.05422535762595], - [-1.490409177190194, 49.054238983212024], - [-1.49047246004676, 49.05425063090957], - [-1.491034531883442, 49.05425484723805], - [-1.49151536338405, 49.05421551174843], - [-1.492099029931455, 49.05419510942734], - [-1.49232210376549, 49.05422214766643], - [-1.492428989749512, 49.054225559648884], - [-1.492794706365494, 49.05421212946958], - [-1.493222489847871, 49.0542291861421], - [-1.494326600450905, 49.054352758481116], - [-1.495167833961877, 49.054438599375935], - [-1.496501911794578, 49.054506914985375], - [-1.497981927213178, 49.0545790879453], - [-1.499113964089357, 49.0546931736638], - [-1.500871438503947, 49.054858955339654], - [-1.501250579299137, 49.05488609256451], - [-1.501806537308233, 49.05491267641779], - [-1.502761443817919, 49.054930667119464], - [-1.50336542424111, 49.05492653372335], - [-1.505015876537338, 49.054852471957986], - [-1.5053352571529, 49.05484984074067], - [-1.50614700417173, 49.05486574117562], - [-1.506632090929439, 49.05490360559451], - [-1.507468529447238, 49.05505617989572], - [-1.508595945035842, 49.05521466076088], - [-1.509358017674797, 49.055304695874256], - [-1.510441859022179, 49.05534617582712], - [-1.511507872963141, 49.055304209748975], - [-1.512865308022292, 49.05513101312053], - [-1.515033691375231, 49.054743802561354], - [-1.516813952978659, 49.05438788174744], - [-1.517100914513969, 49.05431260892745], - [-1.518491808439635, 49.05404525110661], - [-1.519765288864623, 49.05380619132052], - [-1.520110602903428, 49.05376084880229], - [-1.520902379222519, 49.05360814668655], - [-1.521008870275287, 49.053570161144826], - [-1.521056703707298, 49.05366913668579], - [-1.521066080032439, 49.05368854568226], - [-1.5210751434046905, 49.05368710146948] - ] - }, - "length": 2.615219412770797, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35804", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06709", - "bus2": "MVBus23996", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5210751434046905, 49.05368710146948], - [-1.521084206776942, 49.05368565725669], - [-1.521074659293919, 49.053665057228606], - [-1.521019038424444, 49.053545037975155], - [-1.521031745635214, 49.05352714712934], - [-1.521298437560975, 49.05346853239154], - [-1.52301610506183, 49.053166439178405], - [-1.52429125419748, 49.052952403545596], - [-1.524862199034329, 49.052856571189004], - [-1.525869579659604, 49.0526839023093], - [-1.527064397653925, 49.05246272577289], - [-1.527646099962972, 49.05235328866881], - [-1.527754331702429, 49.052313234264034], - [-1.527730429914871, 49.05205523429216], - [-1.527703405020569, 49.05172498351828], - [-1.52762871213291, 49.05144199588262], - [-1.527603181273045, 49.05136644833384], - [-1.527326083913721, 49.05083072981464], - [-1.527280366294644, 49.05073070715918], - [-1.527272379353617, 49.050683804542594], - [-1.527295823545118, 49.05064152634071], - [-1.527305659304398, 49.050631392784375], - [-1.527305659304398, 49.050631392784375] - ] - }, - "length": 0.720675603266393, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35803", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23996", - "bus2": "MVBus23998", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527305659304398, 49.050631392784375], - [-1.527305659304398, 49.050631392784375], - [-1.527327795736221, 49.05060858083972], - [-1.527714856237386, 49.05050963903404], - [-1.527960395447837, 49.05044686148177], - [-1.528224832317365, 49.050379270582894], - [-1.528526227661762, 49.050339677843084], - [-1.5287272517413, 49.05032916148638], - [-1.528853481701537, 49.050320048163094], - [-1.529255856264083, 49.05028290823768], - [-1.529585909187001, 49.05021896688841], - [-1.529928455344019, 49.05015864181593], - [-1.53019609145295, 49.05011882384198], - [-1.530567897579363, 49.050081661171], - [-1.530750873019423, 49.05006337659347], - [-1.530799108036813, 49.05005551741369], - [-1.530799108036813, 49.05005551741369] - ] - }, - "length": 0.2653430767218643, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42222", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23998", - "bus2": "MVLV16847", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530799108036813, 49.05005551741369], - [-1.530799108036813, 49.05005551741369], - [-1.531148774597256, 49.04999854796747], - [-1.531745002481844, 49.04989582567005], - [-1.532032387461069, 49.04985436537959], - [-1.532601502578957, 49.049777644667515], - [-1.532825836433212, 49.049731188963754], - [-1.53333247636557, 49.04959619171755], - [-1.533898658024065, 49.04941907453518], - [-1.53501054220607, 49.04907754206871], - [-1.535164964641367, 49.04903010858185], - [-1.535659149246876, 49.04889874349167], - [-1.536239538693067, 49.04874827947066], - [-1.536526048629258, 49.04868506410161], - [-1.536860671923363, 49.04860656788547], - [-1.537021619929697, 49.048560953579134], - [-1.53715418505952, 49.04851813972706], - [-1.537564194458377, 49.048420291941994], - [-1.538061599815586, 49.048306454790044], - [-1.538624104150744, 49.04818392710703], - [-1.538920579868436, 49.04811934786248], - [-1.539089925695431, 49.04801098421811], - [-1.539085781863044, 49.047994987336814], - [-1.539071700833383, 49.047983361416655], - [-1.5390729458236736, 49.04797870565177] - ] - }, - "length": 0.654051154512833, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43258", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16847", - "bus2": "MVBus28325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5390729458236736, 49.04797870565177], - [-1.539074190813964, 49.04797404988689], - [-1.53908716103271, 49.047980907536555], - [-1.539101185446201, 49.047988315777985], - [-1.539316605693734, 49.047851025638565], - [-1.539347393978268, 49.047812824813754], - [-1.539351613721101, 49.047799390584025], - [-1.539354579098979, 49.04779604651547], - [-1.539451083943058, 49.04774387363535], - [-1.539474870357235, 49.04773254857634], - [-1.539493036727845, 49.04772712784839], - [-1.539543500143926, 49.047726021307405], - [-1.539561202747304, 49.047721533293696], - [-1.539618930783724, 49.04769267868199], - [-1.540530019017743, 49.047228988219814], - [-1.54063297161658, 49.047183784507276], - [-1.540651282952445, 49.04717993333371], - [-1.540664008955005, 49.0471851793114], - [-1.540789769187251, 49.04727014831849], - [-1.540883135200533, 49.04742730671792], - [-1.541076723447483, 49.0477483283096], - [-1.541267472799378, 49.048044646429545], - [-1.541277164852435, 49.0480583309047], - [-1.541298138103624, 49.04806258036238], - [-1.541313581198498, 49.04805862427436], - [-1.541390796303494, 49.04802900126815], - [-1.541469818361159, 49.04800448373887], - [-1.541550867843203, 49.047972702861664], - [-1.542321682529178, 49.04758500516208], - [-1.542345103576804, 49.047579755249956], - [-1.542477765494462, 49.04759587047988], - [-1.542515582025845, 49.04760696821268], - [-1.542537705937597, 49.04762416254769], - [-1.542552232788907, 49.047649178920054], - [-1.542619622656282, 49.04779553766782], - [-1.542619622656282, 49.04779553766782] - ] - }, - "length": 0.38872330148286005, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36671", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28325", - "bus2": "MVBus28327", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542619622656282, 49.04779553766782], - [-1.542619622656282, 49.04779553766782], - [-1.542641658386537, 49.047807003852895], - [-1.542744749183823, 49.047787686778726], - [-1.542757617444419, 49.047791542407566], - [-1.542770401208704, 49.04781922444621], - [-1.542770401208704, 49.04781922444621] - ] - }, - "length": 0.014141871633893131, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42285", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28327", - "bus2": "MVBus28328", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542770401208704, 49.04781922444621], - [-1.542770401208704, 49.04781922444621], - [-1.543160132707009, 49.04855842579815], - [-1.543239284572438, 49.04870644447264], - [-1.543252843482533, 49.04871766403634], - [-1.543274146587015, 49.0487230180555], - [-1.54329582926091, 49.04872231386107], - [-1.543398491285356, 49.04869872771487], - [-1.54349701216967, 49.04872147480368], - [-1.543880961875083, 49.04864378567214], - [-1.543922152243239, 49.04861071580438], - [-1.544634814721229, 49.048458369585916], - [-1.544702393697539, 49.04846880559844], - [-1.544702393697539, 49.04846880559844] - ] - }, - "length": 0.21885935424672956, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40598", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28328", - "bus2": "MVLV07026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544702393697539, 49.04846880559844], - [-1.544702393697539, 49.04846880559844], - [-1.544764431904579, 49.048466897964474], - [-1.544752904038435, 49.04845138404925], - [-1.544752904038435, 49.04845138404925] - ] - }, - "length": 0.006460115007856009, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45089", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28327", - "bus2": "MVBus28330", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542770401208704, 49.04781922444621], - [-1.542770401208704, 49.04781922444621], - [-1.54269578108089, 49.0477870187179], - [-1.542593000971066, 49.047579892861926], - [-1.542633707477476, 49.04748756783966], - [-1.542862708504378, 49.04736940703681], - [-1.542862708504378, 49.04736940703681] - ] - }, - "length": 0.06272664872796083, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42356", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28330", - "bus2": "MVBus28331", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542862708504378, 49.04736940703681], - [-1.542862708504378, 49.04736940703681], - [-1.542944055746831, 49.0473286815882], - [-1.542914598163958, 49.047267631884175], - [-1.543687668838576, 49.046970116754935], - [-1.543922806647433, 49.046880850250076], - [-1.543922806647433, 49.046880850250076] - ] - }, - "length": 0.09993459681209216, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38222", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28331", - "bus2": "MVLV03204", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543922806647433, 49.046880850250076], - [-1.543922806647433, 49.046880850250076], - [-1.54394434314334, 49.04687475253979], - [-1.544013663228632, 49.0469762885837], - [-1.544018357653604, 49.04697501147895] - ] - }, - "length": 0.01409106855686576, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36543", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03204", - "bus2": "MVBus30451", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544018357653604, 49.04697501147895], - [-1.544023052078576, 49.04697373437419], - [-1.543953161366732, 49.04686824925286], - [-1.543968182557054, 49.04686214725682], - [-1.543968182557054, 49.04686214725682] - ] - }, - "length": 0.014086255823606729, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37010", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30451", - "bus2": "MVBus30452", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543968182557054, 49.04686214725682], - [-1.543968182557054, 49.04686214725682], - [-1.544605930612236, 49.04663486061268], - [-1.544605930612236, 49.04663486061268] - ] - }, - "length": 0.053032760086801294, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44728", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30452", - "bus2": "MVBus30453", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544605930612236, 49.04663486061268], - [-1.544605930612236, 49.04663486061268], - [-1.544687266748538, 49.04661568174298], - [-1.544873477507897, 49.046579653945265], - [-1.545161809170049, 49.04653566514119], - [-1.545870476732643, 49.04648912641739], - [-1.54642582085625, 49.04651351450512], - [-1.546565506483741, 49.046617737268065], - [-1.547051839426172, 49.04689749314179], - [-1.547863685664065, 49.04722293849653], - [-1.547947345951973, 49.04729393860409], - [-1.548474597424071, 49.04730937037455], - [-1.548408612820894, 49.047149527293634], - [-1.548357265100732, 49.04693155608327], - [-1.548313755206265, 49.04625321973305], - [-1.548385077336012, 49.04625140406671], - [-1.548385077336012, 49.04625140406671] - ] - }, - "length": 0.43934262295050397, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36461", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30453", - "bus2": "MVLV06428", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548385077336012, 49.04625140406671], - [-1.548385077336012, 49.04625140406671], - [-1.548400674688752, 49.04647265231329], - [-1.548377048131278, 49.046503164420834], - [-1.548489932114923, 49.0471557715872], - [-1.548693332290306, 49.04758288751493], - [-1.548803567535187, 49.04762596910421], - [-1.549760548142787, 49.04856059337284], - [-1.550092824062448, 49.0489365146065], - [-1.549997403449801, 49.04903588566835], - [-1.549997403449801, 49.04903588566835] - ] - }, - "length": 0.3473397731794154, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37534", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30453", - "bus2": "MVBus30454", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548385077336012, 49.04625140406671], - [-1.548385077336012, 49.04625140406671], - [-1.548364120203606, 49.04610387973278], - [-1.548355356077129, 49.046009796288175], - [-1.548360955608255, 49.04600072524646], - [-1.548377885164062, 49.045989801244055], - [-1.548508240919533, 49.045940199402885], - [-1.54868542533753, 49.045857954060715], - [-1.548694609138635, 49.0458543175118], - [-1.548706004463852, 49.045854423719675], - [-1.548712488296865, 49.04585692090286], - [-1.548786100796683, 49.04590499927998], - [-1.548795047362359, 49.04590439339881], - [-1.548795047362359, 49.04590439339881] - ] - }, - "length": 0.06706091210200767, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40646", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30454", - "bus2": "MVLV10304", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548795047362359, 49.04590439339881], - [-1.548795047362359, 49.04590439339881], - [-1.548796872525014, 49.04590554861655], - [-1.548818826142154, 49.04593173530309], - [-1.548833187871386, 49.04595815991977], - [-1.548856389053909, 49.04604765320563], - [-1.548856389053909, 49.04604765320563] - ] - }, - "length": 0.0167271216600722, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33972", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30454", - "bus2": "MVLV19090", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548795047362359, 49.04590439339881], - [-1.548795047362359, 49.04590439339881], - [-1.54874415457815, 49.045871041746736], - [-1.548716449275836, 49.04584972050827], - [-1.548717643632098, 49.04583976707605], - [-1.548860464140761, 49.045759574796705], - [-1.549451583508427, 49.04544475317919], - [-1.550124675523013, 49.04510063033477], - [-1.550542210145414, 49.044888338323226], - [-1.551003323565583, 49.044621040772924], - [-1.551452675126317, 49.044343012852565], - [-1.55147494894388, 49.04433509932164], - [-1.551493557475337, 49.044331218752085], - [-1.551520085330858, 49.04432708940905], - [-1.551536357145032, 49.04431871445041], - [-1.55170559862644, 49.04421582284543], - [-1.551773515207925, 49.04418027845073], - [-1.552397691066736, 49.043807656922176], - [-1.553450620192724, 49.04324002412785], - [-1.553616765696485, 49.04313591675201], - [-1.554536364969822, 49.04261835593874], - [-1.554630935627503, 49.0425731604297], - [-1.554728121323984, 49.04253778530313], - [-1.554793246841393, 49.042526999598884], - [-1.555128642161776, 49.04237734847322], - [-1.555215804189633, 49.04230886677218], - [-1.555291918479844, 49.04224905815403], - [-1.55556690835119, 49.04211782924832], - [-1.555773706653381, 49.0420367756479], - [-1.555927460897082, 49.0420020392582], - [-1.5563621559803, 49.041870210308446], - [-1.557243754481307, 49.04164329797238], - [-1.557577765808976, 49.041575431176554], - [-1.557911290374896, 49.04152615806614], - [-1.558023430028632, 49.041464291224436], - [-1.55860027153412, 49.041386380315835], - [-1.558701413702804, 49.04133566782017], - [-1.558726454865058, 49.04126796753512], - [-1.558809121298518, 49.04125226196462], - [-1.55881269212674, 49.04125814200877] - ] - }, - "length": 0.9222868288749778, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV19090", - "bus2": "MVBus35324", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.55881269212674, 49.04125814200877], - [-1.558816262954962, 49.04126402205292], - [-1.55879960852441, 49.041267480218785], - [-1.558784975477743, 49.04127052157784], - [-1.558783151353761, 49.041281170529324], - [-1.558804685499073, 49.04130628962899], - [-1.558842483103754, 49.04132548913312], - [-1.558887539075615, 49.041328068381716], - [-1.559019832525288, 49.041309682528684], - [-1.559063379597612, 49.041292265614636], - [-1.559193882095625, 49.0412733621665], - [-1.559305690169221, 49.041263165618645], - [-1.55936280454823, 49.0412508932076], - [-1.559427355561703, 49.04122835554723], - [-1.559514529559971, 49.04118696896896], - [-1.559514529559971, 49.04118696896896] - ] - }, - "length": 0.06282985142000849, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44630", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35324", - "bus2": "MVBus35325", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.559514529559971, 49.04118696896896], - [-1.559514529559971, 49.04118696896896], - [-1.559709096386036, 49.04111279398212], - [-1.559745683551936, 49.04111160050436], - [-1.559821585839333, 49.04115678164543], - [-1.559892725026131, 49.041219905192385], - [-1.559943136765103, 49.041251558581735], - [-1.560000274635698, 49.04126806650347], - [-1.560334006180506, 49.04130426026244], - [-1.560412409457703, 49.04130170232339], - [-1.560461807273766, 49.04130813399454], - [-1.560806126227082, 49.041345699454745], - [-1.561545394372359, 49.041513337826096], - [-1.561893552787597, 49.04154118410379], - [-1.561893552787597, 49.04154118410379] - ] - }, - "length": 0.1874883237140566, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33280", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35325", - "bus2": "MVLV07041", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561893552787597, 49.04154118410379], - [-1.561893552787597, 49.04154118410379], - [-1.561927522567093, 49.04155625201814], - [-1.561970866675699, 49.041560622411126], - [-1.56199895611086, 49.04162613053569], - [-1.56199895611086, 49.04162613053569] - ] - }, - "length": 0.01377110907182497, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42224", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35325", - "bus2": "MVBus35326", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.561893552787597, 49.04154118410379], - [-1.561893552787597, 49.04154118410379], - [-1.562524220667454, 49.04159162112046], - [-1.562785661856347, 49.04158423815972], - [-1.563003832429402, 49.0415357743919], - [-1.563065351941532, 49.04151768825974], - [-1.563086273529028, 49.041471075439105], - [-1.56329632690482, 49.04129197847891], - [-1.563041784408246, 49.040419552504396], - [-1.564656394675905, 49.0399616456111], - [-1.564656394675905, 49.0399616456111] - ] - }, - "length": 0.3452553851048107, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43259", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35326", - "bus2": "MVBus35327", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564656394675905, 49.0399616456111], - [-1.564656394675905, 49.0399616456111], - [-1.56477166927779, 49.04006908383008], - [-1.564846152553497, 49.04018074239322], - [-1.564944563084799, 49.0403022448436], - [-1.565293663892719, 49.04062619676181], - [-1.565553656895697, 49.040849583902435], - [-1.56575972902615, 49.040805891692656], - [-1.566786580333107, 49.040206038020955], - [-1.567592032234608, 49.039726108679], - [-1.567785322782766, 49.03958767763209], - [-1.567923196296619, 49.039552688609305], - [-1.568512926040833, 49.03949090683377], - [-1.568582327630608, 49.03946092678065], - [-1.568672147050414, 49.03936653489037], - [-1.568819877921556, 49.03932401583802], - [-1.56889755134967, 49.03931854303925], - [-1.56889755134967, 49.03931854303925] - ] - }, - "length": 0.4259832199447021, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43094", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35327", - "bus2": "MVLV12057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56889755134967, 49.03931854303925], - [-1.56889755134967, 49.03931854303925], - [-1.569207283853655, 49.03928810855918], - [-1.569336793905305, 49.03926089488837], - [-1.569520780594536, 49.03922223665458], - [-1.569801212742898, 49.03914586607496], - [-1.570369458462948, 49.03897495921441], - [-1.570755358618667, 49.03884795560977], - [-1.570958583583596, 49.03878415764787], - [-1.571311362440169, 49.0386734138073], - [-1.571681307813345, 49.03853202987447], - [-1.571859227161483, 49.03845196386364], - [-1.572196877148248, 49.03829562919721], - [-1.572383303985448, 49.038212089947066], - [-1.57258962514206, 49.03813429617895], - [-1.572806169237924, 49.03802416473127], - [-1.573001586241041, 49.03791660481103], - [-1.5731605367009, 49.0378228342147], - [-1.573176480418269, 49.037838929947284], - [-1.573180852027758, 49.03784334837375], - [-1.573190573011825, 49.03785316989166], - [-1.5732046465483145, 49.03784077453285] - ] - }, - "length": 0.3608666904470401, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42542", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12057", - "bus2": "MVBus38707", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5732046465483145, 49.03784077453285], - [-1.573218720084804, 49.03782837917405], - [-1.573219651809008, 49.037819720451296], - [-1.57322154365186, 49.03781596970849], - [-1.573227549864818, 49.03781215625664], - [-1.573258148212849, 49.03779913446993], - [-1.573312324229853, 49.037779591683716], - [-1.573325829780514, 49.03777487593759], - [-1.573331638301449, 49.03777025921228], - [-1.57333527060948, 49.03776437315942], - [-1.573339785855734, 49.03774864236069], - [-1.57334169597768, 49.03769833099782], - [-1.573342790395212, 49.03760978164462], - [-1.573343277836613, 49.03754321409212], - [-1.57334572821313, 49.03751521585298], - [-1.573352388295262, 49.0374920282099], - [-1.573361087536584, 49.03747390216129], - [-1.573372352155105, 49.03745875114554], - [-1.573387770905307, 49.03744930325708], - [-1.573412089368376, 49.03744154337803], - [-1.573449039487969, 49.03743596113151], - [-1.573463336845917, 49.03743501622289], - [-1.573545656555698, 49.03743329292324], - [-1.573791882873774, 49.037429469250924], - [-1.573799928885973, 49.03743072633203], - [-1.573809545526832, 49.03742941279846], - [-1.573828886943377, 49.037428032786806], - [-1.574062099194975, 49.03742240336289], - [-1.57413641939213, 49.037423469769344], - [-1.574167198997303, 49.03742115735632], - [-1.574266818502687, 49.03741838125526], - [-1.574296785444005, 49.03741979323224], - [-1.574327059797006, 49.03741803714888], - [-1.574457772344386, 49.0374169058892], - [-1.574640115048536, 49.037407074981736], - [-1.574821864527245, 49.03739501394241], - [-1.574941200380019, 49.03739201444614], - [-1.575122163416115, 49.03738727536484], - [-1.575394193281306, 49.037385905212446], - [-1.575498663890308, 49.03738881731566], - [-1.575639549947427, 49.03739354154789], - [-1.575757799980146, 49.03739752257972], - [-1.575788401204087, 49.03739827461094], - [-1.575794645891708, 49.037397611198905], - [-1.575801949128659, 49.03739466383085], - [-1.575810063932191, 49.037391590909166], - [-1.575818206129822, 49.03739068539587], - [-1.575834270796418, 49.03739121181995], - [-1.575957898138581, 49.03739409879968], - [-1.576095318777356, 49.03739462639695], - [-1.576215091482847, 49.03739377962248], - [-1.576486992239081, 49.03738727385578], - [-1.576546879239658, 49.037384241099375], - [-1.576573031719577, 49.037382268603565], - [-1.576581760527585, 49.03738007522339], - [-1.576590121040657, 49.03737681425423], - [-1.576593473177484, 49.037370667353066], - [-1.576596601253085, 49.03735993925844], - [-1.576608053162535, 49.03732127227581], - [-1.576641915144342, 49.03715524546071], - [-1.576653583140471, 49.037058584888], - [-1.576648428526834, 49.03699509008956], - [-1.576636201038921, 49.03694967733421], - [-1.576619850091405, 49.03691088661069], - [-1.576604424216662, 49.03688718975103], - [-1.576553450964756, 49.03682112945253], - [-1.576480923776967, 49.03672833406783], - [-1.576413985226045, 49.03664391181168], - [-1.576358296651647, 49.036573588328686], - [-1.57607637655589, 49.036267969824294], - [-1.575998648032988, 49.03619084661254], - [-1.575874203252597, 49.03606155884443], - [-1.575802824516908, 49.03597287311777], - [-1.575756275334331, 49.03590377048766], - [-1.575727691538593, 49.035854142942476], - [-1.575693926884324, 49.035776955936235], - [-1.57566337528602, 49.03570587169013], - [-1.575636608013797, 49.03561845063443], - [-1.575624434750906, 49.0355787941511], - [-1.575604884901121, 49.03550463236389], - [-1.575578677413021, 49.03535325930008], - [-1.575545520041772, 49.035150434312186], - [-1.575530783310489, 49.035035042894926], - [-1.575498337365689, 49.034731975399154], - [-1.57547572298852, 49.0345324757854], - [-1.575446320871773, 49.03432502007674], - [-1.575396063433757, 49.03387119483934], - [-1.575393172148881, 49.03379655024464], - [-1.575384540079603, 49.03373065897707], - [-1.575385733663119, 49.03370415026993], - [-1.575398440902064, 49.03366742153607], - [-1.575414634194523, 49.03363823518167], - [-1.575447523911081, 49.03358650387202], - [-1.575463612374894, 49.03356839643247], - [-1.575478589266007, 49.033544648200454], - [-1.575516519112069, 49.03347527929619], - [-1.575582252380262, 49.0333296754309], - [-1.575600779975003, 49.03326429799713], - [-1.575607794489839, 49.03320246470485], - [-1.575603504890467, 49.03309437846214], - [-1.575603504890467, 49.03309437846214] - ] - }, - "length": 0.7810390610336964, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34031", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38707", - "bus2": "MVBus38708", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575603504890467, 49.03309437846214], - [-1.575603504890467, 49.03309437846214], - [-1.575602996997248, 49.033042886390724], - [-1.575601372013147, 49.03295136657925], - [-1.57559477053379, 49.03286441839019], - [-1.575589899301903, 49.03276454758031], - [-1.575583251210392, 49.03267355218401], - [-1.575575970203807, 49.03257618953205], - [-1.575563503307198, 49.03244613913025], - [-1.575553558445611, 49.03236201757182], - [-1.575539233951937, 49.03226903332029], - [-1.575521126114076, 49.032192574822034], - [-1.575509459945001, 49.03211426781591], - [-1.575495114429851, 49.032026241668795], - [-1.575482505888749, 49.03195518124611], - [-1.575480886009266, 49.03193452284231], - [-1.575473482255541, 49.03190163782298], - [-1.575451210957967, 49.03179821622847], - [-1.575436647969154, 49.03173693675176], - [-1.575414180308222, 49.03162604492889], - [-1.575386765238798, 49.03151649378895], - [-1.575380339240479, 49.03147502042222], - [-1.575360382267668, 49.03139925223867], - [-1.57533491590319, 49.03130404170185], - [-1.575308538661513, 49.03119391669762], - [-1.57528219235144, 49.031097925218546], - [-1.575257767889541, 49.03101411592138], - [-1.575235218451927, 49.03093663318588], - [-1.575201281883382, 49.03085387322508], - [-1.575179878456012, 49.03080993936897], - [-1.575137494188849, 49.03075546429381], - [-1.57509519538822, 49.03068640199159], - [-1.575025393797894, 49.030601982652335], - [-1.574994935010283, 49.03056133243352], - [-1.574948495115009, 49.03051960416846], - [-1.574897217331448, 49.03048066152195], - [-1.574818544446792, 49.03042958824526], - [-1.574724373268428, 49.03038850555287], - [-1.574648501390273, 49.030353814247924], - [-1.574557700390914, 49.0303172995776], - [-1.574418378028872, 49.03027154135467], - [-1.574289911980064, 49.030226399132665], - [-1.574122499501011, 49.03017178958353], - [-1.573924786762042, 49.03010281387126], - [-1.573742698751843, 49.03004104578526], - [-1.573524216044866, 49.029970977103666], - [-1.573334467002688, 49.029905779424695], - [-1.573141121844727, 49.02984530574219], - [-1.572973976724636, 49.02979238635705], - [-1.572810449324507, 49.02974007708292], - [-1.572692315969053, 49.02969908453164], - [-1.572683931400068, 49.029693519851854], - [-1.572677615651301, 49.029682750065305], - [-1.572676439284145, 49.02966793425671], - [-1.572677573923785, 49.02963376187036], - [-1.572674852933138, 49.02957667396216], - [-1.572677885032044, 49.02956828831333], - [-1.572686430911811, 49.02955863350618], - [-1.572702625592692, 49.02954862033733], - [-1.572736461513759, 49.02953324315701], - [-1.572825811149359, 49.02950110430073], - [-1.572947111279, 49.02946085658546], - [-1.57306906367093, 49.02942886477975], - [-1.573236218396324, 49.0293848841838], - [-1.573412073815963, 49.02933655173863], - [-1.573561608963296, 49.02929497400124], - [-1.573715621311486, 49.02925109013898], - [-1.573783937844556, 49.02922651309621], - [-1.573859548036811, 49.02920429735396], - [-1.574028292177208, 49.02915783431091], - [-1.574122927628097, 49.02912848139886], - [-1.574404882709284, 49.02904357212648], - [-1.574517922141982, 49.029011528786114], - [-1.574658045937291, 49.02896855738001], - [-1.574837352385783, 49.028915422166094], - [-1.574967177186988, 49.02888443007432], - [-1.575201529299176, 49.02882608126887], - [-1.575284264037069, 49.02879696427797], - [-1.575415481427542, 49.02875745070805], - [-1.575415481427542, 49.02875745070805] - ] - }, - "length": 0.7174874457617614, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45219", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38708", - "bus2": "MVLV10414", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575415481427542, 49.02875745070805], - [-1.575415481427542, 49.02875745070805], - [-1.575226867647049, 49.02878253259593], - [-1.573983343738142, 49.02677037365746], - [-1.573983343738142, 49.02677037365746] - ] - }, - "length": 0.255618279052932, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33025", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38708", - "bus2": "MVBus38709", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575415481427542, 49.02875745070805], - [-1.575415481427542, 49.02875745070805], - [-1.584103053761133, 49.026184808059035], - [-1.586145591666526, 49.025624035517666], - [-1.586163645822428, 49.02561765715403], - [-1.586163645822428, 49.02561765715403] - ] - }, - "length": 0.8601561712055001, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43303", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus38707", - "bus2": "MVLV14661", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.575603504890467, 49.03309437846214], - [-1.575603504890467, 49.03309437846214], - [-1.575606556441053, 49.033086253036196], - [-1.575612726752676, 49.03308118344505], - [-1.575623380423884, 49.033075508129706], - [-1.575664329282691, 49.03305484080282], - [-1.575677643206582, 49.03305176848409], - [-1.575698736056475, 49.033053479738435], - [-1.575754110854216, 49.0330660881236], - [-1.575789041057706, 49.03307488566882], - [-1.575798893480743, 49.0330817516294], - [-1.575815021719877, 49.033102096665246], - [-1.575820358399386, 49.03313333990028], - [-1.575820358399386, 49.03313333990028] - ] - }, - "length": 0.02313408212857222, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35327", - "bus2": "MVLV18001", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56889755134967, 49.03931854303925], - [-1.56889755134967, 49.03931854303925], - [-1.568893756419509, 49.039313241894895], - [-1.568819670901675, 49.0393127762733], - [-1.568810550960936, 49.03926982557076], - [-1.568804059103535, 49.039169351653605], - [-1.568882278627921, 49.03901009209144], - [-1.568935462374124, 49.03883375590814], - [-1.568895962584171, 49.038684985337596], - [-1.568851605304648, 49.03857656349965], - [-1.568575460855304, 49.03810838786614], - [-1.568448332100217, 49.03792261618062], - [-1.568360055316023, 49.037657416502604], - [-1.568312137481616, 49.03765478152067], - [-1.568312137481616, 49.03765478152067] - ] - }, - "length": 0.20216554723497288, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36107", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus35326", - "bus2": "MVLV06710", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564656394675905, 49.0399616456111], - [-1.564656394675905, 49.0399616456111], - [-1.564706981331512, 49.03996552650747], - [-1.564727924823297, 49.039952372540434], - [-1.56473933858268, 49.0399329979881], - [-1.56474072503813, 49.039914400807675], - [-1.564732788462391, 49.039903908577465], - [-1.564732788462391, 49.039903908577465] - ] - }, - "length": 0.011525816996281366, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39035", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus30452", - "bus2": "MVBus30458", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544605930612236, 49.04663486061268], - [-1.544605930612236, 49.04663486061268], - [-1.544615426108271, 49.04665466011679], - [-1.544615426108271, 49.04665466011679] - ] - }, - "length": 0.0023087401532615463, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42223", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus28325", - "bus2": "MVLV18902", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542619622656282, 49.04779553766782], - [-1.542619622656282, 49.04779553766782], - [-1.542641442635851, 49.04784292629337], - [-1.542632731877063, 49.0478457642589], - [-1.542632731877063, 49.0478457642589] - ] - }, - "length": 0.0062169144119620864, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36670", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23998", - "bus2": "MVLV13802", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530799108036813, 49.05005551741369], - [-1.530799108036813, 49.05005551741369], - [-1.53077414365494, 49.0500686961079], - [-1.530575403425454, 49.05009159355121], - [-1.530576179130021, 49.05011528391853], - [-1.530576179130021, 49.05011528391853] - ] - }, - "length": 0.01972485063828715, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43398", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23996", - "bus2": "MVLV10305", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527305659304398, 49.050631392784375], - [-1.527305659304398, 49.050631392784375], - [-1.527331567016426, 49.05061818434851], - [-1.527340753067769, 49.0506372212535], - [-1.527356876822457, 49.05063026709952], - [-1.527356876822457, 49.05063026709952] - ] - }, - "length": 0.006027432985588235, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV06709_production", - "bus": "MVLV06709", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06709_consumption", - "bus": "MVLV06709", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV16847_production", - "bus": "MVLV16847", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16847_consumption", - "bus": "MVLV16847", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV07026_production", - "bus": "MVLV07026", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07026_consumption", - "bus": "MVLV07026", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV03204_production", - "bus": "MVLV03204", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03204_consumption", - "bus": "MVLV03204", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV06428_production", - "bus": "MVLV06428", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06428_consumption", - "bus": "MVLV06428", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV10304_production", - "bus": "MVLV10304", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10304_consumption", - "bus": "MVLV10304", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV19090_production", - "bus": "MVLV19090", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19090_consumption", - "bus": "MVLV19090", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV07041_production", - "bus": "MVLV07041", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07041_consumption", - "bus": "MVLV07041", - "phases": "abc", - "powers": [ - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201] - ] - }, - { - "id": "MVLV12057_production", - "bus": "MVLV12057", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12057_consumption", - "bus": "MVLV12057", - "phases": "abc", - "powers": [ - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201] - ] - }, - { - "id": "MVLV10414_production", - "bus": "MVLV10414", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10414_consumption", - "bus": "MVLV10414", - "phases": "abc", - "powers": [ - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201] - ] - }, - { - "id": "MVLV14661_production", - "bus": "MVLV14661", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14661_consumption", - "bus": "MVLV14661", - "phases": "abc", - "powers": [ - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201] - ] - }, - { - "id": "MVLV18001_production", - "bus": "MVLV18001", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18001_consumption", - "bus": "MVLV18001", - "phases": "abc", - "powers": [ - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201] - ] - }, - { - "id": "MVLV06710_production", - "bus": "MVLV06710", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06710_consumption", - "bus": "MVLV06710", - "phases": "abc", - "powers": [ - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201], - [42558.040542803654, 13988.151473977201] - ] - }, - { - "id": "MVLV18902_production", - "bus": "MVLV18902", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18902_consumption", - "bus": "MVLV18902", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV13802_production", - "bus": "MVLV13802", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13802_consumption", - "bus": "MVLV13802", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - }, - { - "id": "MVLV10305_production", - "bus": "MVLV10305", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10305_consumption", - "bus": "MVLV10305", - "phases": "abc", - "powers": [ - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646], - [17920.766675207127, 5890.271158759646] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder151_summer.json b/data/MVFeeder151_summer.json deleted file mode 100644 index 40b50175..00000000 --- a/data/MVFeeder151_summer.json +++ /dev/null @@ -1,2449 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.400644460738214, 49.19437059827912] - } - }, - { - "id": "HVMV10", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.400644460738214, 49.19437059827912] - } - }, - { - "id": "MVBus01125", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.398471415240154, 49.197311120967456] - } - }, - { - "id": "MVBus01126", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391988779495846, 49.19745201346063] - } - }, - { - "id": "MVBus01127", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387899837464075, 49.19752164227426] - } - }, - { - "id": "MVBus01130", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386434121343654, 49.198307443094826] - } - }, - { - "id": "MVBus01131", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381413645281745, 49.200783953209275] - } - }, - { - "id": "MVBus01133", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37606254916796, 49.2036615010985] - } - }, - { - "id": "MVBus01134", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371497916564513, 49.20636790526618] - } - }, - { - "id": "MVBus01135", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369575619515095, 49.20590586335567] - } - }, - { - "id": "MVLV02073", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369625753006489, 49.205890425353154] - } - }, - { - "id": "MVBus01137", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36602090038556, 49.20768568085028] - } - }, - { - "id": "MVBus01139", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364300108699813, 49.20852396508281] - } - }, - { - "id": "MVLV19065", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362253176306516, 49.20837200995956] - } - }, - { - "id": "MVBus01141", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367250493369971, 49.210069215547236] - } - }, - { - "id": "MVLV01181", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367205145767236, 49.21268268702277] - } - }, - { - "id": "MVLV02449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366077427311016, 49.20770239152203] - } - }, - { - "id": "MVLV12112", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375730651232574, 49.20419860098101] - } - }, - { - "id": "MVLV18760", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381353239112412, 49.2005577296417] - } - }, - { - "id": "MVBus01128", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380055316559206, 49.197925264306974] - } - }, - { - "id": "MVLV04803", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380024828329451, 49.19787713001719] - } - }, - { - "id": "MVBus06160", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379982409316188, 49.19792739961313] - } - }, - { - "id": "MVBus06161", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365872429847849, 49.199108385566035] - } - }, - { - "id": "MVLV05938", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361761784304043, 49.201841114321326] - } - }, - { - "id": "MVBus08004", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351057481226238, 49.20550344920491] - } - }, - { - "id": "MVBus08005", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341857172748097, 49.210916574982235] - } - }, - { - "id": "MVBus08006", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341377964379336, 49.210571781060345] - } - }, - { - "id": "MVBus08007", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339289689674315, 49.209288122200256] - } - }, - { - "id": "MVLV12778", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339859736984475, 49.20901882999961] - } - }, - { - "id": "MVBus08009", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.336664524247945, 49.20817464374827] - } - }, - { - "id": "MVBus08010", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339985618419001, 49.20295456927056] - } - }, - { - "id": "MVLV12777", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341516729699154, 49.199721097795496] - } - }, - { - "id": "MVBus08011", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339064545087953, 49.202948022258376] - } - }, - { - "id": "MVBus08013", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332685539434031, 49.203508463384615] - } - }, - { - "id": "MVLV15670", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329294788631892, 49.203772436228775] - } - }, - { - "id": "MVLV01035", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329691004172543, 49.20145516351973] - } - }, - { - "id": "MVLV04344", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.338969324671971, 49.20256503353621] - } - }, - { - "id": "MVBus08017", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.335554783420955, 49.21006478404471] - } - }, - { - "id": "MVBus08018", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.33443218631297, 49.210029536109076] - } - }, - { - "id": "MVBus08019", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.333282748941467, 49.210448669580074] - } - }, - { - "id": "MVBus08020", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332470098879885, 49.211270721386484] - } - }, - { - "id": "MVLV18028", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329209204026245, 49.21496834539136] - } - }, - { - "id": "MVLV05423", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.327133254002545, 49.20966460598425] - } - }, - { - "id": "MVLV01034", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.335120526113163, 49.21075969320578] - } - }, - { - "id": "MVBus08024", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.338983293547596, 49.21273716925712] - } - }, - { - "id": "MVLV12779", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3392500854367348, 49.21300799062853] - } - }, - { - "id": "MVBus14902", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.33874589232792, 49.212870811064114] - } - }, - { - "id": "MVBus08026", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.342294877769577, 49.21116545587655] - } - }, - { - "id": "MVBus08027", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343421574081732, 49.21199189101324] - } - }, - { - "id": "MVBus08028", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343817635021131, 49.213515226393035] - } - }, - { - "id": "MVBus08029", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343957847639943, 49.21525214415334] - } - }, - { - "id": "MVLV11499", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.34344165605453, 49.21703067189177] - } - }, - { - "id": "MVLV16560", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344092898330874, 49.215241818413936] - } - }, - { - "id": "MVBus08032", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.346331297612717, 49.212191588928825] - } - }, - { - "id": "MVLV12166", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.348823764916332, 49.210614055003745] - } - }, - { - "id": "MVBus08034", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.354209465427343, 49.21360462031885] - } - }, - { - "id": "MVLV11500", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.355198846212574, 49.21312586754413] - } - }, - { - "id": "MVBus01144", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.394727016993843, 49.20059538450612] - } - }, - { - "id": "MVLV15593", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.397099714849239, 49.203207453534056] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV10", - "geometry": { - "type": "Point", - "coordinates": [-1.400644460738214, 49.19437059827912] - } - }, - { - "id": "MVBranch39901", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV10", - "bus2": "MVBus01125", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.400644460738214, 49.19437059827912], - [-1.400569753446861, 49.194351088742074], - [-1.400569753446861, 49.194351088742074], - [-1.400545575309183, 49.19435323704507], - [-1.400223482122071, 49.1943893585729], - [-1.398793696919133, 49.19693354478506], - [-1.398471415240154, 49.197311120967456], - [-1.398471415240154, 49.197311120967456] - ] - }, - "length": 0.3752385234235244, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch31777", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01125", - "bus2": "MVBus01126", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.398471415240154, 49.197311120967456], - [-1.398471415240154, 49.197311120967456], - [-1.391988779495846, 49.19745201346063], - [-1.391988779495846, 49.19745201346063] - ] - }, - "length": 0.4727286229290833, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch08108", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01126", - "bus2": "MVBus01127", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391988779495846, 49.19745201346063], - [-1.391988779495846, 49.19745201346063], - [-1.387899837464075, 49.19752164227426], - [-1.387899837464075, 49.19752164227426] - ] - }, - "length": 0.2981111190342436, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch22889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01127", - "bus2": "MVBus01130", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387899837464075, 49.19752164227426], - [-1.387899837464075, 49.19752164227426], - [-1.386434121343654, 49.198307443094826], - [-1.386434121343654, 49.198307443094826] - ] - }, - "length": 0.13801655858311052, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25204", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01130", - "bus2": "MVBus01131", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386434121343654, 49.198307443094826], - [-1.386434121343654, 49.198307443094826], - [-1.381413645281745, 49.200783953209275], - [-1.381413645281745, 49.200783953209275] - ] - }, - "length": 0.4579636430168069, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04524", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01131", - "bus2": "MVBus01133", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381413645281745, 49.200783953209275], - [-1.381413645281745, 49.200783953209275], - [-1.37606254916796, 49.2036615010985], - [-1.37606254916796, 49.2036615010985] - ] - }, - "length": 0.5044646560906615, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14303", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01133", - "bus2": "MVBus01134", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37606254916796, 49.2036615010985], - [-1.37606254916796, 49.2036615010985], - [-1.374225337378775, 49.20474042083149], - [-1.373410460048645, 49.20544538429207], - [-1.371497916564513, 49.20636790526618], - [-1.371497916564513, 49.20636790526618] - ] - }, - "length": 0.4511924575632565, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch47651", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01134", - "bus2": "MVBus01135", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371497916564513, 49.20636790526618], - [-1.371497916564513, 49.20636790526618], - [-1.370942753305776, 49.20643787853724], - [-1.370829455415836, 49.20643861289541], - [-1.369575619515095, 49.20590586335567], - [-1.369575619515095, 49.20590586335567] - ] - }, - "length": 0.15834763398679907, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33696", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01135", - "bus2": "MVLV02073", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369575619515095, 49.20590586335567], - [-1.369575619515095, 49.20590586335567], - [-1.369605158859287, 49.20588619609382], - [-1.369625753006489, 49.205890425353154], - [-1.369625753006489, 49.205890425353154] - ] - }, - "length": 0.004641468215196063, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33431", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01135", - "bus2": "MVBus01137", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369575619515095, 49.20590586335567], - [-1.369575619515095, 49.20590586335567], - [-1.36892054236915, 49.2062096382133], - [-1.368060935604432, 49.206637470940066], - [-1.366064787519364, 49.2076309061317], - [-1.366040592732759, 49.20762910809543], - [-1.366020639948322, 49.207639519603894], - [-1.36602090038556, 49.20768568085028], - [-1.36602090038556, 49.20768568085028] - ] - }, - "length": 0.3285660531135982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47650", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01137", - "bus2": "MVBus01139", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36602090038556, 49.20768568085028], - [-1.36602090038556, 49.20768568085028], - [-1.364300108699813, 49.20852396508281], - [-1.364300108699813, 49.20852396508281] - ] - }, - "length": 0.15624899895376643, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33843", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01139", - "bus2": "MVLV19065", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364300108699813, 49.20852396508281], - [-1.364300108699813, 49.20852396508281], - [-1.364276611392245, 49.20852576096867], - [-1.364243248037149, 49.208542126894514], - [-1.364236091594157, 49.20855657729598], - [-1.363205303112883, 49.20908166282694], - [-1.363182217606456, 49.20905997893035], - [-1.363114601998387, 49.20907043999173], - [-1.363068865292149, 49.20905010285702], - [-1.362822381345091, 49.2088761192765], - [-1.362656196732397, 49.20875293179674], - [-1.362523738529256, 49.208637122147515], - [-1.362390802049739, 49.208529737046064], - [-1.362236233710043, 49.20838936166313], - [-1.362253176306516, 49.20837200995956], - [-1.362253176306516, 49.20837200995956] - ] - }, - "length": 0.21131752047883515, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41769", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01139", - "bus2": "MVBus01141", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364300108699813, 49.20852396508281], - [-1.364300108699813, 49.20852396508281], - [-1.364255695618835, 49.20855466777179], - [-1.364233181104289, 49.20856535593151], - [-1.364247687054865, 49.208588572788294], - [-1.364721840585656, 49.20896418860553], - [-1.365103025177107, 49.209263773378886], - [-1.365265573628437, 49.20938077372986], - [-1.36565783923541, 49.20929051307568], - [-1.365715681257003, 49.209284076228165], - [-1.365765680470942, 49.209294566568474], - [-1.366161324252151, 49.209494491219935], - [-1.366653094088463, 49.20976090993441], - [-1.366722791100287, 49.20983333966672], - [-1.367250493369971, 49.210069215547236], - [-1.367250493369971, 49.210069215547236] - ] - }, - "length": 0.3020679040124087, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch11215", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01141", - "bus2": "MVLV01181", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367250493369971, 49.210069215547236], - [-1.367250493369971, 49.210069215547236], - [-1.367205145767236, 49.21268268702277], - [-1.367205145767236, 49.21268268702277] - ] - }, - "length": 0.2906729553743542, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42424", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01137", - "bus2": "MVLV02449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36602090038556, 49.20768568085028], - [-1.36602090038556, 49.20768568085028], - [-1.366048334797249, 49.20767221391265], - [-1.366077427311016, 49.20770239152203], - [-1.366077427311016, 49.20770239152203] - ] - }, - "length": 0.0064674831481781325, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44705", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01133", - "bus2": "MVLV12112", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37606254916796, 49.2036615010985], - [-1.37606254916796, 49.2036615010985], - [-1.375619124106296, 49.203755919246895], - [-1.375551483791231, 49.20376324927539], - [-1.375559920898894, 49.203782587360095], - [-1.375578953112975, 49.203793331152795], - [-1.375710875898862, 49.204110202154425], - [-1.37574849786526, 49.20412783568375], - [-1.375730651232574, 49.20419860098101], - [-1.375730651232574, 49.20419860098101] - ] - }, - "length": 0.09091630042257265, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch10887", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01131", - "bus2": "MVLV18760", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381413645281745, 49.200783953209275], - [-1.381413645281745, 49.200783953209275], - [-1.381353239112412, 49.2005577296417], - [-1.381353239112412, 49.2005577296417] - ] - }, - "length": 0.025541382409007853, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30327", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01127", - "bus2": "MVBus01128", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387899837464075, 49.19752164227426], - [-1.387899837464075, 49.19752164227426], - [-1.380055316559206, 49.197925264306974], - [-1.380055316559206, 49.197925264306974] - ] - }, - "length": 0.5734816068735786, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch46260", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01128", - "bus2": "MVLV04803", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380055316559206, 49.197925264306974], - [-1.380055316559206, 49.197925264306974], - [-1.380029045919404, 49.197927167466894], - [-1.38000728056561, 49.197894525942864], - [-1.38000269392821, 49.197887652287186], - [-1.380030197330434, 49.19788077277595], - [-1.380024828329451, 49.19787713001719] - ] - }, - "length": 0.008867814366420233, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43366", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04803", - "bus2": "MVBus06160", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380024828329451, 49.19787713001719], - [-1.380019459328468, 49.19787348725843], - [-1.379957305316593, 49.197886919258224], - [-1.379982409316188, 49.19792739961313], - [-1.379982409316188, 49.19792739961313] - ] - }, - "length": 0.009629375798791267, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23926", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06160", - "bus2": "MVBus06161", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379982409316188, 49.19792739961313], - [-1.379982409316188, 49.19792739961313], - [-1.377170060109506, 49.19799017044783], - [-1.365872429847849, 49.199108385566035], - [-1.365872429847849, 49.199108385566035] - ] - }, - "length": 1.0378022639401279, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch47758", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06161", - "bus2": "MVLV05938", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365872429847849, 49.199108385566035], - [-1.365872429847849, 49.199108385566035], - [-1.365827028833965, 49.19910901473249], - [-1.365810029666131, 49.198817977602594], - [-1.365829128625967, 49.19870168901893], - [-1.365860771436813, 49.19849113541451], - [-1.365847361056913, 49.19841653413548], - [-1.365815922308058, 49.198408996509386], - [-1.365331238464174, 49.19862608969938], - [-1.365151404078402, 49.198704133058555], - [-1.364956470759504, 49.198813089471756], - [-1.364546309981814, 49.19906967546579], - [-1.364261235812909, 49.19929180609771], - [-1.364147340586572, 49.19939815039002], - [-1.363849624683105, 49.19976139167069], - [-1.363593103318113, 49.20005485675752], - [-1.36344447594276, 49.20016231758966], - [-1.36261489185385, 49.20109406657958], - [-1.361890907040449, 49.20180946652499], - [-1.361828576655107, 49.20178829189512], - [-1.36176888697498, 49.20178265941115], - [-1.36169975869267, 49.20180422110307], - [-1.361673734029342, 49.201822950505395], - [-1.361660574273811, 49.20184821775763], - [-1.361704592546255, 49.20187281787203], - [-1.361753350924929, 49.2018713131958], - [-1.361751267972114, 49.201853217322245], - [-1.361749819695023, 49.20184070551553], - [-1.361761784304043, 49.201841114321326] - ] - }, - "length": 0.5953633486620007, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41186", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05938", - "bus2": "MVBus08004", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361761784304043, 49.201841114321326], - [-1.361773748913063, 49.201841523127115], - [-1.36177480667641, 49.20185223007019], - [-1.361778238083724, 49.201886987353795], - [-1.361705114189638, 49.201889243953204], - [-1.361635111319153, 49.20185203471307], - [-1.361395270535267, 49.20185857225343], - [-1.361243192860416, 49.201873644625394], - [-1.358752137034564, 49.20138136594533], - [-1.358705749600252, 49.201379180470234], - [-1.358644727948841, 49.20138537946614], - [-1.358587429994165, 49.20141304169606], - [-1.358561087200398, 49.201442645705455], - [-1.357843883810464, 49.20343510616742], - [-1.357858790998062, 49.20356874702992], - [-1.357846812324177, 49.20361527654082], - [-1.357813439411047, 49.203662465549584], - [-1.357740054563785, 49.20369592093547], - [-1.356531885564209, 49.2037200070457], - [-1.356079487758554, 49.20374682720583], - [-1.355216475988508, 49.20395008626084], - [-1.354852487532074, 49.2040853422354], - [-1.354526501549604, 49.20422548896837], - [-1.354088654340415, 49.20439878856032], - [-1.353612005017919, 49.20462598031792], - [-1.351726659145385, 49.20531873426339], - [-1.351346037426048, 49.20542097706608], - [-1.351090371435637, 49.20551225026362], - [-1.351057481226238, 49.20550344920491], - [-1.351057481226238, 49.20550344920491] - ] - }, - "length": 1.0507376333123526, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08004", - "bus2": "MVBus08005", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351057481226238, 49.20550344920491], - [-1.351057481226238, 49.20550344920491], - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235] - ] - }, - "length": 0.9010255782680595, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11211", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08005", - "bus2": "MVBus08006", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235], - [-1.341377964379336, 49.210571781060345], - [-1.341377964379336, 49.210571781060345] - ] - }, - "length": 0.0518609316474867, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08006", - "bus2": "MVBus08007", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341377964379336, 49.210571781060345], - [-1.341377964379336, 49.210571781060345], - [-1.339289689674315, 49.209288122200256], - [-1.339289689674315, 49.209288122200256] - ] - }, - "length": 0.20864592838227725, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08987", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08007", - "bus2": "MVLV12778", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339289689674315, 49.209288122200256], - [-1.339289689674315, 49.209288122200256], - [-1.339859736984475, 49.20901882999961], - [-1.339859736984475, 49.20901882999961] - ] - }, - "length": 0.05120761384486094, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08007", - "bus2": "MVBus08009", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339289689674315, 49.209288122200256], - [-1.339289689674315, 49.209288122200256], - [-1.338613226606462, 49.208877609230704], - [-1.338570101101447, 49.208851975195614], - [-1.336664524247945, 49.20817464374827], - [-1.336664524247945, 49.20817464374827] - ] - }, - "length": 0.22939722671397728, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02665", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08009", - "bus2": "MVBus08010", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.336664524247945, 49.20817464374827], - [-1.336664524247945, 49.20817464374827], - [-1.339985618419001, 49.20295456927056], - [-1.339985618419001, 49.20295456927056] - ] - }, - "length": 0.6289669786255697, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08010", - "bus2": "MVLV12777", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339985618419001, 49.20295456927056], - [-1.339985618419001, 49.20295456927056], - [-1.341087680788626, 49.2009655810241], - [-1.341516729699154, 49.199721097795496], - [-1.341516729699154, 49.199721097795496] - ] - }, - "length": 0.37722292711614785, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25513", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08010", - "bus2": "MVBus08011", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339985618419001, 49.20295456927056], - [-1.339985618419001, 49.20295456927056], - [-1.339064545087953, 49.202948022258376], - [-1.339064545087953, 49.202948022258376] - ] - }, - "length": 0.0671262774393411, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30328", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08011", - "bus2": "MVBus08013", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339064545087953, 49.202948022258376], - [-1.339064545087953, 49.202948022258376], - [-1.332685539434031, 49.203508463384615], - [-1.332685539434031, 49.203508463384615] - ] - }, - "length": 0.4690211849346568, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14302", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08013", - "bus2": "MVLV15670", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332685539434031, 49.203508463384615], - [-1.332685539434031, 49.203508463384615], - [-1.329294788631892, 49.203772436228775], - [-1.329294788631892, 49.203772436228775] - ] - }, - "length": 0.24883212415093037, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08985", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08013", - "bus2": "MVLV01035", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332685539434031, 49.203508463384615], - [-1.332685539434031, 49.203508463384615], - [-1.331432837743288, 49.201906282821255], - [-1.329691004172543, 49.20145516351973], - [-1.329691004172543, 49.20145516351973] - ] - }, - "length": 0.3367014083562083, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21972", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08011", - "bus2": "MVLV04344", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339064545087953, 49.202948022258376], - [-1.339064545087953, 49.202948022258376], - [-1.338969324671971, 49.20256503353621], - [-1.338969324671971, 49.20256503353621] - ] - }, - "length": 0.04315512044334193, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08988", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08009", - "bus2": "MVBus08017", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.336664524247945, 49.20817464374827], - [-1.336664524247945, 49.20817464374827], - [-1.335554783420955, 49.21006478404471], - [-1.335554783420955, 49.21006478404471] - ] - }, - "length": 0.22522575428647068, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21968", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08017", - "bus2": "MVBus08018", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.335554783420955, 49.21006478404471], - [-1.335554783420955, 49.21006478404471], - [-1.33443218631297, 49.210029536109076], - [-1.33443218631297, 49.210029536109076] - ] - }, - "length": 0.08189035254735173, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21970", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08018", - "bus2": "MVBus08019", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.33443218631297, 49.210029536109076], - [-1.33443218631297, 49.210029536109076], - [-1.333288037132764, 49.210443317898154], - [-1.333282748941467, 49.210448669580074], - [-1.333282748941467, 49.210448669580074] - ] - }, - "length": 0.09593325522205273, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21969", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08019", - "bus2": "MVBus08020", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.333282748941467, 49.210448669580074], - [-1.333282748941467, 49.210448669580074], - [-1.332470098879885, 49.211270721386484], - [-1.332470098879885, 49.211270721386484] - ] - }, - "length": 0.10892327206842724, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15300", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08020", - "bus2": "MVLV18028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332470098879885, 49.211270721386484], - [-1.332470098879885, 49.211270721386484], - [-1.329209204026245, 49.21496834539136], - [-1.329209204026245, 49.21496834539136] - ] - }, - "length": 0.4749260157342042, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08020", - "bus2": "MVLV05423", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332470098879885, 49.211270721386484], - [-1.332470098879885, 49.211270721386484], - [-1.327133254002545, 49.20966460598425], - [-1.327133254002545, 49.20966460598425] - ] - }, - "length": 0.42792148928492063, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18105", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08017", - "bus2": "MVLV01034", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.335554783420955, 49.21006478404471], - [-1.335554783420955, 49.21006478404471], - [-1.335120526113163, 49.21075969320578], - [-1.335120526113163, 49.21075969320578] - ] - }, - "length": 0.08350995205919573, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11216", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08005", - "bus2": "MVBus08024", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235], - [-1.338983293547596, 49.21273716925712], - [-1.338983293547596, 49.21273716925712] - ] - }, - "length": 0.29127642224019146, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch39234", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08024", - "bus2": "MVLV12779", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.338983293547596, 49.21273716925712], - [-1.338983293547596, 49.21273716925712], - [-1.339242521379031, 49.21299378204512], - [-1.339253868351084, 49.21300501889686], - [-1.3392500854367348, 49.21300799062853] - ] - }, - "length": 0.03572113363139701, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39719", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12779", - "bus2": "MVBus14902", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3392500854367348, 49.21300799062853], - [-1.339246302522386, 49.21301096236021], - [-1.33922738972057, 49.213005668970006], - [-1.33874589232792, 49.212870811064114], - [-1.33874589232792, 49.212870811064114] - ] - }, - "length": 0.03965157043617779, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25511", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08005", - "bus2": "MVBus08026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235], - [-1.342294877769577, 49.21116545587655], - [-1.342294877769577, 49.21116545587655] - ] - }, - "length": 0.042228362272331434, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08986", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08026", - "bus2": "MVBus08027", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.342294877769577, 49.21116545587655], - [-1.342294877769577, 49.21116545587655], - [-1.343421574081732, 49.21199189101324], - [-1.343421574081732, 49.21199189101324] - ] - }, - "length": 0.1232348734949884, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11212", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08027", - "bus2": "MVBus08028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343421574081732, 49.21199189101324], - [-1.343421574081732, 49.21199189101324], - [-1.343817635021131, 49.213515226393035], - [-1.343817635021131, 49.213515226393035] - ] - }, - "length": 0.17185604602375276, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25512", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08028", - "bus2": "MVBus08029", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343817635021131, 49.213515226393035], - [-1.343817635021131, 49.213515226393035], - [-1.344057662376381, 49.21443842074906], - [-1.343957847639943, 49.21525214415334], - [-1.343957847639943, 49.21525214415334] - ] - }, - "length": 0.19493978157715744, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05505", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08029", - "bus2": "MVLV11499", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343957847639943, 49.21525214415334], - [-1.343957847639943, 49.21525214415334], - [-1.34344165605453, 49.21703067189177], - [-1.34344165605453, 49.21703067189177] - ] - }, - "length": 0.20134039675703336, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42468", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08029", - "bus2": "MVLV16560", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343957847639943, 49.21525214415334], - [-1.343957847639943, 49.21525214415334], - [-1.343978396866484, 49.21524747472766], - [-1.343989572561411, 49.21524554857661], - [-1.343998460978462, 49.215247155505196], - [-1.344004374963259, 49.215254205441035], - [-1.344011858060366, 49.21525708775308], - [-1.344092898330874, 49.215241818413936], - [-1.344092898330874, 49.215241818413936] - ] - }, - "length": 0.010769055997562197, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch30329", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08027", - "bus2": "MVBus08032", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343421574081732, 49.21199189101324], - [-1.343421574081732, 49.21199189101324], - [-1.346331297612717, 49.212191588928825], - [-1.346331297612717, 49.212191588928825] - ] - }, - "length": 0.21316432697881146, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch16962", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08032", - "bus2": "MVLV12166", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.346331297612717, 49.212191588928825], - [-1.346331297612717, 49.212191588928825], - [-1.348206270278194, 49.210980163397494], - [-1.348823764916332, 49.210614055003745], - [-1.348823764916332, 49.210614055003745] - ] - }, - "length": 0.2525516529399827, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30330", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08032", - "bus2": "MVBus08034", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.346331297612717, 49.212191588928825], - [-1.346331297612717, 49.212191588928825], - [-1.354209465427343, 49.21360462031885], - [-1.354209465427343, 49.21360462031885] - ] - }, - "length": 0.5951220206151072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08034", - "bus2": "MVLV11500", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.354209465427343, 49.21360462031885], - [-1.354209465427343, 49.21360462031885], - [-1.354309381076009, 49.213619811698535], - [-1.355198846212574, 49.21312586754413], - [-1.355198846212574, 49.21312586754413] - ] - }, - "length": 0.09242850337368175, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15818", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01126", - "bus2": "MVBus01144", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391988779495846, 49.19745201346063], - [-1.391988779495846, 49.19745201346063], - [-1.394727016993843, 49.20059538450612], - [-1.394727016993843, 49.20059538450612] - ] - }, - "length": 0.40253590942446993, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31778", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01144", - "bus2": "MVLV15593", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394727016993843, 49.20059538450612], - [-1.394727016993843, 49.20059538450612], - [-1.397099714849239, 49.203207453534056], - [-1.397099714849239, 49.203207453534056] - ] - }, - "length": 0.33806418331880117, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV02073_production", - "bus": "MVLV02073", - "phases": "abc", - "powers": [ - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0] - ] - }, - { - "id": "MVLV02073_consumption", - "bus": "MVLV02073", - "phases": "abc", - "powers": [ - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871] - ] - }, - { - "id": "MVLV19065_production", - "bus": "MVLV19065", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19065_consumption", - "bus": "MVLV19065", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV01181_production", - "bus": "MVLV01181", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01181_consumption", - "bus": "MVLV01181", - "phases": "abc", - "powers": [ - [2621.4750488463815, 861.6371806787896], - [2621.4750488463815, 861.6371806787896], - [2621.4750488463815, 861.6371806787896] - ] - }, - { - "id": "MVLV02449_production", - "bus": "MVLV02449", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02449_consumption", - "bus": "MVLV02449", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV12112_production", - "bus": "MVLV12112", - "phases": "abc", - "powers": [ - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0] - ] - }, - { - "id": "MVLV12112_consumption", - "bus": "MVLV12112", - "phases": "abc", - "powers": [ - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871] - ] - }, - { - "id": "MVLV18760_production", - "bus": "MVLV18760", - "phases": "abc", - "powers": [ - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0] - ] - }, - { - "id": "MVLV18760_consumption", - "bus": "MVLV18760", - "phases": "abc", - "powers": [ - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871] - ] - }, - { - "id": "MVLV04803_production", - "bus": "MVLV04803", - "phases": "abc", - "powers": [ - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0] - ] - }, - { - "id": "MVLV04803_consumption", - "bus": "MVLV04803", - "phases": "abc", - "powers": [ - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871] - ] - }, - { - "id": "MVLV05938_production", - "bus": "MVLV05938", - "phases": "abc", - "powers": [ - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0], - [-2142.8571428571427, 0.0] - ] - }, - { - "id": "MVLV05938_consumption", - "bus": "MVLV05938", - "phases": "abc", - "powers": [ - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871], - [2832.5535201683924, 931.0153191477871] - ] - }, - { - "id": "MVLV12778_production", - "bus": "MVLV12778", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12778_consumption", - "bus": "MVLV12778", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV12777_production", - "bus": "MVLV12777", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12777_consumption", - "bus": "MVLV12777", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV15670_production", - "bus": "MVLV15670", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15670_consumption", - "bus": "MVLV15670", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV01035_production", - "bus": "MVLV01035", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01035_consumption", - "bus": "MVLV01035", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV04344_production", - "bus": "MVLV04344", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04344_consumption", - "bus": "MVLV04344", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV18028_production", - "bus": "MVLV18028", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18028_consumption", - "bus": "MVLV18028", - "phases": "abc", - "powers": [ - [1612.7730171224957, 530.092855989523], - [1612.7730171224957, 530.092855989523], - [1612.7730171224957, 530.092855989523] - ] - }, - { - "id": "MVLV05423_production", - "bus": "MVLV05423", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05423_consumption", - "bus": "MVLV05423", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV01034_production", - "bus": "MVLV01034", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01034_consumption", - "bus": "MVLV01034", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV12779_production", - "bus": "MVLV12779", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12779_consumption", - "bus": "MVLV12779", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV11499_production", - "bus": "MVLV11499", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11499_consumption", - "bus": "MVLV11499", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV16560_production", - "bus": "MVLV16560", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16560_consumption", - "bus": "MVLV16560", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV12166_production", - "bus": "MVLV12166", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12166_consumption", - "bus": "MVLV12166", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV11500_production", - "bus": "MVLV11500", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11500_consumption", - "bus": "MVLV11500", - "phases": "abc", - "powers": [ - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294], - [1508.831202165613, 495.92883354975294] - ] - }, - { - "id": "MVLV15593_production", - "bus": "MVLV15593", - "phases": "abc", - "powers": [ - [-612.2448979591837, 0.0], - [-612.2448979591837, 0.0], - [-612.2448979591837, 0.0] - ] - }, - { - "id": "MVLV15593_consumption", - "bus": "MVLV15593", - "phases": "abc", - "powers": [ - [6436.0808294007475, 2115.4374682704206], - [6436.0808294007475, 2115.4374682704206], - [6436.0808294007475, 2115.4374682704206] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder151_winter.json b/data/MVFeeder151_winter.json deleted file mode 100644 index 7b798835..00000000 --- a/data/MVFeeder151_winter.json +++ /dev/null @@ -1,2449 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.400644460738214, 49.19437059827912] - } - }, - { - "id": "HVMV10", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.400644460738214, 49.19437059827912] - } - }, - { - "id": "MVBus01125", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.398471415240154, 49.197311120967456] - } - }, - { - "id": "MVBus01126", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391988779495846, 49.19745201346063] - } - }, - { - "id": "MVBus01127", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387899837464075, 49.19752164227426] - } - }, - { - "id": "MVBus01130", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386434121343654, 49.198307443094826] - } - }, - { - "id": "MVBus01131", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381413645281745, 49.200783953209275] - } - }, - { - "id": "MVBus01133", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37606254916796, 49.2036615010985] - } - }, - { - "id": "MVBus01134", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371497916564513, 49.20636790526618] - } - }, - { - "id": "MVBus01135", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369575619515095, 49.20590586335567] - } - }, - { - "id": "MVLV02073", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369625753006489, 49.205890425353154] - } - }, - { - "id": "MVBus01137", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36602090038556, 49.20768568085028] - } - }, - { - "id": "MVBus01139", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364300108699813, 49.20852396508281] - } - }, - { - "id": "MVLV19065", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362253176306516, 49.20837200995956] - } - }, - { - "id": "MVBus01141", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367250493369971, 49.210069215547236] - } - }, - { - "id": "MVLV01181", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.367205145767236, 49.21268268702277] - } - }, - { - "id": "MVLV02449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366077427311016, 49.20770239152203] - } - }, - { - "id": "MVLV12112", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.375730651232574, 49.20419860098101] - } - }, - { - "id": "MVLV18760", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381353239112412, 49.2005577296417] - } - }, - { - "id": "MVBus01128", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380055316559206, 49.197925264306974] - } - }, - { - "id": "MVLV04803", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380024828329451, 49.19787713001719] - } - }, - { - "id": "MVBus06160", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.379982409316188, 49.19792739961313] - } - }, - { - "id": "MVBus06161", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365872429847849, 49.199108385566035] - } - }, - { - "id": "MVLV05938", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361761784304043, 49.201841114321326] - } - }, - { - "id": "MVBus08004", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.351057481226238, 49.20550344920491] - } - }, - { - "id": "MVBus08005", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341857172748097, 49.210916574982235] - } - }, - { - "id": "MVBus08006", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341377964379336, 49.210571781060345] - } - }, - { - "id": "MVBus08007", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339289689674315, 49.209288122200256] - } - }, - { - "id": "MVLV12778", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339859736984475, 49.20901882999961] - } - }, - { - "id": "MVBus08009", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.336664524247945, 49.20817464374827] - } - }, - { - "id": "MVBus08010", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339985618419001, 49.20295456927056] - } - }, - { - "id": "MVLV12777", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.341516729699154, 49.199721097795496] - } - }, - { - "id": "MVBus08011", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339064545087953, 49.202948022258376] - } - }, - { - "id": "MVBus08013", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332685539434031, 49.203508463384615] - } - }, - { - "id": "MVLV15670", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329294788631892, 49.203772436228775] - } - }, - { - "id": "MVLV01035", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329691004172543, 49.20145516351973] - } - }, - { - "id": "MVLV04344", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.338969324671971, 49.20256503353621] - } - }, - { - "id": "MVBus08017", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.335554783420955, 49.21006478404471] - } - }, - { - "id": "MVBus08018", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.33443218631297, 49.210029536109076] - } - }, - { - "id": "MVBus08019", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.333282748941467, 49.210448669580074] - } - }, - { - "id": "MVBus08020", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332470098879885, 49.211270721386484] - } - }, - { - "id": "MVLV18028", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.329209204026245, 49.21496834539136] - } - }, - { - "id": "MVLV05423", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.327133254002545, 49.20966460598425] - } - }, - { - "id": "MVLV01034", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.335120526113163, 49.21075969320578] - } - }, - { - "id": "MVBus08024", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.338983293547596, 49.21273716925712] - } - }, - { - "id": "MVLV12779", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3392500854367348, 49.21300799062853] - } - }, - { - "id": "MVBus14902", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.33874589232792, 49.212870811064114] - } - }, - { - "id": "MVBus08026", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.342294877769577, 49.21116545587655] - } - }, - { - "id": "MVBus08027", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343421574081732, 49.21199189101324] - } - }, - { - "id": "MVBus08028", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343817635021131, 49.213515226393035] - } - }, - { - "id": "MVBus08029", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343957847639943, 49.21525214415334] - } - }, - { - "id": "MVLV11499", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.34344165605453, 49.21703067189177] - } - }, - { - "id": "MVLV16560", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.344092898330874, 49.215241818413936] - } - }, - { - "id": "MVBus08032", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.346331297612717, 49.212191588928825] - } - }, - { - "id": "MVLV12166", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.348823764916332, 49.210614055003745] - } - }, - { - "id": "MVBus08034", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.354209465427343, 49.21360462031885] - } - }, - { - "id": "MVLV11500", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.355198846212574, 49.21312586754413] - } - }, - { - "id": "MVBus01144", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.394727016993843, 49.20059538450612] - } - }, - { - "id": "MVLV15593", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.397099714849239, 49.203207453534056] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV10", - "geometry": { - "type": "Point", - "coordinates": [-1.400644460738214, 49.19437059827912] - } - }, - { - "id": "MVBranch39901", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV10", - "bus2": "MVBus01125", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.400644460738214, 49.19437059827912], - [-1.400569753446861, 49.194351088742074], - [-1.400569753446861, 49.194351088742074], - [-1.400545575309183, 49.19435323704507], - [-1.400223482122071, 49.1943893585729], - [-1.398793696919133, 49.19693354478506], - [-1.398471415240154, 49.197311120967456], - [-1.398471415240154, 49.197311120967456] - ] - }, - "length": 0.3752385234235244, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch31777", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01125", - "bus2": "MVBus01126", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.398471415240154, 49.197311120967456], - [-1.398471415240154, 49.197311120967456], - [-1.391988779495846, 49.19745201346063], - [-1.391988779495846, 49.19745201346063] - ] - }, - "length": 0.4727286229290833, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch08108", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01126", - "bus2": "MVBus01127", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391988779495846, 49.19745201346063], - [-1.391988779495846, 49.19745201346063], - [-1.387899837464075, 49.19752164227426], - [-1.387899837464075, 49.19752164227426] - ] - }, - "length": 0.2981111190342436, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch22889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01127", - "bus2": "MVBus01130", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387899837464075, 49.19752164227426], - [-1.387899837464075, 49.19752164227426], - [-1.386434121343654, 49.198307443094826], - [-1.386434121343654, 49.198307443094826] - ] - }, - "length": 0.13801655858311052, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25204", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01130", - "bus2": "MVBus01131", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386434121343654, 49.198307443094826], - [-1.386434121343654, 49.198307443094826], - [-1.381413645281745, 49.200783953209275], - [-1.381413645281745, 49.200783953209275] - ] - }, - "length": 0.4579636430168069, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04524", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01131", - "bus2": "MVBus01133", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381413645281745, 49.200783953209275], - [-1.381413645281745, 49.200783953209275], - [-1.37606254916796, 49.2036615010985], - [-1.37606254916796, 49.2036615010985] - ] - }, - "length": 0.5044646560906615, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14303", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01133", - "bus2": "MVBus01134", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37606254916796, 49.2036615010985], - [-1.37606254916796, 49.2036615010985], - [-1.374225337378775, 49.20474042083149], - [-1.373410460048645, 49.20544538429207], - [-1.371497916564513, 49.20636790526618], - [-1.371497916564513, 49.20636790526618] - ] - }, - "length": 0.4511924575632565, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch47651", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01134", - "bus2": "MVBus01135", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371497916564513, 49.20636790526618], - [-1.371497916564513, 49.20636790526618], - [-1.370942753305776, 49.20643787853724], - [-1.370829455415836, 49.20643861289541], - [-1.369575619515095, 49.20590586335567], - [-1.369575619515095, 49.20590586335567] - ] - }, - "length": 0.15834763398679907, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33696", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01135", - "bus2": "MVLV02073", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369575619515095, 49.20590586335567], - [-1.369575619515095, 49.20590586335567], - [-1.369605158859287, 49.20588619609382], - [-1.369625753006489, 49.205890425353154], - [-1.369625753006489, 49.205890425353154] - ] - }, - "length": 0.004641468215196063, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33431", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01135", - "bus2": "MVBus01137", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369575619515095, 49.20590586335567], - [-1.369575619515095, 49.20590586335567], - [-1.36892054236915, 49.2062096382133], - [-1.368060935604432, 49.206637470940066], - [-1.366064787519364, 49.2076309061317], - [-1.366040592732759, 49.20762910809543], - [-1.366020639948322, 49.207639519603894], - [-1.36602090038556, 49.20768568085028], - [-1.36602090038556, 49.20768568085028] - ] - }, - "length": 0.3285660531135982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47650", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01137", - "bus2": "MVBus01139", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36602090038556, 49.20768568085028], - [-1.36602090038556, 49.20768568085028], - [-1.364300108699813, 49.20852396508281], - [-1.364300108699813, 49.20852396508281] - ] - }, - "length": 0.15624899895376643, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33843", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01139", - "bus2": "MVLV19065", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364300108699813, 49.20852396508281], - [-1.364300108699813, 49.20852396508281], - [-1.364276611392245, 49.20852576096867], - [-1.364243248037149, 49.208542126894514], - [-1.364236091594157, 49.20855657729598], - [-1.363205303112883, 49.20908166282694], - [-1.363182217606456, 49.20905997893035], - [-1.363114601998387, 49.20907043999173], - [-1.363068865292149, 49.20905010285702], - [-1.362822381345091, 49.2088761192765], - [-1.362656196732397, 49.20875293179674], - [-1.362523738529256, 49.208637122147515], - [-1.362390802049739, 49.208529737046064], - [-1.362236233710043, 49.20838936166313], - [-1.362253176306516, 49.20837200995956], - [-1.362253176306516, 49.20837200995956] - ] - }, - "length": 0.21131752047883515, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41769", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01139", - "bus2": "MVBus01141", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364300108699813, 49.20852396508281], - [-1.364300108699813, 49.20852396508281], - [-1.364255695618835, 49.20855466777179], - [-1.364233181104289, 49.20856535593151], - [-1.364247687054865, 49.208588572788294], - [-1.364721840585656, 49.20896418860553], - [-1.365103025177107, 49.209263773378886], - [-1.365265573628437, 49.20938077372986], - [-1.36565783923541, 49.20929051307568], - [-1.365715681257003, 49.209284076228165], - [-1.365765680470942, 49.209294566568474], - [-1.366161324252151, 49.209494491219935], - [-1.366653094088463, 49.20976090993441], - [-1.366722791100287, 49.20983333966672], - [-1.367250493369971, 49.210069215547236], - [-1.367250493369971, 49.210069215547236] - ] - }, - "length": 0.3020679040124087, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch11215", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01141", - "bus2": "MVLV01181", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.367250493369971, 49.210069215547236], - [-1.367250493369971, 49.210069215547236], - [-1.367205145767236, 49.21268268702277], - [-1.367205145767236, 49.21268268702277] - ] - }, - "length": 0.2906729553743542, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42424", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01137", - "bus2": "MVLV02449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36602090038556, 49.20768568085028], - [-1.36602090038556, 49.20768568085028], - [-1.366048334797249, 49.20767221391265], - [-1.366077427311016, 49.20770239152203], - [-1.366077427311016, 49.20770239152203] - ] - }, - "length": 0.0064674831481781325, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44705", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01133", - "bus2": "MVLV12112", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37606254916796, 49.2036615010985], - [-1.37606254916796, 49.2036615010985], - [-1.375619124106296, 49.203755919246895], - [-1.375551483791231, 49.20376324927539], - [-1.375559920898894, 49.203782587360095], - [-1.375578953112975, 49.203793331152795], - [-1.375710875898862, 49.204110202154425], - [-1.37574849786526, 49.20412783568375], - [-1.375730651232574, 49.20419860098101], - [-1.375730651232574, 49.20419860098101] - ] - }, - "length": 0.09091630042257265, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch10887", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01131", - "bus2": "MVLV18760", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.381413645281745, 49.200783953209275], - [-1.381413645281745, 49.200783953209275], - [-1.381353239112412, 49.2005577296417], - [-1.381353239112412, 49.2005577296417] - ] - }, - "length": 0.025541382409007853, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30327", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01127", - "bus2": "MVBus01128", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387899837464075, 49.19752164227426], - [-1.387899837464075, 49.19752164227426], - [-1.380055316559206, 49.197925264306974], - [-1.380055316559206, 49.197925264306974] - ] - }, - "length": 0.5734816068735786, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch46260", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01128", - "bus2": "MVLV04803", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380055316559206, 49.197925264306974], - [-1.380055316559206, 49.197925264306974], - [-1.380029045919404, 49.197927167466894], - [-1.38000728056561, 49.197894525942864], - [-1.38000269392821, 49.197887652287186], - [-1.380030197330434, 49.19788077277595], - [-1.380024828329451, 49.19787713001719] - ] - }, - "length": 0.008867814366420233, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43366", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04803", - "bus2": "MVBus06160", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380024828329451, 49.19787713001719], - [-1.380019459328468, 49.19787348725843], - [-1.379957305316593, 49.197886919258224], - [-1.379982409316188, 49.19792739961313], - [-1.379982409316188, 49.19792739961313] - ] - }, - "length": 0.009629375798791267, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23926", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06160", - "bus2": "MVBus06161", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.379982409316188, 49.19792739961313], - [-1.379982409316188, 49.19792739961313], - [-1.377170060109506, 49.19799017044783], - [-1.365872429847849, 49.199108385566035], - [-1.365872429847849, 49.199108385566035] - ] - }, - "length": 1.0378022639401279, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch47758", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06161", - "bus2": "MVLV05938", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365872429847849, 49.199108385566035], - [-1.365872429847849, 49.199108385566035], - [-1.365827028833965, 49.19910901473249], - [-1.365810029666131, 49.198817977602594], - [-1.365829128625967, 49.19870168901893], - [-1.365860771436813, 49.19849113541451], - [-1.365847361056913, 49.19841653413548], - [-1.365815922308058, 49.198408996509386], - [-1.365331238464174, 49.19862608969938], - [-1.365151404078402, 49.198704133058555], - [-1.364956470759504, 49.198813089471756], - [-1.364546309981814, 49.19906967546579], - [-1.364261235812909, 49.19929180609771], - [-1.364147340586572, 49.19939815039002], - [-1.363849624683105, 49.19976139167069], - [-1.363593103318113, 49.20005485675752], - [-1.36344447594276, 49.20016231758966], - [-1.36261489185385, 49.20109406657958], - [-1.361890907040449, 49.20180946652499], - [-1.361828576655107, 49.20178829189512], - [-1.36176888697498, 49.20178265941115], - [-1.36169975869267, 49.20180422110307], - [-1.361673734029342, 49.201822950505395], - [-1.361660574273811, 49.20184821775763], - [-1.361704592546255, 49.20187281787203], - [-1.361753350924929, 49.2018713131958], - [-1.361751267972114, 49.201853217322245], - [-1.361749819695023, 49.20184070551553], - [-1.361761784304043, 49.201841114321326] - ] - }, - "length": 0.5953633486620007, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41186", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05938", - "bus2": "MVBus08004", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361761784304043, 49.201841114321326], - [-1.361773748913063, 49.201841523127115], - [-1.36177480667641, 49.20185223007019], - [-1.361778238083724, 49.201886987353795], - [-1.361705114189638, 49.201889243953204], - [-1.361635111319153, 49.20185203471307], - [-1.361395270535267, 49.20185857225343], - [-1.361243192860416, 49.201873644625394], - [-1.358752137034564, 49.20138136594533], - [-1.358705749600252, 49.201379180470234], - [-1.358644727948841, 49.20138537946614], - [-1.358587429994165, 49.20141304169606], - [-1.358561087200398, 49.201442645705455], - [-1.357843883810464, 49.20343510616742], - [-1.357858790998062, 49.20356874702992], - [-1.357846812324177, 49.20361527654082], - [-1.357813439411047, 49.203662465549584], - [-1.357740054563785, 49.20369592093547], - [-1.356531885564209, 49.2037200070457], - [-1.356079487758554, 49.20374682720583], - [-1.355216475988508, 49.20395008626084], - [-1.354852487532074, 49.2040853422354], - [-1.354526501549604, 49.20422548896837], - [-1.354088654340415, 49.20439878856032], - [-1.353612005017919, 49.20462598031792], - [-1.351726659145385, 49.20531873426339], - [-1.351346037426048, 49.20542097706608], - [-1.351090371435637, 49.20551225026362], - [-1.351057481226238, 49.20550344920491], - [-1.351057481226238, 49.20550344920491] - ] - }, - "length": 1.0507376333123526, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08004", - "bus2": "MVBus08005", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.351057481226238, 49.20550344920491], - [-1.351057481226238, 49.20550344920491], - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235] - ] - }, - "length": 0.9010255782680595, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11211", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08005", - "bus2": "MVBus08006", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235], - [-1.341377964379336, 49.210571781060345], - [-1.341377964379336, 49.210571781060345] - ] - }, - "length": 0.0518609316474867, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08006", - "bus2": "MVBus08007", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341377964379336, 49.210571781060345], - [-1.341377964379336, 49.210571781060345], - [-1.339289689674315, 49.209288122200256], - [-1.339289689674315, 49.209288122200256] - ] - }, - "length": 0.20864592838227725, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08987", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08007", - "bus2": "MVLV12778", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339289689674315, 49.209288122200256], - [-1.339289689674315, 49.209288122200256], - [-1.339859736984475, 49.20901882999961], - [-1.339859736984475, 49.20901882999961] - ] - }, - "length": 0.05120761384486094, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08007", - "bus2": "MVBus08009", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339289689674315, 49.209288122200256], - [-1.339289689674315, 49.209288122200256], - [-1.338613226606462, 49.208877609230704], - [-1.338570101101447, 49.208851975195614], - [-1.336664524247945, 49.20817464374827], - [-1.336664524247945, 49.20817464374827] - ] - }, - "length": 0.22939722671397728, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02665", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08009", - "bus2": "MVBus08010", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.336664524247945, 49.20817464374827], - [-1.336664524247945, 49.20817464374827], - [-1.339985618419001, 49.20295456927056], - [-1.339985618419001, 49.20295456927056] - ] - }, - "length": 0.6289669786255697, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08010", - "bus2": "MVLV12777", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339985618419001, 49.20295456927056], - [-1.339985618419001, 49.20295456927056], - [-1.341087680788626, 49.2009655810241], - [-1.341516729699154, 49.199721097795496], - [-1.341516729699154, 49.199721097795496] - ] - }, - "length": 0.37722292711614785, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25513", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08010", - "bus2": "MVBus08011", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339985618419001, 49.20295456927056], - [-1.339985618419001, 49.20295456927056], - [-1.339064545087953, 49.202948022258376], - [-1.339064545087953, 49.202948022258376] - ] - }, - "length": 0.0671262774393411, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30328", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08011", - "bus2": "MVBus08013", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339064545087953, 49.202948022258376], - [-1.339064545087953, 49.202948022258376], - [-1.332685539434031, 49.203508463384615], - [-1.332685539434031, 49.203508463384615] - ] - }, - "length": 0.4690211849346568, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14302", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08013", - "bus2": "MVLV15670", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332685539434031, 49.203508463384615], - [-1.332685539434031, 49.203508463384615], - [-1.329294788631892, 49.203772436228775], - [-1.329294788631892, 49.203772436228775] - ] - }, - "length": 0.24883212415093037, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08985", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08013", - "bus2": "MVLV01035", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332685539434031, 49.203508463384615], - [-1.332685539434031, 49.203508463384615], - [-1.331432837743288, 49.201906282821255], - [-1.329691004172543, 49.20145516351973], - [-1.329691004172543, 49.20145516351973] - ] - }, - "length": 0.3367014083562083, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21972", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08011", - "bus2": "MVLV04344", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339064545087953, 49.202948022258376], - [-1.339064545087953, 49.202948022258376], - [-1.338969324671971, 49.20256503353621], - [-1.338969324671971, 49.20256503353621] - ] - }, - "length": 0.04315512044334193, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08988", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08009", - "bus2": "MVBus08017", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.336664524247945, 49.20817464374827], - [-1.336664524247945, 49.20817464374827], - [-1.335554783420955, 49.21006478404471], - [-1.335554783420955, 49.21006478404471] - ] - }, - "length": 0.22522575428647068, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21968", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08017", - "bus2": "MVBus08018", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.335554783420955, 49.21006478404471], - [-1.335554783420955, 49.21006478404471], - [-1.33443218631297, 49.210029536109076], - [-1.33443218631297, 49.210029536109076] - ] - }, - "length": 0.08189035254735173, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21970", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08018", - "bus2": "MVBus08019", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.33443218631297, 49.210029536109076], - [-1.33443218631297, 49.210029536109076], - [-1.333288037132764, 49.210443317898154], - [-1.333282748941467, 49.210448669580074], - [-1.333282748941467, 49.210448669580074] - ] - }, - "length": 0.09593325522205273, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21969", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08019", - "bus2": "MVBus08020", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.333282748941467, 49.210448669580074], - [-1.333282748941467, 49.210448669580074], - [-1.332470098879885, 49.211270721386484], - [-1.332470098879885, 49.211270721386484] - ] - }, - "length": 0.10892327206842724, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15300", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08020", - "bus2": "MVLV18028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332470098879885, 49.211270721386484], - [-1.332470098879885, 49.211270721386484], - [-1.329209204026245, 49.21496834539136], - [-1.329209204026245, 49.21496834539136] - ] - }, - "length": 0.4749260157342042, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch21971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08020", - "bus2": "MVLV05423", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332470098879885, 49.211270721386484], - [-1.332470098879885, 49.211270721386484], - [-1.327133254002545, 49.20966460598425], - [-1.327133254002545, 49.20966460598425] - ] - }, - "length": 0.42792148928492063, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18105", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08017", - "bus2": "MVLV01034", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.335554783420955, 49.21006478404471], - [-1.335554783420955, 49.21006478404471], - [-1.335120526113163, 49.21075969320578], - [-1.335120526113163, 49.21075969320578] - ] - }, - "length": 0.08350995205919573, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11216", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08005", - "bus2": "MVBus08024", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235], - [-1.338983293547596, 49.21273716925712], - [-1.338983293547596, 49.21273716925712] - ] - }, - "length": 0.29127642224019146, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch39234", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08024", - "bus2": "MVLV12779", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.338983293547596, 49.21273716925712], - [-1.338983293547596, 49.21273716925712], - [-1.339242521379031, 49.21299378204512], - [-1.339253868351084, 49.21300501889686], - [-1.3392500854367348, 49.21300799062853] - ] - }, - "length": 0.03572113363139701, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39719", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12779", - "bus2": "MVBus14902", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3392500854367348, 49.21300799062853], - [-1.339246302522386, 49.21301096236021], - [-1.33922738972057, 49.213005668970006], - [-1.33874589232792, 49.212870811064114], - [-1.33874589232792, 49.212870811064114] - ] - }, - "length": 0.03965157043617779, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25511", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08005", - "bus2": "MVBus08026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.341857172748097, 49.210916574982235], - [-1.341857172748097, 49.210916574982235], - [-1.342294877769577, 49.21116545587655], - [-1.342294877769577, 49.21116545587655] - ] - }, - "length": 0.042228362272331434, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08986", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08026", - "bus2": "MVBus08027", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.342294877769577, 49.21116545587655], - [-1.342294877769577, 49.21116545587655], - [-1.343421574081732, 49.21199189101324], - [-1.343421574081732, 49.21199189101324] - ] - }, - "length": 0.1232348734949884, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11212", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08027", - "bus2": "MVBus08028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343421574081732, 49.21199189101324], - [-1.343421574081732, 49.21199189101324], - [-1.343817635021131, 49.213515226393035], - [-1.343817635021131, 49.213515226393035] - ] - }, - "length": 0.17185604602375276, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25512", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08028", - "bus2": "MVBus08029", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343817635021131, 49.213515226393035], - [-1.343817635021131, 49.213515226393035], - [-1.344057662376381, 49.21443842074906], - [-1.343957847639943, 49.21525214415334], - [-1.343957847639943, 49.21525214415334] - ] - }, - "length": 0.19493978157715744, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05505", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08029", - "bus2": "MVLV11499", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343957847639943, 49.21525214415334], - [-1.343957847639943, 49.21525214415334], - [-1.34344165605453, 49.21703067189177], - [-1.34344165605453, 49.21703067189177] - ] - }, - "length": 0.20134039675703336, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42468", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08029", - "bus2": "MVLV16560", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343957847639943, 49.21525214415334], - [-1.343957847639943, 49.21525214415334], - [-1.343978396866484, 49.21524747472766], - [-1.343989572561411, 49.21524554857661], - [-1.343998460978462, 49.215247155505196], - [-1.344004374963259, 49.215254205441035], - [-1.344011858060366, 49.21525708775308], - [-1.344092898330874, 49.215241818413936], - [-1.344092898330874, 49.215241818413936] - ] - }, - "length": 0.010769055997562197, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch30329", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08027", - "bus2": "MVBus08032", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343421574081732, 49.21199189101324], - [-1.343421574081732, 49.21199189101324], - [-1.346331297612717, 49.212191588928825], - [-1.346331297612717, 49.212191588928825] - ] - }, - "length": 0.21316432697881146, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch16962", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08032", - "bus2": "MVLV12166", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.346331297612717, 49.212191588928825], - [-1.346331297612717, 49.212191588928825], - [-1.348206270278194, 49.210980163397494], - [-1.348823764916332, 49.210614055003745], - [-1.348823764916332, 49.210614055003745] - ] - }, - "length": 0.2525516529399827, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30330", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08032", - "bus2": "MVBus08034", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.346331297612717, 49.212191588928825], - [-1.346331297612717, 49.212191588928825], - [-1.354209465427343, 49.21360462031885], - [-1.354209465427343, 49.21360462031885] - ] - }, - "length": 0.5951220206151072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08034", - "bus2": "MVLV11500", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.354209465427343, 49.21360462031885], - [-1.354209465427343, 49.21360462031885], - [-1.354309381076009, 49.213619811698535], - [-1.355198846212574, 49.21312586754413], - [-1.355198846212574, 49.21312586754413] - ] - }, - "length": 0.09242850337368175, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15818", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01126", - "bus2": "MVBus01144", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391988779495846, 49.19745201346063], - [-1.391988779495846, 49.19745201346063], - [-1.394727016993843, 49.20059538450612], - [-1.394727016993843, 49.20059538450612] - ] - }, - "length": 0.40253590942446993, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31778", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01144", - "bus2": "MVLV15593", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.394727016993843, 49.20059538450612], - [-1.394727016993843, 49.20059538450612], - [-1.397099714849239, 49.203207453534056], - [-1.397099714849239, 49.203207453534056] - ] - }, - "length": 0.33806418331880117, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV02073_production", - "bus": "MVLV02073", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02073_consumption", - "bus": "MVLV02073", - "phases": "abc", - "powers": [ - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935] - ] - }, - { - "id": "MVLV19065_production", - "bus": "MVLV19065", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19065_consumption", - "bus": "MVLV19065", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV01181_production", - "bus": "MVLV01181", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01181_consumption", - "bus": "MVLV01181", - "phases": "abc", - "powers": [ - [13107.375244231907, 4308.185903393948], - [13107.375244231907, 4308.185903393948], - [13107.375244231907, 4308.185903393948] - ] - }, - { - "id": "MVLV02449_production", - "bus": "MVLV02449", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02449_consumption", - "bus": "MVLV02449", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV12112_production", - "bus": "MVLV12112", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12112_consumption", - "bus": "MVLV12112", - "phases": "abc", - "powers": [ - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935] - ] - }, - { - "id": "MVLV18760_production", - "bus": "MVLV18760", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18760_consumption", - "bus": "MVLV18760", - "phases": "abc", - "powers": [ - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935] - ] - }, - { - "id": "MVLV04803_production", - "bus": "MVLV04803", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04803_consumption", - "bus": "MVLV04803", - "phases": "abc", - "powers": [ - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935] - ] - }, - { - "id": "MVLV05938_production", - "bus": "MVLV05938", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05938_consumption", - "bus": "MVLV05938", - "phases": "abc", - "powers": [ - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935], - [14162.76760084196, 4655.076595738935] - ] - }, - { - "id": "MVLV12778_production", - "bus": "MVLV12778", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12778_consumption", - "bus": "MVLV12778", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV12777_production", - "bus": "MVLV12777", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12777_consumption", - "bus": "MVLV12777", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV15670_production", - "bus": "MVLV15670", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15670_consumption", - "bus": "MVLV15670", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV01035_production", - "bus": "MVLV01035", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01035_consumption", - "bus": "MVLV01035", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV04344_production", - "bus": "MVLV04344", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04344_consumption", - "bus": "MVLV04344", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV18028_production", - "bus": "MVLV18028", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18028_consumption", - "bus": "MVLV18028", - "phases": "abc", - "powers": [ - [8063.865085612478, 2650.4642799476146], - [8063.865085612478, 2650.4642799476146], - [8063.865085612478, 2650.4642799476146] - ] - }, - { - "id": "MVLV05423_production", - "bus": "MVLV05423", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05423_consumption", - "bus": "MVLV05423", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV01034_production", - "bus": "MVLV01034", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01034_consumption", - "bus": "MVLV01034", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV12779_production", - "bus": "MVLV12779", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12779_consumption", - "bus": "MVLV12779", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV11499_production", - "bus": "MVLV11499", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11499_consumption", - "bus": "MVLV11499", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV16560_production", - "bus": "MVLV16560", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16560_consumption", - "bus": "MVLV16560", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV12166_production", - "bus": "MVLV12166", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12166_consumption", - "bus": "MVLV12166", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV11500_production", - "bus": "MVLV11500", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11500_consumption", - "bus": "MVLV11500", - "phases": "abc", - "powers": [ - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646], - [7544.156010828065, 2479.6441677487646] - ] - }, - { - "id": "MVLV15593_production", - "bus": "MVLV15593", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15593_consumption", - "bus": "MVLV15593", - "phases": "abc", - "powers": [ - [32180.404147003734, 10577.1873413521], - [32180.404147003734, 10577.1873413521], - [32180.404147003734, 10577.1873413521] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder159_summer.json b/data/MVFeeder159_summer.json deleted file mode 100644 index 802fdd0f..00000000 --- a/data/MVFeeder159_summer.json +++ /dev/null @@ -1,413 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.823722473264189, 49.08918556668978] - } - }, - { - "id": "HVMV11", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.823722473264189, 49.08918556668978] - } - }, - { - "id": "MVBus01228", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.823321260123735, 49.090080324540615] - } - }, - { - "id": "MVBus01229", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.823140030519513, 49.090320790001456] - } - }, - { - "id": "MVBus01230", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.79507751183405, 49.099983820176625] - } - }, - { - "id": "MVBus01231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.77124939189729, 49.09843688079068] - } - }, - { - "id": "MVBus01232", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.759675327492745, 49.09778635178023] - } - }, - { - "id": "MVBus15631", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.746815763939693, 49.09729143625947] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV11", - "geometry": { - "type": "Point", - "coordinates": [-0.823722473264189, 49.08918556668978] - } - }, - { - "id": "MVBranch42220", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV11", - "bus2": "MVBus01228", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.823722473264189, 49.08918556668978], - [-0.823656318059001, 49.089166460346924], - [-0.823656318059001, 49.089166460346924], - [-0.823627865216119, 49.08916780576717], - [-0.823624074912107, 49.089126493554886], - [-0.823620001381147, 49.08908212224138], - [-0.823625124058814, 49.08906516112635], - [-0.823104526009067, 49.08887342006397], - [-0.823086740897519, 49.08887388997039], - [-0.823077449596123, 49.08888583523986], - [-0.823079850083826, 49.08889373054548], - [-0.823200954228063, 49.08955471130879], - [-0.823264364245583, 49.08993966799844], - [-0.823264296040561, 49.08997029964138], - [-0.823291612854848, 49.09000338220526], - [-0.823311785765861, 49.090020205497105], - [-0.823329461134897, 49.09003492748691], - [-0.823321260123735, 49.090080324540615], - [-0.823321260123735, 49.090080324540615] - ] - }, - "length": 0.19507911152510984, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01228", - "bus2": "MVBus01229", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.823321260123735, 49.090080324540615], - [-0.823321260123735, 49.090080324540615], - [-0.823140030519513, 49.090320790001456], - [-0.823140030519513, 49.090320790001456] - ] - }, - "length": 0.029839215946133233, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch14190", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01229", - "bus2": "MVBus01230", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.823140030519513, 49.090320790001456], - [-0.823140030519513, 49.090320790001456], - [-0.819870459125785, 49.09301290650464], - [-0.813401101051746, 49.098384142420144], - [-0.798506658015617, 49.09997141076324], - [-0.795080701524986, 49.09998402443363], - [-0.79507751183405, 49.099983820176625], - [-0.79507751183405, 49.099983820176625] - ] - }, - "length": 2.4969102502171268, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28504", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01230", - "bus2": "MVBus01231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.79507751183405, 49.099983820176625], - [-0.79507751183405, 49.099983820176625], - [-0.77124939189729, 49.09843688079068], - [-0.77124939189729, 49.09843688079068] - ] - }, - "length": 1.7485644717941622, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28505", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01231", - "bus2": "MVBus01232", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.77124939189729, 49.09843688079068], - [-0.77124939189729, 49.09843688079068], - [-0.771243067601774, 49.09843646956626], - [-0.767569039304653, 49.100390042981374], - [-0.766545960517715, 49.101560762231614], - [-0.764544657056999, 49.1024339270498], - [-0.763577994672303, 49.10122702062665], - [-0.762174071227635, 49.0978538592639], - [-0.759675327492745, 49.09778635178023], - [-0.759675327492745, 49.09778635178023] - ] - }, - "length": 1.394446123280823, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch16925", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01232", - "bus2": "MVBus15631", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.759675327492745, 49.09778635178023], - [-0.759675327492745, 49.09778635178023], - [-0.746815763939693, 49.09729143625947], - [-0.746815763939693, 49.09729143625947] - ] - }, - "length": 0.9407300845096866, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder159_winter.json b/data/MVFeeder159_winter.json deleted file mode 100644 index 802fdd0f..00000000 --- a/data/MVFeeder159_winter.json +++ /dev/null @@ -1,413 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.823722473264189, 49.08918556668978] - } - }, - { - "id": "HVMV11", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.823722473264189, 49.08918556668978] - } - }, - { - "id": "MVBus01228", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.823321260123735, 49.090080324540615] - } - }, - { - "id": "MVBus01229", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.823140030519513, 49.090320790001456] - } - }, - { - "id": "MVBus01230", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.79507751183405, 49.099983820176625] - } - }, - { - "id": "MVBus01231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.77124939189729, 49.09843688079068] - } - }, - { - "id": "MVBus01232", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.759675327492745, 49.09778635178023] - } - }, - { - "id": "MVBus15631", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.746815763939693, 49.09729143625947] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV11", - "geometry": { - "type": "Point", - "coordinates": [-0.823722473264189, 49.08918556668978] - } - }, - { - "id": "MVBranch42220", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV11", - "bus2": "MVBus01228", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.823722473264189, 49.08918556668978], - [-0.823656318059001, 49.089166460346924], - [-0.823656318059001, 49.089166460346924], - [-0.823627865216119, 49.08916780576717], - [-0.823624074912107, 49.089126493554886], - [-0.823620001381147, 49.08908212224138], - [-0.823625124058814, 49.08906516112635], - [-0.823104526009067, 49.08887342006397], - [-0.823086740897519, 49.08887388997039], - [-0.823077449596123, 49.08888583523986], - [-0.823079850083826, 49.08889373054548], - [-0.823200954228063, 49.08955471130879], - [-0.823264364245583, 49.08993966799844], - [-0.823264296040561, 49.08997029964138], - [-0.823291612854848, 49.09000338220526], - [-0.823311785765861, 49.090020205497105], - [-0.823329461134897, 49.09003492748691], - [-0.823321260123735, 49.090080324540615], - [-0.823321260123735, 49.090080324540615] - ] - }, - "length": 0.19507911152510984, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01228", - "bus2": "MVBus01229", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.823321260123735, 49.090080324540615], - [-0.823321260123735, 49.090080324540615], - [-0.823140030519513, 49.090320790001456], - [-0.823140030519513, 49.090320790001456] - ] - }, - "length": 0.029839215946133233, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch14190", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01229", - "bus2": "MVBus01230", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.823140030519513, 49.090320790001456], - [-0.823140030519513, 49.090320790001456], - [-0.819870459125785, 49.09301290650464], - [-0.813401101051746, 49.098384142420144], - [-0.798506658015617, 49.09997141076324], - [-0.795080701524986, 49.09998402443363], - [-0.79507751183405, 49.099983820176625], - [-0.79507751183405, 49.099983820176625] - ] - }, - "length": 2.4969102502171268, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28504", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01230", - "bus2": "MVBus01231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.79507751183405, 49.099983820176625], - [-0.79507751183405, 49.099983820176625], - [-0.77124939189729, 49.09843688079068], - [-0.77124939189729, 49.09843688079068] - ] - }, - "length": 1.7485644717941622, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28505", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01231", - "bus2": "MVBus01232", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.77124939189729, 49.09843688079068], - [-0.77124939189729, 49.09843688079068], - [-0.771243067601774, 49.09843646956626], - [-0.767569039304653, 49.100390042981374], - [-0.766545960517715, 49.101560762231614], - [-0.764544657056999, 49.1024339270498], - [-0.763577994672303, 49.10122702062665], - [-0.762174071227635, 49.0978538592639], - [-0.759675327492745, 49.09778635178023], - [-0.759675327492745, 49.09778635178023] - ] - }, - "length": 1.394446123280823, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch16925", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01232", - "bus2": "MVBus15631", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.759675327492745, 49.09778635178023], - [-0.759675327492745, 49.09778635178023], - [-0.746815763939693, 49.09729143625947], - [-0.746815763939693, 49.09729143625947] - ] - }, - "length": 0.9407300845096866, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder176_summer.json b/data/MVFeeder176_summer.json deleted file mode 100644 index 1b1acd50..00000000 --- a/data/MVFeeder176_summer.json +++ /dev/null @@ -1,1420 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.38711604794349, 48.41717064276834] - } - }, - { - "id": "HVMV12", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38711604794349, 48.41717064276834] - } - }, - { - "id": "MVBus01496", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387006136030383, 48.41719264377117] - } - }, - { - "id": "MVBus01497", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369958030820661, 48.41963507980983] - } - }, - { - "id": "MVBus01517", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372549072493029, 48.41889081443412] - } - }, - { - "id": "MVLV04958", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37452717049491, 48.41922677819152] - } - }, - { - "id": "MVBus01498", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36829863977381, 48.41844540537065] - } - }, - { - "id": "MVBus01499", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361756314657262, 48.41859218800213] - } - }, - { - "id": "MVBus01514", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362436041584863, 48.418047008041256] - } - }, - { - "id": "MVLV11843", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362743294787271, 48.417852382430524] - } - }, - { - "id": "MVBus01500", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360008183133618, 48.417962950329574] - } - }, - { - "id": "MVBus01501", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35914112549976, 48.41765083872024] - } - }, - { - "id": "MVBus01502", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343510895179884, 48.4215837436143] - } - }, - { - "id": "MVLV04956", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345262339955037, 48.42252150957554] - } - }, - { - "id": "MVBus01504", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.340095117958516, 48.42180926616064] - } - }, - { - "id": "MVBus01505", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339043062931441, 48.42191956211516] - } - }, - { - "id": "MVBus01507", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332339064126028, 48.421605122151064] - } - }, - { - "id": "MVLV04587", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331888333253353, 48.42156111279841] - } - }, - { - "id": "MVLV14605", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.327133123316432, 48.418995112592626] - } - }, - { - "id": "MVLV17080", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339048333937162, 48.42193972026597] - } - }, - { - "id": "MVBus01510", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.334884366737857, 48.42657238910191] - } - }, - { - "id": "MVBus01511", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331171114334699, 48.428605571824306] - } - }, - { - "id": "MVLV14280", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.330977758055885, 48.42840107856877] - } - }, - { - "id": "MVBus01513", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.326826060299798, 48.42931200536187] - } - }, - { - "id": "MVBus11806", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.326920591011296, 48.42991363986901] - } - }, - { - "id": "MVBus11807", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.327147956087218, 48.43144350932597] - } - }, - { - "id": "MVLV17095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.325298094688831, 48.434303528730496] - } - }, - { - "id": "MVLV19350", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331861978401239, 48.431829215696744] - } - }, - { - "id": "MVBus01516", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36739305364224, 48.417816117608396] - } - }, - { - "id": "MVBus06094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366766843846228, 48.41731305907785] - } - }, - { - "id": "MVLV19321", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366731410678534, 48.41736141399922] - } - }, - { - "id": "MVBus06095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365229322235862, 48.416324977868435] - } - }, - { - "id": "MVBus06096", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362858591541591, 48.414881616803214] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV12", - "geometry": { - "type": "Point", - "coordinates": [-1.38711604794349, 48.41717064276834] - } - }, - { - "id": "MVBranch38409", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV12", - "bus2": "MVBus01496", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.38711604794349, 48.41717064276834], - [-1.387095832721269, 48.4171715688363], - [-1.387095832721269, 48.4171715688363], - [-1.387076723241926, 48.417176060173375], - [-1.387006136030383, 48.41719264377117], - [-1.387006136030383, 48.41719264377117] - ] - }, - "length": 0.007040950920418707, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20772", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01496", - "bus2": "MVBus01497", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387006136030383, 48.41719264377117], - [-1.387006136030383, 48.41719264377117], - [-1.373733501372869, 48.420844242526], - [-1.37252429325049, 48.421217640813616], - [-1.369958030820661, 48.41963507980983], - [-1.369958030820661, 48.41963507980983] - ] - }, - "length": 1.4206347528139422, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch24327", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01497", - "bus2": "MVBus01517", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369958030820661, 48.41963507980983], - [-1.369958030820661, 48.41963507980983], - [-1.372226752533138, 48.418894385649324], - [-1.372549072493029, 48.41889081443412], - [-1.372549072493029, 48.41889081443412] - ] - }, - "length": 0.21090018378627376, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20742", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01517", - "bus2": "MVLV04958", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372549072493029, 48.41889081443412], - [-1.372549072493029, 48.41889081443412], - [-1.374123957637726, 48.418929083010795], - [-1.37452717049491, 48.41922677819152], - [-1.37452717049491, 48.41922677819152] - ] - }, - "length": 0.16122038053777868, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13661", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01497", - "bus2": "MVBus01498", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369958030820661, 48.41963507980983], - [-1.369958030820661, 48.41963507980983], - [-1.36829863977381, 48.41844540537065], - [-1.36829863977381, 48.41844540537065] - ] - }, - "length": 0.18051865662498154, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch20730", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01498", - "bus2": "MVBus01499", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36829863977381, 48.41844540537065], - [-1.36829863977381, 48.41844540537065], - [-1.363031806491956, 48.419038215547715], - [-1.361756314657262, 48.41859218800213], - [-1.361756314657262, 48.41859218800213] - ] - }, - "length": 0.5020280176005155, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22592", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01499", - "bus2": "MVBus01514", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361756314657262, 48.41859218800213], - [-1.361756314657262, 48.41859218800213], - [-1.362436041584863, 48.418047008041256], - [-1.362436041584863, 48.418047008041256] - ] - }, - "length": 0.07878204036531004, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05835", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01514", - "bus2": "MVLV11843", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.362436041584863, 48.418047008041256], - [-1.362436041584863, 48.418047008041256], - [-1.362743294787271, 48.417852382430524], - [-1.362743294787271, 48.417852382430524] - ] - }, - "length": 0.031394682426450396, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05826", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01499", - "bus2": "MVBus01500", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361756314657262, 48.41859218800213], - [-1.361756314657262, 48.41859218800213], - [-1.36004759848077, 48.41797713287041], - [-1.360008183133618, 48.417962950329574], - [-1.360008183133618, 48.417962950329574] - ] - }, - "length": 0.14710335821626808, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22596", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01500", - "bus2": "MVBus01501", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360008183133618, 48.417962950329574], - [-1.360008183133618, 48.417962950329574], - [-1.35914112549976, 48.41765083872024], - [-1.35914112549976, 48.41765083872024] - ] - }, - "length": 0.07296328390773768, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32524", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01501", - "bus2": "MVBus01502", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35914112549976, 48.41765083872024], - [-1.35914112549976, 48.41765083872024], - [-1.359134133141539, 48.41764832166493], - [-1.349455612424945, 48.41959813784741], - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143] - ] - }, - "length": 1.2413790241150546, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01331", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01502", - "bus2": "MVLV04956", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143], - [-1.344004182309898, 48.42228482559382], - [-1.344859369826054, 48.422531409992324], - [-1.345262339955037, 48.42252150957554], - [-1.345262339955037, 48.42252150957554] - ] - }, - "length": 0.18491086405326376, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22597", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01502", - "bus2": "MVBus01504", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143], - [-1.342397676690004, 48.42145250474201], - [-1.340095117958516, 48.42180926616064], - [-1.340095117958516, 48.42180926616064] - ] - }, - "length": 0.25865864050746357, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22604", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01504", - "bus2": "MVBus01505", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.340095117958516, 48.42180926616064], - [-1.340095117958516, 48.42180926616064], - [-1.339043062931441, 48.42191956211516], - [-1.339043062931441, 48.42191956211516] - ] - }, - "length": 0.07882774284595279, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01505", - "bus2": "MVBus01507", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339043062931441, 48.42191956211516], - [-1.339043062931441, 48.42191956211516], - [-1.337462845126501, 48.42210522852438], - [-1.332339064126028, 48.421605122151064], - [-1.332339064126028, 48.421605122151064] - ] - }, - "length": 0.5020595961392756, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24343", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01507", - "bus2": "MVLV04587", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332339064126028, 48.421605122151064], - [-1.332339064126028, 48.421605122151064], - [-1.331888333253353, 48.42156111279841], - [-1.331888333253353, 48.42156111279841] - ] - }, - "length": 0.033718019705241936, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01334", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01507", - "bus2": "MVLV14605", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332339064126028, 48.421605122151064], - [-1.332339064126028, 48.421605122151064], - [-1.331280495567023, 48.42079284090855], - [-1.330333639042978, 48.42057979897421], - [-1.329118104953518, 48.42030630034864], - [-1.328337603203022, 48.41970962868202], - [-1.327737387854174, 48.419333957986886], - [-1.327133123316432, 48.418995112592626], - [-1.327133123316432, 48.418995112592626] - ] - }, - "length": 0.49596181673738937, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00556", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01505", - "bus2": "MVLV17080", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339043062931441, 48.42191956211516], - [-1.339043062931441, 48.42191956211516], - [-1.339048333937162, 48.42193972026597], - [-1.339048333937162, 48.42193972026597] - ] - }, - "length": 0.0022752537151376866, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32525", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01502", - "bus2": "MVBus01510", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143], - [-1.334884366737857, 48.42657238910191], - [-1.334884366737857, 48.42657238910191] - ] - }, - "length": 0.845790745290288, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05225", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01510", - "bus2": "MVBus01511", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334884366737857, 48.42657238910191], - [-1.334884366737857, 48.42657238910191], - [-1.331171114334699, 48.428605571824306], - [-1.331171114334699, 48.428605571824306] - ] - }, - "length": 0.3558557266295331, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28768", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01511", - "bus2": "MVLV14280", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331171114334699, 48.428605571824306], - [-1.331171114334699, 48.428605571824306], - [-1.330977758055885, 48.42840107856877], - [-1.330977758055885, 48.42840107856877] - ] - }, - "length": 0.02686703650765068, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13456", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01511", - "bus2": "MVBus01513", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331171114334699, 48.428605571824306], - [-1.331171114334699, 48.428605571824306], - [-1.326826060299798, 48.42931200536187], - [-1.326826060299798, 48.42931200536187] - ] - }, - "length": 0.3310102993678586, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13836", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01513", - "bus2": "MVBus11806", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.326826060299798, 48.42931200536187], - [-1.326826060299798, 48.42931200536187], - [-1.326920591011296, 48.42991363986901], - [-1.326920591011296, 48.42991363986901] - ] - }, - "length": 0.06726571930181688, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28767", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11806", - "bus2": "MVBus11807", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.326920591011296, 48.42991363986901], - [-1.326920591011296, 48.42991363986901], - [-1.327147956087218, 48.43144350932597], - [-1.327147956087218, 48.43144350932597] - ] - }, - "length": 0.17094951497800995, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05368", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11807", - "bus2": "MVLV17095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.327147956087218, 48.43144350932597], - [-1.327147956087218, 48.43144350932597], - [-1.327307809109532, 48.4325190636339], - [-1.325298094688831, 48.434303528730496], - [-1.325298094688831, 48.434303528730496] - ] - }, - "length": 0.3681571574196088, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24025", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11807", - "bus2": "MVLV19350", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.327147956087218, 48.43144350932597], - [-1.327147956087218, 48.43144350932597], - [-1.328237636895796, 48.431415318432606], - [-1.329581808012917, 48.43081192969356], - [-1.330866873224379, 48.43137108093143], - [-1.331861978401239, 48.431829215696744], - [-1.331861978401239, 48.431829215696744] - ] - }, - "length": 0.40384522738100076, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20729", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01498", - "bus2": "MVBus01516", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36829863977381, 48.41844540537065], - [-1.36829863977381, 48.41844540537065], - [-1.367445916795521, 48.41786015715854], - [-1.36739305364224, 48.417816117608396] - ] - }, - "length": 0.09065992156646324, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13659", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01516", - "bus2": "MVBus06094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36739305364224, 48.417816117608396], - [-1.367340190488959, 48.417772078058256], - [-1.366766843846228, 48.41731305907785], - [-1.366766843846228, 48.41731305907785] - ] - }, - "length": 0.06638103907679009, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42078", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06094", - "bus2": "MVLV19321", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366766843846228, 48.41731305907785], - [-1.366766843846228, 48.41731305907785], - [-1.366788379937253, 48.41735864474458], - [-1.366760029829506, 48.417372999121014], - [-1.36674977104007, 48.417368847974295], - [-1.366731410678534, 48.41736141399922], - [-1.366731410678534, 48.41736141399922] - ] - }, - "length": 0.010429775061381805, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch05830", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06094", - "bus2": "MVBus06095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366766843846228, 48.41731305907785], - [-1.366766843846228, 48.41731305907785], - [-1.365229322235862, 48.416324977868435], - [-1.365229322235862, 48.416324977868435] - ] - }, - "length": 0.1581928883806596, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32965", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06095", - "bus2": "MVBus06096", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365229322235862, 48.416324977868435], - [-1.365229322235862, 48.416324977868435], - [-1.365560695142118, 48.41596012013056], - [-1.365573677697766, 48.415948516332065], - [-1.365704319145252, 48.41589364588406], - [-1.365719442330651, 48.41587809575063], - [-1.3657376438735, 48.41585885788054], - [-1.365737897474432, 48.415833991014075], - [-1.365719562445547, 48.41582174992386], - [-1.365105435519972, 48.415579290918394], - [-1.365073738041355, 48.41556259081798], - [-1.365038484136779, 48.41553480588789], - [-1.364991628088938, 48.41548713423317], - [-1.364917505247655, 48.415429769668116], - [-1.364664886459725, 48.415255861644575], - [-1.364388641064323, 48.41510952426236], - [-1.364118734716905, 48.414971924744755], - [-1.363839596958264, 48.414842939492594], - [-1.36325133179426, 48.41453519978506], - [-1.363151000458559, 48.41447711704125], - [-1.363104710671212, 48.414454222817284], - [-1.363056234710329, 48.41444418659317], - [-1.363037092954677, 48.41443829763417], - [-1.363017128958387, 48.41444161478675], - [-1.36300618917472, 48.41444788906171], - [-1.362758069313197, 48.41469816525997], - [-1.362753490582671, 48.414707210151136], - [-1.362755269572423, 48.414722607917724], - [-1.362763337502581, 48.41473115724643], - [-1.362778314833457, 48.41474372906787], - [-1.362842376973229, 48.414868183755985], - [-1.362858591541591, 48.414881616803214], - [-1.362858591541591, 48.414881616803214] - ] - }, - "length": 0.3807032213615068, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV04958_production", - "bus": "MVLV04958", - "phases": "abc", - "powers": [ - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0] - ] - }, - { - "id": "MVLV04958_consumption", - "bus": "MVLV04958", - "phases": "abc", - "powers": [ - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598] - ] - }, - { - "id": "MVLV11843_production", - "bus": "MVLV11843", - "phases": "abc", - "powers": [ - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0] - ] - }, - { - "id": "MVLV11843_consumption", - "bus": "MVLV11843", - "phases": "abc", - "powers": [ - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598] - ] - }, - { - "id": "MVLV04956_production", - "bus": "MVLV04956", - "phases": "abc", - "powers": [ - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0] - ] - }, - { - "id": "MVLV04956_consumption", - "bus": "MVLV04956", - "phases": "abc", - "powers": [ - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598] - ] - }, - { - "id": "MVLV04587_production", - "bus": "MVLV04587", - "phases": "abc", - "powers": [ - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0] - ] - }, - { - "id": "MVLV04587_consumption", - "bus": "MVLV04587", - "phases": "abc", - "powers": [ - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598] - ] - }, - { - "id": "MVLV14605_production", - "bus": "MVLV14605", - "phases": "abc", - "powers": [ - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0] - ] - }, - { - "id": "MVLV14605_consumption", - "bus": "MVLV14605", - "phases": "abc", - "powers": [ - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206] - ] - }, - { - "id": "MVLV17080_production", - "bus": "MVLV17080", - "phases": "abc", - "powers": [ - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0] - ] - }, - { - "id": "MVLV17080_consumption", - "bus": "MVLV17080", - "phases": "abc", - "powers": [ - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598] - ] - }, - { - "id": "MVLV14280_production", - "bus": "MVLV14280", - "phases": "abc", - "powers": [ - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0] - ] - }, - { - "id": "MVLV14280_consumption", - "bus": "MVLV14280", - "phases": "abc", - "powers": [ - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206] - ] - }, - { - "id": "MVLV17095_production", - "bus": "MVLV17095", - "phases": "abc", - "powers": [ - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0] - ] - }, - { - "id": "MVLV17095_consumption", - "bus": "MVLV17095", - "phases": "abc", - "powers": [ - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206] - ] - }, - { - "id": "MVLV19350_production", - "bus": "MVLV19350", - "phases": "abc", - "powers": [ - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0], - [-2250.89605734767, 0.0] - ] - }, - { - "id": "MVLV19350_consumption", - "bus": "MVLV19350", - "phases": "abc", - "powers": [ - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206], - [2190.4142243776473, 719.9543393106206] - ] - }, - { - "id": "MVLV19321_production", - "bus": "MVLV19321", - "phases": "abc", - "powers": [ - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0], - [-1275.581395348837, 0.0] - ] - }, - { - "id": "MVLV19321_consumption", - "bus": "MVLV19321", - "phases": "abc", - "powers": [ - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598], - [18279.948541758626, 6008.328529163598] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder176_winter.json b/data/MVFeeder176_winter.json deleted file mode 100644 index 994da035..00000000 --- a/data/MVFeeder176_winter.json +++ /dev/null @@ -1,1420 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.38711604794349, 48.41717064276834] - } - }, - { - "id": "HVMV12", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.38711604794349, 48.41717064276834] - } - }, - { - "id": "MVBus01496", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387006136030383, 48.41719264377117] - } - }, - { - "id": "MVBus01497", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369958030820661, 48.41963507980983] - } - }, - { - "id": "MVBus01517", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372549072493029, 48.41889081443412] - } - }, - { - "id": "MVLV04958", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37452717049491, 48.41922677819152] - } - }, - { - "id": "MVBus01498", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36829863977381, 48.41844540537065] - } - }, - { - "id": "MVBus01499", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361756314657262, 48.41859218800213] - } - }, - { - "id": "MVBus01514", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362436041584863, 48.418047008041256] - } - }, - { - "id": "MVLV11843", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362743294787271, 48.417852382430524] - } - }, - { - "id": "MVBus01500", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360008183133618, 48.417962950329574] - } - }, - { - "id": "MVBus01501", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.35914112549976, 48.41765083872024] - } - }, - { - "id": "MVBus01502", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.343510895179884, 48.4215837436143] - } - }, - { - "id": "MVLV04956", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.345262339955037, 48.42252150957554] - } - }, - { - "id": "MVBus01504", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.340095117958516, 48.42180926616064] - } - }, - { - "id": "MVBus01505", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339043062931441, 48.42191956211516] - } - }, - { - "id": "MVBus01507", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332339064126028, 48.421605122151064] - } - }, - { - "id": "MVLV04587", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331888333253353, 48.42156111279841] - } - }, - { - "id": "MVLV14605", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.327133123316432, 48.418995112592626] - } - }, - { - "id": "MVLV17080", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.339048333937162, 48.42193972026597] - } - }, - { - "id": "MVBus01510", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.334884366737857, 48.42657238910191] - } - }, - { - "id": "MVBus01511", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331171114334699, 48.428605571824306] - } - }, - { - "id": "MVLV14280", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.330977758055885, 48.42840107856877] - } - }, - { - "id": "MVBus01513", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.326826060299798, 48.42931200536187] - } - }, - { - "id": "MVBus11806", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.326920591011296, 48.42991363986901] - } - }, - { - "id": "MVBus11807", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.327147956087218, 48.43144350932597] - } - }, - { - "id": "MVLV17095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.325298094688831, 48.434303528730496] - } - }, - { - "id": "MVLV19350", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.331861978401239, 48.431829215696744] - } - }, - { - "id": "MVBus01516", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36739305364224, 48.417816117608396] - } - }, - { - "id": "MVBus06094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366766843846228, 48.41731305907785] - } - }, - { - "id": "MVLV19321", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366731410678534, 48.41736141399922] - } - }, - { - "id": "MVBus06095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365229322235862, 48.416324977868435] - } - }, - { - "id": "MVBus06096", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362858591541591, 48.414881616803214] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV12", - "geometry": { - "type": "Point", - "coordinates": [-1.38711604794349, 48.41717064276834] - } - }, - { - "id": "MVBranch38409", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV12", - "bus2": "MVBus01496", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.38711604794349, 48.41717064276834], - [-1.387095832721269, 48.4171715688363], - [-1.387095832721269, 48.4171715688363], - [-1.387076723241926, 48.417176060173375], - [-1.387006136030383, 48.41719264377117], - [-1.387006136030383, 48.41719264377117] - ] - }, - "length": 0.007040950920418707, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20772", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01496", - "bus2": "MVBus01497", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387006136030383, 48.41719264377117], - [-1.387006136030383, 48.41719264377117], - [-1.373733501372869, 48.420844242526], - [-1.37252429325049, 48.421217640813616], - [-1.369958030820661, 48.41963507980983], - [-1.369958030820661, 48.41963507980983] - ] - }, - "length": 1.4206347528139422, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch24327", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01497", - "bus2": "MVBus01517", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369958030820661, 48.41963507980983], - [-1.369958030820661, 48.41963507980983], - [-1.372226752533138, 48.418894385649324], - [-1.372549072493029, 48.41889081443412], - [-1.372549072493029, 48.41889081443412] - ] - }, - "length": 0.21090018378627376, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20742", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01517", - "bus2": "MVLV04958", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.372549072493029, 48.41889081443412], - [-1.372549072493029, 48.41889081443412], - [-1.374123957637726, 48.418929083010795], - [-1.37452717049491, 48.41922677819152], - [-1.37452717049491, 48.41922677819152] - ] - }, - "length": 0.16122038053777868, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13661", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01497", - "bus2": "MVBus01498", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369958030820661, 48.41963507980983], - [-1.369958030820661, 48.41963507980983], - [-1.36829863977381, 48.41844540537065], - [-1.36829863977381, 48.41844540537065] - ] - }, - "length": 0.18051865662498154, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch20730", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01498", - "bus2": "MVBus01499", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36829863977381, 48.41844540537065], - [-1.36829863977381, 48.41844540537065], - [-1.363031806491956, 48.419038215547715], - [-1.361756314657262, 48.41859218800213], - [-1.361756314657262, 48.41859218800213] - ] - }, - "length": 0.5020280176005155, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22592", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01499", - "bus2": "MVBus01514", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361756314657262, 48.41859218800213], - [-1.361756314657262, 48.41859218800213], - [-1.362436041584863, 48.418047008041256], - [-1.362436041584863, 48.418047008041256] - ] - }, - "length": 0.07878204036531004, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05835", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01514", - "bus2": "MVLV11843", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.362436041584863, 48.418047008041256], - [-1.362436041584863, 48.418047008041256], - [-1.362743294787271, 48.417852382430524], - [-1.362743294787271, 48.417852382430524] - ] - }, - "length": 0.031394682426450396, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05826", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01499", - "bus2": "MVBus01500", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361756314657262, 48.41859218800213], - [-1.361756314657262, 48.41859218800213], - [-1.36004759848077, 48.41797713287041], - [-1.360008183133618, 48.417962950329574], - [-1.360008183133618, 48.417962950329574] - ] - }, - "length": 0.14710335821626808, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22596", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01500", - "bus2": "MVBus01501", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360008183133618, 48.417962950329574], - [-1.360008183133618, 48.417962950329574], - [-1.35914112549976, 48.41765083872024], - [-1.35914112549976, 48.41765083872024] - ] - }, - "length": 0.07296328390773768, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32524", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01501", - "bus2": "MVBus01502", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.35914112549976, 48.41765083872024], - [-1.35914112549976, 48.41765083872024], - [-1.359134133141539, 48.41764832166493], - [-1.349455612424945, 48.41959813784741], - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143] - ] - }, - "length": 1.2413790241150546, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01331", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01502", - "bus2": "MVLV04956", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143], - [-1.344004182309898, 48.42228482559382], - [-1.344859369826054, 48.422531409992324], - [-1.345262339955037, 48.42252150957554], - [-1.345262339955037, 48.42252150957554] - ] - }, - "length": 0.18491086405326376, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22597", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01502", - "bus2": "MVBus01504", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143], - [-1.342397676690004, 48.42145250474201], - [-1.340095117958516, 48.42180926616064], - [-1.340095117958516, 48.42180926616064] - ] - }, - "length": 0.25865864050746357, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22604", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01504", - "bus2": "MVBus01505", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.340095117958516, 48.42180926616064], - [-1.340095117958516, 48.42180926616064], - [-1.339043062931441, 48.42191956211516], - [-1.339043062931441, 48.42191956211516] - ] - }, - "length": 0.07882774284595279, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01505", - "bus2": "MVBus01507", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339043062931441, 48.42191956211516], - [-1.339043062931441, 48.42191956211516], - [-1.337462845126501, 48.42210522852438], - [-1.332339064126028, 48.421605122151064], - [-1.332339064126028, 48.421605122151064] - ] - }, - "length": 0.5020595961392756, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24343", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01507", - "bus2": "MVLV04587", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332339064126028, 48.421605122151064], - [-1.332339064126028, 48.421605122151064], - [-1.331888333253353, 48.42156111279841], - [-1.331888333253353, 48.42156111279841] - ] - }, - "length": 0.033718019705241936, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01334", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01507", - "bus2": "MVLV14605", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332339064126028, 48.421605122151064], - [-1.332339064126028, 48.421605122151064], - [-1.331280495567023, 48.42079284090855], - [-1.330333639042978, 48.42057979897421], - [-1.329118104953518, 48.42030630034864], - [-1.328337603203022, 48.41970962868202], - [-1.327737387854174, 48.419333957986886], - [-1.327133123316432, 48.418995112592626], - [-1.327133123316432, 48.418995112592626] - ] - }, - "length": 0.49596181673738937, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00556", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01505", - "bus2": "MVLV17080", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.339043062931441, 48.42191956211516], - [-1.339043062931441, 48.42191956211516], - [-1.339048333937162, 48.42193972026597], - [-1.339048333937162, 48.42193972026597] - ] - }, - "length": 0.0022752537151376866, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32525", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01502", - "bus2": "MVBus01510", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.343510895179884, 48.4215837436143], - [-1.343510895179884, 48.4215837436143], - [-1.334884366737857, 48.42657238910191], - [-1.334884366737857, 48.42657238910191] - ] - }, - "length": 0.845790745290288, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05225", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01510", - "bus2": "MVBus01511", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.334884366737857, 48.42657238910191], - [-1.334884366737857, 48.42657238910191], - [-1.331171114334699, 48.428605571824306], - [-1.331171114334699, 48.428605571824306] - ] - }, - "length": 0.3558557266295331, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28768", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01511", - "bus2": "MVLV14280", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331171114334699, 48.428605571824306], - [-1.331171114334699, 48.428605571824306], - [-1.330977758055885, 48.42840107856877], - [-1.330977758055885, 48.42840107856877] - ] - }, - "length": 0.02686703650765068, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13456", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01511", - "bus2": "MVBus01513", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.331171114334699, 48.428605571824306], - [-1.331171114334699, 48.428605571824306], - [-1.326826060299798, 48.42931200536187], - [-1.326826060299798, 48.42931200536187] - ] - }, - "length": 0.3310102993678586, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13836", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01513", - "bus2": "MVBus11806", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.326826060299798, 48.42931200536187], - [-1.326826060299798, 48.42931200536187], - [-1.326920591011296, 48.42991363986901], - [-1.326920591011296, 48.42991363986901] - ] - }, - "length": 0.06726571930181688, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28767", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11806", - "bus2": "MVBus11807", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.326920591011296, 48.42991363986901], - [-1.326920591011296, 48.42991363986901], - [-1.327147956087218, 48.43144350932597], - [-1.327147956087218, 48.43144350932597] - ] - }, - "length": 0.17094951497800995, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05368", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11807", - "bus2": "MVLV17095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.327147956087218, 48.43144350932597], - [-1.327147956087218, 48.43144350932597], - [-1.327307809109532, 48.4325190636339], - [-1.325298094688831, 48.434303528730496], - [-1.325298094688831, 48.434303528730496] - ] - }, - "length": 0.3681571574196088, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24025", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11807", - "bus2": "MVLV19350", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.327147956087218, 48.43144350932597], - [-1.327147956087218, 48.43144350932597], - [-1.328237636895796, 48.431415318432606], - [-1.329581808012917, 48.43081192969356], - [-1.330866873224379, 48.43137108093143], - [-1.331861978401239, 48.431829215696744], - [-1.331861978401239, 48.431829215696744] - ] - }, - "length": 0.40384522738100076, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20729", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01498", - "bus2": "MVBus01516", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36829863977381, 48.41844540537065], - [-1.36829863977381, 48.41844540537065], - [-1.367445916795521, 48.41786015715854], - [-1.36739305364224, 48.417816117608396] - ] - }, - "length": 0.09065992156646324, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13659", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01516", - "bus2": "MVBus06094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36739305364224, 48.417816117608396], - [-1.367340190488959, 48.417772078058256], - [-1.366766843846228, 48.41731305907785], - [-1.366766843846228, 48.41731305907785] - ] - }, - "length": 0.06638103907679009, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42078", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06094", - "bus2": "MVLV19321", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366766843846228, 48.41731305907785], - [-1.366766843846228, 48.41731305907785], - [-1.366788379937253, 48.41735864474458], - [-1.366760029829506, 48.417372999121014], - [-1.36674977104007, 48.417368847974295], - [-1.366731410678534, 48.41736141399922], - [-1.366731410678534, 48.41736141399922] - ] - }, - "length": 0.010429775061381805, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch05830", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06094", - "bus2": "MVBus06095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366766843846228, 48.41731305907785], - [-1.366766843846228, 48.41731305907785], - [-1.365229322235862, 48.416324977868435], - [-1.365229322235862, 48.416324977868435] - ] - }, - "length": 0.1581928883806596, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32965", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06095", - "bus2": "MVBus06096", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365229322235862, 48.416324977868435], - [-1.365229322235862, 48.416324977868435], - [-1.365560695142118, 48.41596012013056], - [-1.365573677697766, 48.415948516332065], - [-1.365704319145252, 48.41589364588406], - [-1.365719442330651, 48.41587809575063], - [-1.3657376438735, 48.41585885788054], - [-1.365737897474432, 48.415833991014075], - [-1.365719562445547, 48.41582174992386], - [-1.365105435519972, 48.415579290918394], - [-1.365073738041355, 48.41556259081798], - [-1.365038484136779, 48.41553480588789], - [-1.364991628088938, 48.41548713423317], - [-1.364917505247655, 48.415429769668116], - [-1.364664886459725, 48.415255861644575], - [-1.364388641064323, 48.41510952426236], - [-1.364118734716905, 48.414971924744755], - [-1.363839596958264, 48.414842939492594], - [-1.36325133179426, 48.41453519978506], - [-1.363151000458559, 48.41447711704125], - [-1.363104710671212, 48.414454222817284], - [-1.363056234710329, 48.41444418659317], - [-1.363037092954677, 48.41443829763417], - [-1.363017128958387, 48.41444161478675], - [-1.36300618917472, 48.41444788906171], - [-1.362758069313197, 48.41469816525997], - [-1.362753490582671, 48.414707210151136], - [-1.362755269572423, 48.414722607917724], - [-1.362763337502581, 48.41473115724643], - [-1.362778314833457, 48.41474372906787], - [-1.362842376973229, 48.414868183755985], - [-1.362858591541591, 48.414881616803214], - [-1.362858591541591, 48.414881616803214] - ] - }, - "length": 0.3807032213615068, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV04958_production", - "bus": "MVLV04958", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04958_consumption", - "bus": "MVLV04958", - "phases": "abc", - "powers": [ - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992] - ] - }, - { - "id": "MVLV11843_production", - "bus": "MVLV11843", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11843_consumption", - "bus": "MVLV11843", - "phases": "abc", - "powers": [ - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992] - ] - }, - { - "id": "MVLV04956_production", - "bus": "MVLV04956", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04956_consumption", - "bus": "MVLV04956", - "phases": "abc", - "powers": [ - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992] - ] - }, - { - "id": "MVLV04587_production", - "bus": "MVLV04587", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04587_consumption", - "bus": "MVLV04587", - "phases": "abc", - "powers": [ - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992] - ] - }, - { - "id": "MVLV14605_production", - "bus": "MVLV14605", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14605_consumption", - "bus": "MVLV14605", - "phases": "abc", - "powers": [ - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103] - ] - }, - { - "id": "MVLV17080_production", - "bus": "MVLV17080", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17080_consumption", - "bus": "MVLV17080", - "phases": "abc", - "powers": [ - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992] - ] - }, - { - "id": "MVLV14280_production", - "bus": "MVLV14280", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14280_consumption", - "bus": "MVLV14280", - "phases": "abc", - "powers": [ - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103] - ] - }, - { - "id": "MVLV17095_production", - "bus": "MVLV17095", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17095_consumption", - "bus": "MVLV17095", - "phases": "abc", - "powers": [ - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103] - ] - }, - { - "id": "MVLV19350_production", - "bus": "MVLV19350", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19350_consumption", - "bus": "MVLV19350", - "phases": "abc", - "powers": [ - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103], - [10952.071121888235, 3599.771696553103] - ] - }, - { - "id": "MVLV19321_production", - "bus": "MVLV19321", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19321_consumption", - "bus": "MVLV19321", - "phases": "abc", - "powers": [ - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992], - [91399.74270879313, 30041.642645817992] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder210_summer.json b/data/MVFeeder210_summer.json deleted file mode 100644 index 2f24bba7..00000000 --- a/data/MVFeeder210_summer.json +++ /dev/null @@ -1,5174 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.315508137717839, 48.67552963511552] - } - }, - { - "id": "HVMV14", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.315508137717839, 48.67552963511552] - } - }, - { - "id": "MVLV06299", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3243096308857334, 48.677222514427754] - } - }, - { - "id": "MVBus05026", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.324633327379154, 48.681828081809556] - } - }, - { - "id": "MVBus05027", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.324640695755288, 48.68391926354705] - } - }, - { - "id": "MVBus05028", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.324403471836129, 48.688034195862905] - } - }, - { - "id": "MVLV06298", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.32466065492585, 48.6880640048316] - } - }, - { - "id": "MVBus05030", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332311951909265, 48.6947431871332] - } - }, - { - "id": "MVLV16807", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3324397522750886, 48.69480756439362] - } - }, - { - "id": "MVBus08987", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332696716348577, 48.69475012796576] - } - }, - { - "id": "MVBus08988", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332769653966778, 48.694856436515416] - } - }, - { - "id": "MVBus08989", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.333868868924871, 48.69442417043966] - } - }, - { - "id": "MVBus08990", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.337017272071378, 48.69361150583635] - } - }, - { - "id": "MVLV13668", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.336768360474335, 48.693054819581505] - } - }, - { - "id": "MVLV08873", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.337811745653045, 48.69348041079462] - } - }, - { - "id": "MVBus08231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332456160398833, 48.694750388404394] - } - }, - { - "id": "MVBus08232", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332662258481913, 48.69470601327688] - } - }, - { - "id": "MVBus08233", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.349090863664277, 48.69988795473] - } - }, - { - "id": "MVBus08234", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.349583389791825, 48.7002449228178] - } - }, - { - "id": "MVBus08235", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.350033533716369, 48.70073831530751] - } - }, - { - "id": "MVLV15837", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3610517542755765, 48.69858050796095] - } - }, - { - "id": "MVBus17515", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361872248455002, 48.698372926745066] - } - }, - { - "id": "MVBus17516", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.370008749538573, 48.69484206776048] - } - }, - { - "id": "MVBus17517", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37140828752311, 48.69474338047859] - } - }, - { - "id": "MVBus17518", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380593480920253, 48.68951313748911] - } - }, - { - "id": "MVBus17519", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386095076128499, 48.69020544337535] - } - }, - { - "id": "MVLV00762", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3860685283105134, 48.69022637502021] - } - }, - { - "id": "MVBus24050", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386585620553674, 48.692516906896316] - } - }, - { - "id": "MVLV05135", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.388721682538931, 48.69170724856656] - } - }, - { - "id": "MVBus24051", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.389640377977582, 48.6936695244645] - } - }, - { - "id": "MVBus24052", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.390456896571498, 48.694092429012166] - } - }, - { - "id": "MVBus24055", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.398561158560935, 48.687535479227805] - } - }, - { - "id": "MVBus24068", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.408493773037451, 48.68069081868821] - } - }, - { - "id": "MVBus24099", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409110034494963, 48.68080865138281] - } - }, - { - "id": "MVBus24100", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.40965762004385, 48.68091651992885] - } - }, - { - "id": "MVBus24103", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410375244576262, 48.68359763038951] - } - }, - { - "id": "MVBus24104", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410457520575412, 48.6846248924926] - } - }, - { - "id": "MVBus24106", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.41052130409578, 48.6846345578222] - } - }, - { - "id": "MVBus24107", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410557522651376, 48.685621609766095] - } - }, - { - "id": "MVBus24108", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409907100020805, 48.68709324149833] - } - }, - { - "id": "MVLV00546", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409563445224697, 48.687969213263976] - } - }, - { - "id": "MVLV10324", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410867808177468, 48.68472414481989] - } - }, - { - "id": "MVBus24101", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.411072946287639, 48.68122377495599] - } - }, - { - "id": "MVLV10323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.413039955009211, 48.681710134344065] - } - }, - { - "id": "MVBus24069", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.413074070122556, 48.67823125435254] - } - }, - { - "id": "MVBus24070", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.419991973797182, 48.67443548826671] - } - }, - { - "id": "MVBus24080", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.42136624107891, 48.67352763843192] - } - }, - { - "id": "MVBus24081", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.423458086823049, 48.672063747279815] - } - }, - { - "id": "MVBus24082", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.425433424469281, 48.6704288218968] - } - }, - { - "id": "MVBus24084", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.427550443876756, 48.66832702556939] - } - }, - { - "id": "MVBus24085", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.42773882512684, 48.667518960930806] - } - }, - { - "id": "MVBus24086", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.429737921743526, 48.66740399771851] - } - }, - { - "id": "MVBus24087", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.430226347180375, 48.66816721336321] - } - }, - { - "id": "MVLV06447", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.432209635049518, 48.67056922323461] - } - }, - { - "id": "MVBus24089", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.437540172188118, 48.66623721183292] - } - }, - { - "id": "MVBus39974", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.438557514204313, 48.66571332634098] - } - }, - { - "id": "MVBus39976", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.441570933640071, 48.66627762495946] - } - }, - { - "id": "MVLV09015", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.438449788295261, 48.67104614339778] - } - }, - { - "id": "MVBus39978", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.443199968358023, 48.66690877873582] - } - }, - { - "id": "MVLV06448", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.446079710619304, 48.66557326975702] - } - }, - { - "id": "MVBus39980", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.444227964428699, 48.668319010605344] - } - }, - { - "id": "MVBus39981", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.44375635095643, 48.668776616576054] - } - }, - { - "id": "MVBus39990", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.443343047955685, 48.66847284504271] - } - }, - { - "id": "MVLV18919", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.443288177621643, 48.668471426684015] - } - }, - { - "id": "MVBus39982", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.445506049849497, 48.66907708140258] - } - }, - { - "id": "MVBus39983", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.448362516861079, 48.67139846929151] - } - }, - { - "id": "MVLV00544", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.449205686310729, 48.67094761063653] - } - }, - { - "id": "MVBus39985", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.453998689564143, 48.67360108655294] - } - }, - { - "id": "MVBus39986", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.454111420613221, 48.67365783095757] - } - }, - { - "id": "MVBus39987", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.454133606341398, 48.67364249809416] - } - }, - { - "id": "MVLV14633", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.456255345960154, 48.673153506275305] - } - }, - { - "id": "MVBus39989", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.471496954704484, 48.684283897260315] - } - }, - { - "id": "MVLV18920", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.435905350518214, 48.665013198677705] - } - }, - { - "id": "MVBus24090", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424019455111165, 48.667992607111934] - } - }, - { - "id": "MVLV14266", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.423949664678889, 48.6680024069041] - } - }, - { - "id": "MVLV02728", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424157252985195, 48.67046024446686] - } - }, - { - "id": "MVLV00547", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.419761534530391, 48.67316204924771] - } - }, - { - "id": "MVBus24071", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.420630681455058, 48.674440314166944] - } - }, - { - "id": "MVBus24072", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.421340042028947, 48.67636068076991] - } - }, - { - "id": "MVLV18922", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.425622793335055, 48.67794155813378] - } - }, - { - "id": "MVBus24073", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.419810117061095, 48.67734764388789] - } - }, - { - "id": "MVLV13819", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.417411347774322, 48.6790354886807] - } - }, - { - "id": "MVBus24075", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.420328922524153, 48.677875121617966] - } - }, - { - "id": "MVBus24076", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424667185742581, 48.68251880629374] - } - }, - { - "id": "MVLV09363", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424579380339677, 48.68254398026742] - } - }, - { - "id": "MVLV10453", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.420420507191141, 48.68634791867971] - } - }, - { - "id": "MVBus24092", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.411978407328498, 48.676764286658575] - } - }, - { - "id": "MVBus24093", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410767426786093, 48.67586486863645] - } - }, - { - "id": "MVBus24094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.406207660086664, 48.675123055199464] - } - }, - { - "id": "MVBus24097", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.407329364348828, 48.67378715489126] - } - }, - { - "id": "MVLV03222", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410177531992409, 48.67251969634844] - } - }, - { - "id": "MVBus24095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.402903063269356, 48.67421149659865] - } - }, - { - "id": "MVLV00545", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.401395938329806, 48.67482940726141] - } - }, - { - "id": "MVBus24056", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.389136030184977, 48.68430691391075] - } - }, - { - "id": "MVBus24057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.388369912450079, 48.684359890565865] - } - }, - { - "id": "MVLV15406", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.389247638808418, 48.68704140487774] - } - }, - { - "id": "MVBus24058", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387495141567356, 48.683362598407236] - } - }, - { - "id": "MVLV08246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387208961037065, 48.68286061089437] - } - }, - { - "id": "MVBus24059", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391320095620501, 48.68124807997599] - } - }, - { - "id": "MVLV06953", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391318871202315, 48.68128407741701] - } - }, - { - "id": "MVBus24061", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396086853166442, 48.68016686423779] - } - }, - { - "id": "MVBus24062", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396689119419465, 48.68008386227141] - } - }, - { - "id": "MVBus24064", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.397175010325148, 48.680005646047306] - } - }, - { - "id": "MVLV02107", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.397198756611179, 48.68002106022296] - } - }, - { - "id": "MVLV04069", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.393859245371176, 48.678398121997645] - } - }, - { - "id": "MVBus24053", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387228378138695, 48.69648346340322] - } - }, - { - "id": "MVLV00763", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386320350855856, 48.69674688889175] - } - }, - { - "id": "MVLV02676", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386086307107507, 48.69024982994571] - } - }, - { - "id": "MVLV11234", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381057295037861, 48.68857227401332] - } - }, - { - "id": "MVBus17523", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36250058294375, 48.699920974017196] - } - }, - { - "id": "MVBus17526", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364469760819947, 48.702221813021815] - } - }, - { - "id": "MVBus17527", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365080155168652, 48.702931226958164] - } - }, - { - "id": "MVBus17528", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366857582095782, 48.702909804508195] - } - }, - { - "id": "MVBus17539", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.368602686985163, 48.702762027953426] - } - }, - { - "id": "MVBus17540", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369391365276649, 48.702312360854734] - } - }, - { - "id": "MVLV11643", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36985327513618, 48.70171789916646] - } - }, - { - "id": "MVBus17529", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365766216776604, 48.70323344674769] - } - }, - { - "id": "MVBus17530", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362654078028266, 48.70439394941558] - } - }, - { - "id": "MVLV12960", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361146143854642, 48.70373258684646] - } - }, - { - "id": "MVBus17532", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361706222495278, 48.70493345667249] - } - }, - { - "id": "MVBus17533", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363787332955464, 48.70687745644073] - } - }, - { - "id": "MVBus17535", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365482557431456, 48.70845136474554] - } - }, - { - "id": "MVBus17536", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371470530798074, 48.708006097671856] - } - }, - { - "id": "MVLV15838", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372263248440009, 48.70572814874992] - } - }, - { - "id": "MVLV05594", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372474957363736, 48.70819963640383] - } - }, - { - "id": "MVLV08691", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362017012011286, 48.707740359055315] - } - }, - { - "id": "MVBus17524", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360816212595922, 48.70113087837448] - } - }, - { - "id": "MVLV12961", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.359690288894828, 48.70030435899507] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV14", - "geometry": { - "type": "Point", - "coordinates": [-1.315508137717839, 48.67552963511552] - } - }, - { - "id": "MVBranch39944", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV14", - "bus2": "MVLV06299", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.315508137717839, 48.67552963511552], - [-1.315503463460778, 48.675545112303986], - [-1.315503463460778, 48.675545112303986], - [-1.315500848189535, 48.675556242851165], - [-1.315198632188688, 48.67596371052023], - [-1.317871088132522, 48.67581209610027], - [-1.318670051393893, 48.67576675473115], - [-1.31964092142359, 48.67575020213779], - [-1.320984238145868, 48.67572728247795], - [-1.323541968796889, 48.675683594843576], - [-1.323852907070429, 48.67567706472819], - [-1.324195198699835, 48.675669862746695], - [-1.324284678894714, 48.6757184090606], - [-1.32427595282035, 48.67581334177527], - [-1.324208562736317, 48.67602188193846], - [-1.324198289130883, 48.67612822738935], - [-1.324179048878627, 48.676327443285246], - [-1.324177927879868, 48.67653988530394], - [-1.324248646680606, 48.67691893742712], - [-1.324288793975336, 48.6771142230753], - [-1.324305348212575, 48.67719477859688], - [-1.324306673367868, 48.677208199294995], - [-1.3243096308857334, 48.677222514427754] - ] - }, - "length": 0.8907821128978984, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44484", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06299", - "bus2": "MVBus05026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3243096308857334, 48.677222514427754], - [-1.324312588403599, 48.67723682956052], - [-1.324316950961365, 48.67724610720035], - [-1.324407539328749, 48.67746690264696], - [-1.324752016524325, 48.67788046022347], - [-1.324843979689097, 48.67805145172044], - [-1.324824957712141, 48.678204525954555], - [-1.324608374901279, 48.67845408006145], - [-1.324270214418594, 48.67935067307869], - [-1.32398527816498, 48.67968059475105], - [-1.323915414415546, 48.680238257520585], - [-1.324401306984702, 48.6815097737912], - [-1.324552530119515, 48.68169822823113], - [-1.324633327379154, 48.681828081809556], - [-1.324633327379154, 48.681828081809556] - ] - }, - "length": 0.5407812374987008, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33354", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05026", - "bus2": "MVBus05027", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324633327379154, 48.681828081809556], - [-1.324633327379154, 48.681828081809556], - [-1.324756396743055, 48.682263798619054], - [-1.3248669507068, 48.6824916253855], - [-1.324952123147225, 48.68272566173774], - [-1.324966571570778, 48.68292236987251], - [-1.32496292375523, 48.68311335585766], - [-1.324855378890781, 48.6835003575958], - [-1.324686040704435, 48.683860535074125], - [-1.324640695755288, 48.68391926354705], - [-1.324640695755288, 48.68391926354705] - ] - }, - "length": 0.23885803889542243, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35638", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05027", - "bus2": "MVBus05028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324640695755288, 48.68391926354705], - [-1.324640695755288, 48.68391926354705], - [-1.324731743147127, 48.684102385727634], - [-1.324612607398126, 48.68420823112392], - [-1.324210835737492, 48.68469847354835], - [-1.323733355875409, 48.68508555428773], - [-1.323247151129281, 48.68609235665885], - [-1.323186423057092, 48.68614168790656], - [-1.322964822084235, 48.68662253126854], - [-1.322727629500577, 48.68774974573568], - [-1.324392042278423, 48.6880208802085], - [-1.324403471836129, 48.688034195862905], - [-1.324403471836129, 48.688034195862905] - ] - }, - "length": 0.5887167838332982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44419", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05028", - "bus2": "MVLV06298", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324403471836129, 48.688034195862905], - [-1.324403471836129, 48.688034195862905], - [-1.324437008831657, 48.68801559589586], - [-1.324656330660879, 48.688047950325824], - [-1.32466065492585, 48.6880640048316], - [-1.32466065492585, 48.6880640048316] - ] - }, - "length": 0.02157870615750059, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37908", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05028", - "bus2": "MVBus05030", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324403471836129, 48.688034195862905], - [-1.324403471836129, 48.688034195862905], - [-1.324149148043669, 48.68933663489254], - [-1.324197080192804, 48.68939333858261], - [-1.325885968473182, 48.68982120486558], - [-1.326481505570192, 48.69026083730953], - [-1.326639205462656, 48.69044737913898], - [-1.326887269601804, 48.69081554133641], - [-1.326980765300025, 48.69104141783925], - [-1.327044222623438, 48.69129157273886], - [-1.327143567736885, 48.69175069380194], - [-1.327343998045295, 48.69239344320849], - [-1.327523947418851, 48.69284541269855], - [-1.327567107178485, 48.69300748878106], - [-1.327597607039506, 48.69320728091928], - [-1.327569335173674, 48.69340129401491], - [-1.327476282131494, 48.69365103710961], - [-1.327290667822254, 48.69399224550509], - [-1.327292636982018, 48.69399087092771], - [-1.327302797151854, 48.69421180737148], - [-1.327498179998498, 48.694775445551336], - [-1.32758157405069, 48.69511069261121], - [-1.327637773349822, 48.695141656384756], - [-1.329139158360847, 48.694888540438], - [-1.32964290487591, 48.69474310803858], - [-1.330271496452614, 48.69459518180074], - [-1.330520721003228, 48.69457099219727], - [-1.330933520974348, 48.694591559250384], - [-1.332311951909265, 48.6947431871332], - [-1.332311951909265, 48.6947431871332] - ] - }, - "length": 1.2704878570324705, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42832", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05030", - "bus2": "MVLV16807", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332311951909265, 48.6947431871332], - [-1.332311951909265, 48.6947431871332], - [-1.332414749754649, 48.69475008560281], - [-1.332415855968401, 48.6947915696613], - [-1.332416229313139, 48.694805334549706], - [-1.3324397522750886, 48.69480756439362] - ] - }, - "length": 0.013751403625483079, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42299", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16807", - "bus2": "MVBus08987", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3324397522750886, 48.69480756439362], - [-1.332464774190726, 48.69480869206709], - [-1.33246573472015, 48.69479283430077], - [-1.332466383988903, 48.69478219619294], - [-1.332696716348577, 48.69475012796576], - [-1.332696716348577, 48.69475012796576] - ] - }, - "length": 0.020276337243253024, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47750", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08987", - "bus2": "MVBus08988", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332696716348577, 48.69475012796576], - [-1.332696716348577, 48.69475012796576], - [-1.332752887698223, 48.69475831550576], - [-1.332769653966778, 48.694856436515416], - [-1.332769653966778, 48.694856436515416] - ] - }, - "length": 0.015215285499410657, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch08117", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08988", - "bus2": "MVBus08989", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332769653966778, 48.694856436515416], - [-1.332769653966778, 48.694856436515416], - [-1.333868868924871, 48.69442417043966], - [-1.333868868924871, 48.69442417043966] - ] - }, - "length": 0.09412263973083554, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31282", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08989", - "bus2": "MVBus08990", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.333868868924871, 48.69442417043966], - [-1.333868868924871, 48.69442417043966], - [-1.335151937095821, 48.69432457617282], - [-1.337017272071378, 48.69361150583635], - [-1.337017272071378, 48.69361150583635] - ] - }, - "length": 0.2536788424847895, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10895", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08990", - "bus2": "MVLV13668", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.337017272071378, 48.69361150583635], - [-1.337017272071378, 48.69361150583635], - [-1.336768360474335, 48.693054819581505], - [-1.336768360474335, 48.693054819581505] - ] - }, - "length": 0.06456087593189838, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch39299", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08990", - "bus2": "MVLV08873", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.337017272071378, 48.69361150583635], - [-1.337017272071378, 48.69361150583635], - [-1.337811745653045, 48.69348041079462], - [-1.337811745653045, 48.69348041079462] - ] - }, - "length": 0.060278301216926226, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37724", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16807", - "bus2": "MVBus08231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3324397522750886, 48.69480756439362], - [-1.332438253321401, 48.694808666564086], - [-1.332443502553064, 48.69479156034865], - [-1.332456160398833, 48.694750388404394], - [-1.332456160398833, 48.694750388404394] - ] - }, - "length": 0.0066134739308626985, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42831", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08231", - "bus2": "MVBus08232", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332456160398833, 48.694750388404394], - [-1.332456160398833, 48.694750388404394], - [-1.332662258481913, 48.69470601327688], - [-1.332662258481913, 48.69470601327688] - ] - }, - "length": 0.015954819992476985, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41215", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08232", - "bus2": "MVBus08233", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332662258481913, 48.69470601327688], - [-1.332662258481913, 48.69470601327688], - [-1.334403533710343, 48.69449777888983], - [-1.334737608012648, 48.6945385588819], - [-1.337468319551824, 48.69479076262023], - [-1.338560174992908, 48.69473600803719], - [-1.339110950367838, 48.69497772569214], - [-1.34053457433403, 48.69551252079587], - [-1.341229118621193, 48.695859813180384], - [-1.34158065555616, 48.695897432347785], - [-1.342253607540212, 48.69588639859719], - [-1.343161387869735, 48.696007641304966], - [-1.343470742121568, 48.69609375099156], - [-1.343958767360514, 48.696412422257495], - [-1.344769412777089, 48.69680510651728], - [-1.344847696755994, 48.696914724780584], - [-1.344956332284714, 48.69700472937253], - [-1.345113240552836, 48.69707922515018], - [-1.345667425411271, 48.69728612809096], - [-1.346037144688256, 48.69742153130377], - [-1.346199396336957, 48.697577745085724], - [-1.34633565051282, 48.69770890446633], - [-1.346533287484332, 48.69776112271589], - [-1.346800660298467, 48.69780184396979], - [-1.347026872166945, 48.69780208131676], - [-1.347239757547525, 48.69777251551116], - [-1.347525615978146, 48.697598373510864], - [-1.347794053666933, 48.69737428185959], - [-1.348056445531613, 48.69726054460816], - [-1.348144026797379, 48.697322099639194], - [-1.348054099550095, 48.6976186904504], - [-1.347825443439531, 48.69791500087517], - [-1.347917694846003, 48.69823806607235], - [-1.34838789439191, 48.69920109903526], - [-1.349100811857249, 48.69984036815978], - [-1.349090863664277, 48.69988795473], - [-1.349090863664277, 48.69988795473] - ] - }, - "length": 1.5972493115269248, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43224", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08233", - "bus2": "MVBus08234", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.349090863664277, 48.69988795473], - [-1.349090863664277, 48.69988795473], - [-1.349083292062529, 48.6999270719708], - [-1.349083883067351, 48.69994077613723], - [-1.349084843037833, 48.69994185311251], - [-1.349140909608321, 48.699974323001385], - [-1.349236045168364, 48.700020975213334], - [-1.34927393985865, 48.70003642681342], - [-1.349387010003084, 48.700105179590416], - [-1.349472006439018, 48.700153577233394], - [-1.349507683804376, 48.70017111322575], - [-1.349583389791825, 48.7002449228178], - [-1.349583389791825, 48.7002449228178] - ] - }, - "length": 0.05627094231677252, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46980", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08234", - "bus2": "MVBus08235", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.349583389791825, 48.7002449228178], - [-1.349583389791825, 48.7002449228178], - [-1.349748385026399, 48.700405797260046], - [-1.349781547229223, 48.70045533745463], - [-1.349800820063233, 48.70047637057669], - [-1.349827137474714, 48.700499551351136], - [-1.349847027596675, 48.70052334577209], - [-1.349979562527859, 48.700651457832706], - [-1.350028618635357, 48.7006979575111], - [-1.35003056868882, 48.70070743515395], - [-1.350025023888087, 48.700721833846366], - [-1.350024986880549, 48.70072457049264], - [-1.350033533716369, 48.70073831530751], - [-1.350033533716369, 48.70073831530751] - ] - }, - "length": 0.06487991476065545, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40837", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08235", - "bus2": "MVLV15837", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.350033533716369, 48.70073831530751], - [-1.350033533716369, 48.70073831530751], - [-1.350355480420248, 48.70102878261073], - [-1.351309816091185, 48.70180708948788], - [-1.351610455483424, 48.70196548142909], - [-1.351673413354848, 48.701995963152626], - [-1.352029744876275, 48.702045632317834], - [-1.352466636103471, 48.70201232314792], - [-1.352800204288034, 48.70194984956354], - [-1.353656496921582, 48.70172500086173], - [-1.354121832772898, 48.70156831496038], - [-1.355020097991785, 48.70112971664497], - [-1.355881836396744, 48.70070569137057], - [-1.357240705657859, 48.70004739372588], - [-1.358256195357674, 48.69955330392023], - [-1.360036412980531, 48.69869517239255], - [-1.3600609520485, 48.69870418900822], - [-1.360092750498626, 48.69871588589524], - [-1.360997867228555, 48.69854465511206], - [-1.361038303263266, 48.69857133489028], - [-1.36104380445785, 48.69858140365268], - [-1.3610517542755765, 48.69858050796095] - ] - }, - "length": 0.9959524767430119, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33353", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15837", - "bus2": "MVBus17515", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3610517542755765, 48.69858050796095], - [-1.361059704093303, 48.698579612269214], - [-1.361047371992327, 48.698535238367704], - [-1.361872248455002, 48.698372926745066], - [-1.361872248455002, 48.698372926745066] - ] - }, - "length": 0.06836447371794643, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36563", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17515", - "bus2": "MVBus17516", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361872248455002, 48.698372926745066], - [-1.361872248455002, 48.698372926745066], - [-1.362629132935457, 48.69820729445299], - [-1.363029158829987, 48.698095998025224], - [-1.363488279660191, 48.697927858271804], - [-1.363445651687543, 48.697882998763404], - [-1.363943521716062, 48.69764855349933], - [-1.364231319150016, 48.69749610333351], - [-1.36457856618481, 48.69726222393793], - [-1.364770989793346, 48.69708974795057], - [-1.36483850397913, 48.696999384142416], - [-1.365211141359183, 48.696401900265855], - [-1.365418667508216, 48.696168229810155], - [-1.365710520367382, 48.69589424122478], - [-1.366081966636756, 48.69563355063961], - [-1.366487098573561, 48.695415116903014], - [-1.366719934502484, 48.695316485999676], - [-1.367397492595332, 48.695120975029496], - [-1.368102260761573, 48.6949390347851], - [-1.368517781569113, 48.69486045702395], - [-1.368673419887827, 48.6948394790163], - [-1.368859647394755, 48.694818957991565], - [-1.369176061861146, 48.69484622794454], - [-1.369633161489022, 48.69488625253494], - [-1.369840137641254, 48.694909858321765], - [-1.370008749538573, 48.69484206776048], - [-1.370008749538573, 48.69484206776048] - ] - }, - "length": 0.7716718945900013, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44436", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17516", - "bus2": "MVBus17517", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.370008749538573, 48.69484206776048], - [-1.370008749538573, 48.69484206776048], - [-1.370130340391536, 48.694836576401244], - [-1.370526610360428, 48.69492079156123], - [-1.370932620593153, 48.69485299475301], - [-1.371160826341029, 48.69480660998835], - [-1.37140828752311, 48.69474338047859], - [-1.37140828752311, 48.69474338047859] - ] - }, - "length": 0.10753804778842857, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44435", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17517", - "bus2": "MVBus17518", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37140828752311, 48.69474338047859], - [-1.37140828752311, 48.69474338047859], - [-1.372108316379351, 48.694582899499785], - [-1.372776995364991, 48.69443116937401], - [-1.372929536273884, 48.69437481928326], - [-1.373004567322684, 48.69433308611805], - [-1.373035696173742, 48.694315771215955], - [-1.373972817438306, 48.69362667631505], - [-1.376669605229281, 48.6916538042244], - [-1.378349128400386, 48.69065179067016], - [-1.378658397432478, 48.69041424189457], - [-1.378829116825462, 48.69020588613805], - [-1.379202004593425, 48.68971142133887], - [-1.379492650503138, 48.68956048905799], - [-1.380181593777458, 48.6896592059833], - [-1.380266592034214, 48.68959851050389], - [-1.380593480920253, 48.68951313748911], - [-1.380593480920253, 48.68951313748911] - ] - }, - "length": 0.9319581720426843, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17518", - "bus2": "MVBus17519", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380593480920253, 48.68951313748911], - [-1.380593480920253, 48.68951313748911], - [-1.38077081939404, 48.68948115099424], - [-1.381030922180158, 48.689499239232546], - [-1.381622620649323, 48.68956621593823], - [-1.381944230603197, 48.68960261206002], - [-1.382239983321192, 48.689632835058646], - [-1.382604941018307, 48.6897730193813], - [-1.382898135881761, 48.689885640459785], - [-1.382989438641679, 48.68992070666759], - [-1.383080417712247, 48.689951436619616], - [-1.383271623296468, 48.69000498448029], - [-1.383466377608706, 48.690039928558214], - [-1.38378629455312, 48.69006798618082], - [-1.385773855373496, 48.69015142674052], - [-1.38606803163353, 48.69014075498917], - [-1.386095076128499, 48.69020544337535], - [-1.386095076128499, 48.69020544337535] - ] - }, - "length": 0.4240344987125137, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44418", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17519", - "bus2": "MVLV00762", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386095076128499, 48.69020544337535], - [-1.386095076128499, 48.69020544337535], - [-1.386074007914371, 48.69018758536089], - [-1.386045414412386, 48.69019219016974], - [-1.3860685283105134, 48.69022637502021] - ] - }, - "length": 0.004686436383422953, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37164", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00762", - "bus2": "MVBus24050", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3860685283105134, 48.69022637502021], - [-1.386091642208641, 48.69026055987068], - [-1.386107806027131, 48.690259845618584], - [-1.38612993102133, 48.690258863290296], - [-1.386172893328841, 48.69025694803313], - [-1.386258900261758, 48.69036720873158], - [-1.386327665262383, 48.69048419259067], - [-1.386429285337267, 48.69070998267635], - [-1.386663235642549, 48.691295983208455], - [-1.386710197058936, 48.69195325464215], - [-1.386656207449652, 48.69214037516906], - [-1.386536543614332, 48.692507486905285], - [-1.386585620553674, 48.692516906896316], - [-1.386585620553674, 48.692516906896316] - ] - }, - "length": 0.26724134465610405, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch01719", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24050", - "bus2": "MVLV05135", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386585620553674, 48.692516906896316], - [-1.386585620553674, 48.692516906896316], - [-1.387398231874811, 48.691644860892694], - [-1.388721682538931, 48.69170724856656], - [-1.388721682538931, 48.69170724856656] - ] - }, - "length": 0.21162633478045764, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11543", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24050", - "bus2": "MVBus24051", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386585620553674, 48.692516906896316], - [-1.386585620553674, 48.692516906896316], - [-1.389640377977582, 48.6936695244645], - [-1.389640377977582, 48.6936695244645] - ] - }, - "length": 0.25885409503143514, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11542", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24051", - "bus2": "MVBus24052", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.389640377977582, 48.6936695244645], - [-1.389640377977582, 48.6936695244645], - [-1.390344271878809, 48.69403410174598], - [-1.390456896571498, 48.694092429012166], - [-1.390456896571498, 48.694092429012166] - ] - }, - "length": 0.07632215258057966, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch28132", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24052", - "bus2": "MVBus24055", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.390456896571498, 48.694092429012166], - [-1.390456896571498, 48.694092429012166], - [-1.398561158560935, 48.687535479227805], - [-1.398561158560935, 48.687535479227805] - ] - }, - "length": 0.9421676332786787, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch28134", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24055", - "bus2": "MVBus24068", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.398561158560935, 48.687535479227805], - [-1.398561158560935, 48.687535479227805], - [-1.403644517387418, 48.68335067722083], - [-1.408493773037451, 48.68069081868821], - [-1.408493773037451, 48.68069081868821] - ] - }, - "length": 1.0608890004938134, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch23138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24068", - "bus2": "MVBus24099", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.408493773037451, 48.68069081868821], - [-1.408493773037451, 48.68069081868821], - [-1.409110034494963, 48.68080865138281], - [-1.409110034494963, 48.68080865138281] - ] - }, - "length": 0.047234359365897635, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08362", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24099", - "bus2": "MVBus24100", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409110034494963, 48.68080865138281], - [-1.409110034494963, 48.68080865138281], - [-1.40965762004385, 48.68091651992885], - [-1.40965762004385, 48.68091651992885] - ] - }, - "length": 0.042069559422674464, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08367", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24100", - "bus2": "MVBus24103", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40965762004385, 48.68091651992885], - [-1.40965762004385, 48.68091651992885], - [-1.410375244576262, 48.68359763038951], - [-1.410375244576262, 48.68359763038951] - ] - }, - "length": 0.3027957426010854, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32881", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24103", - "bus2": "MVBus24104", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410375244576262, 48.68359763038951], - [-1.410375244576262, 48.68359763038951], - [-1.41024833874059, 48.68399934277218], - [-1.410279603008094, 48.68403941670856], - [-1.410094731272296, 48.68454334180209], - [-1.410457520575412, 48.6846248924926], - [-1.410457520575412, 48.6846248924926] - ] - }, - "length": 0.13653314559085525, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37630", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24104", - "bus2": "MVBus24106", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410457520575412, 48.6846248924926], - [-1.410457520575412, 48.6846248924926], - [-1.41052130409578, 48.6846345578222], - [-1.41052130409578, 48.6846345578222] - ] - }, - "length": 0.004817968050677522, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch15248", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24106", - "bus2": "MVBus24107", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.41052130409578, 48.6846345578222], - [-1.41052130409578, 48.6846345578222], - [-1.410557522651376, 48.685621609766095], - [-1.410557522651376, 48.685621609766095] - ] - }, - "length": 0.10979615455757827, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19974", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24107", - "bus2": "MVBus24108", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410557522651376, 48.685621609766095], - [-1.410557522651376, 48.685621609766095], - [-1.409907100020805, 48.68709324149833], - [-1.409907100020805, 48.68709324149833] - ] - }, - "length": 0.1705142628444711, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43460", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24108", - "bus2": "MVLV00546", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409907100020805, 48.68709324149833], - [-1.409907100020805, 48.68709324149833], - [-1.409966510573871, 48.68710442214782], - [-1.409618473717378, 48.687710370706036], - [-1.409510396586243, 48.6879607020776], - [-1.409563445224697, 48.687969213263976], - [-1.409563445224697, 48.687969213263976] - ] - }, - "length": 0.10961108702116706, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40775", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24104", - "bus2": "MVLV10324", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410457520575412, 48.6846248924926], - [-1.410457520575412, 48.6846248924926], - [-1.410526256898795, 48.68463218763467], - [-1.410853373558316, 48.6847031927041], - [-1.410873154098373, 48.68470856092348], - [-1.410867808177468, 48.68472414481989], - [-1.410867808177468, 48.68472414481989] - ] - }, - "length": 0.03382471807901016, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24100", - "bus2": "MVBus24101", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40965762004385, 48.68091651992885], - [-1.40965762004385, 48.68091651992885], - [-1.411072946287639, 48.68122377495599], - [-1.411072946287639, 48.68122377495599] - ] - }, - "length": 0.10967942847151416, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch40281", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24101", - "bus2": "MVLV10323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.411072946287639, 48.68122377495599], - [-1.411072946287639, 48.68122377495599], - [-1.412726298448994, 48.68168800584517], - [-1.413039955009211, 48.681710134344065], - [-1.413039955009211, 48.681710134344065] - ] - }, - "length": 0.1554685335100641, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch15243", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24068", - "bus2": "MVBus24069", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.408493773037451, 48.68069081868821], - [-1.408493773037451, 48.68069081868821], - [-1.413074070122556, 48.67823125435254], - [-1.413074070122556, 48.67823125435254] - ] - }, - "length": 0.43425352725613486, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11154", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24069", - "bus2": "MVBus24070", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.413074070122556, 48.67823125435254], - [-1.413074070122556, 48.67823125435254], - [-1.418220642622635, 48.67558838087891], - [-1.419991973797182, 48.67443548826671], - [-1.419991973797182, 48.67443548826671] - ] - }, - "length": 0.6625168530605734, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch23140", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24070", - "bus2": "MVBus24080", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419991973797182, 48.67443548826671], - [-1.419991973797182, 48.67443548826671], - [-1.42136624107891, 48.67352763843192], - [-1.42136624107891, 48.67352763843192] - ] - }, - "length": 0.1429546741306491, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch15244", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24080", - "bus2": "MVBus24081", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42136624107891, 48.67352763843192], - [-1.42136624107891, 48.67352763843192], - [-1.423458086823049, 48.672063747279815], - [-1.423458086823049, 48.672063747279815] - ] - }, - "length": 0.22413447280940296, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch23143", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24081", - "bus2": "MVBus24082", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.423458086823049, 48.672063747279815], - [-1.423458086823049, 48.672063747279815], - [-1.425433424469281, 48.6704288218968], - [-1.425433424469281, 48.6704288218968] - ] - }, - "length": 0.23285469633794945, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch32483", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24082", - "bus2": "MVBus24084", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.425433424469281, 48.6704288218968], - [-1.425433424469281, 48.6704288218968], - [-1.427550443876756, 48.66832702556939], - [-1.427550443876756, 48.66832702556939] - ] - }, - "length": 0.2809661659950674, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch47851", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24084", - "bus2": "MVBus24085", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.427550443876756, 48.66832702556939], - [-1.427550443876756, 48.66832702556939], - [-1.427541195017932, 48.66832932598601], - [-1.427522044306043, 48.668323589666684], - [-1.427713619882294, 48.66752098506874], - [-1.42773882512684, 48.667518960930806], - [-1.42773882512684, 48.667518960930806] - ] - }, - "length": 0.09450681050023824, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44739", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24085", - "bus2": "MVBus24086", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42773882512684, 48.667518960930806], - [-1.42773882512684, 48.667518960930806], - [-1.428264344005357, 48.66750835777458], - [-1.428661787035208, 48.667467173483466], - [-1.429479811508234, 48.66732761483808], - [-1.429614903110496, 48.66736333333185], - [-1.429690343340474, 48.667355780407235], - [-1.429737921743526, 48.66740399771851], - [-1.429737921743526, 48.66740399771851] - ] - }, - "length": 0.15331713080544543, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45559", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24086", - "bus2": "MVBus24087", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.429737921743526, 48.66740399771851], - [-1.429737921743526, 48.66740399771851], - [-1.430322567466328, 48.66814847999149], - [-1.430244168935322, 48.66816904089627], - [-1.430226347180375, 48.66816721336321], - [-1.430226347180375, 48.66816721336321] - ] - }, - "length": 0.10085818204908785, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch08366", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24087", - "bus2": "MVLV06447", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.430226347180375, 48.66816721336321], - [-1.430226347180375, 48.66816721336321], - [-1.430588113036341, 48.668625325386294], - [-1.432209635049518, 48.67056922323461], - [-1.432209635049518, 48.67056922323461] - ] - }, - "length": 0.30445850037463673, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38639", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24086", - "bus2": "MVBus24089", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.429737921743526, 48.66740399771851], - [-1.429737921743526, 48.66740399771851], - [-1.429711720954316, 48.667347992059526], - [-1.429745098384111, 48.667312105440324], - [-1.429792832944832, 48.667283114939146], - [-1.430600538216654, 48.667162099257006], - [-1.431267185860128, 48.66708041423658], - [-1.43198630630097, 48.667035555474946], - [-1.432243495645382, 48.66699438050295], - [-1.432432678805019, 48.6669315373857], - [-1.432628963779213, 48.66685196387979], - [-1.435725693945472, 48.66495492278176], - [-1.435886014741506, 48.66497381296566], - [-1.435951745674166, 48.66494015250545], - [-1.436119799943683, 48.66495440472515], - [-1.436858835884234, 48.665017086724], - [-1.43697981519529, 48.665059032466075], - [-1.437019059340632, 48.66514211392453], - [-1.437106449289927, 48.665659984314104], - [-1.43714728610558, 48.6657650088189], - [-1.437218640286552, 48.665909404864394], - [-1.437307400738446, 48.66600646047312], - [-1.437604584918256, 48.66619192963684], - [-1.437540172188118, 48.66623721183292], - [-1.437540172188118, 48.66623721183292] - ] - }, - "length": 0.7845793482250173, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch01974", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24089", - "bus2": "MVBus39974", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.437540172188118, 48.66623721183292], - [-1.437540172188118, 48.66623721183292], - [-1.438557514204313, 48.66571332634098], - [-1.438557514204313, 48.66571332634098] - ] - }, - "length": 0.09491870161658982, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch25437", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39974", - "bus2": "MVBus39976", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.438557514204313, 48.66571332634098], - [-1.438557514204313, 48.66571332634098], - [-1.441570933640071, 48.66627762495946], - [-1.441570933640071, 48.66627762495946] - ] - }, - "length": 0.23066760853106663, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch15247", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39976", - "bus2": "MVLV09015", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.441570933640071, 48.66627762495946], - [-1.441570933640071, 48.66627762495946], - [-1.440918679186523, 48.667310323510996], - [-1.438662520784315, 48.66925218910298], - [-1.438449788295261, 48.67104614339778], - [-1.438449788295261, 48.67104614339778] - ] - }, - "length": 0.597075270951156, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11156", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39976", - "bus2": "MVBus39978", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.441570933640071, 48.66627762495946], - [-1.441570933640071, 48.66627762495946], - [-1.443199968358023, 48.66690877873582], - [-1.443199968358023, 48.66690877873582] - ] - }, - "length": 0.13901236964835756, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch43827", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39978", - "bus2": "MVLV06448", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.443199968358023, 48.66690877873582], - [-1.443199968358023, 48.66690877873582], - [-1.444758776426216, 48.66613386722032], - [-1.446034959286904, 48.6655489870267], - [-1.446079710619304, 48.66557326975702], - [-1.446079710619304, 48.66557326975702] - ] - }, - "length": 0.26213193633513093, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25438", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39978", - "bus2": "MVBus39980", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.443199968358023, 48.66690877873582], - [-1.443199968358023, 48.66690877873582], - [-1.444227964428699, 48.668319010605344], - [-1.444227964428699, 48.668319010605344] - ] - }, - "length": 0.17414570776249913, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch48254", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39980", - "bus2": "MVBus39981", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.444227964428699, 48.668319010605344], - [-1.444227964428699, 48.668319010605344], - [-1.444299152272503, 48.6683254786251], - [-1.444502883565754, 48.668578741240715], - [-1.44375635095643, 48.668776616576054], - [-1.44375635095643, 48.668776616576054] - ] - }, - "length": 0.09643044361056909, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40282", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39981", - "bus2": "MVBus39990", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.44375635095643, 48.668776616576054], - [-1.44375635095643, 48.668776616576054], - [-1.443750278118606, 48.66873325448024], - [-1.443773467700237, 48.66871601970379], - [-1.44373218248448, 48.66866074962074], - [-1.44365965172971, 48.668617490680106], - [-1.443450919490711, 48.66851969296421], - [-1.443354882037418, 48.668480512965324], - [-1.443343047955685, 48.66847284504271], - [-1.443343047955685, 48.66847284504271] - ] - }, - "length": 0.04981559861077533, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43828", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39990", - "bus2": "MVLV18919", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.443343047955685, 48.66847284504271], - [-1.443343047955685, 48.66847284504271], - [-1.443288177621643, 48.668471426684015], - [-1.443288177621643, 48.668471426684015] - ] - }, - "length": 0.004044616944947565, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43829", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39981", - "bus2": "MVBus39982", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.44375635095643, 48.668776616576054], - [-1.44375635095643, 48.668776616576054], - [-1.445016178665306, 48.66967538193563], - [-1.445044547761066, 48.66967631292724], - [-1.445201614001252, 48.66950798717624], - [-1.44533275307121, 48.66926638040962], - [-1.445427472704872, 48.669089900926714], - [-1.445506049849497, 48.66907708140258], - [-1.445506049849497, 48.66907708140258] - ] - }, - "length": 0.2158172278970547, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch19973", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39982", - "bus2": "MVBus39983", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.445506049849497, 48.66907708140258], - [-1.445506049849497, 48.66907708140258], - [-1.448362516861079, 48.67139846929151], - [-1.448362516861079, 48.67139846929151] - ] - }, - "length": 0.333021028751415, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch19972", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39983", - "bus2": "MVLV00544", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.448362516861079, 48.67139846929151], - [-1.448362516861079, 48.67139846929151], - [-1.449205686310729, 48.67094761063653], - [-1.449205686310729, 48.67094761063653] - ] - }, - "length": 0.07981412800351775, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31520", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39983", - "bus2": "MVBus39985", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.448362516861079, 48.67139846929151], - [-1.448362516861079, 48.67139846929151], - [-1.450727879884109, 48.67314634305642], - [-1.453998689564143, 48.67360108655294], - [-1.453998689564143, 48.67360108655294] - ] - }, - "length": 0.5071576179737199, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch46239", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39985", - "bus2": "MVBus39986", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.453998689564143, 48.67360108655294], - [-1.453998689564143, 48.67360108655294], - [-1.454111420613221, 48.67365783095757], - [-1.454111420613221, 48.67365783095757] - ] - }, - "length": 0.010428310529919476, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33356", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39986", - "bus2": "MVBus39987", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.454111420613221, 48.67365783095757], - [-1.454111420613221, 48.67365783095757], - [-1.454133606341398, 48.67364249809416], - [-1.454133606341398, 48.67364249809416] - ] - }, - "length": 0.002361576150954956, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34104", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39987", - "bus2": "MVLV14633", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.454133606341398, 48.67364249809416], - [-1.454133606341398, 48.67364249809416], - [-1.4541725680368, 48.67357862747877], - [-1.454178728141187, 48.67356899944076], - [-1.454218958046013, 48.6735238334756], - [-1.454264495217655, 48.67346908471265], - [-1.454321700159414, 48.67341241504533], - [-1.45435423135338, 48.67337292164041], - [-1.454430642005505, 48.67327980327606], - [-1.454488681120271, 48.67320028499911], - [-1.454511747888592, 48.67317020127465], - [-1.45456351300606, 48.67310080060492], - [-1.454612325323693, 48.67301661872196], - [-1.454623822620292, 48.672999125729426], - [-1.454641536256091, 48.67297482859888], - [-1.454664248841753, 48.67294063454721], - [-1.454721439502256, 48.672866821704936], - [-1.454743205831589, 48.67283866032237], - [-1.454781471001512, 48.67279358392653], - [-1.454797278113478, 48.67277631306957], - [-1.454903203350935, 48.672676536097434], - [-1.454926893563537, 48.672657060330124], - [-1.454975649378707, 48.67261274629773], - [-1.455001257845182, 48.67259814970873], - [-1.455010528756687, 48.67259447856786], - [-1.455033900027318, 48.67258852070583], - [-1.455056222027711, 48.67258680799679], - [-1.455093711225001, 48.67258961379867], - [-1.455118470900897, 48.67259375356931], - [-1.45513651275814, 48.6725989360819], - [-1.455189199988478, 48.6726137646719], - [-1.455197741414115, 48.67261648824631], - [-1.455266142267885, 48.672640533387415], - [-1.455323431540651, 48.672663502972156], - [-1.455387921434535, 48.67269167774245], - [-1.455456942862276, 48.67272274027245], - [-1.455543810411399, 48.672760584328145], - [-1.45563645931521, 48.67280000725657], - [-1.4556841196372, 48.67282210574247], - [-1.455742810702578, 48.67285069077081], - [-1.455800027946779, 48.6728791879226], - [-1.455813728807923, 48.672887073937574], - [-1.455821183509333, 48.672890732142434], - [-1.455830310471647, 48.67289403088996], - [-1.455840224843539, 48.672895270642684], - [-1.455855526182402, 48.672900135741365], - [-1.455941809813138, 48.67293518145967], - [-1.455974336144249, 48.67294855775469], - [-1.455984729565733, 48.67295487569655], - [-1.456008638505341, 48.672968959571314], - [-1.456061114868594, 48.67300417762797], - [-1.456115073269813, 48.67303791739178], - [-1.456124932747906, 48.67304287552983], - [-1.456196478538126, 48.673082082136574], - [-1.456238660980065, 48.67310712737256], - [-1.456252367115327, 48.6731175059378], - [-1.456255738113806, 48.67312180769581], - [-1.456259903898959, 48.67313123154897], - [-1.456265619588171, 48.67314308959205], - [-1.456255345960154, 48.673153506275305], - [-1.456255345960154, 48.673153506275305] - ] - }, - "length": 0.2488833099190807, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44485", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39986", - "bus2": "MVBus39989", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.454111420613221, 48.67365783095757], - [-1.454111420613221, 48.67365783095757], - [-1.452869137586615, 48.67521355033912], - [-1.452859664487246, 48.675253242242846], - [-1.452918824683785, 48.67534661635604], - [-1.452891483259132, 48.67540384263697], - [-1.453878103457793, 48.67656219092895], - [-1.453874099031162, 48.67679155352529], - [-1.453773358658158, 48.6769571987286], - [-1.453611963211757, 48.67713094690073], - [-1.453426777794724, 48.677354176343954], - [-1.453245303144872, 48.67766060058007], - [-1.453250092824149, 48.67793832200117], - [-1.453276628510095, 48.67806878893098], - [-1.45339418352316, 48.6782786707411], - [-1.453578179266918, 48.678412699238436], - [-1.453782994328737, 48.67852528308369], - [-1.454086000736322, 48.678566019708], - [-1.454390489163225, 48.678586442199475], - [-1.454785641113466, 48.67861295542413], - [-1.45539974326333, 48.67870188544613], - [-1.456062695059952, 48.678794082577085], - [-1.457150163214201, 48.679020704631384], - [-1.458038894472679, 48.679168724680785], - [-1.458899745289258, 48.67932809655063], - [-1.459506361138027, 48.67947358896414], - [-1.460242190582365, 48.67972907747678], - [-1.461114544187156, 48.680077155369126], - [-1.462816384053341, 48.6808138484481], - [-1.464202643618057, 48.68141389267702], - [-1.464900489793405, 48.68167536746043], - [-1.465903467893022, 48.6818903386856], - [-1.466618503782603, 48.68205774238269], - [-1.467086104963352, 48.68220767349192], - [-1.467734965386224, 48.68257346478001], - [-1.468127601128452, 48.68288392994266], - [-1.468524223605521, 48.68319755066873], - [-1.468855231581498, 48.683383552661674], - [-1.469296303729002, 48.68356868554966], - [-1.469783126460011, 48.683706119835186], - [-1.470153882234667, 48.68374362536548], - [-1.470255748742938, 48.68369708764026], - [-1.470545857490608, 48.683572558820366], - [-1.470958795346202, 48.68358385201439], - [-1.471216002099142, 48.68370079965435], - [-1.47131322589933, 48.68380020562558], - [-1.471635983278531, 48.684130172901796], - [-1.471709586496959, 48.68423921020579], - [-1.471657732047025, 48.68428979476064], - [-1.471512364074963, 48.6843057564178], - [-1.47151580687234, 48.684277424479994], - [-1.471496954704484, 48.684283897260315], - [-1.471496954704484, 48.684283897260315] - ] - }, - "length": 2.1540794924293905, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch08365", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39974", - "bus2": "MVLV18920", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.438557514204313, 48.66571332634098], - [-1.438557514204313, 48.66571332634098], - [-1.435905350518214, 48.665013198677705], - [-1.435905350518214, 48.665013198677705] - ] - }, - "length": 0.21030284000132166, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch33616", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24085", - "bus2": "MVBus24090", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42773882512684, 48.667518960930806], - [-1.42773882512684, 48.667518960930806], - [-1.427625944923735, 48.66750760645042], - [-1.427284113732512, 48.66743188815125], - [-1.427021639730295, 48.667357105414936], - [-1.426533446103999, 48.66718559291378], - [-1.425410181177729, 48.666811433669615], - [-1.425238835752817, 48.66678363710558], - [-1.425143248448931, 48.66672807735636], - [-1.424936393180271, 48.66680628167733], - [-1.424829594309627, 48.66689721253386], - [-1.42436465981737, 48.66755902753136], - [-1.424172230332951, 48.667815763092705], - [-1.424019455111165, 48.667992607111934], - [-1.424019455111165, 48.667992607111934] - ] - }, - "length": 0.37774257520662646, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47852", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24090", - "bus2": "MVLV14266", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.424019455111165, 48.667992607111934], - [-1.424019455111165, 48.667992607111934], - [-1.423991554665524, 48.66801072517383], - [-1.423949664678889, 48.6680024069041], - [-1.423949664678889, 48.6680024069041] - ] - }, - "length": 0.0060991198454417115, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41860", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24082", - "bus2": "MVLV02728", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.425433424469281, 48.6704288218968], - [-1.425433424469281, 48.6704288218968], - [-1.425361813066418, 48.670451620745325], - [-1.425078663899435, 48.67046836136561], - [-1.424623894900225, 48.670481105600174], - [-1.424211243860411, 48.670483873139204], - [-1.424157252985195, 48.67046024446686], - [-1.424157252985195, 48.67046024446686] - ] - }, - "length": 0.09547606697053757, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25435", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24080", - "bus2": "MVLV00547", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42136624107891, 48.67352763843192], - [-1.42136624107891, 48.67352763843192], - [-1.419920011013785, 48.6734160725615], - [-1.419761534530391, 48.67316204924771], - [-1.419761534530391, 48.67316204924771] - ] - }, - "length": 0.13779793646463212, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11155", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24070", - "bus2": "MVBus24071", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419991973797182, 48.67443548826671], - [-1.419991973797182, 48.67443548826671], - [-1.420630681455058, 48.674440314166944], - [-1.420630681455058, 48.674440314166944] - ] - }, - "length": 0.04704228768803644, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23141", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24071", - "bus2": "MVBus24072", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.420630681455058, 48.674440314166944], - [-1.420630681455058, 48.674440314166944], - [-1.421303413674681, 48.67445303930767], - [-1.422160776516778, 48.675074482838696], - [-1.421881023752388, 48.67595325142352], - [-1.421340042028947, 48.67636068076991], - [-1.421340042028947, 48.67636068076991] - ] - }, - "length": 0.30337749386023144, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23142", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24072", - "bus2": "MVLV18922", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.421340042028947, 48.67636068076991], - [-1.421340042028947, 48.67636068076991], - [-1.425056590474113, 48.67762732364768], - [-1.425622793335055, 48.67794155813378], - [-1.425622793335055, 48.67794155813378] - ] - }, - "length": 0.36222154559153724, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25436", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24072", - "bus2": "MVBus24073", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.421340042028947, 48.67636068076991], - [-1.421340042028947, 48.67636068076991], - [-1.420540495730062, 48.67693633672361], - [-1.419810117061095, 48.67734764388789], - [-1.419810117061095, 48.67734764388789] - ] - }, - "length": 0.15758264210247439, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15246", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24073", - "bus2": "MVLV13819", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419810117061095, 48.67734764388789], - [-1.419810117061095, 48.67734764388789], - [-1.418765738504619, 48.677922375626466], - [-1.417411347774322, 48.6790354886807], - [-1.417411347774322, 48.6790354886807] - ] - }, - "length": 0.2589656697239327, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24073", - "bus2": "MVBus24075", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419810117061095, 48.67734764388789], - [-1.419810117061095, 48.67734764388789], - [-1.420328922524153, 48.677875121617966], - [-1.420328922524153, 48.677875121617966] - ] - }, - "length": 0.07000292723351449, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24075", - "bus2": "MVBus24076", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.420328922524153, 48.677875121617966], - [-1.420328922524153, 48.677875121617966], - [-1.424667185742581, 48.68251880629374], - [-1.424667185742581, 48.68251880629374] - ] - }, - "length": 0.6072243094713089, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15313", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24076", - "bus2": "MVLV09363", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.424667185742581, 48.68251880629374], - [-1.424667185742581, 48.68251880629374], - [-1.424579380339677, 48.68254398026742], - [-1.424579380339677, 48.68254398026742] - ] - }, - "length": 0.007045636627968056, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01918", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24076", - "bus2": "MVLV10453", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.424667185742581, 48.68251880629374], - [-1.424667185742581, 48.68251880629374], - [-1.423863031695593, 48.683377524794466], - [-1.422193673110718, 48.68412332239577], - [-1.421450216052972, 48.68482593791207], - [-1.420420507191141, 48.68634791867971], - [-1.420420507191141, 48.68634791867971] - ] - }, - "length": 0.5415034548556188, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08363", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24069", - "bus2": "MVBus24092", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.413074070122556, 48.67823125435254], - [-1.413074070122556, 48.67823125435254], - [-1.411978407328498, 48.676764286658575], - [-1.411978407328498, 48.676764286658575] - ] - }, - "length": 0.18199606601879115, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08364", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24092", - "bus2": "MVBus24093", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.411978407328498, 48.676764286658575], - [-1.411978407328498, 48.676764286658575], - [-1.41094935900405, 48.67588938241899], - [-1.410767426786093, 48.67586486863645], - [-1.410767426786093, 48.67586486863645] - ] - }, - "length": 0.13699784465097406, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31518", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24093", - "bus2": "MVBus24094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410767426786093, 48.67586486863645], - [-1.410767426786093, 48.67586486863645], - [-1.406207660086664, 48.675123055199464], - [-1.406207660086664, 48.675123055199464] - ] - }, - "length": 0.34579223003823056, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31519", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24094", - "bus2": "MVBus24097", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.406207660086664, 48.675123055199464], - [-1.406207660086664, 48.675123055199464], - [-1.407329364348828, 48.67378715489126], - [-1.407329364348828, 48.67378715489126] - ] - }, - "length": 0.16998122619689254, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43826", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24097", - "bus2": "MVLV03222", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.407329364348828, 48.67378715489126], - [-1.407329364348828, 48.67378715489126], - [-1.407502142525449, 48.67373881085122], - [-1.407422703141767, 48.67334726719784], - [-1.408353765225652, 48.67308637801645], - [-1.409229507508, 48.67286043468729], - [-1.410183009384582, 48.67258309151386], - [-1.410177531992409, 48.67251969634844], - [-1.410177531992409, 48.67251969634844] - ] - }, - "length": 0.28518296092705764, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25434", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24094", - "bus2": "MVBus24095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.406207660086664, 48.675123055199464], - [-1.406207660086664, 48.675123055199464], - [-1.403474306377468, 48.67473982769423], - [-1.403066889562038, 48.67459093187115], - [-1.402903063269356, 48.67421149659865], - [-1.402903063269356, 48.67421149659865] - ] - }, - "length": 0.2839203535914608, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32880", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24095", - "bus2": "MVLV00545", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.402903063269356, 48.67421149659865], - [-1.402903063269356, 48.67421149659865], - [-1.402887778117972, 48.67418637690393], - [-1.402720340785575, 48.67422309006748], - [-1.402290181691711, 48.674372968677645], - [-1.402012558869709, 48.67450738187695], - [-1.401711911452538, 48.67470258749458], - [-1.401594889014558, 48.67482389147757], - [-1.401395938329806, 48.67482940726141], - [-1.401395938329806, 48.67482940726141] - ] - }, - "length": 0.13880575619861452, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23661", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24055", - "bus2": "MVBus24056", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.398561158560935, 48.687535479227805], - [-1.398561158560935, 48.687535479227805], - [-1.393362724182627, 48.685320816196224], - [-1.389136030184977, 48.68430691391075], - [-1.389136030184977, 48.68430691391075] - ] - }, - "length": 0.7861628831366249, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11544", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24056", - "bus2": "MVBus24057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.389136030184977, 48.68430691391075], - [-1.389136030184977, 48.68430691391075], - [-1.388369912450079, 48.684359890565865], - [-1.388369912450079, 48.684359890565865] - ] - }, - "length": 0.05671839189802176, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32126", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24057", - "bus2": "MVLV15406", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.388369912450079, 48.684359890565865], - [-1.388369912450079, 48.684359890565865], - [-1.389247638808418, 48.68704140487774], - [-1.389247638808418, 48.68704140487774] - ] - }, - "length": 0.3051172412161234, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18995", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24057", - "bus2": "MVBus24058", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.388369912450079, 48.684359890565865], - [-1.388369912450079, 48.684359890565865], - [-1.387495141567356, 48.683362598407236], - [-1.387495141567356, 48.683362598407236] - ] - }, - "length": 0.1282511394554021, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15994", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24058", - "bus2": "MVLV08246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387495141567356, 48.683362598407236], - [-1.387495141567356, 48.683362598407236], - [-1.387208961037065, 48.68286061089437], - [-1.387208961037065, 48.68286061089437] - ] - }, - "length": 0.059667850234072076, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34976", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24058", - "bus2": "MVBus24059", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387495141567356, 48.683362598407236], - [-1.387495141567356, 48.683362598407236], - [-1.387759531943309, 48.683293500990985], - [-1.387814024954069, 48.683271074752916], - [-1.387826894829556, 48.683254949865876], - [-1.387818960470286, 48.68323790351911], - [-1.387722623145225, 48.683139639342485], - [-1.387673180435401, 48.68309690931768], - [-1.387558220629858, 48.683028367596606], - [-1.387263325437987, 48.68285935388355], - [-1.387269844746174, 48.68276289905099], - [-1.387348437646504, 48.682715311813894], - [-1.387356786475741, 48.68269716024084], - [-1.387678417238547, 48.682493012673895], - [-1.387817559710464, 48.682414421857445], - [-1.38796727720281, 48.68234478542403], - [-1.388823713394605, 48.682060441880395], - [-1.389429594414714, 48.68186397150588], - [-1.389752429232078, 48.681758351969066], - [-1.389808653669071, 48.68175272492027], - [-1.390279612206967, 48.68158793534494], - [-1.39031602673959, 48.68158293056698], - [-1.390789840058094, 48.681425401097336], - [-1.391079557085955, 48.68133008729849], - [-1.391174642348653, 48.681298806546174], - [-1.391199538592418, 48.68128573171901], - [-1.391223663864039, 48.68127574069037], - [-1.391294163018651, 48.681258829737715], - [-1.391320095620501, 48.68124807997599], - [-1.391320095620501, 48.68124807997599] - ] - }, - "length": 0.4450064142173554, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24059", - "bus2": "MVLV06953", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391320095620501, 48.68124807997599], - [-1.391320095620501, 48.68124807997599], - [-1.391322168393567, 48.68125291913266], - [-1.391311904977682, 48.68125609434967], - [-1.391311522906812, 48.681261190645955], - [-1.391314507522578, 48.68127685361685], - [-1.391318871202315, 48.68128407741701], - [-1.391318871202315, 48.68128407741701] - ] - }, - "length": 0.004581756372837862, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35687", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24059", - "bus2": "MVBus24061", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391320095620501, 48.68124807997599], - [-1.391320095620501, 48.68124807997599], - [-1.3913757704759, 48.68123100504328], - [-1.391452827194984, 48.681200551730086], - [-1.391544113131154, 48.68117144180778], - [-1.391578032857149, 48.681158560168356], - [-1.391641417684, 48.681142691530205], - [-1.391897231031268, 48.68105881697471], - [-1.392092195181681, 48.68099718313847], - [-1.392155718516572, 48.68097169020065], - [-1.392199012704665, 48.68095631793636], - [-1.392217767946615, 48.6809516068197], - [-1.392488320110357, 48.680862183213534], - [-1.392779260671652, 48.68076771742702], - [-1.392878950410615, 48.68073737928427], - [-1.392982213665771, 48.680710636158025], - [-1.393036820873943, 48.68069650057501], - [-1.393043528466283, 48.68068316045334], - [-1.393055312133606, 48.680676742711626], - [-1.393447343467384, 48.68059026342986], - [-1.393795017824657, 48.6805354138882], - [-1.393828374426592, 48.68053988988404], - [-1.394255996709342, 48.68047636899161], - [-1.394377170388082, 48.68047255692166], - [-1.395322544559519, 48.68030720020886], - [-1.395635422344027, 48.680253989044964], - [-1.395963743339719, 48.680200299979205], - [-1.39599587277191, 48.68018351390004], - [-1.396086853166442, 48.68016686423779], - [-1.396086853166442, 48.68016686423779] - ] - }, - "length": 0.3744445791717937, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46471", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24061", - "bus2": "MVBus24062", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396086853166442, 48.68016686423779], - [-1.396086853166442, 48.68016686423779], - [-1.3962942121381, 48.68013299922341], - [-1.396488560143423, 48.680102081053114], - [-1.396575419622532, 48.68009182387137], - [-1.396689119419465, 48.68008386227141], - [-1.396689119419465, 48.68008386227141] - ] - }, - "length": 0.045362740179136773, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36644", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24062", - "bus2": "MVBus24064", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396689119419465, 48.68008386227141], - [-1.396689119419465, 48.68008386227141], - [-1.396782321176775, 48.68007733774667], - [-1.39687384253284, 48.68005762884955], - [-1.396968701387716, 48.680047119542785], - [-1.397175010325148, 48.680005646047306], - [-1.397175010325148, 48.680005646047306] - ] - }, - "length": 0.0369480354900679, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33185", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24064", - "bus2": "MVLV02107", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.397175010325148, 48.680005646047306], - [-1.397175010325148, 48.680005646047306], - [-1.397190364000473, 48.68000258900063], - [-1.397198756611179, 48.68002106022296], - [-1.397198756611179, 48.68002106022296] - ] - }, - "length": 0.0033256646425244354, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46121", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24062", - "bus2": "MVLV04069", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396689119419465, 48.68008386227141], - [-1.396689119419465, 48.68008386227141], - [-1.396648913020269, 48.6800488988877], - [-1.394611413407245, 48.67796960367503], - [-1.394568048039803, 48.6779615913739], - [-1.394163276971984, 48.678118702457], - [-1.393845086303829, 48.678271396765766], - [-1.393859245371176, 48.678398121997645], - [-1.393859245371176, 48.678398121997645] - ] - }, - "length": 0.3614631350164427, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch11541", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24052", - "bus2": "MVBus24053", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.390456896571498, 48.694092429012166], - [-1.390456896571498, 48.694092429012166], - [-1.387379276762682, 48.696449094264764], - [-1.387228378138695, 48.69648346340322], - [-1.387228378138695, 48.69648346340322] - ] - }, - "length": 0.3581761272426037, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34079", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24053", - "bus2": "MVLV00763", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387228378138695, 48.69648346340322], - [-1.387228378138695, 48.69648346340322], - [-1.387221166791382, 48.69649361522939], - [-1.387205265351858, 48.696487392402446], - [-1.387107118643517, 48.69645566648759], - [-1.387097484203143, 48.69645685076047], - [-1.387090828303885, 48.6964626118196], - [-1.387029614602151, 48.69657625091903], - [-1.386869072729956, 48.69681438074435], - [-1.386866615728102, 48.69681708545298], - [-1.386858597780683, 48.69681616728629], - [-1.386355132658147, 48.696695396202], - [-1.386347399884585, 48.6966975105803], - [-1.386320350855856, 48.69674688889175], - [-1.386320350855856, 48.69674688889175] - ] - }, - "length": 0.10141843723377124, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34168", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17519", - "bus2": "MVLV02676", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386095076128499, 48.69020544337535], - [-1.386095076128499, 48.69020544337535], - [-1.386101834131236, 48.690227313961685], - [-1.386094764648589, 48.69023810923906], - [-1.386091738376708, 48.69024273053422], - [-1.386086307107507, 48.69024982994571], - [-1.386086307107507, 48.69024982994571] - ] - }, - "length": 0.00523601712228864, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39173", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17518", - "bus2": "MVLV11234", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380593480920253, 48.68951313748911], - [-1.380593480920253, 48.68951313748911], - [-1.380601431977655, 48.689423217060465], - [-1.38072919403013, 48.68853566517583], - [-1.380949803263799, 48.68854929502677], - [-1.381057295037861, 48.68857227401332], - [-1.381057295037861, 48.68857227401332] - ] - }, - "length": 0.13379285548725914, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41216", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17515", - "bus2": "MVBus17523", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361872248455002, 48.698372926745066], - [-1.361872248455002, 48.698372926745066], - [-1.361903822228889, 48.698406874351], - [-1.362246996694102, 48.699408941615545], - [-1.362333415609004, 48.699680825794466], - [-1.362568397912248, 48.69985650909679], - [-1.362545617311338, 48.69987737599273], - [-1.36250058294375, 48.699920974017196], - [-1.36250058294375, 48.699920974017196] - ] - }, - "length": 0.1844208420110156, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch12786", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17523", - "bus2": "MVBus17526", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36250058294375, 48.699920974017196], - [-1.36250058294375, 48.699920974017196], - [-1.364469760819947, 48.702221813021815], - [-1.364469760819947, 48.702221813021815] - ] - }, - "length": 0.29406741281526205, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24944", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17526", - "bus2": "MVBus17527", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364469760819947, 48.702221813021815], - [-1.364469760819947, 48.702221813021815], - [-1.365080155168652, 48.702931226958164], - [-1.365080155168652, 48.702931226958164] - ] - }, - "length": 0.09078650728206882, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30653", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17527", - "bus2": "MVBus17528", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365080155168652, 48.702931226958164], - [-1.365080155168652, 48.702931226958164], - [-1.366857582095782, 48.702909804508195], - [-1.366857582095782, 48.702909804508195] - ] - }, - "length": 0.13085094399203137, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07874", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17528", - "bus2": "MVBus17539", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366857582095782, 48.702909804508195], - [-1.366857582095782, 48.702909804508195], - [-1.368602686985163, 48.702762027953426], - [-1.368602686985163, 48.702762027953426] - ] - }, - "length": 0.12949731231923822, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22298", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17539", - "bus2": "MVBus17540", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.368602686985163, 48.702762027953426], - [-1.368602686985163, 48.702762027953426], - [-1.369391365276649, 48.702312360854734], - [-1.369391365276649, 48.702312360854734] - ] - }, - "length": 0.07661917327285778, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22300", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17540", - "bus2": "MVLV11643", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369391365276649, 48.702312360854734], - [-1.369391365276649, 48.702312360854734], - [-1.36985327513618, 48.70171789916646], - [-1.36985327513618, 48.70171789916646] - ] - }, - "length": 0.0743375036506505, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30655", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17528", - "bus2": "MVBus17529", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366857582095782, 48.702909804508195], - [-1.366857582095782, 48.702909804508195], - [-1.365766216776604, 48.70323344674769], - [-1.365766216776604, 48.70323344674769] - ] - }, - "length": 0.08802463182829624, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02960", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17529", - "bus2": "MVBus17530", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365766216776604, 48.70323344674769], - [-1.365766216776604, 48.70323344674769], - [-1.363833946287064, 48.70377351832192], - [-1.362654078028266, 48.70439394941558], - [-1.362654078028266, 48.70439394941558] - ] - }, - "length": 0.2653000495495086, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07873", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17530", - "bus2": "MVLV12960", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.362654078028266, 48.70439394941558], - [-1.362654078028266, 48.70439394941558], - [-1.361721892311404, 48.70427438531108], - [-1.361146143854642, 48.70373258684646], - [-1.361146143854642, 48.70373258684646] - ] - }, - "length": 0.1435499370827407, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22297", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17530", - "bus2": "MVBus17532", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.362654078028266, 48.70439394941558], - [-1.362654078028266, 48.70439394941558], - [-1.361706222495278, 48.70493345667249], - [-1.361706222495278, 48.70493345667249] - ] - }, - "length": 0.09201445378229363, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30654", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17532", - "bus2": "MVBus17533", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361706222495278, 48.70493345667249], - [-1.361706222495278, 48.70493345667249], - [-1.363787332955464, 48.70687745644073], - [-1.363787332955464, 48.70687745644073] - ] - }, - "length": 0.26494540274416534, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02961", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17533", - "bus2": "MVBus17535", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363787332955464, 48.70687745644073], - [-1.363787332955464, 48.70687745644073], - [-1.365482557431456, 48.70845136474554], - [-1.365482557431456, 48.70845136474554] - ] - }, - "length": 0.21494311509699743, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12787", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17535", - "bus2": "MVBus17536", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365482557431456, 48.70845136474554], - [-1.365482557431456, 48.70845136474554], - [-1.370137877277229, 48.70773714942973], - [-1.371470530798074, 48.708006097671856], - [-1.371470530798074, 48.708006097671856] - ] - }, - "length": 0.4542496808028074, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22299", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17536", - "bus2": "MVLV15838", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371470530798074, 48.708006097671856], - [-1.371470530798074, 48.708006097671856], - [-1.372263248440009, 48.70572814874992], - [-1.372263248440009, 48.70572814874992] - ] - }, - "length": 0.25994927894914815, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24945", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17536", - "bus2": "MVLV05594", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371470530798074, 48.708006097671856], - [-1.371470530798074, 48.708006097671856], - [-1.372474957363736, 48.70819963640383], - [-1.372474957363736, 48.70819963640383] - ] - }, - "length": 0.07699349789243165, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30656", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17533", - "bus2": "MVLV08691", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363787332955464, 48.70687745644073], - [-1.363787332955464, 48.70687745644073], - [-1.362017012011286, 48.707740359055315], - [-1.362017012011286, 48.707740359055315] - ] - }, - "length": 0.16181702009734078, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24943", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17523", - "bus2": "MVBus17524", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36250058294375, 48.699920974017196], - [-1.36250058294375, 48.699920974017196], - [-1.3617748995242, 48.70059026302006], - [-1.360816212595922, 48.70113087837448], - [-1.360816212595922, 48.70113087837448] - ] - }, - "length": 0.1843169641640161, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch36942", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17524", - "bus2": "MVLV12961", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360816212595922, 48.70113087837448], - [-1.360816212595922, 48.70113087837448], - [-1.360722700562462, 48.701166484045686], - [-1.360614861951732, 48.701021506245404], - [-1.360437527815529, 48.700889501225184], - [-1.360278885836657, 48.7008039301189], - [-1.359583849886216, 48.700391396539366], - [-1.359690288894828, 48.70030435899507], - [-1.359690288894828, 48.70030435899507] - ] - }, - "length": 0.14178813460374382, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV06299_production", - "bus": "MVLV06299", - "phases": "abc", - "powers": [ - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0] - ] - }, - { - "id": "MVLV06299_consumption", - "bus": "MVLV06299", - "phases": "abc", - "powers": [ - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961] - ] - }, - { - "id": "MVLV06298_production", - "bus": "MVLV06298", - "phases": "abc", - "powers": [ - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0] - ] - }, - { - "id": "MVLV06298_consumption", - "bus": "MVLV06298", - "phases": "abc", - "powers": [ - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961] - ] - }, - { - "id": "MVLV16807_production", - "bus": "MVLV16807", - "phases": "abc", - "powers": [ - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0] - ] - }, - { - "id": "MVLV16807_consumption", - "bus": "MVLV16807", - "phases": "abc", - "powers": [ - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961] - ] - }, - { - "id": "MVLV13668_production", - "bus": "MVLV13668", - "phases": "abc", - "powers": [ - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0] - ] - }, - { - "id": "MVLV13668_consumption", - "bus": "MVLV13668", - "phases": "abc", - "powers": [ - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961] - ] - }, - { - "id": "MVLV08873_production", - "bus": "MVLV08873", - "phases": "abc", - "powers": [ - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0], - [-491.6666666666667, 0.0] - ] - }, - { - "id": "MVLV08873_consumption", - "bus": "MVLV08873", - "phases": "abc", - "powers": [ - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961], - [12355.633423779325, 4061.100315812961] - ] - }, - { - "id": "MVLV15837_production", - "bus": "MVLV15837", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15837_consumption", - "bus": "MVLV15837", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - }, - { - "id": "MVLV00762_production", - "bus": "MVLV00762", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV00762_consumption", - "bus": "MVLV00762", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV05135_production", - "bus": "MVLV05135", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV05135_consumption", - "bus": "MVLV05135", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV00546_production", - "bus": "MVLV00546", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV00546_consumption", - "bus": "MVLV00546", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV10324_production", - "bus": "MVLV10324", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV10324_consumption", - "bus": "MVLV10324", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV10323_production", - "bus": "MVLV10323", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV10323_consumption", - "bus": "MVLV10323", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV06447_production", - "bus": "MVLV06447", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV06447_consumption", - "bus": "MVLV06447", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV09015_production", - "bus": "MVLV09015", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV09015_consumption", - "bus": "MVLV09015", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV06448_production", - "bus": "MVLV06448", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV06448_consumption", - "bus": "MVLV06448", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV18919_production", - "bus": "MVLV18919", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV18919_consumption", - "bus": "MVLV18919", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV00544_production", - "bus": "MVLV00544", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV00544_consumption", - "bus": "MVLV00544", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV14633_production", - "bus": "MVLV14633", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV14633_consumption", - "bus": "MVLV14633", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV18920_production", - "bus": "MVLV18920", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV18920_consumption", - "bus": "MVLV18920", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV14266_production", - "bus": "MVLV14266", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV14266_consumption", - "bus": "MVLV14266", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV02728_production", - "bus": "MVLV02728", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV02728_consumption", - "bus": "MVLV02728", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV00547_production", - "bus": "MVLV00547", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV00547_consumption", - "bus": "MVLV00547", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV18922_production", - "bus": "MVLV18922", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV18922_consumption", - "bus": "MVLV18922", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV13819_production", - "bus": "MVLV13819", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV13819_consumption", - "bus": "MVLV13819", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV09363_production", - "bus": "MVLV09363", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV09363_consumption", - "bus": "MVLV09363", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV10453_production", - "bus": "MVLV10453", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV10453_consumption", - "bus": "MVLV10453", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV03222_production", - "bus": "MVLV03222", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV03222_consumption", - "bus": "MVLV03222", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV00545_production", - "bus": "MVLV00545", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV00545_consumption", - "bus": "MVLV00545", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV15406_production", - "bus": "MVLV15406", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV15406_consumption", - "bus": "MVLV15406", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV08246_production", - "bus": "MVLV08246", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV08246_consumption", - "bus": "MVLV08246", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV06953_production", - "bus": "MVLV06953", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV06953_consumption", - "bus": "MVLV06953", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV02107_production", - "bus": "MVLV02107", - "phases": "abc", - "powers": [ - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0], - [-509.5238095238096, 0.0] - ] - }, - { - "id": "MVLV02107_consumption", - "bus": "MVLV02107", - "phases": "abc", - "powers": [ - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335], - [3204.98490030292, 1053.4275940678335] - ] - }, - { - "id": "MVLV04069_production", - "bus": "MVLV04069", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV04069_consumption", - "bus": "MVLV04069", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV00763_production", - "bus": "MVLV00763", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV00763_consumption", - "bus": "MVLV00763", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV02676_production", - "bus": "MVLV02676", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV02676_consumption", - "bus": "MVLV02676", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV11234_production", - "bus": "MVLV11234", - "phases": "abc", - "powers": [ - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0], - [-578.2608695652174, 0.0] - ] - }, - { - "id": "MVLV11234_consumption", - "bus": "MVLV11234", - "phases": "abc", - "powers": [ - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508], - [4808.455319990588, 1580.4628341436508] - ] - }, - { - "id": "MVLV11643_production", - "bus": "MVLV11643", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11643_consumption", - "bus": "MVLV11643", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - }, - { - "id": "MVLV12960_production", - "bus": "MVLV12960", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12960_consumption", - "bus": "MVLV12960", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - }, - { - "id": "MVLV15838_production", - "bus": "MVLV15838", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15838_consumption", - "bus": "MVLV15838", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - }, - { - "id": "MVLV05594_production", - "bus": "MVLV05594", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05594_consumption", - "bus": "MVLV05594", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - }, - { - "id": "MVLV08691_production", - "bus": "MVLV08691", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08691_consumption", - "bus": "MVLV08691", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - }, - { - "id": "MVLV12961_production", - "bus": "MVLV12961", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12961_consumption", - "bus": "MVLV12961", - "phases": "abc", - "powers": [ - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133], - [2057.026751874986, 676.1119972690133] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder210_winter.json b/data/MVFeeder210_winter.json deleted file mode 100644 index 38566a0f..00000000 --- a/data/MVFeeder210_winter.json +++ /dev/null @@ -1,5174 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.315508137717839, 48.67552963511552] - } - }, - { - "id": "HVMV14", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.315508137717839, 48.67552963511552] - } - }, - { - "id": "MVLV06299", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3243096308857334, 48.677222514427754] - } - }, - { - "id": "MVBus05026", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.324633327379154, 48.681828081809556] - } - }, - { - "id": "MVBus05027", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.324640695755288, 48.68391926354705] - } - }, - { - "id": "MVBus05028", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.324403471836129, 48.688034195862905] - } - }, - { - "id": "MVLV06298", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.32466065492585, 48.6880640048316] - } - }, - { - "id": "MVBus05030", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332311951909265, 48.6947431871332] - } - }, - { - "id": "MVLV16807", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3324397522750886, 48.69480756439362] - } - }, - { - "id": "MVBus08987", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332696716348577, 48.69475012796576] - } - }, - { - "id": "MVBus08988", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332769653966778, 48.694856436515416] - } - }, - { - "id": "MVBus08989", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.333868868924871, 48.69442417043966] - } - }, - { - "id": "MVBus08990", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.337017272071378, 48.69361150583635] - } - }, - { - "id": "MVLV13668", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.336768360474335, 48.693054819581505] - } - }, - { - "id": "MVLV08873", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.337811745653045, 48.69348041079462] - } - }, - { - "id": "MVBus08231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332456160398833, 48.694750388404394] - } - }, - { - "id": "MVBus08232", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.332662258481913, 48.69470601327688] - } - }, - { - "id": "MVBus08233", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.349090863664277, 48.69988795473] - } - }, - { - "id": "MVBus08234", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.349583389791825, 48.7002449228178] - } - }, - { - "id": "MVBus08235", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.350033533716369, 48.70073831530751] - } - }, - { - "id": "MVLV15837", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3610517542755765, 48.69858050796095] - } - }, - { - "id": "MVBus17515", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361872248455002, 48.698372926745066] - } - }, - { - "id": "MVBus17516", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.370008749538573, 48.69484206776048] - } - }, - { - "id": "MVBus17517", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.37140828752311, 48.69474338047859] - } - }, - { - "id": "MVBus17518", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.380593480920253, 48.68951313748911] - } - }, - { - "id": "MVBus17519", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386095076128499, 48.69020544337535] - } - }, - { - "id": "MVLV00762", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.3860685283105134, 48.69022637502021] - } - }, - { - "id": "MVBus24050", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386585620553674, 48.692516906896316] - } - }, - { - "id": "MVLV05135", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.388721682538931, 48.69170724856656] - } - }, - { - "id": "MVBus24051", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.389640377977582, 48.6936695244645] - } - }, - { - "id": "MVBus24052", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.390456896571498, 48.694092429012166] - } - }, - { - "id": "MVBus24055", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.398561158560935, 48.687535479227805] - } - }, - { - "id": "MVBus24068", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.408493773037451, 48.68069081868821] - } - }, - { - "id": "MVBus24099", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409110034494963, 48.68080865138281] - } - }, - { - "id": "MVBus24100", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.40965762004385, 48.68091651992885] - } - }, - { - "id": "MVBus24103", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410375244576262, 48.68359763038951] - } - }, - { - "id": "MVBus24104", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410457520575412, 48.6846248924926] - } - }, - { - "id": "MVBus24106", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.41052130409578, 48.6846345578222] - } - }, - { - "id": "MVBus24107", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410557522651376, 48.685621609766095] - } - }, - { - "id": "MVBus24108", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409907100020805, 48.68709324149833] - } - }, - { - "id": "MVLV00546", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.409563445224697, 48.687969213263976] - } - }, - { - "id": "MVLV10324", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410867808177468, 48.68472414481989] - } - }, - { - "id": "MVBus24101", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.411072946287639, 48.68122377495599] - } - }, - { - "id": "MVLV10323", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.413039955009211, 48.681710134344065] - } - }, - { - "id": "MVBus24069", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.413074070122556, 48.67823125435254] - } - }, - { - "id": "MVBus24070", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.419991973797182, 48.67443548826671] - } - }, - { - "id": "MVBus24080", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.42136624107891, 48.67352763843192] - } - }, - { - "id": "MVBus24081", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.423458086823049, 48.672063747279815] - } - }, - { - "id": "MVBus24082", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.425433424469281, 48.6704288218968] - } - }, - { - "id": "MVBus24084", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.427550443876756, 48.66832702556939] - } - }, - { - "id": "MVBus24085", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.42773882512684, 48.667518960930806] - } - }, - { - "id": "MVBus24086", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.429737921743526, 48.66740399771851] - } - }, - { - "id": "MVBus24087", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.430226347180375, 48.66816721336321] - } - }, - { - "id": "MVLV06447", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.432209635049518, 48.67056922323461] - } - }, - { - "id": "MVBus24089", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.437540172188118, 48.66623721183292] - } - }, - { - "id": "MVBus39974", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.438557514204313, 48.66571332634098] - } - }, - { - "id": "MVBus39976", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.441570933640071, 48.66627762495946] - } - }, - { - "id": "MVLV09015", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.438449788295261, 48.67104614339778] - } - }, - { - "id": "MVBus39978", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.443199968358023, 48.66690877873582] - } - }, - { - "id": "MVLV06448", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.446079710619304, 48.66557326975702] - } - }, - { - "id": "MVBus39980", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.444227964428699, 48.668319010605344] - } - }, - { - "id": "MVBus39981", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.44375635095643, 48.668776616576054] - } - }, - { - "id": "MVBus39990", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.443343047955685, 48.66847284504271] - } - }, - { - "id": "MVLV18919", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.443288177621643, 48.668471426684015] - } - }, - { - "id": "MVBus39982", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.445506049849497, 48.66907708140258] - } - }, - { - "id": "MVBus39983", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.448362516861079, 48.67139846929151] - } - }, - { - "id": "MVLV00544", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.449205686310729, 48.67094761063653] - } - }, - { - "id": "MVBus39985", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.453998689564143, 48.67360108655294] - } - }, - { - "id": "MVBus39986", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.454111420613221, 48.67365783095757] - } - }, - { - "id": "MVBus39987", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.454133606341398, 48.67364249809416] - } - }, - { - "id": "MVLV14633", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.456255345960154, 48.673153506275305] - } - }, - { - "id": "MVBus39989", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.471496954704484, 48.684283897260315] - } - }, - { - "id": "MVLV18920", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.435905350518214, 48.665013198677705] - } - }, - { - "id": "MVBus24090", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424019455111165, 48.667992607111934] - } - }, - { - "id": "MVLV14266", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.423949664678889, 48.6680024069041] - } - }, - { - "id": "MVLV02728", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424157252985195, 48.67046024446686] - } - }, - { - "id": "MVLV00547", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.419761534530391, 48.67316204924771] - } - }, - { - "id": "MVBus24071", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.420630681455058, 48.674440314166944] - } - }, - { - "id": "MVBus24072", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.421340042028947, 48.67636068076991] - } - }, - { - "id": "MVLV18922", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.425622793335055, 48.67794155813378] - } - }, - { - "id": "MVBus24073", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.419810117061095, 48.67734764388789] - } - }, - { - "id": "MVLV13819", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.417411347774322, 48.6790354886807] - } - }, - { - "id": "MVBus24075", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.420328922524153, 48.677875121617966] - } - }, - { - "id": "MVBus24076", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424667185742581, 48.68251880629374] - } - }, - { - "id": "MVLV09363", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.424579380339677, 48.68254398026742] - } - }, - { - "id": "MVLV10453", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.420420507191141, 48.68634791867971] - } - }, - { - "id": "MVBus24092", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.411978407328498, 48.676764286658575] - } - }, - { - "id": "MVBus24093", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410767426786093, 48.67586486863645] - } - }, - { - "id": "MVBus24094", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.406207660086664, 48.675123055199464] - } - }, - { - "id": "MVBus24097", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.407329364348828, 48.67378715489126] - } - }, - { - "id": "MVLV03222", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.410177531992409, 48.67251969634844] - } - }, - { - "id": "MVBus24095", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.402903063269356, 48.67421149659865] - } - }, - { - "id": "MVLV00545", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.401395938329806, 48.67482940726141] - } - }, - { - "id": "MVBus24056", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.389136030184977, 48.68430691391075] - } - }, - { - "id": "MVBus24057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.388369912450079, 48.684359890565865] - } - }, - { - "id": "MVLV15406", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.389247638808418, 48.68704140487774] - } - }, - { - "id": "MVBus24058", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387495141567356, 48.683362598407236] - } - }, - { - "id": "MVLV08246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387208961037065, 48.68286061089437] - } - }, - { - "id": "MVBus24059", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391320095620501, 48.68124807997599] - } - }, - { - "id": "MVLV06953", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.391318871202315, 48.68128407741701] - } - }, - { - "id": "MVBus24061", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396086853166442, 48.68016686423779] - } - }, - { - "id": "MVBus24062", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.396689119419465, 48.68008386227141] - } - }, - { - "id": "MVBus24064", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.397175010325148, 48.680005646047306] - } - }, - { - "id": "MVLV02107", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.397198756611179, 48.68002106022296] - } - }, - { - "id": "MVLV04069", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.393859245371176, 48.678398121997645] - } - }, - { - "id": "MVBus24053", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.387228378138695, 48.69648346340322] - } - }, - { - "id": "MVLV00763", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386320350855856, 48.69674688889175] - } - }, - { - "id": "MVLV02676", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.386086307107507, 48.69024982994571] - } - }, - { - "id": "MVLV11234", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.381057295037861, 48.68857227401332] - } - }, - { - "id": "MVBus17523", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36250058294375, 48.699920974017196] - } - }, - { - "id": "MVBus17526", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.364469760819947, 48.702221813021815] - } - }, - { - "id": "MVBus17527", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365080155168652, 48.702931226958164] - } - }, - { - "id": "MVBus17528", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.366857582095782, 48.702909804508195] - } - }, - { - "id": "MVBus17539", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.368602686985163, 48.702762027953426] - } - }, - { - "id": "MVBus17540", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.369391365276649, 48.702312360854734] - } - }, - { - "id": "MVLV11643", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.36985327513618, 48.70171789916646] - } - }, - { - "id": "MVBus17529", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365766216776604, 48.70323344674769] - } - }, - { - "id": "MVBus17530", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362654078028266, 48.70439394941558] - } - }, - { - "id": "MVLV12960", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361146143854642, 48.70373258684646] - } - }, - { - "id": "MVBus17532", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.361706222495278, 48.70493345667249] - } - }, - { - "id": "MVBus17533", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.363787332955464, 48.70687745644073] - } - }, - { - "id": "MVBus17535", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.365482557431456, 48.70845136474554] - } - }, - { - "id": "MVBus17536", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.371470530798074, 48.708006097671856] - } - }, - { - "id": "MVLV15838", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372263248440009, 48.70572814874992] - } - }, - { - "id": "MVLV05594", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.372474957363736, 48.70819963640383] - } - }, - { - "id": "MVLV08691", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.362017012011286, 48.707740359055315] - } - }, - { - "id": "MVBus17524", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.360816212595922, 48.70113087837448] - } - }, - { - "id": "MVLV12961", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.359690288894828, 48.70030435899507] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV14", - "geometry": { - "type": "Point", - "coordinates": [-1.315508137717839, 48.67552963511552] - } - }, - { - "id": "MVBranch39944", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV14", - "bus2": "MVLV06299", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.315508137717839, 48.67552963511552], - [-1.315503463460778, 48.675545112303986], - [-1.315503463460778, 48.675545112303986], - [-1.315500848189535, 48.675556242851165], - [-1.315198632188688, 48.67596371052023], - [-1.317871088132522, 48.67581209610027], - [-1.318670051393893, 48.67576675473115], - [-1.31964092142359, 48.67575020213779], - [-1.320984238145868, 48.67572728247795], - [-1.323541968796889, 48.675683594843576], - [-1.323852907070429, 48.67567706472819], - [-1.324195198699835, 48.675669862746695], - [-1.324284678894714, 48.6757184090606], - [-1.32427595282035, 48.67581334177527], - [-1.324208562736317, 48.67602188193846], - [-1.324198289130883, 48.67612822738935], - [-1.324179048878627, 48.676327443285246], - [-1.324177927879868, 48.67653988530394], - [-1.324248646680606, 48.67691893742712], - [-1.324288793975336, 48.6771142230753], - [-1.324305348212575, 48.67719477859688], - [-1.324306673367868, 48.677208199294995], - [-1.3243096308857334, 48.677222514427754] - ] - }, - "length": 0.8907821128978984, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44484", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06299", - "bus2": "MVBus05026", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3243096308857334, 48.677222514427754], - [-1.324312588403599, 48.67723682956052], - [-1.324316950961365, 48.67724610720035], - [-1.324407539328749, 48.67746690264696], - [-1.324752016524325, 48.67788046022347], - [-1.324843979689097, 48.67805145172044], - [-1.324824957712141, 48.678204525954555], - [-1.324608374901279, 48.67845408006145], - [-1.324270214418594, 48.67935067307869], - [-1.32398527816498, 48.67968059475105], - [-1.323915414415546, 48.680238257520585], - [-1.324401306984702, 48.6815097737912], - [-1.324552530119515, 48.68169822823113], - [-1.324633327379154, 48.681828081809556], - [-1.324633327379154, 48.681828081809556] - ] - }, - "length": 0.5407812374987008, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33354", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05026", - "bus2": "MVBus05027", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324633327379154, 48.681828081809556], - [-1.324633327379154, 48.681828081809556], - [-1.324756396743055, 48.682263798619054], - [-1.3248669507068, 48.6824916253855], - [-1.324952123147225, 48.68272566173774], - [-1.324966571570778, 48.68292236987251], - [-1.32496292375523, 48.68311335585766], - [-1.324855378890781, 48.6835003575958], - [-1.324686040704435, 48.683860535074125], - [-1.324640695755288, 48.68391926354705], - [-1.324640695755288, 48.68391926354705] - ] - }, - "length": 0.23885803889542243, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35638", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05027", - "bus2": "MVBus05028", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324640695755288, 48.68391926354705], - [-1.324640695755288, 48.68391926354705], - [-1.324731743147127, 48.684102385727634], - [-1.324612607398126, 48.68420823112392], - [-1.324210835737492, 48.68469847354835], - [-1.323733355875409, 48.68508555428773], - [-1.323247151129281, 48.68609235665885], - [-1.323186423057092, 48.68614168790656], - [-1.322964822084235, 48.68662253126854], - [-1.322727629500577, 48.68774974573568], - [-1.324392042278423, 48.6880208802085], - [-1.324403471836129, 48.688034195862905], - [-1.324403471836129, 48.688034195862905] - ] - }, - "length": 0.5887167838332982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44419", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05028", - "bus2": "MVLV06298", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324403471836129, 48.688034195862905], - [-1.324403471836129, 48.688034195862905], - [-1.324437008831657, 48.68801559589586], - [-1.324656330660879, 48.688047950325824], - [-1.32466065492585, 48.6880640048316], - [-1.32466065492585, 48.6880640048316] - ] - }, - "length": 0.02157870615750059, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37908", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05028", - "bus2": "MVBus05030", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.324403471836129, 48.688034195862905], - [-1.324403471836129, 48.688034195862905], - [-1.324149148043669, 48.68933663489254], - [-1.324197080192804, 48.68939333858261], - [-1.325885968473182, 48.68982120486558], - [-1.326481505570192, 48.69026083730953], - [-1.326639205462656, 48.69044737913898], - [-1.326887269601804, 48.69081554133641], - [-1.326980765300025, 48.69104141783925], - [-1.327044222623438, 48.69129157273886], - [-1.327143567736885, 48.69175069380194], - [-1.327343998045295, 48.69239344320849], - [-1.327523947418851, 48.69284541269855], - [-1.327567107178485, 48.69300748878106], - [-1.327597607039506, 48.69320728091928], - [-1.327569335173674, 48.69340129401491], - [-1.327476282131494, 48.69365103710961], - [-1.327290667822254, 48.69399224550509], - [-1.327292636982018, 48.69399087092771], - [-1.327302797151854, 48.69421180737148], - [-1.327498179998498, 48.694775445551336], - [-1.32758157405069, 48.69511069261121], - [-1.327637773349822, 48.695141656384756], - [-1.329139158360847, 48.694888540438], - [-1.32964290487591, 48.69474310803858], - [-1.330271496452614, 48.69459518180074], - [-1.330520721003228, 48.69457099219727], - [-1.330933520974348, 48.694591559250384], - [-1.332311951909265, 48.6947431871332], - [-1.332311951909265, 48.6947431871332] - ] - }, - "length": 1.2704878570324705, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42832", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05030", - "bus2": "MVLV16807", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332311951909265, 48.6947431871332], - [-1.332311951909265, 48.6947431871332], - [-1.332414749754649, 48.69475008560281], - [-1.332415855968401, 48.6947915696613], - [-1.332416229313139, 48.694805334549706], - [-1.3324397522750886, 48.69480756439362] - ] - }, - "length": 0.013751403625483079, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42299", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16807", - "bus2": "MVBus08987", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3324397522750886, 48.69480756439362], - [-1.332464774190726, 48.69480869206709], - [-1.33246573472015, 48.69479283430077], - [-1.332466383988903, 48.69478219619294], - [-1.332696716348577, 48.69475012796576], - [-1.332696716348577, 48.69475012796576] - ] - }, - "length": 0.020276337243253024, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47750", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08987", - "bus2": "MVBus08988", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332696716348577, 48.69475012796576], - [-1.332696716348577, 48.69475012796576], - [-1.332752887698223, 48.69475831550576], - [-1.332769653966778, 48.694856436515416], - [-1.332769653966778, 48.694856436515416] - ] - }, - "length": 0.015215285499410657, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch08117", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08988", - "bus2": "MVBus08989", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332769653966778, 48.694856436515416], - [-1.332769653966778, 48.694856436515416], - [-1.333868868924871, 48.69442417043966], - [-1.333868868924871, 48.69442417043966] - ] - }, - "length": 0.09412263973083554, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31282", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08989", - "bus2": "MVBus08990", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.333868868924871, 48.69442417043966], - [-1.333868868924871, 48.69442417043966], - [-1.335151937095821, 48.69432457617282], - [-1.337017272071378, 48.69361150583635], - [-1.337017272071378, 48.69361150583635] - ] - }, - "length": 0.2536788424847895, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10895", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08990", - "bus2": "MVLV13668", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.337017272071378, 48.69361150583635], - [-1.337017272071378, 48.69361150583635], - [-1.336768360474335, 48.693054819581505], - [-1.336768360474335, 48.693054819581505] - ] - }, - "length": 0.06456087593189838, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch39299", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08990", - "bus2": "MVLV08873", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.337017272071378, 48.69361150583635], - [-1.337017272071378, 48.69361150583635], - [-1.337811745653045, 48.69348041079462], - [-1.337811745653045, 48.69348041079462] - ] - }, - "length": 0.060278301216926226, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37724", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16807", - "bus2": "MVBus08231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3324397522750886, 48.69480756439362], - [-1.332438253321401, 48.694808666564086], - [-1.332443502553064, 48.69479156034865], - [-1.332456160398833, 48.694750388404394], - [-1.332456160398833, 48.694750388404394] - ] - }, - "length": 0.0066134739308626985, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42831", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08231", - "bus2": "MVBus08232", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332456160398833, 48.694750388404394], - [-1.332456160398833, 48.694750388404394], - [-1.332662258481913, 48.69470601327688], - [-1.332662258481913, 48.69470601327688] - ] - }, - "length": 0.015954819992476985, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41215", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08232", - "bus2": "MVBus08233", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.332662258481913, 48.69470601327688], - [-1.332662258481913, 48.69470601327688], - [-1.334403533710343, 48.69449777888983], - [-1.334737608012648, 48.6945385588819], - [-1.337468319551824, 48.69479076262023], - [-1.338560174992908, 48.69473600803719], - [-1.339110950367838, 48.69497772569214], - [-1.34053457433403, 48.69551252079587], - [-1.341229118621193, 48.695859813180384], - [-1.34158065555616, 48.695897432347785], - [-1.342253607540212, 48.69588639859719], - [-1.343161387869735, 48.696007641304966], - [-1.343470742121568, 48.69609375099156], - [-1.343958767360514, 48.696412422257495], - [-1.344769412777089, 48.69680510651728], - [-1.344847696755994, 48.696914724780584], - [-1.344956332284714, 48.69700472937253], - [-1.345113240552836, 48.69707922515018], - [-1.345667425411271, 48.69728612809096], - [-1.346037144688256, 48.69742153130377], - [-1.346199396336957, 48.697577745085724], - [-1.34633565051282, 48.69770890446633], - [-1.346533287484332, 48.69776112271589], - [-1.346800660298467, 48.69780184396979], - [-1.347026872166945, 48.69780208131676], - [-1.347239757547525, 48.69777251551116], - [-1.347525615978146, 48.697598373510864], - [-1.347794053666933, 48.69737428185959], - [-1.348056445531613, 48.69726054460816], - [-1.348144026797379, 48.697322099639194], - [-1.348054099550095, 48.6976186904504], - [-1.347825443439531, 48.69791500087517], - [-1.347917694846003, 48.69823806607235], - [-1.34838789439191, 48.69920109903526], - [-1.349100811857249, 48.69984036815978], - [-1.349090863664277, 48.69988795473], - [-1.349090863664277, 48.69988795473] - ] - }, - "length": 1.5972493115269248, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43224", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08233", - "bus2": "MVBus08234", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.349090863664277, 48.69988795473], - [-1.349090863664277, 48.69988795473], - [-1.349083292062529, 48.6999270719708], - [-1.349083883067351, 48.69994077613723], - [-1.349084843037833, 48.69994185311251], - [-1.349140909608321, 48.699974323001385], - [-1.349236045168364, 48.700020975213334], - [-1.34927393985865, 48.70003642681342], - [-1.349387010003084, 48.700105179590416], - [-1.349472006439018, 48.700153577233394], - [-1.349507683804376, 48.70017111322575], - [-1.349583389791825, 48.7002449228178], - [-1.349583389791825, 48.7002449228178] - ] - }, - "length": 0.05627094231677252, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46980", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08234", - "bus2": "MVBus08235", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.349583389791825, 48.7002449228178], - [-1.349583389791825, 48.7002449228178], - [-1.349748385026399, 48.700405797260046], - [-1.349781547229223, 48.70045533745463], - [-1.349800820063233, 48.70047637057669], - [-1.349827137474714, 48.700499551351136], - [-1.349847027596675, 48.70052334577209], - [-1.349979562527859, 48.700651457832706], - [-1.350028618635357, 48.7006979575111], - [-1.35003056868882, 48.70070743515395], - [-1.350025023888087, 48.700721833846366], - [-1.350024986880549, 48.70072457049264], - [-1.350033533716369, 48.70073831530751], - [-1.350033533716369, 48.70073831530751] - ] - }, - "length": 0.06487991476065545, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40837", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08235", - "bus2": "MVLV15837", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.350033533716369, 48.70073831530751], - [-1.350033533716369, 48.70073831530751], - [-1.350355480420248, 48.70102878261073], - [-1.351309816091185, 48.70180708948788], - [-1.351610455483424, 48.70196548142909], - [-1.351673413354848, 48.701995963152626], - [-1.352029744876275, 48.702045632317834], - [-1.352466636103471, 48.70201232314792], - [-1.352800204288034, 48.70194984956354], - [-1.353656496921582, 48.70172500086173], - [-1.354121832772898, 48.70156831496038], - [-1.355020097991785, 48.70112971664497], - [-1.355881836396744, 48.70070569137057], - [-1.357240705657859, 48.70004739372588], - [-1.358256195357674, 48.69955330392023], - [-1.360036412980531, 48.69869517239255], - [-1.3600609520485, 48.69870418900822], - [-1.360092750498626, 48.69871588589524], - [-1.360997867228555, 48.69854465511206], - [-1.361038303263266, 48.69857133489028], - [-1.36104380445785, 48.69858140365268], - [-1.3610517542755765, 48.69858050796095] - ] - }, - "length": 0.9959524767430119, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33353", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15837", - "bus2": "MVBus17515", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3610517542755765, 48.69858050796095], - [-1.361059704093303, 48.698579612269214], - [-1.361047371992327, 48.698535238367704], - [-1.361872248455002, 48.698372926745066], - [-1.361872248455002, 48.698372926745066] - ] - }, - "length": 0.06836447371794643, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36563", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17515", - "bus2": "MVBus17516", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361872248455002, 48.698372926745066], - [-1.361872248455002, 48.698372926745066], - [-1.362629132935457, 48.69820729445299], - [-1.363029158829987, 48.698095998025224], - [-1.363488279660191, 48.697927858271804], - [-1.363445651687543, 48.697882998763404], - [-1.363943521716062, 48.69764855349933], - [-1.364231319150016, 48.69749610333351], - [-1.36457856618481, 48.69726222393793], - [-1.364770989793346, 48.69708974795057], - [-1.36483850397913, 48.696999384142416], - [-1.365211141359183, 48.696401900265855], - [-1.365418667508216, 48.696168229810155], - [-1.365710520367382, 48.69589424122478], - [-1.366081966636756, 48.69563355063961], - [-1.366487098573561, 48.695415116903014], - [-1.366719934502484, 48.695316485999676], - [-1.367397492595332, 48.695120975029496], - [-1.368102260761573, 48.6949390347851], - [-1.368517781569113, 48.69486045702395], - [-1.368673419887827, 48.6948394790163], - [-1.368859647394755, 48.694818957991565], - [-1.369176061861146, 48.69484622794454], - [-1.369633161489022, 48.69488625253494], - [-1.369840137641254, 48.694909858321765], - [-1.370008749538573, 48.69484206776048], - [-1.370008749538573, 48.69484206776048] - ] - }, - "length": 0.7716718945900013, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44436", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17516", - "bus2": "MVBus17517", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.370008749538573, 48.69484206776048], - [-1.370008749538573, 48.69484206776048], - [-1.370130340391536, 48.694836576401244], - [-1.370526610360428, 48.69492079156123], - [-1.370932620593153, 48.69485299475301], - [-1.371160826341029, 48.69480660998835], - [-1.37140828752311, 48.69474338047859], - [-1.37140828752311, 48.69474338047859] - ] - }, - "length": 0.10753804778842857, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44435", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17517", - "bus2": "MVBus17518", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.37140828752311, 48.69474338047859], - [-1.37140828752311, 48.69474338047859], - [-1.372108316379351, 48.694582899499785], - [-1.372776995364991, 48.69443116937401], - [-1.372929536273884, 48.69437481928326], - [-1.373004567322684, 48.69433308611805], - [-1.373035696173742, 48.694315771215955], - [-1.373972817438306, 48.69362667631505], - [-1.376669605229281, 48.6916538042244], - [-1.378349128400386, 48.69065179067016], - [-1.378658397432478, 48.69041424189457], - [-1.378829116825462, 48.69020588613805], - [-1.379202004593425, 48.68971142133887], - [-1.379492650503138, 48.68956048905799], - [-1.380181593777458, 48.6896592059833], - [-1.380266592034214, 48.68959851050389], - [-1.380593480920253, 48.68951313748911], - [-1.380593480920253, 48.68951313748911] - ] - }, - "length": 0.9319581720426843, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46238", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17518", - "bus2": "MVBus17519", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380593480920253, 48.68951313748911], - [-1.380593480920253, 48.68951313748911], - [-1.38077081939404, 48.68948115099424], - [-1.381030922180158, 48.689499239232546], - [-1.381622620649323, 48.68956621593823], - [-1.381944230603197, 48.68960261206002], - [-1.382239983321192, 48.689632835058646], - [-1.382604941018307, 48.6897730193813], - [-1.382898135881761, 48.689885640459785], - [-1.382989438641679, 48.68992070666759], - [-1.383080417712247, 48.689951436619616], - [-1.383271623296468, 48.69000498448029], - [-1.383466377608706, 48.690039928558214], - [-1.38378629455312, 48.69006798618082], - [-1.385773855373496, 48.69015142674052], - [-1.38606803163353, 48.69014075498917], - [-1.386095076128499, 48.69020544337535], - [-1.386095076128499, 48.69020544337535] - ] - }, - "length": 0.4240344987125137, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44418", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17519", - "bus2": "MVLV00762", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386095076128499, 48.69020544337535], - [-1.386095076128499, 48.69020544337535], - [-1.386074007914371, 48.69018758536089], - [-1.386045414412386, 48.69019219016974], - [-1.3860685283105134, 48.69022637502021] - ] - }, - "length": 0.004686436383422953, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37164", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00762", - "bus2": "MVBus24050", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.3860685283105134, 48.69022637502021], - [-1.386091642208641, 48.69026055987068], - [-1.386107806027131, 48.690259845618584], - [-1.38612993102133, 48.690258863290296], - [-1.386172893328841, 48.69025694803313], - [-1.386258900261758, 48.69036720873158], - [-1.386327665262383, 48.69048419259067], - [-1.386429285337267, 48.69070998267635], - [-1.386663235642549, 48.691295983208455], - [-1.386710197058936, 48.69195325464215], - [-1.386656207449652, 48.69214037516906], - [-1.386536543614332, 48.692507486905285], - [-1.386585620553674, 48.692516906896316], - [-1.386585620553674, 48.692516906896316] - ] - }, - "length": 0.26724134465610405, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch01719", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24050", - "bus2": "MVLV05135", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386585620553674, 48.692516906896316], - [-1.386585620553674, 48.692516906896316], - [-1.387398231874811, 48.691644860892694], - [-1.388721682538931, 48.69170724856656], - [-1.388721682538931, 48.69170724856656] - ] - }, - "length": 0.21162633478045764, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11543", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24050", - "bus2": "MVBus24051", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386585620553674, 48.692516906896316], - [-1.386585620553674, 48.692516906896316], - [-1.389640377977582, 48.6936695244645], - [-1.389640377977582, 48.6936695244645] - ] - }, - "length": 0.25885409503143514, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11542", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24051", - "bus2": "MVBus24052", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.389640377977582, 48.6936695244645], - [-1.389640377977582, 48.6936695244645], - [-1.390344271878809, 48.69403410174598], - [-1.390456896571498, 48.694092429012166], - [-1.390456896571498, 48.694092429012166] - ] - }, - "length": 0.07632215258057966, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch28132", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24052", - "bus2": "MVBus24055", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.390456896571498, 48.694092429012166], - [-1.390456896571498, 48.694092429012166], - [-1.398561158560935, 48.687535479227805], - [-1.398561158560935, 48.687535479227805] - ] - }, - "length": 0.9421676332786787, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch28134", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24055", - "bus2": "MVBus24068", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.398561158560935, 48.687535479227805], - [-1.398561158560935, 48.687535479227805], - [-1.403644517387418, 48.68335067722083], - [-1.408493773037451, 48.68069081868821], - [-1.408493773037451, 48.68069081868821] - ] - }, - "length": 1.0608890004938134, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch23138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24068", - "bus2": "MVBus24099", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.408493773037451, 48.68069081868821], - [-1.408493773037451, 48.68069081868821], - [-1.409110034494963, 48.68080865138281], - [-1.409110034494963, 48.68080865138281] - ] - }, - "length": 0.047234359365897635, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08362", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24099", - "bus2": "MVBus24100", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409110034494963, 48.68080865138281], - [-1.409110034494963, 48.68080865138281], - [-1.40965762004385, 48.68091651992885], - [-1.40965762004385, 48.68091651992885] - ] - }, - "length": 0.042069559422674464, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08367", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24100", - "bus2": "MVBus24103", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40965762004385, 48.68091651992885], - [-1.40965762004385, 48.68091651992885], - [-1.410375244576262, 48.68359763038951], - [-1.410375244576262, 48.68359763038951] - ] - }, - "length": 0.3027957426010854, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32881", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24103", - "bus2": "MVBus24104", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410375244576262, 48.68359763038951], - [-1.410375244576262, 48.68359763038951], - [-1.41024833874059, 48.68399934277218], - [-1.410279603008094, 48.68403941670856], - [-1.410094731272296, 48.68454334180209], - [-1.410457520575412, 48.6846248924926], - [-1.410457520575412, 48.6846248924926] - ] - }, - "length": 0.13653314559085525, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37630", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24104", - "bus2": "MVBus24106", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410457520575412, 48.6846248924926], - [-1.410457520575412, 48.6846248924926], - [-1.41052130409578, 48.6846345578222], - [-1.41052130409578, 48.6846345578222] - ] - }, - "length": 0.004817968050677522, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch15248", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24106", - "bus2": "MVBus24107", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.41052130409578, 48.6846345578222], - [-1.41052130409578, 48.6846345578222], - [-1.410557522651376, 48.685621609766095], - [-1.410557522651376, 48.685621609766095] - ] - }, - "length": 0.10979615455757827, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19974", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24107", - "bus2": "MVBus24108", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410557522651376, 48.685621609766095], - [-1.410557522651376, 48.685621609766095], - [-1.409907100020805, 48.68709324149833], - [-1.409907100020805, 48.68709324149833] - ] - }, - "length": 0.1705142628444711, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43460", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24108", - "bus2": "MVLV00546", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.409907100020805, 48.68709324149833], - [-1.409907100020805, 48.68709324149833], - [-1.409966510573871, 48.68710442214782], - [-1.409618473717378, 48.687710370706036], - [-1.409510396586243, 48.6879607020776], - [-1.409563445224697, 48.687969213263976], - [-1.409563445224697, 48.687969213263976] - ] - }, - "length": 0.10961108702116706, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40775", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24104", - "bus2": "MVLV10324", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410457520575412, 48.6846248924926], - [-1.410457520575412, 48.6846248924926], - [-1.410526256898795, 48.68463218763467], - [-1.410853373558316, 48.6847031927041], - [-1.410873154098373, 48.68470856092348], - [-1.410867808177468, 48.68472414481989], - [-1.410867808177468, 48.68472414481989] - ] - }, - "length": 0.03382471807901016, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24100", - "bus2": "MVBus24101", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.40965762004385, 48.68091651992885], - [-1.40965762004385, 48.68091651992885], - [-1.411072946287639, 48.68122377495599], - [-1.411072946287639, 48.68122377495599] - ] - }, - "length": 0.10967942847151416, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch40281", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24101", - "bus2": "MVLV10323", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.411072946287639, 48.68122377495599], - [-1.411072946287639, 48.68122377495599], - [-1.412726298448994, 48.68168800584517], - [-1.413039955009211, 48.681710134344065], - [-1.413039955009211, 48.681710134344065] - ] - }, - "length": 0.1554685335100641, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch15243", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24068", - "bus2": "MVBus24069", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.408493773037451, 48.68069081868821], - [-1.408493773037451, 48.68069081868821], - [-1.413074070122556, 48.67823125435254], - [-1.413074070122556, 48.67823125435254] - ] - }, - "length": 0.43425352725613486, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch11154", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24069", - "bus2": "MVBus24070", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.413074070122556, 48.67823125435254], - [-1.413074070122556, 48.67823125435254], - [-1.418220642622635, 48.67558838087891], - [-1.419991973797182, 48.67443548826671], - [-1.419991973797182, 48.67443548826671] - ] - }, - "length": 0.6625168530605734, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch23140", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24070", - "bus2": "MVBus24080", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419991973797182, 48.67443548826671], - [-1.419991973797182, 48.67443548826671], - [-1.42136624107891, 48.67352763843192], - [-1.42136624107891, 48.67352763843192] - ] - }, - "length": 0.1429546741306491, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch15244", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24080", - "bus2": "MVBus24081", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42136624107891, 48.67352763843192], - [-1.42136624107891, 48.67352763843192], - [-1.423458086823049, 48.672063747279815], - [-1.423458086823049, 48.672063747279815] - ] - }, - "length": 0.22413447280940296, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch23143", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24081", - "bus2": "MVBus24082", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.423458086823049, 48.672063747279815], - [-1.423458086823049, 48.672063747279815], - [-1.425433424469281, 48.6704288218968], - [-1.425433424469281, 48.6704288218968] - ] - }, - "length": 0.23285469633794945, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch32483", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24082", - "bus2": "MVBus24084", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.425433424469281, 48.6704288218968], - [-1.425433424469281, 48.6704288218968], - [-1.427550443876756, 48.66832702556939], - [-1.427550443876756, 48.66832702556939] - ] - }, - "length": 0.2809661659950674, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch47851", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24084", - "bus2": "MVBus24085", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.427550443876756, 48.66832702556939], - [-1.427550443876756, 48.66832702556939], - [-1.427541195017932, 48.66832932598601], - [-1.427522044306043, 48.668323589666684], - [-1.427713619882294, 48.66752098506874], - [-1.42773882512684, 48.667518960930806], - [-1.42773882512684, 48.667518960930806] - ] - }, - "length": 0.09450681050023824, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44739", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24085", - "bus2": "MVBus24086", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42773882512684, 48.667518960930806], - [-1.42773882512684, 48.667518960930806], - [-1.428264344005357, 48.66750835777458], - [-1.428661787035208, 48.667467173483466], - [-1.429479811508234, 48.66732761483808], - [-1.429614903110496, 48.66736333333185], - [-1.429690343340474, 48.667355780407235], - [-1.429737921743526, 48.66740399771851], - [-1.429737921743526, 48.66740399771851] - ] - }, - "length": 0.15331713080544543, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45559", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24086", - "bus2": "MVBus24087", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.429737921743526, 48.66740399771851], - [-1.429737921743526, 48.66740399771851], - [-1.430322567466328, 48.66814847999149], - [-1.430244168935322, 48.66816904089627], - [-1.430226347180375, 48.66816721336321], - [-1.430226347180375, 48.66816721336321] - ] - }, - "length": 0.10085818204908785, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch08366", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24087", - "bus2": "MVLV06447", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.430226347180375, 48.66816721336321], - [-1.430226347180375, 48.66816721336321], - [-1.430588113036341, 48.668625325386294], - [-1.432209635049518, 48.67056922323461], - [-1.432209635049518, 48.67056922323461] - ] - }, - "length": 0.30445850037463673, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38639", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24086", - "bus2": "MVBus24089", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.429737921743526, 48.66740399771851], - [-1.429737921743526, 48.66740399771851], - [-1.429711720954316, 48.667347992059526], - [-1.429745098384111, 48.667312105440324], - [-1.429792832944832, 48.667283114939146], - [-1.430600538216654, 48.667162099257006], - [-1.431267185860128, 48.66708041423658], - [-1.43198630630097, 48.667035555474946], - [-1.432243495645382, 48.66699438050295], - [-1.432432678805019, 48.6669315373857], - [-1.432628963779213, 48.66685196387979], - [-1.435725693945472, 48.66495492278176], - [-1.435886014741506, 48.66497381296566], - [-1.435951745674166, 48.66494015250545], - [-1.436119799943683, 48.66495440472515], - [-1.436858835884234, 48.665017086724], - [-1.43697981519529, 48.665059032466075], - [-1.437019059340632, 48.66514211392453], - [-1.437106449289927, 48.665659984314104], - [-1.43714728610558, 48.6657650088189], - [-1.437218640286552, 48.665909404864394], - [-1.437307400738446, 48.66600646047312], - [-1.437604584918256, 48.66619192963684], - [-1.437540172188118, 48.66623721183292], - [-1.437540172188118, 48.66623721183292] - ] - }, - "length": 0.7845793482250173, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch01974", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24089", - "bus2": "MVBus39974", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.437540172188118, 48.66623721183292], - [-1.437540172188118, 48.66623721183292], - [-1.438557514204313, 48.66571332634098], - [-1.438557514204313, 48.66571332634098] - ] - }, - "length": 0.09491870161658982, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch25437", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39974", - "bus2": "MVBus39976", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.438557514204313, 48.66571332634098], - [-1.438557514204313, 48.66571332634098], - [-1.441570933640071, 48.66627762495946], - [-1.441570933640071, 48.66627762495946] - ] - }, - "length": 0.23066760853106663, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch15247", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39976", - "bus2": "MVLV09015", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.441570933640071, 48.66627762495946], - [-1.441570933640071, 48.66627762495946], - [-1.440918679186523, 48.667310323510996], - [-1.438662520784315, 48.66925218910298], - [-1.438449788295261, 48.67104614339778], - [-1.438449788295261, 48.67104614339778] - ] - }, - "length": 0.597075270951156, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11156", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39976", - "bus2": "MVBus39978", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.441570933640071, 48.66627762495946], - [-1.441570933640071, 48.66627762495946], - [-1.443199968358023, 48.66690877873582], - [-1.443199968358023, 48.66690877873582] - ] - }, - "length": 0.13901236964835756, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch43827", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39978", - "bus2": "MVLV06448", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.443199968358023, 48.66690877873582], - [-1.443199968358023, 48.66690877873582], - [-1.444758776426216, 48.66613386722032], - [-1.446034959286904, 48.6655489870267], - [-1.446079710619304, 48.66557326975702], - [-1.446079710619304, 48.66557326975702] - ] - }, - "length": 0.26213193633513093, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25438", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39978", - "bus2": "MVBus39980", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.443199968358023, 48.66690877873582], - [-1.443199968358023, 48.66690877873582], - [-1.444227964428699, 48.668319010605344], - [-1.444227964428699, 48.668319010605344] - ] - }, - "length": 0.17414570776249913, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch48254", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39980", - "bus2": "MVBus39981", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.444227964428699, 48.668319010605344], - [-1.444227964428699, 48.668319010605344], - [-1.444299152272503, 48.6683254786251], - [-1.444502883565754, 48.668578741240715], - [-1.44375635095643, 48.668776616576054], - [-1.44375635095643, 48.668776616576054] - ] - }, - "length": 0.09643044361056909, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40282", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39981", - "bus2": "MVBus39990", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.44375635095643, 48.668776616576054], - [-1.44375635095643, 48.668776616576054], - [-1.443750278118606, 48.66873325448024], - [-1.443773467700237, 48.66871601970379], - [-1.44373218248448, 48.66866074962074], - [-1.44365965172971, 48.668617490680106], - [-1.443450919490711, 48.66851969296421], - [-1.443354882037418, 48.668480512965324], - [-1.443343047955685, 48.66847284504271], - [-1.443343047955685, 48.66847284504271] - ] - }, - "length": 0.04981559861077533, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43828", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39990", - "bus2": "MVLV18919", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.443343047955685, 48.66847284504271], - [-1.443343047955685, 48.66847284504271], - [-1.443288177621643, 48.668471426684015], - [-1.443288177621643, 48.668471426684015] - ] - }, - "length": 0.004044616944947565, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43829", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39981", - "bus2": "MVBus39982", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.44375635095643, 48.668776616576054], - [-1.44375635095643, 48.668776616576054], - [-1.445016178665306, 48.66967538193563], - [-1.445044547761066, 48.66967631292724], - [-1.445201614001252, 48.66950798717624], - [-1.44533275307121, 48.66926638040962], - [-1.445427472704872, 48.669089900926714], - [-1.445506049849497, 48.66907708140258], - [-1.445506049849497, 48.66907708140258] - ] - }, - "length": 0.2158172278970547, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch19973", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39982", - "bus2": "MVBus39983", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.445506049849497, 48.66907708140258], - [-1.445506049849497, 48.66907708140258], - [-1.448362516861079, 48.67139846929151], - [-1.448362516861079, 48.67139846929151] - ] - }, - "length": 0.333021028751415, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch19972", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39983", - "bus2": "MVLV00544", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.448362516861079, 48.67139846929151], - [-1.448362516861079, 48.67139846929151], - [-1.449205686310729, 48.67094761063653], - [-1.449205686310729, 48.67094761063653] - ] - }, - "length": 0.07981412800351775, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31520", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39983", - "bus2": "MVBus39985", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.448362516861079, 48.67139846929151], - [-1.448362516861079, 48.67139846929151], - [-1.450727879884109, 48.67314634305642], - [-1.453998689564143, 48.67360108655294], - [-1.453998689564143, 48.67360108655294] - ] - }, - "length": 0.5071576179737199, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch46239", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39985", - "bus2": "MVBus39986", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.453998689564143, 48.67360108655294], - [-1.453998689564143, 48.67360108655294], - [-1.454111420613221, 48.67365783095757], - [-1.454111420613221, 48.67365783095757] - ] - }, - "length": 0.010428310529919476, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33356", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39986", - "bus2": "MVBus39987", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.454111420613221, 48.67365783095757], - [-1.454111420613221, 48.67365783095757], - [-1.454133606341398, 48.67364249809416], - [-1.454133606341398, 48.67364249809416] - ] - }, - "length": 0.002361576150954956, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34104", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39987", - "bus2": "MVLV14633", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.454133606341398, 48.67364249809416], - [-1.454133606341398, 48.67364249809416], - [-1.4541725680368, 48.67357862747877], - [-1.454178728141187, 48.67356899944076], - [-1.454218958046013, 48.6735238334756], - [-1.454264495217655, 48.67346908471265], - [-1.454321700159414, 48.67341241504533], - [-1.45435423135338, 48.67337292164041], - [-1.454430642005505, 48.67327980327606], - [-1.454488681120271, 48.67320028499911], - [-1.454511747888592, 48.67317020127465], - [-1.45456351300606, 48.67310080060492], - [-1.454612325323693, 48.67301661872196], - [-1.454623822620292, 48.672999125729426], - [-1.454641536256091, 48.67297482859888], - [-1.454664248841753, 48.67294063454721], - [-1.454721439502256, 48.672866821704936], - [-1.454743205831589, 48.67283866032237], - [-1.454781471001512, 48.67279358392653], - [-1.454797278113478, 48.67277631306957], - [-1.454903203350935, 48.672676536097434], - [-1.454926893563537, 48.672657060330124], - [-1.454975649378707, 48.67261274629773], - [-1.455001257845182, 48.67259814970873], - [-1.455010528756687, 48.67259447856786], - [-1.455033900027318, 48.67258852070583], - [-1.455056222027711, 48.67258680799679], - [-1.455093711225001, 48.67258961379867], - [-1.455118470900897, 48.67259375356931], - [-1.45513651275814, 48.6725989360819], - [-1.455189199988478, 48.6726137646719], - [-1.455197741414115, 48.67261648824631], - [-1.455266142267885, 48.672640533387415], - [-1.455323431540651, 48.672663502972156], - [-1.455387921434535, 48.67269167774245], - [-1.455456942862276, 48.67272274027245], - [-1.455543810411399, 48.672760584328145], - [-1.45563645931521, 48.67280000725657], - [-1.4556841196372, 48.67282210574247], - [-1.455742810702578, 48.67285069077081], - [-1.455800027946779, 48.6728791879226], - [-1.455813728807923, 48.672887073937574], - [-1.455821183509333, 48.672890732142434], - [-1.455830310471647, 48.67289403088996], - [-1.455840224843539, 48.672895270642684], - [-1.455855526182402, 48.672900135741365], - [-1.455941809813138, 48.67293518145967], - [-1.455974336144249, 48.67294855775469], - [-1.455984729565733, 48.67295487569655], - [-1.456008638505341, 48.672968959571314], - [-1.456061114868594, 48.67300417762797], - [-1.456115073269813, 48.67303791739178], - [-1.456124932747906, 48.67304287552983], - [-1.456196478538126, 48.673082082136574], - [-1.456238660980065, 48.67310712737256], - [-1.456252367115327, 48.6731175059378], - [-1.456255738113806, 48.67312180769581], - [-1.456259903898959, 48.67313123154897], - [-1.456265619588171, 48.67314308959205], - [-1.456255345960154, 48.673153506275305], - [-1.456255345960154, 48.673153506275305] - ] - }, - "length": 0.2488833099190807, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44485", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39986", - "bus2": "MVBus39989", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.454111420613221, 48.67365783095757], - [-1.454111420613221, 48.67365783095757], - [-1.452869137586615, 48.67521355033912], - [-1.452859664487246, 48.675253242242846], - [-1.452918824683785, 48.67534661635604], - [-1.452891483259132, 48.67540384263697], - [-1.453878103457793, 48.67656219092895], - [-1.453874099031162, 48.67679155352529], - [-1.453773358658158, 48.6769571987286], - [-1.453611963211757, 48.67713094690073], - [-1.453426777794724, 48.677354176343954], - [-1.453245303144872, 48.67766060058007], - [-1.453250092824149, 48.67793832200117], - [-1.453276628510095, 48.67806878893098], - [-1.45339418352316, 48.6782786707411], - [-1.453578179266918, 48.678412699238436], - [-1.453782994328737, 48.67852528308369], - [-1.454086000736322, 48.678566019708], - [-1.454390489163225, 48.678586442199475], - [-1.454785641113466, 48.67861295542413], - [-1.45539974326333, 48.67870188544613], - [-1.456062695059952, 48.678794082577085], - [-1.457150163214201, 48.679020704631384], - [-1.458038894472679, 48.679168724680785], - [-1.458899745289258, 48.67932809655063], - [-1.459506361138027, 48.67947358896414], - [-1.460242190582365, 48.67972907747678], - [-1.461114544187156, 48.680077155369126], - [-1.462816384053341, 48.6808138484481], - [-1.464202643618057, 48.68141389267702], - [-1.464900489793405, 48.68167536746043], - [-1.465903467893022, 48.6818903386856], - [-1.466618503782603, 48.68205774238269], - [-1.467086104963352, 48.68220767349192], - [-1.467734965386224, 48.68257346478001], - [-1.468127601128452, 48.68288392994266], - [-1.468524223605521, 48.68319755066873], - [-1.468855231581498, 48.683383552661674], - [-1.469296303729002, 48.68356868554966], - [-1.469783126460011, 48.683706119835186], - [-1.470153882234667, 48.68374362536548], - [-1.470255748742938, 48.68369708764026], - [-1.470545857490608, 48.683572558820366], - [-1.470958795346202, 48.68358385201439], - [-1.471216002099142, 48.68370079965435], - [-1.47131322589933, 48.68380020562558], - [-1.471635983278531, 48.684130172901796], - [-1.471709586496959, 48.68423921020579], - [-1.471657732047025, 48.68428979476064], - [-1.471512364074963, 48.6843057564178], - [-1.47151580687234, 48.684277424479994], - [-1.471496954704484, 48.684283897260315], - [-1.471496954704484, 48.684283897260315] - ] - }, - "length": 2.1540794924293905, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch08365", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus39974", - "bus2": "MVLV18920", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.438557514204313, 48.66571332634098], - [-1.438557514204313, 48.66571332634098], - [-1.435905350518214, 48.665013198677705], - [-1.435905350518214, 48.665013198677705] - ] - }, - "length": 0.21030284000132166, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch33616", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24085", - "bus2": "MVBus24090", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42773882512684, 48.667518960930806], - [-1.42773882512684, 48.667518960930806], - [-1.427625944923735, 48.66750760645042], - [-1.427284113732512, 48.66743188815125], - [-1.427021639730295, 48.667357105414936], - [-1.426533446103999, 48.66718559291378], - [-1.425410181177729, 48.666811433669615], - [-1.425238835752817, 48.66678363710558], - [-1.425143248448931, 48.66672807735636], - [-1.424936393180271, 48.66680628167733], - [-1.424829594309627, 48.66689721253386], - [-1.42436465981737, 48.66755902753136], - [-1.424172230332951, 48.667815763092705], - [-1.424019455111165, 48.667992607111934], - [-1.424019455111165, 48.667992607111934] - ] - }, - "length": 0.37774257520662646, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47852", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24090", - "bus2": "MVLV14266", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.424019455111165, 48.667992607111934], - [-1.424019455111165, 48.667992607111934], - [-1.423991554665524, 48.66801072517383], - [-1.423949664678889, 48.6680024069041], - [-1.423949664678889, 48.6680024069041] - ] - }, - "length": 0.0060991198454417115, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41860", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24082", - "bus2": "MVLV02728", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.425433424469281, 48.6704288218968], - [-1.425433424469281, 48.6704288218968], - [-1.425361813066418, 48.670451620745325], - [-1.425078663899435, 48.67046836136561], - [-1.424623894900225, 48.670481105600174], - [-1.424211243860411, 48.670483873139204], - [-1.424157252985195, 48.67046024446686], - [-1.424157252985195, 48.67046024446686] - ] - }, - "length": 0.09547606697053757, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25435", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24080", - "bus2": "MVLV00547", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.42136624107891, 48.67352763843192], - [-1.42136624107891, 48.67352763843192], - [-1.419920011013785, 48.6734160725615], - [-1.419761534530391, 48.67316204924771], - [-1.419761534530391, 48.67316204924771] - ] - }, - "length": 0.13779793646463212, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11155", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24070", - "bus2": "MVBus24071", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419991973797182, 48.67443548826671], - [-1.419991973797182, 48.67443548826671], - [-1.420630681455058, 48.674440314166944], - [-1.420630681455058, 48.674440314166944] - ] - }, - "length": 0.04704228768803644, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23141", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24071", - "bus2": "MVBus24072", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.420630681455058, 48.674440314166944], - [-1.420630681455058, 48.674440314166944], - [-1.421303413674681, 48.67445303930767], - [-1.422160776516778, 48.675074482838696], - [-1.421881023752388, 48.67595325142352], - [-1.421340042028947, 48.67636068076991], - [-1.421340042028947, 48.67636068076991] - ] - }, - "length": 0.30337749386023144, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23142", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24072", - "bus2": "MVLV18922", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.421340042028947, 48.67636068076991], - [-1.421340042028947, 48.67636068076991], - [-1.425056590474113, 48.67762732364768], - [-1.425622793335055, 48.67794155813378], - [-1.425622793335055, 48.67794155813378] - ] - }, - "length": 0.36222154559153724, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25436", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24072", - "bus2": "MVBus24073", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.421340042028947, 48.67636068076991], - [-1.421340042028947, 48.67636068076991], - [-1.420540495730062, 48.67693633672361], - [-1.419810117061095, 48.67734764388789], - [-1.419810117061095, 48.67734764388789] - ] - }, - "length": 0.15758264210247439, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15246", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24073", - "bus2": "MVLV13819", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419810117061095, 48.67734764388789], - [-1.419810117061095, 48.67734764388789], - [-1.418765738504619, 48.677922375626466], - [-1.417411347774322, 48.6790354886807], - [-1.417411347774322, 48.6790354886807] - ] - }, - "length": 0.2589656697239327, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15245", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24073", - "bus2": "MVBus24075", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.419810117061095, 48.67734764388789], - [-1.419810117061095, 48.67734764388789], - [-1.420328922524153, 48.677875121617966], - [-1.420328922524153, 48.677875121617966] - ] - }, - "length": 0.07000292723351449, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19971", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24075", - "bus2": "MVBus24076", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.420328922524153, 48.677875121617966], - [-1.420328922524153, 48.677875121617966], - [-1.424667185742581, 48.68251880629374], - [-1.424667185742581, 48.68251880629374] - ] - }, - "length": 0.6072243094713089, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15313", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24076", - "bus2": "MVLV09363", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.424667185742581, 48.68251880629374], - [-1.424667185742581, 48.68251880629374], - [-1.424579380339677, 48.68254398026742], - [-1.424579380339677, 48.68254398026742] - ] - }, - "length": 0.007045636627968056, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01918", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24076", - "bus2": "MVLV10453", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.424667185742581, 48.68251880629374], - [-1.424667185742581, 48.68251880629374], - [-1.423863031695593, 48.683377524794466], - [-1.422193673110718, 48.68412332239577], - [-1.421450216052972, 48.68482593791207], - [-1.420420507191141, 48.68634791867971], - [-1.420420507191141, 48.68634791867971] - ] - }, - "length": 0.5415034548556188, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08363", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24069", - "bus2": "MVBus24092", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.413074070122556, 48.67823125435254], - [-1.413074070122556, 48.67823125435254], - [-1.411978407328498, 48.676764286658575], - [-1.411978407328498, 48.676764286658575] - ] - }, - "length": 0.18199606601879115, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08364", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24092", - "bus2": "MVBus24093", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.411978407328498, 48.676764286658575], - [-1.411978407328498, 48.676764286658575], - [-1.41094935900405, 48.67588938241899], - [-1.410767426786093, 48.67586486863645], - [-1.410767426786093, 48.67586486863645] - ] - }, - "length": 0.13699784465097406, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31518", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24093", - "bus2": "MVBus24094", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.410767426786093, 48.67586486863645], - [-1.410767426786093, 48.67586486863645], - [-1.406207660086664, 48.675123055199464], - [-1.406207660086664, 48.675123055199464] - ] - }, - "length": 0.34579223003823056, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31519", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24094", - "bus2": "MVBus24097", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.406207660086664, 48.675123055199464], - [-1.406207660086664, 48.675123055199464], - [-1.407329364348828, 48.67378715489126], - [-1.407329364348828, 48.67378715489126] - ] - }, - "length": 0.16998122619689254, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43826", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24097", - "bus2": "MVLV03222", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.407329364348828, 48.67378715489126], - [-1.407329364348828, 48.67378715489126], - [-1.407502142525449, 48.67373881085122], - [-1.407422703141767, 48.67334726719784], - [-1.408353765225652, 48.67308637801645], - [-1.409229507508, 48.67286043468729], - [-1.410183009384582, 48.67258309151386], - [-1.410177531992409, 48.67251969634844], - [-1.410177531992409, 48.67251969634844] - ] - }, - "length": 0.28518296092705764, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25434", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24094", - "bus2": "MVBus24095", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.406207660086664, 48.675123055199464], - [-1.406207660086664, 48.675123055199464], - [-1.403474306377468, 48.67473982769423], - [-1.403066889562038, 48.67459093187115], - [-1.402903063269356, 48.67421149659865], - [-1.402903063269356, 48.67421149659865] - ] - }, - "length": 0.2839203535914608, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32880", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24095", - "bus2": "MVLV00545", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.402903063269356, 48.67421149659865], - [-1.402903063269356, 48.67421149659865], - [-1.402887778117972, 48.67418637690393], - [-1.402720340785575, 48.67422309006748], - [-1.402290181691711, 48.674372968677645], - [-1.402012558869709, 48.67450738187695], - [-1.401711911452538, 48.67470258749458], - [-1.401594889014558, 48.67482389147757], - [-1.401395938329806, 48.67482940726141], - [-1.401395938329806, 48.67482940726141] - ] - }, - "length": 0.13880575619861452, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23661", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24055", - "bus2": "MVBus24056", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.398561158560935, 48.687535479227805], - [-1.398561158560935, 48.687535479227805], - [-1.393362724182627, 48.685320816196224], - [-1.389136030184977, 48.68430691391075], - [-1.389136030184977, 48.68430691391075] - ] - }, - "length": 0.7861628831366249, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11544", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24056", - "bus2": "MVBus24057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.389136030184977, 48.68430691391075], - [-1.389136030184977, 48.68430691391075], - [-1.388369912450079, 48.684359890565865], - [-1.388369912450079, 48.684359890565865] - ] - }, - "length": 0.05671839189802176, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch32126", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24057", - "bus2": "MVLV15406", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.388369912450079, 48.684359890565865], - [-1.388369912450079, 48.684359890565865], - [-1.389247638808418, 48.68704140487774], - [-1.389247638808418, 48.68704140487774] - ] - }, - "length": 0.3051172412161234, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18995", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24057", - "bus2": "MVBus24058", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.388369912450079, 48.684359890565865], - [-1.388369912450079, 48.684359890565865], - [-1.387495141567356, 48.683362598407236], - [-1.387495141567356, 48.683362598407236] - ] - }, - "length": 0.1282511394554021, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15994", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24058", - "bus2": "MVLV08246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387495141567356, 48.683362598407236], - [-1.387495141567356, 48.683362598407236], - [-1.387208961037065, 48.68286061089437], - [-1.387208961037065, 48.68286061089437] - ] - }, - "length": 0.059667850234072076, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34976", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24058", - "bus2": "MVBus24059", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387495141567356, 48.683362598407236], - [-1.387495141567356, 48.683362598407236], - [-1.387759531943309, 48.683293500990985], - [-1.387814024954069, 48.683271074752916], - [-1.387826894829556, 48.683254949865876], - [-1.387818960470286, 48.68323790351911], - [-1.387722623145225, 48.683139639342485], - [-1.387673180435401, 48.68309690931768], - [-1.387558220629858, 48.683028367596606], - [-1.387263325437987, 48.68285935388355], - [-1.387269844746174, 48.68276289905099], - [-1.387348437646504, 48.682715311813894], - [-1.387356786475741, 48.68269716024084], - [-1.387678417238547, 48.682493012673895], - [-1.387817559710464, 48.682414421857445], - [-1.38796727720281, 48.68234478542403], - [-1.388823713394605, 48.682060441880395], - [-1.389429594414714, 48.68186397150588], - [-1.389752429232078, 48.681758351969066], - [-1.389808653669071, 48.68175272492027], - [-1.390279612206967, 48.68158793534494], - [-1.39031602673959, 48.68158293056698], - [-1.390789840058094, 48.681425401097336], - [-1.391079557085955, 48.68133008729849], - [-1.391174642348653, 48.681298806546174], - [-1.391199538592418, 48.68128573171901], - [-1.391223663864039, 48.68127574069037], - [-1.391294163018651, 48.681258829737715], - [-1.391320095620501, 48.68124807997599], - [-1.391320095620501, 48.68124807997599] - ] - }, - "length": 0.4450064142173554, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24059", - "bus2": "MVLV06953", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391320095620501, 48.68124807997599], - [-1.391320095620501, 48.68124807997599], - [-1.391322168393567, 48.68125291913266], - [-1.391311904977682, 48.68125609434967], - [-1.391311522906812, 48.681261190645955], - [-1.391314507522578, 48.68127685361685], - [-1.391318871202315, 48.68128407741701], - [-1.391318871202315, 48.68128407741701] - ] - }, - "length": 0.004581756372837862, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35687", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24059", - "bus2": "MVBus24061", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.391320095620501, 48.68124807997599], - [-1.391320095620501, 48.68124807997599], - [-1.3913757704759, 48.68123100504328], - [-1.391452827194984, 48.681200551730086], - [-1.391544113131154, 48.68117144180778], - [-1.391578032857149, 48.681158560168356], - [-1.391641417684, 48.681142691530205], - [-1.391897231031268, 48.68105881697471], - [-1.392092195181681, 48.68099718313847], - [-1.392155718516572, 48.68097169020065], - [-1.392199012704665, 48.68095631793636], - [-1.392217767946615, 48.6809516068197], - [-1.392488320110357, 48.680862183213534], - [-1.392779260671652, 48.68076771742702], - [-1.392878950410615, 48.68073737928427], - [-1.392982213665771, 48.680710636158025], - [-1.393036820873943, 48.68069650057501], - [-1.393043528466283, 48.68068316045334], - [-1.393055312133606, 48.680676742711626], - [-1.393447343467384, 48.68059026342986], - [-1.393795017824657, 48.6805354138882], - [-1.393828374426592, 48.68053988988404], - [-1.394255996709342, 48.68047636899161], - [-1.394377170388082, 48.68047255692166], - [-1.395322544559519, 48.68030720020886], - [-1.395635422344027, 48.680253989044964], - [-1.395963743339719, 48.680200299979205], - [-1.39599587277191, 48.68018351390004], - [-1.396086853166442, 48.68016686423779], - [-1.396086853166442, 48.68016686423779] - ] - }, - "length": 0.3744445791717937, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46471", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24061", - "bus2": "MVBus24062", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396086853166442, 48.68016686423779], - [-1.396086853166442, 48.68016686423779], - [-1.3962942121381, 48.68013299922341], - [-1.396488560143423, 48.680102081053114], - [-1.396575419622532, 48.68009182387137], - [-1.396689119419465, 48.68008386227141], - [-1.396689119419465, 48.68008386227141] - ] - }, - "length": 0.045362740179136773, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36644", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24062", - "bus2": "MVBus24064", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396689119419465, 48.68008386227141], - [-1.396689119419465, 48.68008386227141], - [-1.396782321176775, 48.68007733774667], - [-1.39687384253284, 48.68005762884955], - [-1.396968701387716, 48.680047119542785], - [-1.397175010325148, 48.680005646047306], - [-1.397175010325148, 48.680005646047306] - ] - }, - "length": 0.0369480354900679, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33185", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24064", - "bus2": "MVLV02107", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.397175010325148, 48.680005646047306], - [-1.397175010325148, 48.680005646047306], - [-1.397190364000473, 48.68000258900063], - [-1.397198756611179, 48.68002106022296], - [-1.397198756611179, 48.68002106022296] - ] - }, - "length": 0.0033256646425244354, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46121", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24062", - "bus2": "MVLV04069", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.396689119419465, 48.68008386227141], - [-1.396689119419465, 48.68008386227141], - [-1.396648913020269, 48.6800488988877], - [-1.394611413407245, 48.67796960367503], - [-1.394568048039803, 48.6779615913739], - [-1.394163276971984, 48.678118702457], - [-1.393845086303829, 48.678271396765766], - [-1.393859245371176, 48.678398121997645], - [-1.393859245371176, 48.678398121997645] - ] - }, - "length": 0.3614631350164427, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch11541", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24052", - "bus2": "MVBus24053", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.390456896571498, 48.694092429012166], - [-1.390456896571498, 48.694092429012166], - [-1.387379276762682, 48.696449094264764], - [-1.387228378138695, 48.69648346340322], - [-1.387228378138695, 48.69648346340322] - ] - }, - "length": 0.3581761272426037, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34079", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus24053", - "bus2": "MVLV00763", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.387228378138695, 48.69648346340322], - [-1.387228378138695, 48.69648346340322], - [-1.387221166791382, 48.69649361522939], - [-1.387205265351858, 48.696487392402446], - [-1.387107118643517, 48.69645566648759], - [-1.387097484203143, 48.69645685076047], - [-1.387090828303885, 48.6964626118196], - [-1.387029614602151, 48.69657625091903], - [-1.386869072729956, 48.69681438074435], - [-1.386866615728102, 48.69681708545298], - [-1.386858597780683, 48.69681616728629], - [-1.386355132658147, 48.696695396202], - [-1.386347399884585, 48.6966975105803], - [-1.386320350855856, 48.69674688889175], - [-1.386320350855856, 48.69674688889175] - ] - }, - "length": 0.10141843723377124, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34168", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17519", - "bus2": "MVLV02676", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.386095076128499, 48.69020544337535], - [-1.386095076128499, 48.69020544337535], - [-1.386101834131236, 48.690227313961685], - [-1.386094764648589, 48.69023810923906], - [-1.386091738376708, 48.69024273053422], - [-1.386086307107507, 48.69024982994571], - [-1.386086307107507, 48.69024982994571] - ] - }, - "length": 0.00523601712228864, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39173", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17518", - "bus2": "MVLV11234", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.380593480920253, 48.68951313748911], - [-1.380593480920253, 48.68951313748911], - [-1.380601431977655, 48.689423217060465], - [-1.38072919403013, 48.68853566517583], - [-1.380949803263799, 48.68854929502677], - [-1.381057295037861, 48.68857227401332], - [-1.381057295037861, 48.68857227401332] - ] - }, - "length": 0.13379285548725914, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41216", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17515", - "bus2": "MVBus17523", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361872248455002, 48.698372926745066], - [-1.361872248455002, 48.698372926745066], - [-1.361903822228889, 48.698406874351], - [-1.362246996694102, 48.699408941615545], - [-1.362333415609004, 48.699680825794466], - [-1.362568397912248, 48.69985650909679], - [-1.362545617311338, 48.69987737599273], - [-1.36250058294375, 48.699920974017196], - [-1.36250058294375, 48.699920974017196] - ] - }, - "length": 0.1844208420110156, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch12786", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17523", - "bus2": "MVBus17526", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36250058294375, 48.699920974017196], - [-1.36250058294375, 48.699920974017196], - [-1.364469760819947, 48.702221813021815], - [-1.364469760819947, 48.702221813021815] - ] - }, - "length": 0.29406741281526205, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24944", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17526", - "bus2": "MVBus17527", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.364469760819947, 48.702221813021815], - [-1.364469760819947, 48.702221813021815], - [-1.365080155168652, 48.702931226958164], - [-1.365080155168652, 48.702931226958164] - ] - }, - "length": 0.09078650728206882, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30653", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17527", - "bus2": "MVBus17528", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365080155168652, 48.702931226958164], - [-1.365080155168652, 48.702931226958164], - [-1.366857582095782, 48.702909804508195], - [-1.366857582095782, 48.702909804508195] - ] - }, - "length": 0.13085094399203137, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07874", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17528", - "bus2": "MVBus17539", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366857582095782, 48.702909804508195], - [-1.366857582095782, 48.702909804508195], - [-1.368602686985163, 48.702762027953426], - [-1.368602686985163, 48.702762027953426] - ] - }, - "length": 0.12949731231923822, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22298", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17539", - "bus2": "MVBus17540", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.368602686985163, 48.702762027953426], - [-1.368602686985163, 48.702762027953426], - [-1.369391365276649, 48.702312360854734], - [-1.369391365276649, 48.702312360854734] - ] - }, - "length": 0.07661917327285778, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22300", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17540", - "bus2": "MVLV11643", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.369391365276649, 48.702312360854734], - [-1.369391365276649, 48.702312360854734], - [-1.36985327513618, 48.70171789916646], - [-1.36985327513618, 48.70171789916646] - ] - }, - "length": 0.0743375036506505, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30655", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17528", - "bus2": "MVBus17529", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.366857582095782, 48.702909804508195], - [-1.366857582095782, 48.702909804508195], - [-1.365766216776604, 48.70323344674769], - [-1.365766216776604, 48.70323344674769] - ] - }, - "length": 0.08802463182829624, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02960", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17529", - "bus2": "MVBus17530", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365766216776604, 48.70323344674769], - [-1.365766216776604, 48.70323344674769], - [-1.363833946287064, 48.70377351832192], - [-1.362654078028266, 48.70439394941558], - [-1.362654078028266, 48.70439394941558] - ] - }, - "length": 0.2653000495495086, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch07873", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17530", - "bus2": "MVLV12960", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.362654078028266, 48.70439394941558], - [-1.362654078028266, 48.70439394941558], - [-1.361721892311404, 48.70427438531108], - [-1.361146143854642, 48.70373258684646], - [-1.361146143854642, 48.70373258684646] - ] - }, - "length": 0.1435499370827407, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22297", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17530", - "bus2": "MVBus17532", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.362654078028266, 48.70439394941558], - [-1.362654078028266, 48.70439394941558], - [-1.361706222495278, 48.70493345667249], - [-1.361706222495278, 48.70493345667249] - ] - }, - "length": 0.09201445378229363, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30654", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17532", - "bus2": "MVBus17533", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.361706222495278, 48.70493345667249], - [-1.361706222495278, 48.70493345667249], - [-1.363787332955464, 48.70687745644073], - [-1.363787332955464, 48.70687745644073] - ] - }, - "length": 0.26494540274416534, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch02961", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17533", - "bus2": "MVBus17535", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363787332955464, 48.70687745644073], - [-1.363787332955464, 48.70687745644073], - [-1.365482557431456, 48.70845136474554], - [-1.365482557431456, 48.70845136474554] - ] - }, - "length": 0.21494311509699743, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12787", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17535", - "bus2": "MVBus17536", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.365482557431456, 48.70845136474554], - [-1.365482557431456, 48.70845136474554], - [-1.370137877277229, 48.70773714942973], - [-1.371470530798074, 48.708006097671856], - [-1.371470530798074, 48.708006097671856] - ] - }, - "length": 0.4542496808028074, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22299", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17536", - "bus2": "MVLV15838", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371470530798074, 48.708006097671856], - [-1.371470530798074, 48.708006097671856], - [-1.372263248440009, 48.70572814874992], - [-1.372263248440009, 48.70572814874992] - ] - }, - "length": 0.25994927894914815, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24945", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17536", - "bus2": "MVLV05594", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.371470530798074, 48.708006097671856], - [-1.371470530798074, 48.708006097671856], - [-1.372474957363736, 48.70819963640383], - [-1.372474957363736, 48.70819963640383] - ] - }, - "length": 0.07699349789243165, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30656", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17533", - "bus2": "MVLV08691", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.363787332955464, 48.70687745644073], - [-1.363787332955464, 48.70687745644073], - [-1.362017012011286, 48.707740359055315], - [-1.362017012011286, 48.707740359055315] - ] - }, - "length": 0.16181702009734078, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24943", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17523", - "bus2": "MVBus17524", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.36250058294375, 48.699920974017196], - [-1.36250058294375, 48.699920974017196], - [-1.3617748995242, 48.70059026302006], - [-1.360816212595922, 48.70113087837448], - [-1.360816212595922, 48.70113087837448] - ] - }, - "length": 0.1843169641640161, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch36942", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17524", - "bus2": "MVLV12961", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.360816212595922, 48.70113087837448], - [-1.360816212595922, 48.70113087837448], - [-1.360722700562462, 48.701166484045686], - [-1.360614861951732, 48.701021506245404], - [-1.360437527815529, 48.700889501225184], - [-1.360278885836657, 48.7008039301189], - [-1.359583849886216, 48.700391396539366], - [-1.359690288894828, 48.70030435899507], - [-1.359690288894828, 48.70030435899507] - ] - }, - "length": 0.14178813460374382, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV06299_production", - "bus": "MVLV06299", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06299_consumption", - "bus": "MVLV06299", - "phases": "abc", - "powers": [ - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807] - ] - }, - { - "id": "MVLV06298_production", - "bus": "MVLV06298", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06298_consumption", - "bus": "MVLV06298", - "phases": "abc", - "powers": [ - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807] - ] - }, - { - "id": "MVLV16807_production", - "bus": "MVLV16807", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16807_consumption", - "bus": "MVLV16807", - "phases": "abc", - "powers": [ - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807] - ] - }, - { - "id": "MVLV13668_production", - "bus": "MVLV13668", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13668_consumption", - "bus": "MVLV13668", - "phases": "abc", - "powers": [ - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807] - ] - }, - { - "id": "MVLV08873_production", - "bus": "MVLV08873", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08873_consumption", - "bus": "MVLV08873", - "phases": "abc", - "powers": [ - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807], - [61778.16711889662, 20305.501579064807] - ] - }, - { - "id": "MVLV15837_production", - "bus": "MVLV15837", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15837_consumption", - "bus": "MVLV15837", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - }, - { - "id": "MVLV00762_production", - "bus": "MVLV00762", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00762_consumption", - "bus": "MVLV00762", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV05135_production", - "bus": "MVLV05135", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05135_consumption", - "bus": "MVLV05135", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV00546_production", - "bus": "MVLV00546", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00546_consumption", - "bus": "MVLV00546", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV10324_production", - "bus": "MVLV10324", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10324_consumption", - "bus": "MVLV10324", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV10323_production", - "bus": "MVLV10323", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10323_consumption", - "bus": "MVLV10323", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV06447_production", - "bus": "MVLV06447", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06447_consumption", - "bus": "MVLV06447", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV09015_production", - "bus": "MVLV09015", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09015_consumption", - "bus": "MVLV09015", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV06448_production", - "bus": "MVLV06448", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06448_consumption", - "bus": "MVLV06448", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV18919_production", - "bus": "MVLV18919", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18919_consumption", - "bus": "MVLV18919", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV00544_production", - "bus": "MVLV00544", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00544_consumption", - "bus": "MVLV00544", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV14633_production", - "bus": "MVLV14633", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14633_consumption", - "bus": "MVLV14633", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV18920_production", - "bus": "MVLV18920", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18920_consumption", - "bus": "MVLV18920", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV14266_production", - "bus": "MVLV14266", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14266_consumption", - "bus": "MVLV14266", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV02728_production", - "bus": "MVLV02728", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02728_consumption", - "bus": "MVLV02728", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV00547_production", - "bus": "MVLV00547", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00547_consumption", - "bus": "MVLV00547", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV18922_production", - "bus": "MVLV18922", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18922_consumption", - "bus": "MVLV18922", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV13819_production", - "bus": "MVLV13819", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13819_consumption", - "bus": "MVLV13819", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV09363_production", - "bus": "MVLV09363", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09363_consumption", - "bus": "MVLV09363", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV10453_production", - "bus": "MVLV10453", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10453_consumption", - "bus": "MVLV10453", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV03222_production", - "bus": "MVLV03222", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03222_consumption", - "bus": "MVLV03222", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV00545_production", - "bus": "MVLV00545", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00545_consumption", - "bus": "MVLV00545", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV15406_production", - "bus": "MVLV15406", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15406_consumption", - "bus": "MVLV15406", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV08246_production", - "bus": "MVLV08246", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08246_consumption", - "bus": "MVLV08246", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV06953_production", - "bus": "MVLV06953", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06953_consumption", - "bus": "MVLV06953", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV02107_production", - "bus": "MVLV02107", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02107_consumption", - "bus": "MVLV02107", - "phases": "abc", - "powers": [ - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168], - [16024.9245015146, 5267.137970339168] - ] - }, - { - "id": "MVLV04069_production", - "bus": "MVLV04069", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04069_consumption", - "bus": "MVLV04069", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV00763_production", - "bus": "MVLV00763", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00763_consumption", - "bus": "MVLV00763", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV02676_production", - "bus": "MVLV02676", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02676_consumption", - "bus": "MVLV02676", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV11234_production", - "bus": "MVLV11234", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11234_consumption", - "bus": "MVLV11234", - "phases": "abc", - "powers": [ - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252], - [24042.276599952937, 7902.314170718252] - ] - }, - { - "id": "MVLV11643_production", - "bus": "MVLV11643", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11643_consumption", - "bus": "MVLV11643", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - }, - { - "id": "MVLV12960_production", - "bus": "MVLV12960", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12960_consumption", - "bus": "MVLV12960", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - }, - { - "id": "MVLV15838_production", - "bus": "MVLV15838", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15838_consumption", - "bus": "MVLV15838", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - }, - { - "id": "MVLV05594_production", - "bus": "MVLV05594", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05594_consumption", - "bus": "MVLV05594", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - }, - { - "id": "MVLV08691_production", - "bus": "MVLV08691", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08691_consumption", - "bus": "MVLV08691", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - }, - { - "id": "MVLV12961_production", - "bus": "MVLV12961", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12961_consumption", - "bus": "MVLV12961", - "phases": "abc", - "powers": [ - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066], - [10285.133759374929, 3380.559986345066] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder217_summer.json b/data/MVFeeder217_summer.json deleted file mode 100644 index 7183723f..00000000 --- a/data/MVFeeder217_summer.json +++ /dev/null @@ -1,2699 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.751702612915616, 49.653801085335864] - } - }, - { - "id": "HVMV15", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.751702612915616, 49.653801085335864] - } - }, - { - "id": "MVBus01881", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.75134861697713, 49.6546228164401] - } - }, - { - "id": "MVBus01882", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.740479446878883, 49.65987962629042] - } - }, - { - "id": "MVBus01883", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.733888052209557, 49.656314900145844] - } - }, - { - "id": "MVBus01884", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.728312906960772, 49.656559479695645] - } - }, - { - "id": "MVBus01885", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.727739462930876, 49.65677285538332] - } - }, - { - "id": "MVBus01886", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.727382824582085, 49.656858137125596] - } - }, - { - "id": "MVBus01887", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.723625804781101, 49.65673682886024] - } - }, - { - "id": "MVBus01888", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.715447633958364, 49.654538430245495] - } - }, - { - "id": "MVLV16887", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7134923699166786, 49.656042385779635] - } - }, - { - "id": "MVBus09389", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.712231384433458, 49.65739404176467] - } - }, - { - "id": "MVLV12762", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7123893567716906, 49.65869383173553] - } - }, - { - "id": "MVBus11449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.712256396489699, 49.658696483631566] - } - }, - { - "id": "MVLV04334", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7102518017180843, 49.65805029431179] - } - }, - { - "id": "MVBus12338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.709027337065763, 49.6575131235305] - } - }, - { - "id": "MVLV15648", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7093355253425884, 49.65668006698276] - } - }, - { - "id": "MVBus13302", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.708997902725297, 49.65748382115472] - } - }, - { - "id": "MVLV11486", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7079120407255814, 49.65821598234879] - } - }, - { - "id": "MVLV12761", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7065522989454331, 49.658565793845284] - } - }, - { - "id": "MVLV08515", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.704521667859076, 49.65632654314429] - } - }, - { - "id": "MVLV08514", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7044656244128835, 49.657095165588956] - } - }, - { - "id": "MVLV08517", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7018474404969435, 49.65682712281345] - } - }, - { - "id": "MVLV11487", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7005694121374195, 49.65663345325234] - } - }, - { - "id": "MVLV15647", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.699553504846526, 49.65715834002786] - } - }, - { - "id": "MVLV08518", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.697825356573214, 49.65683842436038] - } - }, - { - "id": "MVLV12764", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6956447814282445, 49.65763502482898] - } - }, - { - "id": "MVBus20890", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.694881325517064, 49.65753685714968] - } - }, - { - "id": "MVBus20891", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.694653623707265, 49.657307207334895] - } - }, - { - "id": "MVLV09710", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6931544029856775, 49.65682690034362] - } - }, - { - "id": "MVBus21726", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6899144761105565, 49.65734579505471] - } - }, - { - "id": "MVBus22602", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.687000916584208, 49.65872643345839] - } - }, - { - "id": "MVBus22603", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.678752083502674, 49.657632600450846] - } - }, - { - "id": "MVBus22604", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.673893732207176, 49.65699408075931] - } - }, - { - "id": "MVLV01706", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6706848356208555, 49.656587653461884] - } - }, - { - "id": "MVBus26721", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.674277152501746, 49.65696686252891] - } - }, - { - "id": "MVLV01698", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.67396768671466, 49.655955025085554] - } - }, - { - "id": "MVLV10776", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6752788266700036, 49.65550693267713] - } - }, - { - "id": "MVLV09700", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6773448547737, 49.65466658066605] - } - }, - { - "id": "MVLV09696", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6780747779003309, 49.655274905822935] - } - }, - { - "id": "MVLV01697", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.678922603714337, 49.65539083429302] - } - }, - { - "id": "MVLV10768", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6806498367623357, 49.654726771172655] - } - }, - { - "id": "MVBus32481", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.676470873384789, 49.653553577574854] - } - }, - { - "id": "MVLV13410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.679931285366726, 49.65155465719737] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV15", - "geometry": { - "type": "Point", - "coordinates": [-1.751702612915616, 49.653801085335864] - } - }, - { - "id": "MVBranch34116", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV15", - "bus2": "MVBus01881", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.751702612915616, 49.653801085335864], - [-1.751748734460548, 49.65384507495183], - [-1.751748734460548, 49.65384507495183], - [-1.751790150159045, 49.65387028475741], - [-1.751810276327588, 49.653882545108324], - [-1.751814757753236, 49.65389524435384], - [-1.751729575993817, 49.65395420280918], - [-1.751750236824847, 49.65398470050129], - [-1.751694134911765, 49.65402853028565], - [-1.751692487066552, 49.65403907159969], - [-1.751699941927443, 49.654046877174686], - [-1.751709491778441, 49.654048334955746], - [-1.751726443067687, 49.654059695439734], - [-1.75173645898574, 49.654076290348044], - [-1.751739217834648, 49.6540951449433], - [-1.75173215522583, 49.65411554554525], - [-1.751722757422452, 49.65412997291849], - [-1.751723830062776, 49.654135575152736], - [-1.751742356405606, 49.654165191753165], - [-1.751764818899627, 49.654189828179526], - [-1.751764648988911, 49.65419548140606], - [-1.751690469929741, 49.65426935566007], - [-1.751501935380691, 49.65445071012209], - [-1.751420572147751, 49.65453570827406], - [-1.75134861697713, 49.6546228164401], - [-1.75134861697713, 49.6546228164401] - ] - }, - "length": 0.1036641105058596, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42102", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01881", - "bus2": "MVBus01882", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.75134861697713, 49.6546228164401], - [-1.75134861697713, 49.6546228164401], - [-1.751301699863922, 49.654679626910905], - [-1.751224296376544, 49.65476771947278], - [-1.751100546133867, 49.6548972883225], - [-1.751052576033689, 49.654996076649034], - [-1.751044408350226, 49.655049167363906], - [-1.751003680661414, 49.655114248702745], - [-1.750901483223386, 49.65519511233728], - [-1.750794860278051, 49.65526725852473], - [-1.750704441102756, 49.65534006208172], - [-1.75039486080823, 49.65556098118696], - [-1.75011787106141, 49.65575459326522], - [-1.749888936348456, 49.655912318591824], - [-1.749655937995882, 49.656058076413316], - [-1.749388737788516, 49.65619571752415], - [-1.749247494883003, 49.65626217011036], - [-1.749129755819926, 49.6563427566015], - [-1.748892816046397, 49.65647049847278], - [-1.748772980648936, 49.656540669802745], - [-1.748513557560205, 49.65669780317539], - [-1.748186064783585, 49.65692013000711], - [-1.747983666507208, 49.65706807916889], - [-1.747642077288224, 49.657300556491506], - [-1.747516729666441, 49.65738703651531], - [-1.747388981747892, 49.65748246427945], - [-1.7472760210709, 49.657560863966594], - [-1.7471836220006, 49.657640188043864], - [-1.746934468053926, 49.65781859834436], - [-1.746526064290259, 49.658154217090946], - [-1.746164656561502, 49.65841493919094], - [-1.745754213658427, 49.658724526713115], - [-1.745452963376744, 49.65895863891651], - [-1.745214800654465, 49.659158724246375], - [-1.744923711583319, 49.65937412884914], - [-1.744573940809986, 49.65963748318975], - [-1.744491303074585, 49.659699713023215], - [-1.74438219095979, 49.65979272771007], - [-1.744198002184347, 49.659834102921934], - [-1.744122641731567, 49.65983999045752], - [-1.744064463406356, 49.659839875727315], - [-1.744000344370419, 49.65984203868371], - [-1.743862639428613, 49.65987398568658], - [-1.743638085419002, 49.659918691013885], - [-1.743442887572666, 49.65998781915069], - [-1.743212138485946, 49.660083208629096], - [-1.743084759818112, 49.66014327731511], - [-1.7427775612443, 49.660310245114104], - [-1.742533892358992, 49.660445025208595], - [-1.742360146615032, 49.66054527117987], - [-1.742178625896325, 49.66063077022418], - [-1.741827036292318, 49.660779915779905], - [-1.741334539666645, 49.660985302414524], - [-1.741161366808124, 49.661056570729464], - [-1.741063903212354, 49.6610966810873], - [-1.74092799477829, 49.661147682404945], - [-1.74077063337072, 49.661203956936156], - [-1.740341448723128, 49.661343132411396], - [-1.740302514703939, 49.661351719623156], - [-1.740290461268839, 49.66135066902887], - [-1.740283184756773, 49.66134196655046], - [-1.740274413606927, 49.66131821574936], - [-1.740310141813682, 49.661051161297074], - [-1.740339303023295, 49.66088039681988], - [-1.740344908404654, 49.66083028057313], - [-1.740359131482788, 49.66074761715677], - [-1.740384337160247, 49.660660240124315], - [-1.740420562289238, 49.66056428137167], - [-1.740481426478069, 49.66038339262529], - [-1.740501661219831, 49.66029189355094], - [-1.740514314072042, 49.66014336661246], - [-1.740512856267667, 49.66010903671811], - [-1.740479446878883, 49.65987962629042], - [-1.740479446878883, 49.65987962629042] - ] - }, - "length": 1.2806813373079808, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34946", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01882", - "bus2": "MVBus01883", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.740479446878883, 49.65987962629042], - [-1.740479446878883, 49.65987962629042], - [-1.740474071432376, 49.65985329702724], - [-1.740475099216177, 49.65984155390997], - [-1.740480619730333, 49.659832635948426], - [-1.74049378387742, 49.65982090644167], - [-1.740501648745728, 49.65981254794499], - [-1.740507517331799, 49.65980382508198], - [-1.740510880721519, 49.65979668843317], - [-1.740510884394161, 49.659788594891516], - [-1.74050937689303, 49.65978204506886], - [-1.740500875379599, 49.65976997565485], - [-1.740421007668303, 49.659690249537704], - [-1.74022852633044, 49.659502935316866], - [-1.740108664693464, 49.65937833446222], - [-1.739964296243733, 49.6592305039367], - [-1.739948388256929, 49.659212083450164], - [-1.739936335416193, 49.65920098798228], - [-1.739922300862214, 49.65918953664039], - [-1.739893746325947, 49.659173035119764], - [-1.739879121085537, 49.65916649570173], - [-1.739831249884304, 49.659121688670226], - [-1.739767953307384, 49.659048211167374], - [-1.739676058101628, 49.65892459189616], - [-1.739615603991094, 49.658841441313264], - [-1.739602095296559, 49.65881612347223], - [-1.739593072243265, 49.65878938650556], - [-1.739574501702686, 49.658651578794704], - [-1.739563651314382, 49.65853651422431], - [-1.739564241361584, 49.658453644657506], - [-1.739562513116073, 49.65844433250798], - [-1.739556691304043, 49.658433027032444], - [-1.739549264879466, 49.658426253989326], - [-1.739527369643052, 49.658415067486075], - [-1.739513122167437, 49.658405107066926], - [-1.739506132999521, 49.65839150282499], - [-1.739504943559619, 49.658327433987914], - [-1.739501605994963, 49.65818315074582], - [-1.739493288053887, 49.65811187615185], - [-1.739453961641885, 49.657968805593946], - [-1.739377911403589, 49.65776457213422], - [-1.739304317806408, 49.65757026470002], - [-1.739266299317639, 49.65750105197944], - [-1.739256976487962, 49.65748407315334], - [-1.739246116056332, 49.657470212647816], - [-1.739232476857514, 49.657455555495524], - [-1.739217779813456, 49.65744412639509], - [-1.739198824306653, 49.65743262495761], - [-1.739179044079239, 49.657423282576474], - [-1.739130507250704, 49.657407022537775], - [-1.739061957345631, 49.65739080731378], - [-1.739025458978518, 49.657385643274345], - [-1.738915539587075, 49.65737315995609], - [-1.738881067549643, 49.657371335834526], - [-1.738860053103217, 49.65736890541017], - [-1.738821540846347, 49.657357784054184], - [-1.73876757639012, 49.6573507354131], - [-1.73867161536302, 49.65733663053159], - [-1.738601732838121, 49.65733025300006], - [-1.73850233662905, 49.65732567907416], - [-1.738398217897442, 49.65732250515459], - [-1.738194313133802, 49.657314904991445], - [-1.738089932756446, 49.65730845728815], - [-1.737982516156575, 49.657292966200124], - [-1.737882857629756, 49.65726656634259], - [-1.737746916927861, 49.65722037258456], - [-1.737698927096434, 49.65720384177042], - [-1.737601693439361, 49.65717640678765], - [-1.73750784755023, 49.65715963986516], - [-1.737408183156507, 49.657151530966466], - [-1.737311770684144, 49.65714753902869], - [-1.737215513894139, 49.657147921212555], - [-1.737108532106675, 49.65714306206995], - [-1.737006773914737, 49.65714307181737], - [-1.736910746753859, 49.65713852702422], - [-1.736814255557686, 49.657122801883055], - [-1.736724861578887, 49.65710384310347], - [-1.736637269834277, 49.657083861353335], - [-1.736461741207677, 49.65704200284033], - [-1.73626444365085, 49.65699363795306], - [-1.736175947284714, 49.65697533200083], - [-1.735876871097662, 49.65690555558378], - [-1.73557208872794, 49.65683283210489], - [-1.735297533928657, 49.65677000744627], - [-1.735204918608509, 49.656747469017866], - [-1.735109019192504, 49.656726129183966], - [-1.734880330154187, 49.65666885490597], - [-1.734524089167194, 49.65655414752372], - [-1.734355293943281, 49.656491097487056], - [-1.73427080139386, 49.656456126886056], - [-1.734259751213325, 49.65645079741933], - [-1.734249204739566, 49.65644258233416], - [-1.734240217541812, 49.65643099647164], - [-1.734232635057423, 49.65642121582566], - [-1.73422233807747, 49.65641352290978], - [-1.734205948614401, 49.65640551345711], - [-1.734109939342267, 49.6563730705961], - [-1.734051494509664, 49.656356728369346], - [-1.733969098249313, 49.656338809084446], - [-1.733888052209557, 49.656314900145844], - [-1.733888052209557, 49.656314900145844] - ] - }, - "length": 0.7059455867207443, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42411", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01883", - "bus2": "MVBus01884", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.733888052209557, 49.656314900145844], - [-1.733888052209557, 49.656314900145844], - [-1.733820007778513, 49.65628016708811], - [-1.733763752106464, 49.656247869986075], - [-1.733710070903023, 49.65621450602487], - [-1.733640511623304, 49.6561677376844], - [-1.733539253676595, 49.65610372684678], - [-1.733467343239139, 49.65606480720204], - [-1.733343931417372, 49.65601790833194], - [-1.733283539586307, 49.65600024638956], - [-1.73320693907129, 49.65598811172926], - [-1.733134113689259, 49.65598058015306], - [-1.732764388265359, 49.655963883059265], - [-1.732455019590271, 49.655959030137886], - [-1.732308861926483, 49.65595895590221], - [-1.732156086784187, 49.65595632535174], - [-1.732071515123761, 49.655956948938424], - [-1.731988798417747, 49.65595391300292], - [-1.731813324684369, 49.655956200132806], - [-1.731619674397655, 49.655955501280054], - [-1.731515826317521, 49.65595011823244], - [-1.731404434610655, 49.65595192214882], - [-1.731288262322996, 49.65596359881823], - [-1.731171657834058, 49.65598582931513], - [-1.731065502343024, 49.656015756745845], - [-1.730869722261673, 49.656073949329844], - [-1.730761570787878, 49.65611115571432], - [-1.73043046871671, 49.65621412200755], - [-1.730326055201905, 49.656244538733], - [-1.730217744128323, 49.656268989382525], - [-1.729903556452437, 49.65634230320746], - [-1.729795845570611, 49.656351535697574], - [-1.729682898084139, 49.65636597102383], - [-1.729570647608569, 49.65637438471132], - [-1.729448850872821, 49.65638989066015], - [-1.729213793071298, 49.65644594757036], - [-1.729129184628637, 49.65646852136912], - [-1.729014250779628, 49.6564953967068], - [-1.728901490965555, 49.65651601191794], - [-1.728791966639698, 49.65652491776152], - [-1.728662672874595, 49.65653622350812], - [-1.728516880886691, 49.65654596131145], - [-1.728475245323393, 49.65653576004882], - [-1.728411991139697, 49.65654194149451], - [-1.728370140263912, 49.656547799304136], - [-1.728312906960772, 49.656559479695645], - [-1.728312906960772, 49.656559479695645] - ] - }, - "length": 0.42800395801572233, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34037", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01884", - "bus2": "MVBus01885", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.728312906960772, 49.656559479695645], - [-1.728312906960772, 49.656559479695645], - [-1.728274454180884, 49.65656660814347], - [-1.728233685202301, 49.656576826950065], - [-1.728205776997936, 49.656585732281826], - [-1.728161474180365, 49.65660270638717], - [-1.728061212388786, 49.65664456408184], - [-1.727946166206508, 49.65668029090196], - [-1.727817705683487, 49.65673592842011], - [-1.727739462930876, 49.65677285538332], - [-1.727739462930876, 49.65677285538332] - ] - }, - "length": 0.047953236893901165, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42412", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01885", - "bus2": "MVBus01886", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.727739462930876, 49.65677285538332], - [-1.727739462930876, 49.65677285538332], - [-1.727707492689713, 49.656786411383656], - [-1.727596864159143, 49.656817960710654], - [-1.727485560714758, 49.656841394270465], - [-1.727382824582085, 49.656858137125596], - [-1.727382824582085, 49.656858137125596] - ] - }, - "length": 0.027578746668158054, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40756", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01886", - "bus2": "MVBus01887", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.727382824582085, 49.656858137125596], - [-1.727382824582085, 49.656858137125596], - [-1.727255130419084, 49.656876141052194], - [-1.727120294379758, 49.65688309901938], - [-1.726979327246614, 49.65688004717326], - [-1.726843528677935, 49.65687180364602], - [-1.726712400318607, 49.65686184736043], - [-1.726577844568127, 49.65685563908711], - [-1.726303410859262, 49.656853436636425], - [-1.726171836378063, 49.656854564681474], - [-1.72585793709381, 49.656842095274015], - [-1.725666382306666, 49.65683313312166], - [-1.725605568753938, 49.656832576567226], - [-1.725485392503197, 49.656832808501164], - [-1.725251464483659, 49.65683062826861], - [-1.725025826734552, 49.656825228625394], - [-1.724798199183486, 49.65682180180917], - [-1.724685456448137, 49.65681849206072], - [-1.7245698809084, 49.65681631146881], - [-1.72445706960357, 49.65681214051932], - [-1.72435163705248, 49.65680356715185], - [-1.724250281210615, 49.6567924378171], - [-1.723947318268317, 49.6567544799531], - [-1.723840359322548, 49.656747782887855], - [-1.723728787517464, 49.65674490955833], - [-1.723625804781101, 49.65673682886024], - [-1.723625804781101, 49.65673682886024] - ] - }, - "length": 0.2724446957927151, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43049", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01887", - "bus2": "MVBus01888", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.723625804781101, 49.65673682886024], - [-1.723625804781101, 49.65673682886024], - [-1.723520377064923, 49.656727616140266], - [-1.723422239509832, 49.65671706153705], - [-1.723311255510849, 49.65671043616149], - [-1.723198071900167, 49.65669323725738], - [-1.723127687111947, 49.65669077053708], - [-1.722701786187468, 49.65666164777939], - [-1.722598063002425, 49.65666565914847], - [-1.722487643297865, 49.65665811482743], - [-1.721660003373815, 49.65657170621557], - [-1.721549796078765, 49.65656682472705], - [-1.721538047690914, 49.65656453908364], - [-1.721481223908684, 49.65654553767339], - [-1.721465358631225, 49.656543390140634], - [-1.721448147102664, 49.65654503768671], - [-1.721255295561688, 49.65660136244499], - [-1.721069041713968, 49.65666818473525], - [-1.720715544870907, 49.65682262907381], - [-1.720625975255681, 49.656869589236436], - [-1.720559774543294, 49.656919515420164], - [-1.720502049314613, 49.65697237663683], - [-1.720432929839997, 49.657027229656556], - [-1.720368762404759, 49.65707172793302], - [-1.720011956842451, 49.65733730345117], - [-1.719951248175017, 49.65738715296471], - [-1.719840359650761, 49.65746667914164], - [-1.719546904359343, 49.65767631694214], - [-1.719519017524534, 49.65769091177698], - [-1.719509007047312, 49.657693756377626], - [-1.719501528831518, 49.657691866901644], - [-1.71947780320136, 49.6576811159884], - [-1.719446489720156, 49.65766692355118], - [-1.719227931378966, 49.657576259766756], - [-1.71900357914789, 49.657490762758826], - [-1.718885676065933, 49.65744245086185], - [-1.718681878423483, 49.657368404133045], - [-1.718654363643581, 49.65735999227237], - [-1.718534760648144, 49.657332267095995], - [-1.718410586473253, 49.65730750072945], - [-1.718162801127251, 49.657240835877104], - [-1.718011097134541, 49.6571830809291], - [-1.717981256567952, 49.65716945924549], - [-1.717977370360496, 49.65716274615818], - [-1.718043519437144, 49.657084622500825], - [-1.718045612695117, 49.65708081142184], - [-1.718041416313051, 49.657076293929585], - [-1.717999506135629, 49.65704938112844], - [-1.717887107372415, 49.65698595611869], - [-1.717832819310818, 49.656942048523675], - [-1.717730881850192, 49.65680516306199], - [-1.717691274506387, 49.65674084477619], - [-1.71767883685665, 49.6567110825568], - [-1.717562557812384, 49.656502197440894], - [-1.717554983546297, 49.65648533842219], - [-1.717554640217861, 49.65643277929776], - [-1.717493476214133, 49.656356746702166], - [-1.717495896332177, 49.65633893221701], - [-1.717447994085462, 49.65618250205623], - [-1.717439573011385, 49.6561006550268], - [-1.717461902305589, 49.656001905449315], - [-1.717487775937777, 49.655815008627954], - [-1.717500134567444, 49.65563914002085], - [-1.717514947328719, 49.655542198021614], - [-1.717514531824025, 49.65544048776329], - [-1.717503391856739, 49.655336645997224], - [-1.717488942745687, 49.655245360880855], - [-1.717460651659158, 49.65514862256692], - [-1.717420766249411, 49.65506284813152], - [-1.717375544103659, 49.65497632630912], - [-1.717274162708445, 49.65478000763229], - [-1.717167398701707, 49.654606566567345], - [-1.717061652365184, 49.654433720776446], - [-1.716959036949793, 49.65427010427631], - [-1.716914447426297, 49.654185422525465], - [-1.7168409726092, 49.654008698305404], - [-1.716811740245133, 49.65391821420138], - [-1.716763546412261, 49.65375806135427], - [-1.716732522799451, 49.653638078556575], - [-1.716689212363299, 49.65343795173439], - [-1.71667331127041, 49.65336443948759], - [-1.716670378709844, 49.65335769438859], - [-1.716662418509404, 49.653353914472994], - [-1.716653156141748, 49.65335204865622], - [-1.716596781264168, 49.65334802969377], - [-1.716559930839835, 49.653348644085064], - [-1.716551546324883, 49.65335172175416], - [-1.716544091, 49.65336038866352], - [-1.716472226277132, 49.653426869160796], - [-1.716395457773024, 49.65349787533786], - [-1.716316735389152, 49.65356242728845], - [-1.716236904998456, 49.65364318499962], - [-1.716023337473649, 49.65386188282999], - [-1.715893174600961, 49.65400872264407], - [-1.715704903113184, 49.65422035831509], - [-1.71553225529787, 49.65439942059411], - [-1.715471504984857, 49.65444283069003], - [-1.715456092169358, 49.65446605331468], - [-1.715449572571996, 49.65448649605519], - [-1.715447633958364, 49.654538430245495], - [-1.715447633958364, 49.654538430245495] - ] - }, - "length": 1.0872513297341535, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37385", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01888", - "bus2": "MVLV16887", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.715447633958364, 49.654538430245495], - [-1.715447633958364, 49.654538430245495], - [-1.715448192070262, 49.65460696204013], - [-1.715457004433096, 49.6546500380675], - [-1.715471451256319, 49.65469969675278], - [-1.715498603110257, 49.654796617488635], - [-1.715526802946384, 49.65491560687598], - [-1.715556713031621, 49.65504286608316], - [-1.715567040711619, 49.65508827435797], - [-1.715570275973833, 49.6551110251187], - [-1.715571036710964, 49.655132617801705], - [-1.715564102439639, 49.65519436836121], - [-1.71555179727194, 49.655249716275684], - [-1.715530624332355, 49.655313742345704], - [-1.715489586974421, 49.65542933186875], - [-1.715414558894032, 49.65562509579396], - [-1.715402884330536, 49.6556427256538], - [-1.715388083085744, 49.65565639560863], - [-1.715372240448655, 49.65566236683133], - [-1.715351608436699, 49.65566524317796], - [-1.715312147792104, 49.655666672968934], - [-1.715260598108026, 49.65566222189718], - [-1.715152477351462, 49.65563005324065], - [-1.71508526536511, 49.655598465577974], - [-1.715020937895638, 49.65555803148393], - [-1.71498123049807, 49.65552202435255], - [-1.714894808491883, 49.65542981362902], - [-1.714823166712625, 49.655365839066796], - [-1.71474497215027, 49.655310563942564], - [-1.714658157317202, 49.65526289744951], - [-1.714576855973218, 49.65523301340164], - [-1.714461502531446, 49.655200277069156], - [-1.71438049769835, 49.65518701922765], - [-1.714302012179009, 49.655179666014696], - [-1.714125088683956, 49.655184925691366], - [-1.714045455182909, 49.65518892341494], - [-1.713974032499748, 49.65520595513098], - [-1.713930000794875, 49.65521940775234], - [-1.713805483504456, 49.65526483536296], - [-1.713580541187305, 49.65536220340899], - [-1.713317541539384, 49.65547082699354], - [-1.713257574448967, 49.655490136501335], - [-1.713201716977964, 49.65549666483663], - [-1.713154040780268, 49.65549755066954], - [-1.713105457586083, 49.65549730680938], - [-1.713073893758862, 49.65551479298841], - [-1.713232659435066, 49.655672728402635], - [-1.713342741318447, 49.65578643159105], - [-1.713512475201262, 49.655959133893184], - [-1.713535733563725, 49.65598425370082], - [-1.713540888669226, 49.65600398162917], - [-1.713529570082037, 49.65603080774028], - [-1.713499411849716, 49.65604942497534], - [-1.7134923699166786, 49.656042385779635] - ] - }, - "length": 0.39624899055842877, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38550", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16887", - "bus2": "MVBus09389", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7134923699166786, 49.656042385779635], - [-1.713485327983641, 49.65603534658393], - [-1.713509722594212, 49.65601863092429], - [-1.713518356067376, 49.65600176855485], - [-1.713516623396457, 49.6559923394178], - [-1.71339757826996, 49.65586730012102], - [-1.713061830997298, 49.65552876662905], - [-1.713022374869907, 49.655547164491274], - [-1.712983219393751, 49.65556934713522], - [-1.712941021202669, 49.6555887989746], - [-1.712115718830422, 49.65593034753014], - [-1.711730719092233, 49.65608848126368], - [-1.711675834553732, 49.65611913028859], - [-1.711668127535593, 49.65613859631369], - [-1.711689943331042, 49.656157074266176], - [-1.711909209699889, 49.65638021466925], - [-1.711927197560893, 49.656420429795006], - [-1.712045895311028, 49.65654130047773], - [-1.712066626044882, 49.65665720397143], - [-1.712493720851563, 49.65708091694548], - [-1.712596763887438, 49.657184290066596], - [-1.712616120654328, 49.65720371345815], - [-1.712605257166425, 49.65721761988691], - [-1.712231384433458, 49.65739404176467], - [-1.712231384433458, 49.65739404176467] - ] - }, - "length": 0.36205172525827967, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09389", - "bus2": "MVLV12762", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.712231384433458, 49.65739404176467], - [-1.712231384433458, 49.65739404176467], - [-1.712192984930894, 49.6574121610954], - [-1.712159321627441, 49.65741875531577], - [-1.712145875642629, 49.657418288129165], - [-1.712130679684726, 49.65741375193847], - [-1.712115156745159, 49.65740509911443], - [-1.711907540458581, 49.657280918818046], - [-1.711916605385292, 49.65727052579175], - [-1.711725937688394, 49.65713753178156], - [-1.711583842498299, 49.65702903526348], - [-1.711572488149354, 49.657020368759845], - [-1.711558455636018, 49.657020712484226], - [-1.711543004997499, 49.65702168818157], - [-1.71152412661641, 49.6570241544492], - [-1.711495638379682, 49.657030152654194], - [-1.711471050112896, 49.657040606532085], - [-1.711427640974446, 49.65706314674895], - [-1.711326401126814, 49.65713576828944], - [-1.711178373342992, 49.657241591156435], - [-1.711129545502673, 49.65730718898692], - [-1.710964863616365, 49.65743007013069], - [-1.710917324898205, 49.657471785508555], - [-1.710902208297853, 49.65748604090393], - [-1.710900130160686, 49.657490921444534], - [-1.710903842733294, 49.65750662407541], - [-1.710943091855127, 49.65756513807867], - [-1.711091955908279, 49.65770985551921], - [-1.711172613908541, 49.657764933515004], - [-1.71127897930944, 49.657801489868255], - [-1.711395063912293, 49.657840247784556], - [-1.711606505041342, 49.65791019285251], - [-1.711681734703578, 49.65793702679832], - [-1.711779863054719, 49.65798096249784], - [-1.711870622953638, 49.6580343261077], - [-1.712056337251808, 49.6581450223316], - [-1.712245397356525, 49.65826661315606], - [-1.712324524894339, 49.658324718178164], - [-1.712350010711977, 49.65834770431951], - [-1.712353846470791, 49.65836041726462], - [-1.712354377241995, 49.65837599254943], - [-1.712347265709976, 49.65839319050284], - [-1.712216987090673, 49.65855367044792], - [-1.71219274716793, 49.65857305135032], - [-1.712191541104686, 49.65858890957691], - [-1.712193644176653, 49.65860649152026], - [-1.712198457245705, 49.65861825451696], - [-1.712223707211668, 49.65863391067126], - [-1.71235660303629, 49.6586886063232], - [-1.712366471624233, 49.65869286219185], - [-1.712372867915333, 49.658693340519584], - [-1.712387282718283, 49.658688038029595], - [-1.7123893567716906, 49.65869383173553] - ] - }, - "length": 0.33609166663042095, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40786", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12762", - "bus2": "MVBus11449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7123893567716906, 49.65869383173553], - [-1.712391430825098, 49.65869962544148], - [-1.712366463491168, 49.65870984935149], - [-1.712329867044583, 49.658722602724524], - [-1.712256396489699, 49.658696483631566], - [-1.712256396489699, 49.658696483631566] - ] - }, - "length": 0.011178451298859964, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39715", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11449", - "bus2": "MVLV04334", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.712256396489699, 49.658696483631566], - [-1.712256396489699, 49.658696483631566], - [-1.710321852037981, 49.658025946056945], - [-1.710282778109626, 49.658045355239715], - [-1.710266574479118, 49.65805377478471], - [-1.7102518017180843, 49.65805029431179] - ] - }, - "length": 0.1633930998192143, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32752", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04334", - "bus2": "MVBus12338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7102518017180843, 49.65805029431179], - [-1.710237028957051, 49.65804681383888], - [-1.710235630991269, 49.65803409122527], - [-1.710233210541606, 49.65798894880261], - [-1.709742877897143, 49.65781336148406], - [-1.709027236507815, 49.657513252788995], - [-1.709027337065763, 49.6575131235305], - [-1.709027337065763, 49.6575131235305] - ] - }, - "length": 0.10840662368023206, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47369", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus12338", - "bus2": "MVLV15648", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.709027337065763, 49.6575131235305], - [-1.709027337065763, 49.6575131235305], - [-1.709078447439429, 49.65744483349543], - [-1.70910413685254, 49.65743672632054], - [-1.709243868571788, 49.65728147298309], - [-1.70927004463494, 49.657178802084346], - [-1.709171592842444, 49.65691119515829], - [-1.709161114035063, 49.656835019230506], - [-1.709178943717271, 49.65678216730157], - [-1.709213577618374, 49.65673143308517], - [-1.709282230422975, 49.65668940781868], - [-1.709309897104711, 49.656687718058556], - [-1.709330561303463, 49.65668646034894], - [-1.7093355253425884, 49.65668006698276] - ] - }, - "length": 0.10369591850421968, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36355", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15648", - "bus2": "MVBus13302", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7093355253425884, 49.65668006698276], - [-1.709340489381714, 49.65667367361657], - [-1.709329753267087, 49.6566621445962], - [-1.709314685856429, 49.65664595843759], - [-1.70925708239761, 49.65667047439064], - [-1.7091817362423, 49.65671543026812], - [-1.709140181584584, 49.65676640494441], - [-1.709119175557376, 49.656831071376075], - [-1.709128857491687, 49.65691448596497], - [-1.709231752244283, 49.65718554132338], - [-1.709204094962056, 49.657270249726935], - [-1.709079928431331, 49.65741235692905], - [-1.709050308659278, 49.65742330230102], - [-1.708997902725297, 49.65748382115472], - [-1.708997902725297, 49.65748382115472] - ] - }, - "length": 0.10806723339486324, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44963", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13302", - "bus2": "MVLV11486", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.708997902725297, 49.65748382115472], - [-1.708997902725297, 49.65748382115472], - [-1.70899080914577, 49.65749200778738], - [-1.708641350771502, 49.65735922107077], - [-1.708317824143707, 49.657271455070045], - [-1.708232158722505, 49.65749326945597], - [-1.708031958614799, 49.65762181227458], - [-1.707995714311626, 49.657971564930534], - [-1.707765211274663, 49.658052551836846], - [-1.707832434285355, 49.6581942833001], - [-1.707891788280491, 49.65820681270175], - [-1.707911526188136, 49.65821098173353], - [-1.7079120407255814, 49.65821598234879] - ] - }, - "length": 0.181775916833722, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35158", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11486", - "bus2": "MVLV12761", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7079120407255814, 49.65821598234879], - [-1.707912555263027, 49.65822098296406], - [-1.707893846422766, 49.658226815163104], - [-1.70728082013845, 49.658417934068844], - [-1.706987688532517, 49.65839573781715], - [-1.706732680877934, 49.65836500960757], - [-1.706573219851772, 49.65854252791546], - [-1.706562769941867, 49.658554162777016], - [-1.7065522989454331, 49.658565793845284] - ] - }, - "length": 0.1149889768842972, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38115", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12761", - "bus2": "MVLV08515", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7065522989454331, 49.658565793845284], - [-1.706541827948999, 49.65857742491355], - [-1.706531335866019, 49.658589052188546], - [-1.706465928106193, 49.65866156864659], - [-1.706357742718672, 49.65844381625389], - [-1.706249486789871, 49.65787307454641], - [-1.706179981081413, 49.65731809616411], - [-1.705463418519071, 49.65740881212725], - [-1.705422985876509, 49.65730576926649], - [-1.705572328002484, 49.65728345028136], - [-1.705621360881812, 49.657255634576565], - [-1.705643949030106, 49.657226931042544], - [-1.705636377162732, 49.657185773595714], - [-1.705617410761321, 49.65715761340412], - [-1.705003391939472, 49.656878257686316], - [-1.704779965956333, 49.65682661494423], - [-1.704621314587347, 49.656820432037435], - [-1.704585739342022, 49.656339910157776], - [-1.704544587394893, 49.65632874945311], - [-1.704525433983989, 49.65632355320998], - [-1.704521667859076, 49.65632654314429] - ] - }, - "length": 0.3950658324564448, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08515", - "bus2": "MVLV08514", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.704521667859076, 49.65632654314429], - [-1.704517901734163, 49.656329533078605], - [-1.704529522185396, 49.65634070022345], - [-1.704551489265828, 49.65636181811624], - [-1.704600877122317, 49.65709309298921], - [-1.70448739715825, 49.657097055026256], - [-1.704466676196257, 49.657097774245564], - [-1.7044656244128835, 49.657095165588956] - ] - }, - "length": 0.0954492734387459, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08514", - "bus2": "MVLV08517", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7044656244128835, 49.657095165588956], - [-1.70446457262951, 49.65709255693235], - [-1.704483189309966, 49.65708661143169], - [-1.704537865828387, 49.65706917381683], - [-1.704527658725012, 49.65679488388282], - [-1.704336196685355, 49.65679434696009], - [-1.701970101623435, 49.65681465555627], - [-1.701869445153427, 49.656827134535476], - [-1.701849061214368, 49.65682965853941], - [-1.7018474404969435, 49.65682712281345] - ] - }, - "length": 0.22999332122252053, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08517", - "bus2": "MVLV11487", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7018474404969435, 49.65682712281345], - [-1.701845819779519, 49.6568245870875], - [-1.701862948465297, 49.65681699209384], - [-1.701866146588843, 49.656815572417344], - [-1.70151764275735, 49.65681149732632], - [-1.701052135176404, 49.656834914108856], - [-1.700747383895348, 49.65687343948882], - [-1.700678846977321, 49.65671554402016], - [-1.700584261442887, 49.65664307418332], - [-1.700570842071872, 49.656632794038615], - [-1.7005694121374195, 49.65663345325234] - ] - }, - "length": 0.11338442666594911, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39714", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11487", - "bus2": "MVLV15647", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7005694121374195, 49.65663345325234], - [-1.700567982202967, 49.656634112466065], - [-1.700578541704473, 49.65664571103876], - [-1.700633692345302, 49.6567063051086], - [-1.700642458227036, 49.656812258665404], - [-1.700306136582797, 49.65692212180891], - [-1.699922879766692, 49.65708494217042], - [-1.699587068199308, 49.65714653256768], - [-1.699567092677405, 49.65715019358661], - [-1.699553504846526, 49.65715834002786] - ] - }, - "length": 0.10807935641066367, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43708", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15647", - "bus2": "MVLV08518", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.699553504846526, 49.65715834002786], - [-1.699539917015647, 49.65716648646911], - [-1.699532716875093, 49.657179118335385], - [-1.699439304912264, 49.6573431103775], - [-1.699263351694736, 49.65739605663836], - [-1.699336463270182, 49.65745834504667], - [-1.699268465181139, 49.657458014960646], - [-1.69920943625858, 49.65746546981428], - [-1.699113182504093, 49.657408485634605], - [-1.698304527016932, 49.65755999876808], - [-1.698062893911774, 49.6575567010572], - [-1.697461583041591, 49.657565011758095], - [-1.697218490084788, 49.656871994905885], - [-1.697744693442282, 49.65672671709386], - [-1.697786406850478, 49.65682882008235], - [-1.697797954859862, 49.656833839394665], - [-1.69781519840905, 49.6568413395046], - [-1.697825356573214, 49.65683842436038] - ] - }, - "length": 0.3185546944113785, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39229", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08518", - "bus2": "MVLV12764", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.697825356573214, 49.65683842436038], - [-1.697835514737378, 49.65683550921616], - [-1.697838602035088, 49.65682218732805], - [-1.697840623409652, 49.65681342419931], - [-1.697778838018975, 49.656686811786194], - [-1.697146739811798, 49.65684296795896], - [-1.69739248718273, 49.65756831420456], - [-1.696496172131778, 49.65761570120611], - [-1.696265553264628, 49.65763343469004], - [-1.695681449886193, 49.65758803548188], - [-1.695669456761429, 49.65762239072309], - [-1.695665022605017, 49.65763480422198], - [-1.6956447814282445, 49.65763502482898] - ] - }, - "length": 0.2782026664562803, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39585", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12764", - "bus2": "MVBus20890", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6956447814282445, 49.65763502482898], - [-1.695624540251472, 49.657635245435976], - [-1.69561746988984, 49.65762308953775], - [-1.695596591587301, 49.657584524501154], - [-1.694976984193771, 49.65752805771521], - [-1.694881325517064, 49.65753685714968], - [-1.694881325517064, 49.65753685714968] - ] - }, - "length": 0.058144213787439426, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38558", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20890", - "bus2": "MVBus20891", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.694881325517064, 49.65753685714968], - [-1.694881325517064, 49.65753685714968], - [-1.694870805593646, 49.657538529645755], - [-1.694867677118124, 49.657541007914595], - [-1.694864664470505, 49.6575433744138], - [-1.694863785438515, 49.657545570887244], - [-1.694864353970346, 49.65754890611801], - [-1.694865902262429, 49.65755131844428], - [-1.694869182876066, 49.657554266536636], - [-1.694872469706283, 49.65755554182855], - [-1.694900047651829, 49.65756428058578], - [-1.69495085752137, 49.657573045378875], - [-1.69497044900775, 49.657574856348404], - [-1.694972621131005, 49.65757359695261], - [-1.694972633356441, 49.6575718250351], - [-1.694970869752442, 49.657570193235706], - [-1.694950269519778, 49.65756263374962], - [-1.694811584170032, 49.6574286644253], - [-1.694754658072436, 49.65738985285587], - [-1.694675833199034, 49.65732705985422], - [-1.694653623707265, 49.657307207334895], - [-1.694653623707265, 49.657307207334895] - ] - }, - "length": 0.0485068386520877, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37274", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20891", - "bus2": "MVLV09710", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.694653623707265, 49.657307207334895], - [-1.694653623707265, 49.657307207334895], - [-1.694648566234924, 49.657308239155654], - [-1.694616194921495, 49.657292834828844], - [-1.694596778440511, 49.65726626179332], - [-1.694512415501688, 49.65720139614901], - [-1.694445549994414, 49.65717316705252], - [-1.694191078550513, 49.65711696436926], - [-1.694134447528161, 49.6571158569682], - [-1.69406229696653, 49.65711800936961], - [-1.693954598809285, 49.6571400864365], - [-1.693845082201221, 49.65717595544083], - [-1.69371451513302, 49.6572215181459], - [-1.693658901335396, 49.65723923375691], - [-1.693418375417, 49.657295635655856], - [-1.693343187764655, 49.65731071200743], - [-1.693264776748028, 49.65731970890518], - [-1.693142450457068, 49.657327246203685], - [-1.693015767034796, 49.65733100782697], - [-1.692887212891164, 49.657323546138336], - [-1.692811884510095, 49.65731494078992], - [-1.692721682262498, 49.65728324371582], - [-1.692711097980776, 49.65728077265942], - [-1.692711156367779, 49.657279583714285], - [-1.692735809065025, 49.657273753742984], - [-1.692739415519118, 49.65727153837497], - [-1.692740306193944, 49.657266859621686], - [-1.692772970921632, 49.65725584390002], - [-1.693065527594914, 49.657190012477756], - [-1.693106803183528, 49.657178934615764], - [-1.693158118507119, 49.65716379041707], - [-1.693240604745891, 49.657135908596906], - [-1.693368485511657, 49.6570808949317], - [-1.693409573087288, 49.657057629485564], - [-1.693405926102143, 49.65703585441595], - [-1.693390492821437, 49.65701024557583], - [-1.693365773667793, 49.656988426172354], - [-1.693308320628536, 49.656955017980884], - [-1.693248146998977, 49.65692591785079], - [-1.693207826064977, 49.656910346367596], - [-1.693125303768984, 49.65683596744389], - [-1.693128378483538, 49.65682842827083], - [-1.693130756861769, 49.65682259388035], - [-1.693135790036104, 49.656818451549476], - [-1.693156295865918, 49.656820969721146], - [-1.6931544029856775, 49.65682690034362] - ] - }, - "length": 0.2472968140411514, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42413", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09710", - "bus2": "MVBus21726", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6931544029856775, 49.65682690034362], - [-1.693152510105437, 49.656832830966096], - [-1.693140690954655, 49.65683523901614], - [-1.6931427118128, 49.65683942511384], - [-1.693151481587454, 49.65684750491125], - [-1.693209476595427, 49.65690091227353], - [-1.693252669441853, 49.65691759306439], - [-1.693316316485088, 49.656947701527976], - [-1.693373238151906, 49.656981046487076], - [-1.693400287616367, 49.657004307973416], - [-1.693417151422491, 49.65703119104043], - [-1.693418858866021, 49.657062598676404], - [-1.693374304427203, 49.65708774214384], - [-1.693298166698752, 49.65712023250288], - [-1.693244050883247, 49.65714217841551], - [-1.69316248707433, 49.657169813689386], - [-1.693107868783109, 49.65718522978719], - [-1.692888546978312, 49.65723633810071], - [-1.692779778709486, 49.65726048203007], - [-1.692698423186007, 49.65727621305517], - [-1.692654583441833, 49.657281315287605], - [-1.692542193906826, 49.657285058904975], - [-1.692484466808352, 49.65728620836523], - [-1.692424940469563, 49.657286851204006], - [-1.692292977895417, 49.65728550935727], - [-1.692259680432823, 49.65728221209627], - [-1.692186219099461, 49.657281979071804], - [-1.692110428824001, 49.65727856831186], - [-1.692049488588526, 49.65727656932213], - [-1.691962037720081, 49.65727547120089], - [-1.691854401241619, 49.65727450571742], - [-1.69169634795539, 49.65727709853729], - [-1.691577772454402, 49.65727863729285], - [-1.691391974011256, 49.657284563616756], - [-1.691212884622486, 49.65729212768768], - [-1.69108212142755, 49.65730193115109], - [-1.690998013026594, 49.65731000121259], - [-1.690813290305129, 49.657319550737675], - [-1.690697196909293, 49.65732322711233], - [-1.69051864108191, 49.657326150283794], - [-1.690323406593425, 49.65732380134952], - [-1.690219763089159, 49.65731972499459], - [-1.690038602812441, 49.65730440762694], - [-1.689973494217544, 49.65730382327296], - [-1.689957419253372, 49.65730619281971], - [-1.689938164927739, 49.6573130295151], - [-1.689928953469567, 49.65731723884458], - [-1.689922508665218, 49.65732525878499], - [-1.689926846029425, 49.65734439413178], - [-1.6899144761105565, 49.65734579505471] - ] - }, - "length": 0.29618321913091505, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43082", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus21726", - "bus2": "MVBus22602", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6899144761105565, 49.65734579505471], - [-1.689902106191688, 49.65734719597764], - [-1.689893952537334, 49.65733253099631], - [-1.689883517880255, 49.657327042259574], - [-1.689866566150205, 49.65732760652712], - [-1.689851832710317, 49.65732714375777], - [-1.689837756416026, 49.657320094654246], - [-1.689811194338158, 49.65732472864215], - [-1.689770822990218, 49.65734147643931], - [-1.68974781289917, 49.65735056931736], - [-1.689639749072734, 49.657403291763586], - [-1.689584894501837, 49.65743133942712], - [-1.689495601152914, 49.657486359498435], - [-1.689369875436402, 49.657567141318275], - [-1.689210031692182, 49.65767072116982], - [-1.689133511386455, 49.65772489319007], - [-1.688932299690713, 49.657873138758184], - [-1.688824045288466, 49.65796416534145], - [-1.688729443121585, 49.658049333075624], - [-1.688672923286662, 49.65809700313144], - [-1.688567768981974, 49.6581783583668], - [-1.688447336562443, 49.65826937611586], - [-1.688292981370783, 49.658385675994005], - [-1.688230391886822, 49.65843771123023], - [-1.688178301282593, 49.65846026177342], - [-1.688100506152315, 49.65850656213375], - [-1.68805498079456, 49.65852963155985], - [-1.68801859926527, 49.65854728007973], - [-1.687985278906541, 49.65856282143969], - [-1.68797193962116, 49.65856756360029], - [-1.687904903945472, 49.65859592573689], - [-1.687836406772483, 49.658618761177216], - [-1.687773406152993, 49.65864173744049], - [-1.687707055307805, 49.65866421364127], - [-1.687632341914936, 49.658685340380906], - [-1.687597756271063, 49.658693981598304], - [-1.6875535692144, 49.65870295120399], - [-1.687513904909563, 49.65871218398774], - [-1.687477338221695, 49.658720998979575], - [-1.687435773069277, 49.658727911989054], - [-1.687385894109799, 49.65873725072297], - [-1.687284757646732, 49.658750749410686], - [-1.687245627175155, 49.65875235679245], - [-1.687226644410474, 49.65875176526927], - [-1.687185800600312, 49.65874974274826], - [-1.687137085084551, 49.65874398943454], - [-1.687033931127971, 49.65873175588405], - [-1.687000916584208, 49.65872643345839], - [-1.687000916584208, 49.65872643345839] - ] - }, - "length": 0.27575724267606383, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47802", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22602", - "bus2": "MVBus22603", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.687000916584208, 49.65872643345839], - [-1.687000916584208, 49.65872643345839], - [-1.686970742780532, 49.658721825850186], - [-1.686864833669288, 49.65871276818489], - [-1.686750491666597, 49.65869620350682], - [-1.686520660235055, 49.65866625932611], - [-1.6862083366353, 49.65862557849003], - [-1.685909066963389, 49.6585867108749], - [-1.685685278281926, 49.6585573195575], - [-1.685476654697023, 49.65853280104184], - [-1.685442421346384, 49.65852870571752], - [-1.685112527216627, 49.65849354312171], - [-1.68488785090189, 49.65846447661544], - [-1.684736289368716, 49.658441063276726], - [-1.684603220068488, 49.658427124465256], - [-1.684470644531766, 49.658411190775794], - [-1.684344595507814, 49.65839826826076], - [-1.684220756570289, 49.658380524186136], - [-1.684094066483814, 49.65836456531888], - [-1.683971924911957, 49.65835007376753], - [-1.683761701283773, 49.65832087554532], - [-1.683691553446464, 49.65831032985342], - [-1.683572945631358, 49.65829427269268], - [-1.683356190893484, 49.65826673860415], - [-1.683221700182995, 49.65824951836259], - [-1.683098453486965, 49.658232598763526], - [-1.682968009314595, 49.65821469524507], - [-1.682850931220949, 49.65819888330731], - [-1.682764141959558, 49.65818897097931], - [-1.6826586781223, 49.65817569546537], - [-1.682623811273247, 49.6581705862859], - [-1.682558714169335, 49.65816435932101], - [-1.682453680575476, 49.65814336288646], - [-1.682345827490233, 49.65812297260189], - [-1.682233236042189, 49.658107136908164], - [-1.682123664688506, 49.6580979810145], - [-1.682014125147201, 49.65808272714925], - [-1.681904761130945, 49.658071280114264], - [-1.681797002800972, 49.65805876350617], - [-1.681580726631921, 49.658023917601746], - [-1.681473886690803, 49.65801145113601], - [-1.68136716295708, 49.65799711930074], - [-1.68126114165059, 49.657983438468484], - [-1.681110470795186, 49.65796302152122], - [-1.681041500542145, 49.65795404484363], - [-1.68093167446423, 49.65794006745609], - [-1.680756367723196, 49.65791674545396], - [-1.680650300094999, 49.657902472140094], - [-1.680544953383338, 49.65789224832794], - [-1.68044501573429, 49.657874552005886], - [-1.68034703628985, 49.65786518043657], - [-1.680244269316751, 49.65785148058563], - [-1.680161831826119, 49.65783718652244], - [-1.680092302984831, 49.65782779623007], - [-1.680008059258093, 49.65781712301027], - [-1.679921209671613, 49.65780484569685], - [-1.679752365909624, 49.657782314814504], - [-1.67968053626866, 49.65777343231517], - [-1.679465260113473, 49.657744736240076], - [-1.679356242520934, 49.65773116224051], - [-1.679204681506407, 49.65771085345038], - [-1.679075473908005, 49.65768786006316], - [-1.679026837248203, 49.65768184914107], - [-1.67897866340961, 49.65767344885779], - [-1.678926035329053, 49.65766477377808], - [-1.678883054155872, 49.65765933940972], - [-1.678846191645214, 49.65765192143305], - [-1.678785217146016, 49.657641742870545], - [-1.678752083502674, 49.657632600450846], - [-1.678752083502674, 49.657632600450846] - ] - }, - "length": 0.6082420532559634, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45639", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22603", - "bus2": "MVBus22604", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.678752083502674, 49.657632600450846], - [-1.678752083502674, 49.657632600450846], - [-1.678655771591739, 49.657619943933625], - [-1.67854619816165, 49.65760546145833], - [-1.678443407774987, 49.65759479130411], - [-1.678341877746072, 49.65757989779403], - [-1.678140109130628, 49.657554545845564], - [-1.678041590760031, 49.6575425375894], - [-1.67783766814151, 49.6575162135232], - [-1.677539407645088, 49.65747819134837], - [-1.677336141016467, 49.65745139506758], - [-1.67707260443018, 49.65741790267715], - [-1.676933881645884, 49.65739929630037], - [-1.676827859548407, 49.65738574657], - [-1.676619652239228, 49.657357764183985], - [-1.676530441792488, 49.6573467947611], - [-1.676437178503299, 49.6573343141322], - [-1.676244579576855, 49.6573080523875], - [-1.676050342062734, 49.65728455138865], - [-1.675954139358735, 49.65726991981983], - [-1.675892723527981, 49.65726327047057], - [-1.675856254239052, 49.65725714244844], - [-1.67569549060223, 49.65724570429279], - [-1.675651975270466, 49.65724385646937], - [-1.675641965335153, 49.6572426867701], - [-1.675631965147522, 49.65723583359685], - [-1.675569391305867, 49.657209367441276], - [-1.675398407174624, 49.65718528332874], - [-1.67531716495159, 49.6571754067692], - [-1.675186271725575, 49.65715594555002], - [-1.675092779518475, 49.65714582769529], - [-1.674930244527375, 49.657125428348955], - [-1.674868614969784, 49.65711887563815], - [-1.674804747012458, 49.6571097533888], - [-1.674692561111355, 49.657094958714595], - [-1.674600142995935, 49.65708546130469], - [-1.674486934848108, 49.65707070034376], - [-1.674416818339161, 49.65705979780329], - [-1.674329314720484, 49.65704814991709], - [-1.674269819481414, 49.65703756051881], - [-1.674195246251969, 49.65702687757574], - [-1.674086000254391, 49.65701881003487], - [-1.673966304130941, 49.657014011399724], - [-1.673934457361715, 49.65701363757407], - [-1.673928516287633, 49.65701154152207], - [-1.673927343536305, 49.65700543865399], - [-1.673924391873185, 49.65700014113187], - [-1.673922973085514, 49.656996896986335], - [-1.673920117920933, 49.65699564280755], - [-1.673893732207176, 49.65699408075931], - [-1.673893732207176, 49.65699408075931] - ] - }, - "length": 0.35978615142983944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38007", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22604", - "bus2": "MVLV01706", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.673893732207176, 49.65699408075931], - [-1.673893732207176, 49.65699408075931], - [-1.673707310915567, 49.65697781693429], - [-1.673406236814339, 49.65695676628434], - [-1.673209625311018, 49.6569555239853], - [-1.672890090963208, 49.65695318556568], - [-1.672307056857197, 49.65696001158772], - [-1.670580370829152, 49.65698705886373], - [-1.67057193383152, 49.656677104031814], - [-1.670680684591789, 49.65660224611452], - [-1.670679585514564, 49.656588794073365], - [-1.6706848356208555, 49.656587653461884] - ] - }, - "length": 0.2869541126249135, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36813", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01706", - "bus2": "MVBus26721", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6706848356208555, 49.656587653461884], - [-1.670690085727147, 49.656586512850396], - [-1.67070169883703, 49.6565976832098], - [-1.670635519700989, 49.656687766511745], - [-1.67064106690749, 49.65696571458043], - [-1.672937131365823, 49.65694244508355], - [-1.673393205346661, 49.65694342208668], - [-1.673714225148667, 49.656963056106264], - [-1.674125972813084, 49.65699482395728], - [-1.674275818087714, 49.656969091911975], - [-1.674277152501746, 49.65696686252891], - [-1.674277152501746, 49.65696686252891] - ] - }, - "length": 0.30693215195631945, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41423", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus26721", - "bus2": "MVLV01698", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.674277152501746, 49.65696686252891], - [-1.674277152501746, 49.65696686252891], - [-1.675071025881376, 49.6556395065306], - [-1.674725960202185, 49.655558698636405], - [-1.674487217505072, 49.6555903649928], - [-1.674286160954233, 49.65589538000418], - [-1.674089395171112, 49.65604986454216], - [-1.673979041567607, 49.65596695458006], - [-1.673965482110437, 49.655956757270765], - [-1.67396768671466, 49.655955025085554] - ] - }, - "length": 0.2753332481217924, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32648", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01698", - "bus2": "MVLV10776", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.67396768671466, 49.655955025085554], - [-1.673969891318883, 49.65595329290034], - [-1.67398785998382, 49.65596002583815], - [-1.674042081236127, 49.655980358059864], - [-1.674226487934641, 49.655844313039566], - [-1.674444469242429, 49.655508999198744], - [-1.674715024543798, 49.65547623289931], - [-1.675128102066041, 49.6555744962176], - [-1.675176000480159, 49.65549899947378], - [-1.675255547689846, 49.65550814095187], - [-1.675275983450737, 49.65551049353201], - [-1.6752788266700036, 49.65550693267713] - ] - }, - "length": 0.13470701833430523, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47234", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10776", - "bus2": "MVLV09700", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6752788266700036, 49.65550693267713], - [-1.67528166988927, 49.65550337182224], - [-1.67526690675527, 49.655493897992116], - [-1.675208568631158, 49.65545645555238], - [-1.676192776458766, 49.65384476857928], - [-1.676286536254999, 49.65377038451844], - [-1.67637377763908, 49.653734955738095], - [-1.677036721521781, 49.65400466253389], - [-1.677494415781153, 49.654173412998034], - [-1.677347146971025, 49.65465303404376], - [-1.677343089919127, 49.65466624356853], - [-1.6773448547737, 49.65466658066605] - ] - }, - "length": 0.36876498865043383, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35242", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09700", - "bus2": "MVLV09696", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6773448547737, 49.65466658066605], - [-1.677346619628273, 49.65466691776358], - [-1.67735420638769, 49.6546543824335], - [-1.677628463706782, 49.6542011840085], - [-1.678113900867778, 49.654302342084655], - [-1.678667036130465, 49.654332711132014], - [-1.679010455358163, 49.65430911684581], - [-1.678880187127391, 49.654799883819], - [-1.678770591808817, 49.65490092737212], - [-1.678634464207953, 49.65523611346554], - [-1.678097528581897, 49.655268926155365], - [-1.678076864895278, 49.65527018750508], - [-1.6780747779003309, 49.655274905822935] - ] - }, - "length": 0.3056172779538304, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40080", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09696", - "bus2": "MVLV01697", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6780747779003309, 49.655274905822935], - [-1.678072690905384, 49.65527962414078], - [-1.678089181314788, 49.65528780839687], - [-1.678144418098371, 49.6553152181978], - [-1.67866190791389, 49.65530000143054], - [-1.678875756206534, 49.655404254920114], - [-1.678899802351542, 49.65540039026296], - [-1.6789199507355, 49.65539715856858], - [-1.678922603714337, 49.65539083429302] - ] - }, - "length": 0.06652125023066995, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43579", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01697", - "bus2": "MVLV10768", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.678922603714337, 49.65539083429302], - [-1.678925256693174, 49.65538451001746], - [-1.678910414981441, 49.655375102131124], - [-1.678736703536458, 49.65526499317018], - [-1.678829534214599, 49.655010547963066], - [-1.678973702731857, 49.65484076098087], - [-1.679144308889874, 49.65428376571825], - [-1.680034460154386, 49.65416198357893], - [-1.680088848218442, 49.65482375205744], - [-1.680622201035775, 49.65473798528497], - [-1.680629997114304, 49.65473672820811], - [-1.680650220947472, 49.654729537058294], - [-1.6806498367623357, 49.654726771172655] - ] - }, - "length": 0.3141553288143411, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44845", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10768", - "bus2": "MVBus32481", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6806498367623357, 49.654726771172655], - [-1.680649452577199, 49.654724005287015], - [-1.680620082467265, 49.654724108466446], - [-1.680617720428734, 49.654724366761755], - [-1.680198212687284, 49.65477043741846], - [-1.680146921626781, 49.65409595873909], - [-1.679058120325391, 49.65423091938446], - [-1.678679042911614, 49.654259357440885], - [-1.678125611370777, 49.654225392366186], - [-1.677614535697321, 49.65411612883299], - [-1.677087691774939, 49.653949763364736], - [-1.676459009396345, 49.65365816574056], - [-1.676468589659444, 49.65355518204723], - [-1.676470873384789, 49.653553577574854], - [-1.676470873384789, 49.653553577574854] - ] - }, - "length": 0.4045281743946701, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35243", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32481", - "bus2": "MVLV13410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.676470873384789, 49.653553577574854], - [-1.676470873384789, 49.653553577574854], - [-1.676424765437117, 49.653482511979], - [-1.676521421331345, 49.65344053000349], - [-1.676858481206689, 49.65325319473666], - [-1.678152565183635, 49.65269022736848], - [-1.678544385244714, 49.65250613193956], - [-1.679098718928381, 49.65214385975146], - [-1.679151650142219, 49.652057816640855], - [-1.679181001130015, 49.651886589081585], - [-1.679277799252331, 49.65181342328669], - [-1.679907774876601, 49.65152996245496], - [-1.679918713866793, 49.65154223352049], - [-1.679931285366726, 49.65155465719737], - [-1.679931285366726, 49.65155465719737] - ] - }, - "length": 0.3519938016465228, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV16887_production", - "bus": "MVLV16887", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV16887_consumption", - "bus": "MVLV16887", - "phases": "abc", - "powers": [ - [4198.57778641622, 1380.0057827520677], - [4198.57778641622, 1380.0057827520677], - [4198.57778641622, 1380.0057827520677] - ] - }, - { - "id": "MVLV12762_production", - "bus": "MVLV12762", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV12762_consumption", - "bus": "MVLV12762", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV04334_production", - "bus": "MVLV04334", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV04334_consumption", - "bus": "MVLV04334", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV15648_production", - "bus": "MVLV15648", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV15648_consumption", - "bus": "MVLV15648", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV11486_production", - "bus": "MVLV11486", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV11486_consumption", - "bus": "MVLV11486", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV12761_production", - "bus": "MVLV12761", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV12761_consumption", - "bus": "MVLV12761", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV08515_production", - "bus": "MVLV08515", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV08515_consumption", - "bus": "MVLV08515", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV08514_production", - "bus": "MVLV08514", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV08514_consumption", - "bus": "MVLV08514", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV08517_production", - "bus": "MVLV08517", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV08517_consumption", - "bus": "MVLV08517", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV11487_production", - "bus": "MVLV11487", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV11487_consumption", - "bus": "MVLV11487", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV15647_production", - "bus": "MVLV15647", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV15647_consumption", - "bus": "MVLV15647", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV08518_production", - "bus": "MVLV08518", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV08518_consumption", - "bus": "MVLV08518", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV12764_production", - "bus": "MVLV12764", - "phases": "abc", - "powers": [ - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0], - [-1618.3754189073336, 0.0] - ] - }, - { - "id": "MVLV12764_consumption", - "bus": "MVLV12764", - "phases": "abc", - "powers": [ - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166], - [6834.3234944043215, 2246.333502261166] - ] - }, - { - "id": "MVLV09710_production", - "bus": "MVLV09710", - "phases": "abc", - "powers": [ - [-1939.3341703008675, 0.0], - [-1939.3341703008675, 0.0], - [-1939.3341703008675, 0.0] - ] - }, - { - "id": "MVLV09710_consumption", - "bus": "MVLV09710", - "phases": "abc", - "powers": [ - [6460.4361326632325, 2123.4426693296105], - [6460.4361326632325, 2123.4426693296105], - [6460.4361326632325, 2123.4426693296105] - ] - }, - { - "id": "MVLV01706_production", - "bus": "MVLV01706", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV01706_consumption", - "bus": "MVLV01706", - "phases": "abc", - "powers": [ - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137] - ] - }, - { - "id": "MVLV01698_production", - "bus": "MVLV01698", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV01698_consumption", - "bus": "MVLV01698", - "phases": "abc", - "powers": [ - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137] - ] - }, - { - "id": "MVLV10776_production", - "bus": "MVLV10776", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV10776_consumption", - "bus": "MVLV10776", - "phases": "abc", - "powers": [ - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137] - ] - }, - { - "id": "MVLV09700_production", - "bus": "MVLV09700", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09700_consumption", - "bus": "MVLV09700", - "phases": "abc", - "powers": [ - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137] - ] - }, - { - "id": "MVLV09696_production", - "bus": "MVLV09696", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV09696_consumption", - "bus": "MVLV09696", - "phases": "abc", - "powers": [ - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137] - ] - }, - { - "id": "MVLV01697_production", - "bus": "MVLV01697", - "phases": "abc", - "powers": [ - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0], - [-213.24721377912866, 0.0] - ] - }, - { - "id": "MVLV01697_consumption", - "bus": "MVLV01697", - "phases": "abc", - "powers": [ - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137], - [7384.143658907343, 2427.050651040137] - ] - }, - { - "id": "MVLV10768_production", - "bus": "MVLV10768", - "phases": "abc", - "powers": [ - [-1939.3341703008675, 0.0], - [-1939.3341703008675, 0.0], - [-1939.3341703008675, 0.0] - ] - }, - { - "id": "MVLV10768_consumption", - "bus": "MVLV10768", - "phases": "abc", - "powers": [ - [6460.4361326632325, 2123.4426693296105], - [6460.4361326632325, 2123.4426693296105], - [6460.4361326632325, 2123.4426693296105] - ] - }, - { - "id": "MVLV13410_production", - "bus": "MVLV13410", - "phases": "abc", - "powers": [ - [-1939.3341703008675, 0.0], - [-1939.3341703008675, 0.0], - [-1939.3341703008675, 0.0] - ] - }, - { - "id": "MVLV13410_consumption", - "bus": "MVLV13410", - "phases": "abc", - "powers": [ - [6460.4361326632325, 2123.4426693296105], - [6460.4361326632325, 2123.4426693296105], - [6460.4361326632325, 2123.4426693296105] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder217_winter.json b/data/MVFeeder217_winter.json deleted file mode 100644 index 007443e4..00000000 --- a/data/MVFeeder217_winter.json +++ /dev/null @@ -1,2699 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.751702612915616, 49.653801085335864] - } - }, - { - "id": "HVMV15", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.751702612915616, 49.653801085335864] - } - }, - { - "id": "MVBus01881", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.75134861697713, 49.6546228164401] - } - }, - { - "id": "MVBus01882", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.740479446878883, 49.65987962629042] - } - }, - { - "id": "MVBus01883", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.733888052209557, 49.656314900145844] - } - }, - { - "id": "MVBus01884", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.728312906960772, 49.656559479695645] - } - }, - { - "id": "MVBus01885", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.727739462930876, 49.65677285538332] - } - }, - { - "id": "MVBus01886", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.727382824582085, 49.656858137125596] - } - }, - { - "id": "MVBus01887", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.723625804781101, 49.65673682886024] - } - }, - { - "id": "MVBus01888", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.715447633958364, 49.654538430245495] - } - }, - { - "id": "MVLV16887", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7134923699166786, 49.656042385779635] - } - }, - { - "id": "MVBus09389", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.712231384433458, 49.65739404176467] - } - }, - { - "id": "MVLV12762", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7123893567716906, 49.65869383173553] - } - }, - { - "id": "MVBus11449", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.712256396489699, 49.658696483631566] - } - }, - { - "id": "MVLV04334", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7102518017180843, 49.65805029431179] - } - }, - { - "id": "MVBus12338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.709027337065763, 49.6575131235305] - } - }, - { - "id": "MVLV15648", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7093355253425884, 49.65668006698276] - } - }, - { - "id": "MVBus13302", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.708997902725297, 49.65748382115472] - } - }, - { - "id": "MVLV11486", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7079120407255814, 49.65821598234879] - } - }, - { - "id": "MVLV12761", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7065522989454331, 49.658565793845284] - } - }, - { - "id": "MVLV08515", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.704521667859076, 49.65632654314429] - } - }, - { - "id": "MVLV08514", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7044656244128835, 49.657095165588956] - } - }, - { - "id": "MVLV08517", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7018474404969435, 49.65682712281345] - } - }, - { - "id": "MVLV11487", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.7005694121374195, 49.65663345325234] - } - }, - { - "id": "MVLV15647", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.699553504846526, 49.65715834002786] - } - }, - { - "id": "MVLV08518", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.697825356573214, 49.65683842436038] - } - }, - { - "id": "MVLV12764", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6956447814282445, 49.65763502482898] - } - }, - { - "id": "MVBus20890", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.694881325517064, 49.65753685714968] - } - }, - { - "id": "MVBus20891", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.694653623707265, 49.657307207334895] - } - }, - { - "id": "MVLV09710", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6931544029856775, 49.65682690034362] - } - }, - { - "id": "MVBus21726", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6899144761105565, 49.65734579505471] - } - }, - { - "id": "MVBus22602", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.687000916584208, 49.65872643345839] - } - }, - { - "id": "MVBus22603", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.678752083502674, 49.657632600450846] - } - }, - { - "id": "MVBus22604", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.673893732207176, 49.65699408075931] - } - }, - { - "id": "MVLV01706", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6706848356208555, 49.656587653461884] - } - }, - { - "id": "MVBus26721", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.674277152501746, 49.65696686252891] - } - }, - { - "id": "MVLV01698", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.67396768671466, 49.655955025085554] - } - }, - { - "id": "MVLV10776", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6752788266700036, 49.65550693267713] - } - }, - { - "id": "MVLV09700", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6773448547737, 49.65466658066605] - } - }, - { - "id": "MVLV09696", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6780747779003309, 49.655274905822935] - } - }, - { - "id": "MVLV01697", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.678922603714337, 49.65539083429302] - } - }, - { - "id": "MVLV10768", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.6806498367623357, 49.654726771172655] - } - }, - { - "id": "MVBus32481", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.676470873384789, 49.653553577574854] - } - }, - { - "id": "MVLV13410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.679931285366726, 49.65155465719737] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV15", - "geometry": { - "type": "Point", - "coordinates": [-1.751702612915616, 49.653801085335864] - } - }, - { - "id": "MVBranch34116", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV15", - "bus2": "MVBus01881", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.751702612915616, 49.653801085335864], - [-1.751748734460548, 49.65384507495183], - [-1.751748734460548, 49.65384507495183], - [-1.751790150159045, 49.65387028475741], - [-1.751810276327588, 49.653882545108324], - [-1.751814757753236, 49.65389524435384], - [-1.751729575993817, 49.65395420280918], - [-1.751750236824847, 49.65398470050129], - [-1.751694134911765, 49.65402853028565], - [-1.751692487066552, 49.65403907159969], - [-1.751699941927443, 49.654046877174686], - [-1.751709491778441, 49.654048334955746], - [-1.751726443067687, 49.654059695439734], - [-1.75173645898574, 49.654076290348044], - [-1.751739217834648, 49.6540951449433], - [-1.75173215522583, 49.65411554554525], - [-1.751722757422452, 49.65412997291849], - [-1.751723830062776, 49.654135575152736], - [-1.751742356405606, 49.654165191753165], - [-1.751764818899627, 49.654189828179526], - [-1.751764648988911, 49.65419548140606], - [-1.751690469929741, 49.65426935566007], - [-1.751501935380691, 49.65445071012209], - [-1.751420572147751, 49.65453570827406], - [-1.75134861697713, 49.6546228164401], - [-1.75134861697713, 49.6546228164401] - ] - }, - "length": 0.1036641105058596, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42102", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01881", - "bus2": "MVBus01882", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.75134861697713, 49.6546228164401], - [-1.75134861697713, 49.6546228164401], - [-1.751301699863922, 49.654679626910905], - [-1.751224296376544, 49.65476771947278], - [-1.751100546133867, 49.6548972883225], - [-1.751052576033689, 49.654996076649034], - [-1.751044408350226, 49.655049167363906], - [-1.751003680661414, 49.655114248702745], - [-1.750901483223386, 49.65519511233728], - [-1.750794860278051, 49.65526725852473], - [-1.750704441102756, 49.65534006208172], - [-1.75039486080823, 49.65556098118696], - [-1.75011787106141, 49.65575459326522], - [-1.749888936348456, 49.655912318591824], - [-1.749655937995882, 49.656058076413316], - [-1.749388737788516, 49.65619571752415], - [-1.749247494883003, 49.65626217011036], - [-1.749129755819926, 49.6563427566015], - [-1.748892816046397, 49.65647049847278], - [-1.748772980648936, 49.656540669802745], - [-1.748513557560205, 49.65669780317539], - [-1.748186064783585, 49.65692013000711], - [-1.747983666507208, 49.65706807916889], - [-1.747642077288224, 49.657300556491506], - [-1.747516729666441, 49.65738703651531], - [-1.747388981747892, 49.65748246427945], - [-1.7472760210709, 49.657560863966594], - [-1.7471836220006, 49.657640188043864], - [-1.746934468053926, 49.65781859834436], - [-1.746526064290259, 49.658154217090946], - [-1.746164656561502, 49.65841493919094], - [-1.745754213658427, 49.658724526713115], - [-1.745452963376744, 49.65895863891651], - [-1.745214800654465, 49.659158724246375], - [-1.744923711583319, 49.65937412884914], - [-1.744573940809986, 49.65963748318975], - [-1.744491303074585, 49.659699713023215], - [-1.74438219095979, 49.65979272771007], - [-1.744198002184347, 49.659834102921934], - [-1.744122641731567, 49.65983999045752], - [-1.744064463406356, 49.659839875727315], - [-1.744000344370419, 49.65984203868371], - [-1.743862639428613, 49.65987398568658], - [-1.743638085419002, 49.659918691013885], - [-1.743442887572666, 49.65998781915069], - [-1.743212138485946, 49.660083208629096], - [-1.743084759818112, 49.66014327731511], - [-1.7427775612443, 49.660310245114104], - [-1.742533892358992, 49.660445025208595], - [-1.742360146615032, 49.66054527117987], - [-1.742178625896325, 49.66063077022418], - [-1.741827036292318, 49.660779915779905], - [-1.741334539666645, 49.660985302414524], - [-1.741161366808124, 49.661056570729464], - [-1.741063903212354, 49.6610966810873], - [-1.74092799477829, 49.661147682404945], - [-1.74077063337072, 49.661203956936156], - [-1.740341448723128, 49.661343132411396], - [-1.740302514703939, 49.661351719623156], - [-1.740290461268839, 49.66135066902887], - [-1.740283184756773, 49.66134196655046], - [-1.740274413606927, 49.66131821574936], - [-1.740310141813682, 49.661051161297074], - [-1.740339303023295, 49.66088039681988], - [-1.740344908404654, 49.66083028057313], - [-1.740359131482788, 49.66074761715677], - [-1.740384337160247, 49.660660240124315], - [-1.740420562289238, 49.66056428137167], - [-1.740481426478069, 49.66038339262529], - [-1.740501661219831, 49.66029189355094], - [-1.740514314072042, 49.66014336661246], - [-1.740512856267667, 49.66010903671811], - [-1.740479446878883, 49.65987962629042], - [-1.740479446878883, 49.65987962629042] - ] - }, - "length": 1.2806813373079808, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34946", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01882", - "bus2": "MVBus01883", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.740479446878883, 49.65987962629042], - [-1.740479446878883, 49.65987962629042], - [-1.740474071432376, 49.65985329702724], - [-1.740475099216177, 49.65984155390997], - [-1.740480619730333, 49.659832635948426], - [-1.74049378387742, 49.65982090644167], - [-1.740501648745728, 49.65981254794499], - [-1.740507517331799, 49.65980382508198], - [-1.740510880721519, 49.65979668843317], - [-1.740510884394161, 49.659788594891516], - [-1.74050937689303, 49.65978204506886], - [-1.740500875379599, 49.65976997565485], - [-1.740421007668303, 49.659690249537704], - [-1.74022852633044, 49.659502935316866], - [-1.740108664693464, 49.65937833446222], - [-1.739964296243733, 49.6592305039367], - [-1.739948388256929, 49.659212083450164], - [-1.739936335416193, 49.65920098798228], - [-1.739922300862214, 49.65918953664039], - [-1.739893746325947, 49.659173035119764], - [-1.739879121085537, 49.65916649570173], - [-1.739831249884304, 49.659121688670226], - [-1.739767953307384, 49.659048211167374], - [-1.739676058101628, 49.65892459189616], - [-1.739615603991094, 49.658841441313264], - [-1.739602095296559, 49.65881612347223], - [-1.739593072243265, 49.65878938650556], - [-1.739574501702686, 49.658651578794704], - [-1.739563651314382, 49.65853651422431], - [-1.739564241361584, 49.658453644657506], - [-1.739562513116073, 49.65844433250798], - [-1.739556691304043, 49.658433027032444], - [-1.739549264879466, 49.658426253989326], - [-1.739527369643052, 49.658415067486075], - [-1.739513122167437, 49.658405107066926], - [-1.739506132999521, 49.65839150282499], - [-1.739504943559619, 49.658327433987914], - [-1.739501605994963, 49.65818315074582], - [-1.739493288053887, 49.65811187615185], - [-1.739453961641885, 49.657968805593946], - [-1.739377911403589, 49.65776457213422], - [-1.739304317806408, 49.65757026470002], - [-1.739266299317639, 49.65750105197944], - [-1.739256976487962, 49.65748407315334], - [-1.739246116056332, 49.657470212647816], - [-1.739232476857514, 49.657455555495524], - [-1.739217779813456, 49.65744412639509], - [-1.739198824306653, 49.65743262495761], - [-1.739179044079239, 49.657423282576474], - [-1.739130507250704, 49.657407022537775], - [-1.739061957345631, 49.65739080731378], - [-1.739025458978518, 49.657385643274345], - [-1.738915539587075, 49.65737315995609], - [-1.738881067549643, 49.657371335834526], - [-1.738860053103217, 49.65736890541017], - [-1.738821540846347, 49.657357784054184], - [-1.73876757639012, 49.6573507354131], - [-1.73867161536302, 49.65733663053159], - [-1.738601732838121, 49.65733025300006], - [-1.73850233662905, 49.65732567907416], - [-1.738398217897442, 49.65732250515459], - [-1.738194313133802, 49.657314904991445], - [-1.738089932756446, 49.65730845728815], - [-1.737982516156575, 49.657292966200124], - [-1.737882857629756, 49.65726656634259], - [-1.737746916927861, 49.65722037258456], - [-1.737698927096434, 49.65720384177042], - [-1.737601693439361, 49.65717640678765], - [-1.73750784755023, 49.65715963986516], - [-1.737408183156507, 49.657151530966466], - [-1.737311770684144, 49.65714753902869], - [-1.737215513894139, 49.657147921212555], - [-1.737108532106675, 49.65714306206995], - [-1.737006773914737, 49.65714307181737], - [-1.736910746753859, 49.65713852702422], - [-1.736814255557686, 49.657122801883055], - [-1.736724861578887, 49.65710384310347], - [-1.736637269834277, 49.657083861353335], - [-1.736461741207677, 49.65704200284033], - [-1.73626444365085, 49.65699363795306], - [-1.736175947284714, 49.65697533200083], - [-1.735876871097662, 49.65690555558378], - [-1.73557208872794, 49.65683283210489], - [-1.735297533928657, 49.65677000744627], - [-1.735204918608509, 49.656747469017866], - [-1.735109019192504, 49.656726129183966], - [-1.734880330154187, 49.65666885490597], - [-1.734524089167194, 49.65655414752372], - [-1.734355293943281, 49.656491097487056], - [-1.73427080139386, 49.656456126886056], - [-1.734259751213325, 49.65645079741933], - [-1.734249204739566, 49.65644258233416], - [-1.734240217541812, 49.65643099647164], - [-1.734232635057423, 49.65642121582566], - [-1.73422233807747, 49.65641352290978], - [-1.734205948614401, 49.65640551345711], - [-1.734109939342267, 49.6563730705961], - [-1.734051494509664, 49.656356728369346], - [-1.733969098249313, 49.656338809084446], - [-1.733888052209557, 49.656314900145844], - [-1.733888052209557, 49.656314900145844] - ] - }, - "length": 0.7059455867207443, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42411", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01883", - "bus2": "MVBus01884", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.733888052209557, 49.656314900145844], - [-1.733888052209557, 49.656314900145844], - [-1.733820007778513, 49.65628016708811], - [-1.733763752106464, 49.656247869986075], - [-1.733710070903023, 49.65621450602487], - [-1.733640511623304, 49.6561677376844], - [-1.733539253676595, 49.65610372684678], - [-1.733467343239139, 49.65606480720204], - [-1.733343931417372, 49.65601790833194], - [-1.733283539586307, 49.65600024638956], - [-1.73320693907129, 49.65598811172926], - [-1.733134113689259, 49.65598058015306], - [-1.732764388265359, 49.655963883059265], - [-1.732455019590271, 49.655959030137886], - [-1.732308861926483, 49.65595895590221], - [-1.732156086784187, 49.65595632535174], - [-1.732071515123761, 49.655956948938424], - [-1.731988798417747, 49.65595391300292], - [-1.731813324684369, 49.655956200132806], - [-1.731619674397655, 49.655955501280054], - [-1.731515826317521, 49.65595011823244], - [-1.731404434610655, 49.65595192214882], - [-1.731288262322996, 49.65596359881823], - [-1.731171657834058, 49.65598582931513], - [-1.731065502343024, 49.656015756745845], - [-1.730869722261673, 49.656073949329844], - [-1.730761570787878, 49.65611115571432], - [-1.73043046871671, 49.65621412200755], - [-1.730326055201905, 49.656244538733], - [-1.730217744128323, 49.656268989382525], - [-1.729903556452437, 49.65634230320746], - [-1.729795845570611, 49.656351535697574], - [-1.729682898084139, 49.65636597102383], - [-1.729570647608569, 49.65637438471132], - [-1.729448850872821, 49.65638989066015], - [-1.729213793071298, 49.65644594757036], - [-1.729129184628637, 49.65646852136912], - [-1.729014250779628, 49.6564953967068], - [-1.728901490965555, 49.65651601191794], - [-1.728791966639698, 49.65652491776152], - [-1.728662672874595, 49.65653622350812], - [-1.728516880886691, 49.65654596131145], - [-1.728475245323393, 49.65653576004882], - [-1.728411991139697, 49.65654194149451], - [-1.728370140263912, 49.656547799304136], - [-1.728312906960772, 49.656559479695645], - [-1.728312906960772, 49.656559479695645] - ] - }, - "length": 0.42800395801572233, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34037", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01884", - "bus2": "MVBus01885", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.728312906960772, 49.656559479695645], - [-1.728312906960772, 49.656559479695645], - [-1.728274454180884, 49.65656660814347], - [-1.728233685202301, 49.656576826950065], - [-1.728205776997936, 49.656585732281826], - [-1.728161474180365, 49.65660270638717], - [-1.728061212388786, 49.65664456408184], - [-1.727946166206508, 49.65668029090196], - [-1.727817705683487, 49.65673592842011], - [-1.727739462930876, 49.65677285538332], - [-1.727739462930876, 49.65677285538332] - ] - }, - "length": 0.047953236893901165, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42412", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01885", - "bus2": "MVBus01886", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.727739462930876, 49.65677285538332], - [-1.727739462930876, 49.65677285538332], - [-1.727707492689713, 49.656786411383656], - [-1.727596864159143, 49.656817960710654], - [-1.727485560714758, 49.656841394270465], - [-1.727382824582085, 49.656858137125596], - [-1.727382824582085, 49.656858137125596] - ] - }, - "length": 0.027578746668158054, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40756", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01886", - "bus2": "MVBus01887", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.727382824582085, 49.656858137125596], - [-1.727382824582085, 49.656858137125596], - [-1.727255130419084, 49.656876141052194], - [-1.727120294379758, 49.65688309901938], - [-1.726979327246614, 49.65688004717326], - [-1.726843528677935, 49.65687180364602], - [-1.726712400318607, 49.65686184736043], - [-1.726577844568127, 49.65685563908711], - [-1.726303410859262, 49.656853436636425], - [-1.726171836378063, 49.656854564681474], - [-1.72585793709381, 49.656842095274015], - [-1.725666382306666, 49.65683313312166], - [-1.725605568753938, 49.656832576567226], - [-1.725485392503197, 49.656832808501164], - [-1.725251464483659, 49.65683062826861], - [-1.725025826734552, 49.656825228625394], - [-1.724798199183486, 49.65682180180917], - [-1.724685456448137, 49.65681849206072], - [-1.7245698809084, 49.65681631146881], - [-1.72445706960357, 49.65681214051932], - [-1.72435163705248, 49.65680356715185], - [-1.724250281210615, 49.6567924378171], - [-1.723947318268317, 49.6567544799531], - [-1.723840359322548, 49.656747782887855], - [-1.723728787517464, 49.65674490955833], - [-1.723625804781101, 49.65673682886024], - [-1.723625804781101, 49.65673682886024] - ] - }, - "length": 0.2724446957927151, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43049", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01887", - "bus2": "MVBus01888", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.723625804781101, 49.65673682886024], - [-1.723625804781101, 49.65673682886024], - [-1.723520377064923, 49.656727616140266], - [-1.723422239509832, 49.65671706153705], - [-1.723311255510849, 49.65671043616149], - [-1.723198071900167, 49.65669323725738], - [-1.723127687111947, 49.65669077053708], - [-1.722701786187468, 49.65666164777939], - [-1.722598063002425, 49.65666565914847], - [-1.722487643297865, 49.65665811482743], - [-1.721660003373815, 49.65657170621557], - [-1.721549796078765, 49.65656682472705], - [-1.721538047690914, 49.65656453908364], - [-1.721481223908684, 49.65654553767339], - [-1.721465358631225, 49.656543390140634], - [-1.721448147102664, 49.65654503768671], - [-1.721255295561688, 49.65660136244499], - [-1.721069041713968, 49.65666818473525], - [-1.720715544870907, 49.65682262907381], - [-1.720625975255681, 49.656869589236436], - [-1.720559774543294, 49.656919515420164], - [-1.720502049314613, 49.65697237663683], - [-1.720432929839997, 49.657027229656556], - [-1.720368762404759, 49.65707172793302], - [-1.720011956842451, 49.65733730345117], - [-1.719951248175017, 49.65738715296471], - [-1.719840359650761, 49.65746667914164], - [-1.719546904359343, 49.65767631694214], - [-1.719519017524534, 49.65769091177698], - [-1.719509007047312, 49.657693756377626], - [-1.719501528831518, 49.657691866901644], - [-1.71947780320136, 49.6576811159884], - [-1.719446489720156, 49.65766692355118], - [-1.719227931378966, 49.657576259766756], - [-1.71900357914789, 49.657490762758826], - [-1.718885676065933, 49.65744245086185], - [-1.718681878423483, 49.657368404133045], - [-1.718654363643581, 49.65735999227237], - [-1.718534760648144, 49.657332267095995], - [-1.718410586473253, 49.65730750072945], - [-1.718162801127251, 49.657240835877104], - [-1.718011097134541, 49.6571830809291], - [-1.717981256567952, 49.65716945924549], - [-1.717977370360496, 49.65716274615818], - [-1.718043519437144, 49.657084622500825], - [-1.718045612695117, 49.65708081142184], - [-1.718041416313051, 49.657076293929585], - [-1.717999506135629, 49.65704938112844], - [-1.717887107372415, 49.65698595611869], - [-1.717832819310818, 49.656942048523675], - [-1.717730881850192, 49.65680516306199], - [-1.717691274506387, 49.65674084477619], - [-1.71767883685665, 49.6567110825568], - [-1.717562557812384, 49.656502197440894], - [-1.717554983546297, 49.65648533842219], - [-1.717554640217861, 49.65643277929776], - [-1.717493476214133, 49.656356746702166], - [-1.717495896332177, 49.65633893221701], - [-1.717447994085462, 49.65618250205623], - [-1.717439573011385, 49.6561006550268], - [-1.717461902305589, 49.656001905449315], - [-1.717487775937777, 49.655815008627954], - [-1.717500134567444, 49.65563914002085], - [-1.717514947328719, 49.655542198021614], - [-1.717514531824025, 49.65544048776329], - [-1.717503391856739, 49.655336645997224], - [-1.717488942745687, 49.655245360880855], - [-1.717460651659158, 49.65514862256692], - [-1.717420766249411, 49.65506284813152], - [-1.717375544103659, 49.65497632630912], - [-1.717274162708445, 49.65478000763229], - [-1.717167398701707, 49.654606566567345], - [-1.717061652365184, 49.654433720776446], - [-1.716959036949793, 49.65427010427631], - [-1.716914447426297, 49.654185422525465], - [-1.7168409726092, 49.654008698305404], - [-1.716811740245133, 49.65391821420138], - [-1.716763546412261, 49.65375806135427], - [-1.716732522799451, 49.653638078556575], - [-1.716689212363299, 49.65343795173439], - [-1.71667331127041, 49.65336443948759], - [-1.716670378709844, 49.65335769438859], - [-1.716662418509404, 49.653353914472994], - [-1.716653156141748, 49.65335204865622], - [-1.716596781264168, 49.65334802969377], - [-1.716559930839835, 49.653348644085064], - [-1.716551546324883, 49.65335172175416], - [-1.716544091, 49.65336038866352], - [-1.716472226277132, 49.653426869160796], - [-1.716395457773024, 49.65349787533786], - [-1.716316735389152, 49.65356242728845], - [-1.716236904998456, 49.65364318499962], - [-1.716023337473649, 49.65386188282999], - [-1.715893174600961, 49.65400872264407], - [-1.715704903113184, 49.65422035831509], - [-1.71553225529787, 49.65439942059411], - [-1.715471504984857, 49.65444283069003], - [-1.715456092169358, 49.65446605331468], - [-1.715449572571996, 49.65448649605519], - [-1.715447633958364, 49.654538430245495], - [-1.715447633958364, 49.654538430245495] - ] - }, - "length": 1.0872513297341535, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37385", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus01888", - "bus2": "MVLV16887", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.715447633958364, 49.654538430245495], - [-1.715447633958364, 49.654538430245495], - [-1.715448192070262, 49.65460696204013], - [-1.715457004433096, 49.6546500380675], - [-1.715471451256319, 49.65469969675278], - [-1.715498603110257, 49.654796617488635], - [-1.715526802946384, 49.65491560687598], - [-1.715556713031621, 49.65504286608316], - [-1.715567040711619, 49.65508827435797], - [-1.715570275973833, 49.6551110251187], - [-1.715571036710964, 49.655132617801705], - [-1.715564102439639, 49.65519436836121], - [-1.71555179727194, 49.655249716275684], - [-1.715530624332355, 49.655313742345704], - [-1.715489586974421, 49.65542933186875], - [-1.715414558894032, 49.65562509579396], - [-1.715402884330536, 49.6556427256538], - [-1.715388083085744, 49.65565639560863], - [-1.715372240448655, 49.65566236683133], - [-1.715351608436699, 49.65566524317796], - [-1.715312147792104, 49.655666672968934], - [-1.715260598108026, 49.65566222189718], - [-1.715152477351462, 49.65563005324065], - [-1.71508526536511, 49.655598465577974], - [-1.715020937895638, 49.65555803148393], - [-1.71498123049807, 49.65552202435255], - [-1.714894808491883, 49.65542981362902], - [-1.714823166712625, 49.655365839066796], - [-1.71474497215027, 49.655310563942564], - [-1.714658157317202, 49.65526289744951], - [-1.714576855973218, 49.65523301340164], - [-1.714461502531446, 49.655200277069156], - [-1.71438049769835, 49.65518701922765], - [-1.714302012179009, 49.655179666014696], - [-1.714125088683956, 49.655184925691366], - [-1.714045455182909, 49.65518892341494], - [-1.713974032499748, 49.65520595513098], - [-1.713930000794875, 49.65521940775234], - [-1.713805483504456, 49.65526483536296], - [-1.713580541187305, 49.65536220340899], - [-1.713317541539384, 49.65547082699354], - [-1.713257574448967, 49.655490136501335], - [-1.713201716977964, 49.65549666483663], - [-1.713154040780268, 49.65549755066954], - [-1.713105457586083, 49.65549730680938], - [-1.713073893758862, 49.65551479298841], - [-1.713232659435066, 49.655672728402635], - [-1.713342741318447, 49.65578643159105], - [-1.713512475201262, 49.655959133893184], - [-1.713535733563725, 49.65598425370082], - [-1.713540888669226, 49.65600398162917], - [-1.713529570082037, 49.65603080774028], - [-1.713499411849716, 49.65604942497534], - [-1.7134923699166786, 49.656042385779635] - ] - }, - "length": 0.39624899055842877, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38550", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16887", - "bus2": "MVBus09389", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7134923699166786, 49.656042385779635], - [-1.713485327983641, 49.65603534658393], - [-1.713509722594212, 49.65601863092429], - [-1.713518356067376, 49.65600176855485], - [-1.713516623396457, 49.6559923394178], - [-1.71339757826996, 49.65586730012102], - [-1.713061830997298, 49.65552876662905], - [-1.713022374869907, 49.655547164491274], - [-1.712983219393751, 49.65556934713522], - [-1.712941021202669, 49.6555887989746], - [-1.712115718830422, 49.65593034753014], - [-1.711730719092233, 49.65608848126368], - [-1.711675834553732, 49.65611913028859], - [-1.711668127535593, 49.65613859631369], - [-1.711689943331042, 49.656157074266176], - [-1.711909209699889, 49.65638021466925], - [-1.711927197560893, 49.656420429795006], - [-1.712045895311028, 49.65654130047773], - [-1.712066626044882, 49.65665720397143], - [-1.712493720851563, 49.65708091694548], - [-1.712596763887438, 49.657184290066596], - [-1.712616120654328, 49.65720371345815], - [-1.712605257166425, 49.65721761988691], - [-1.712231384433458, 49.65739404176467], - [-1.712231384433458, 49.65739404176467] - ] - }, - "length": 0.36205172525827967, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09389", - "bus2": "MVLV12762", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.712231384433458, 49.65739404176467], - [-1.712231384433458, 49.65739404176467], - [-1.712192984930894, 49.6574121610954], - [-1.712159321627441, 49.65741875531577], - [-1.712145875642629, 49.657418288129165], - [-1.712130679684726, 49.65741375193847], - [-1.712115156745159, 49.65740509911443], - [-1.711907540458581, 49.657280918818046], - [-1.711916605385292, 49.65727052579175], - [-1.711725937688394, 49.65713753178156], - [-1.711583842498299, 49.65702903526348], - [-1.711572488149354, 49.657020368759845], - [-1.711558455636018, 49.657020712484226], - [-1.711543004997499, 49.65702168818157], - [-1.71152412661641, 49.6570241544492], - [-1.711495638379682, 49.657030152654194], - [-1.711471050112896, 49.657040606532085], - [-1.711427640974446, 49.65706314674895], - [-1.711326401126814, 49.65713576828944], - [-1.711178373342992, 49.657241591156435], - [-1.711129545502673, 49.65730718898692], - [-1.710964863616365, 49.65743007013069], - [-1.710917324898205, 49.657471785508555], - [-1.710902208297853, 49.65748604090393], - [-1.710900130160686, 49.657490921444534], - [-1.710903842733294, 49.65750662407541], - [-1.710943091855127, 49.65756513807867], - [-1.711091955908279, 49.65770985551921], - [-1.711172613908541, 49.657764933515004], - [-1.71127897930944, 49.657801489868255], - [-1.711395063912293, 49.657840247784556], - [-1.711606505041342, 49.65791019285251], - [-1.711681734703578, 49.65793702679832], - [-1.711779863054719, 49.65798096249784], - [-1.711870622953638, 49.6580343261077], - [-1.712056337251808, 49.6581450223316], - [-1.712245397356525, 49.65826661315606], - [-1.712324524894339, 49.658324718178164], - [-1.712350010711977, 49.65834770431951], - [-1.712353846470791, 49.65836041726462], - [-1.712354377241995, 49.65837599254943], - [-1.712347265709976, 49.65839319050284], - [-1.712216987090673, 49.65855367044792], - [-1.71219274716793, 49.65857305135032], - [-1.712191541104686, 49.65858890957691], - [-1.712193644176653, 49.65860649152026], - [-1.712198457245705, 49.65861825451696], - [-1.712223707211668, 49.65863391067126], - [-1.71235660303629, 49.6586886063232], - [-1.712366471624233, 49.65869286219185], - [-1.712372867915333, 49.658693340519584], - [-1.712387282718283, 49.658688038029595], - [-1.7123893567716906, 49.65869383173553] - ] - }, - "length": 0.33609166663042095, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40786", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12762", - "bus2": "MVBus11449", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7123893567716906, 49.65869383173553], - [-1.712391430825098, 49.65869962544148], - [-1.712366463491168, 49.65870984935149], - [-1.712329867044583, 49.658722602724524], - [-1.712256396489699, 49.658696483631566], - [-1.712256396489699, 49.658696483631566] - ] - }, - "length": 0.011178451298859964, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39715", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11449", - "bus2": "MVLV04334", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.712256396489699, 49.658696483631566], - [-1.712256396489699, 49.658696483631566], - [-1.710321852037981, 49.658025946056945], - [-1.710282778109626, 49.658045355239715], - [-1.710266574479118, 49.65805377478471], - [-1.7102518017180843, 49.65805029431179] - ] - }, - "length": 0.1633930998192143, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32752", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04334", - "bus2": "MVBus12338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7102518017180843, 49.65805029431179], - [-1.710237028957051, 49.65804681383888], - [-1.710235630991269, 49.65803409122527], - [-1.710233210541606, 49.65798894880261], - [-1.709742877897143, 49.65781336148406], - [-1.709027236507815, 49.657513252788995], - [-1.709027337065763, 49.6575131235305], - [-1.709027337065763, 49.6575131235305] - ] - }, - "length": 0.10840662368023206, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47369", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus12338", - "bus2": "MVLV15648", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.709027337065763, 49.6575131235305], - [-1.709027337065763, 49.6575131235305], - [-1.709078447439429, 49.65744483349543], - [-1.70910413685254, 49.65743672632054], - [-1.709243868571788, 49.65728147298309], - [-1.70927004463494, 49.657178802084346], - [-1.709171592842444, 49.65691119515829], - [-1.709161114035063, 49.656835019230506], - [-1.709178943717271, 49.65678216730157], - [-1.709213577618374, 49.65673143308517], - [-1.709282230422975, 49.65668940781868], - [-1.709309897104711, 49.656687718058556], - [-1.709330561303463, 49.65668646034894], - [-1.7093355253425884, 49.65668006698276] - ] - }, - "length": 0.10369591850421968, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36355", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15648", - "bus2": "MVBus13302", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7093355253425884, 49.65668006698276], - [-1.709340489381714, 49.65667367361657], - [-1.709329753267087, 49.6566621445962], - [-1.709314685856429, 49.65664595843759], - [-1.70925708239761, 49.65667047439064], - [-1.7091817362423, 49.65671543026812], - [-1.709140181584584, 49.65676640494441], - [-1.709119175557376, 49.656831071376075], - [-1.709128857491687, 49.65691448596497], - [-1.709231752244283, 49.65718554132338], - [-1.709204094962056, 49.657270249726935], - [-1.709079928431331, 49.65741235692905], - [-1.709050308659278, 49.65742330230102], - [-1.708997902725297, 49.65748382115472], - [-1.708997902725297, 49.65748382115472] - ] - }, - "length": 0.10806723339486324, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44963", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus13302", - "bus2": "MVLV11486", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.708997902725297, 49.65748382115472], - [-1.708997902725297, 49.65748382115472], - [-1.70899080914577, 49.65749200778738], - [-1.708641350771502, 49.65735922107077], - [-1.708317824143707, 49.657271455070045], - [-1.708232158722505, 49.65749326945597], - [-1.708031958614799, 49.65762181227458], - [-1.707995714311626, 49.657971564930534], - [-1.707765211274663, 49.658052551836846], - [-1.707832434285355, 49.6581942833001], - [-1.707891788280491, 49.65820681270175], - [-1.707911526188136, 49.65821098173353], - [-1.7079120407255814, 49.65821598234879] - ] - }, - "length": 0.181775916833722, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35158", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11486", - "bus2": "MVLV12761", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7079120407255814, 49.65821598234879], - [-1.707912555263027, 49.65822098296406], - [-1.707893846422766, 49.658226815163104], - [-1.70728082013845, 49.658417934068844], - [-1.706987688532517, 49.65839573781715], - [-1.706732680877934, 49.65836500960757], - [-1.706573219851772, 49.65854252791546], - [-1.706562769941867, 49.658554162777016], - [-1.7065522989454331, 49.658565793845284] - ] - }, - "length": 0.1149889768842972, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38115", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12761", - "bus2": "MVLV08515", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7065522989454331, 49.658565793845284], - [-1.706541827948999, 49.65857742491355], - [-1.706531335866019, 49.658589052188546], - [-1.706465928106193, 49.65866156864659], - [-1.706357742718672, 49.65844381625389], - [-1.706249486789871, 49.65787307454641], - [-1.706179981081413, 49.65731809616411], - [-1.705463418519071, 49.65740881212725], - [-1.705422985876509, 49.65730576926649], - [-1.705572328002484, 49.65728345028136], - [-1.705621360881812, 49.657255634576565], - [-1.705643949030106, 49.657226931042544], - [-1.705636377162732, 49.657185773595714], - [-1.705617410761321, 49.65715761340412], - [-1.705003391939472, 49.656878257686316], - [-1.704779965956333, 49.65682661494423], - [-1.704621314587347, 49.656820432037435], - [-1.704585739342022, 49.656339910157776], - [-1.704544587394893, 49.65632874945311], - [-1.704525433983989, 49.65632355320998], - [-1.704521667859076, 49.65632654314429] - ] - }, - "length": 0.3950658324564448, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08515", - "bus2": "MVLV08514", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.704521667859076, 49.65632654314429], - [-1.704517901734163, 49.656329533078605], - [-1.704529522185396, 49.65634070022345], - [-1.704551489265828, 49.65636181811624], - [-1.704600877122317, 49.65709309298921], - [-1.70448739715825, 49.657097055026256], - [-1.704466676196257, 49.657097774245564], - [-1.7044656244128835, 49.657095165588956] - ] - }, - "length": 0.0954492734387459, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08514", - "bus2": "MVLV08517", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7044656244128835, 49.657095165588956], - [-1.70446457262951, 49.65709255693235], - [-1.704483189309966, 49.65708661143169], - [-1.704537865828387, 49.65706917381683], - [-1.704527658725012, 49.65679488388282], - [-1.704336196685355, 49.65679434696009], - [-1.701970101623435, 49.65681465555627], - [-1.701869445153427, 49.656827134535476], - [-1.701849061214368, 49.65682965853941], - [-1.7018474404969435, 49.65682712281345] - ] - }, - "length": 0.22999332122252053, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08517", - "bus2": "MVLV11487", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7018474404969435, 49.65682712281345], - [-1.701845819779519, 49.6568245870875], - [-1.701862948465297, 49.65681699209384], - [-1.701866146588843, 49.656815572417344], - [-1.70151764275735, 49.65681149732632], - [-1.701052135176404, 49.656834914108856], - [-1.700747383895348, 49.65687343948882], - [-1.700678846977321, 49.65671554402016], - [-1.700584261442887, 49.65664307418332], - [-1.700570842071872, 49.656632794038615], - [-1.7005694121374195, 49.65663345325234] - ] - }, - "length": 0.11338442666594911, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39714", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11487", - "bus2": "MVLV15647", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.7005694121374195, 49.65663345325234], - [-1.700567982202967, 49.656634112466065], - [-1.700578541704473, 49.65664571103876], - [-1.700633692345302, 49.6567063051086], - [-1.700642458227036, 49.656812258665404], - [-1.700306136582797, 49.65692212180891], - [-1.699922879766692, 49.65708494217042], - [-1.699587068199308, 49.65714653256768], - [-1.699567092677405, 49.65715019358661], - [-1.699553504846526, 49.65715834002786] - ] - }, - "length": 0.10807935641066367, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43708", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15647", - "bus2": "MVLV08518", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.699553504846526, 49.65715834002786], - [-1.699539917015647, 49.65716648646911], - [-1.699532716875093, 49.657179118335385], - [-1.699439304912264, 49.6573431103775], - [-1.699263351694736, 49.65739605663836], - [-1.699336463270182, 49.65745834504667], - [-1.699268465181139, 49.657458014960646], - [-1.69920943625858, 49.65746546981428], - [-1.699113182504093, 49.657408485634605], - [-1.698304527016932, 49.65755999876808], - [-1.698062893911774, 49.6575567010572], - [-1.697461583041591, 49.657565011758095], - [-1.697218490084788, 49.656871994905885], - [-1.697744693442282, 49.65672671709386], - [-1.697786406850478, 49.65682882008235], - [-1.697797954859862, 49.656833839394665], - [-1.69781519840905, 49.6568413395046], - [-1.697825356573214, 49.65683842436038] - ] - }, - "length": 0.3185546944113785, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39229", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08518", - "bus2": "MVLV12764", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.697825356573214, 49.65683842436038], - [-1.697835514737378, 49.65683550921616], - [-1.697838602035088, 49.65682218732805], - [-1.697840623409652, 49.65681342419931], - [-1.697778838018975, 49.656686811786194], - [-1.697146739811798, 49.65684296795896], - [-1.69739248718273, 49.65756831420456], - [-1.696496172131778, 49.65761570120611], - [-1.696265553264628, 49.65763343469004], - [-1.695681449886193, 49.65758803548188], - [-1.695669456761429, 49.65762239072309], - [-1.695665022605017, 49.65763480422198], - [-1.6956447814282445, 49.65763502482898] - ] - }, - "length": 0.2782026664562803, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39585", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12764", - "bus2": "MVBus20890", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6956447814282445, 49.65763502482898], - [-1.695624540251472, 49.657635245435976], - [-1.69561746988984, 49.65762308953775], - [-1.695596591587301, 49.657584524501154], - [-1.694976984193771, 49.65752805771521], - [-1.694881325517064, 49.65753685714968], - [-1.694881325517064, 49.65753685714968] - ] - }, - "length": 0.058144213787439426, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38558", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20890", - "bus2": "MVBus20891", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.694881325517064, 49.65753685714968], - [-1.694881325517064, 49.65753685714968], - [-1.694870805593646, 49.657538529645755], - [-1.694867677118124, 49.657541007914595], - [-1.694864664470505, 49.6575433744138], - [-1.694863785438515, 49.657545570887244], - [-1.694864353970346, 49.65754890611801], - [-1.694865902262429, 49.65755131844428], - [-1.694869182876066, 49.657554266536636], - [-1.694872469706283, 49.65755554182855], - [-1.694900047651829, 49.65756428058578], - [-1.69495085752137, 49.657573045378875], - [-1.69497044900775, 49.657574856348404], - [-1.694972621131005, 49.65757359695261], - [-1.694972633356441, 49.6575718250351], - [-1.694970869752442, 49.657570193235706], - [-1.694950269519778, 49.65756263374962], - [-1.694811584170032, 49.6574286644253], - [-1.694754658072436, 49.65738985285587], - [-1.694675833199034, 49.65732705985422], - [-1.694653623707265, 49.657307207334895], - [-1.694653623707265, 49.657307207334895] - ] - }, - "length": 0.0485068386520877, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37274", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus20891", - "bus2": "MVLV09710", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.694653623707265, 49.657307207334895], - [-1.694653623707265, 49.657307207334895], - [-1.694648566234924, 49.657308239155654], - [-1.694616194921495, 49.657292834828844], - [-1.694596778440511, 49.65726626179332], - [-1.694512415501688, 49.65720139614901], - [-1.694445549994414, 49.65717316705252], - [-1.694191078550513, 49.65711696436926], - [-1.694134447528161, 49.6571158569682], - [-1.69406229696653, 49.65711800936961], - [-1.693954598809285, 49.6571400864365], - [-1.693845082201221, 49.65717595544083], - [-1.69371451513302, 49.6572215181459], - [-1.693658901335396, 49.65723923375691], - [-1.693418375417, 49.657295635655856], - [-1.693343187764655, 49.65731071200743], - [-1.693264776748028, 49.65731970890518], - [-1.693142450457068, 49.657327246203685], - [-1.693015767034796, 49.65733100782697], - [-1.692887212891164, 49.657323546138336], - [-1.692811884510095, 49.65731494078992], - [-1.692721682262498, 49.65728324371582], - [-1.692711097980776, 49.65728077265942], - [-1.692711156367779, 49.657279583714285], - [-1.692735809065025, 49.657273753742984], - [-1.692739415519118, 49.65727153837497], - [-1.692740306193944, 49.657266859621686], - [-1.692772970921632, 49.65725584390002], - [-1.693065527594914, 49.657190012477756], - [-1.693106803183528, 49.657178934615764], - [-1.693158118507119, 49.65716379041707], - [-1.693240604745891, 49.657135908596906], - [-1.693368485511657, 49.6570808949317], - [-1.693409573087288, 49.657057629485564], - [-1.693405926102143, 49.65703585441595], - [-1.693390492821437, 49.65701024557583], - [-1.693365773667793, 49.656988426172354], - [-1.693308320628536, 49.656955017980884], - [-1.693248146998977, 49.65692591785079], - [-1.693207826064977, 49.656910346367596], - [-1.693125303768984, 49.65683596744389], - [-1.693128378483538, 49.65682842827083], - [-1.693130756861769, 49.65682259388035], - [-1.693135790036104, 49.656818451549476], - [-1.693156295865918, 49.656820969721146], - [-1.6931544029856775, 49.65682690034362] - ] - }, - "length": 0.2472968140411514, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42413", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09710", - "bus2": "MVBus21726", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6931544029856775, 49.65682690034362], - [-1.693152510105437, 49.656832830966096], - [-1.693140690954655, 49.65683523901614], - [-1.6931427118128, 49.65683942511384], - [-1.693151481587454, 49.65684750491125], - [-1.693209476595427, 49.65690091227353], - [-1.693252669441853, 49.65691759306439], - [-1.693316316485088, 49.656947701527976], - [-1.693373238151906, 49.656981046487076], - [-1.693400287616367, 49.657004307973416], - [-1.693417151422491, 49.65703119104043], - [-1.693418858866021, 49.657062598676404], - [-1.693374304427203, 49.65708774214384], - [-1.693298166698752, 49.65712023250288], - [-1.693244050883247, 49.65714217841551], - [-1.69316248707433, 49.657169813689386], - [-1.693107868783109, 49.65718522978719], - [-1.692888546978312, 49.65723633810071], - [-1.692779778709486, 49.65726048203007], - [-1.692698423186007, 49.65727621305517], - [-1.692654583441833, 49.657281315287605], - [-1.692542193906826, 49.657285058904975], - [-1.692484466808352, 49.65728620836523], - [-1.692424940469563, 49.657286851204006], - [-1.692292977895417, 49.65728550935727], - [-1.692259680432823, 49.65728221209627], - [-1.692186219099461, 49.657281979071804], - [-1.692110428824001, 49.65727856831186], - [-1.692049488588526, 49.65727656932213], - [-1.691962037720081, 49.65727547120089], - [-1.691854401241619, 49.65727450571742], - [-1.69169634795539, 49.65727709853729], - [-1.691577772454402, 49.65727863729285], - [-1.691391974011256, 49.657284563616756], - [-1.691212884622486, 49.65729212768768], - [-1.69108212142755, 49.65730193115109], - [-1.690998013026594, 49.65731000121259], - [-1.690813290305129, 49.657319550737675], - [-1.690697196909293, 49.65732322711233], - [-1.69051864108191, 49.657326150283794], - [-1.690323406593425, 49.65732380134952], - [-1.690219763089159, 49.65731972499459], - [-1.690038602812441, 49.65730440762694], - [-1.689973494217544, 49.65730382327296], - [-1.689957419253372, 49.65730619281971], - [-1.689938164927739, 49.6573130295151], - [-1.689928953469567, 49.65731723884458], - [-1.689922508665218, 49.65732525878499], - [-1.689926846029425, 49.65734439413178], - [-1.6899144761105565, 49.65734579505471] - ] - }, - "length": 0.29618321913091505, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43082", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus21726", - "bus2": "MVBus22602", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6899144761105565, 49.65734579505471], - [-1.689902106191688, 49.65734719597764], - [-1.689893952537334, 49.65733253099631], - [-1.689883517880255, 49.657327042259574], - [-1.689866566150205, 49.65732760652712], - [-1.689851832710317, 49.65732714375777], - [-1.689837756416026, 49.657320094654246], - [-1.689811194338158, 49.65732472864215], - [-1.689770822990218, 49.65734147643931], - [-1.68974781289917, 49.65735056931736], - [-1.689639749072734, 49.657403291763586], - [-1.689584894501837, 49.65743133942712], - [-1.689495601152914, 49.657486359498435], - [-1.689369875436402, 49.657567141318275], - [-1.689210031692182, 49.65767072116982], - [-1.689133511386455, 49.65772489319007], - [-1.688932299690713, 49.657873138758184], - [-1.688824045288466, 49.65796416534145], - [-1.688729443121585, 49.658049333075624], - [-1.688672923286662, 49.65809700313144], - [-1.688567768981974, 49.6581783583668], - [-1.688447336562443, 49.65826937611586], - [-1.688292981370783, 49.658385675994005], - [-1.688230391886822, 49.65843771123023], - [-1.688178301282593, 49.65846026177342], - [-1.688100506152315, 49.65850656213375], - [-1.68805498079456, 49.65852963155985], - [-1.68801859926527, 49.65854728007973], - [-1.687985278906541, 49.65856282143969], - [-1.68797193962116, 49.65856756360029], - [-1.687904903945472, 49.65859592573689], - [-1.687836406772483, 49.658618761177216], - [-1.687773406152993, 49.65864173744049], - [-1.687707055307805, 49.65866421364127], - [-1.687632341914936, 49.658685340380906], - [-1.687597756271063, 49.658693981598304], - [-1.6875535692144, 49.65870295120399], - [-1.687513904909563, 49.65871218398774], - [-1.687477338221695, 49.658720998979575], - [-1.687435773069277, 49.658727911989054], - [-1.687385894109799, 49.65873725072297], - [-1.687284757646732, 49.658750749410686], - [-1.687245627175155, 49.65875235679245], - [-1.687226644410474, 49.65875176526927], - [-1.687185800600312, 49.65874974274826], - [-1.687137085084551, 49.65874398943454], - [-1.687033931127971, 49.65873175588405], - [-1.687000916584208, 49.65872643345839], - [-1.687000916584208, 49.65872643345839] - ] - }, - "length": 0.27575724267606383, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47802", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22602", - "bus2": "MVBus22603", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.687000916584208, 49.65872643345839], - [-1.687000916584208, 49.65872643345839], - [-1.686970742780532, 49.658721825850186], - [-1.686864833669288, 49.65871276818489], - [-1.686750491666597, 49.65869620350682], - [-1.686520660235055, 49.65866625932611], - [-1.6862083366353, 49.65862557849003], - [-1.685909066963389, 49.6585867108749], - [-1.685685278281926, 49.6585573195575], - [-1.685476654697023, 49.65853280104184], - [-1.685442421346384, 49.65852870571752], - [-1.685112527216627, 49.65849354312171], - [-1.68488785090189, 49.65846447661544], - [-1.684736289368716, 49.658441063276726], - [-1.684603220068488, 49.658427124465256], - [-1.684470644531766, 49.658411190775794], - [-1.684344595507814, 49.65839826826076], - [-1.684220756570289, 49.658380524186136], - [-1.684094066483814, 49.65836456531888], - [-1.683971924911957, 49.65835007376753], - [-1.683761701283773, 49.65832087554532], - [-1.683691553446464, 49.65831032985342], - [-1.683572945631358, 49.65829427269268], - [-1.683356190893484, 49.65826673860415], - [-1.683221700182995, 49.65824951836259], - [-1.683098453486965, 49.658232598763526], - [-1.682968009314595, 49.65821469524507], - [-1.682850931220949, 49.65819888330731], - [-1.682764141959558, 49.65818897097931], - [-1.6826586781223, 49.65817569546537], - [-1.682623811273247, 49.6581705862859], - [-1.682558714169335, 49.65816435932101], - [-1.682453680575476, 49.65814336288646], - [-1.682345827490233, 49.65812297260189], - [-1.682233236042189, 49.658107136908164], - [-1.682123664688506, 49.6580979810145], - [-1.682014125147201, 49.65808272714925], - [-1.681904761130945, 49.658071280114264], - [-1.681797002800972, 49.65805876350617], - [-1.681580726631921, 49.658023917601746], - [-1.681473886690803, 49.65801145113601], - [-1.68136716295708, 49.65799711930074], - [-1.68126114165059, 49.657983438468484], - [-1.681110470795186, 49.65796302152122], - [-1.681041500542145, 49.65795404484363], - [-1.68093167446423, 49.65794006745609], - [-1.680756367723196, 49.65791674545396], - [-1.680650300094999, 49.657902472140094], - [-1.680544953383338, 49.65789224832794], - [-1.68044501573429, 49.657874552005886], - [-1.68034703628985, 49.65786518043657], - [-1.680244269316751, 49.65785148058563], - [-1.680161831826119, 49.65783718652244], - [-1.680092302984831, 49.65782779623007], - [-1.680008059258093, 49.65781712301027], - [-1.679921209671613, 49.65780484569685], - [-1.679752365909624, 49.657782314814504], - [-1.67968053626866, 49.65777343231517], - [-1.679465260113473, 49.657744736240076], - [-1.679356242520934, 49.65773116224051], - [-1.679204681506407, 49.65771085345038], - [-1.679075473908005, 49.65768786006316], - [-1.679026837248203, 49.65768184914107], - [-1.67897866340961, 49.65767344885779], - [-1.678926035329053, 49.65766477377808], - [-1.678883054155872, 49.65765933940972], - [-1.678846191645214, 49.65765192143305], - [-1.678785217146016, 49.657641742870545], - [-1.678752083502674, 49.657632600450846], - [-1.678752083502674, 49.657632600450846] - ] - }, - "length": 0.6082420532559634, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45639", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22603", - "bus2": "MVBus22604", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.678752083502674, 49.657632600450846], - [-1.678752083502674, 49.657632600450846], - [-1.678655771591739, 49.657619943933625], - [-1.67854619816165, 49.65760546145833], - [-1.678443407774987, 49.65759479130411], - [-1.678341877746072, 49.65757989779403], - [-1.678140109130628, 49.657554545845564], - [-1.678041590760031, 49.6575425375894], - [-1.67783766814151, 49.6575162135232], - [-1.677539407645088, 49.65747819134837], - [-1.677336141016467, 49.65745139506758], - [-1.67707260443018, 49.65741790267715], - [-1.676933881645884, 49.65739929630037], - [-1.676827859548407, 49.65738574657], - [-1.676619652239228, 49.657357764183985], - [-1.676530441792488, 49.6573467947611], - [-1.676437178503299, 49.6573343141322], - [-1.676244579576855, 49.6573080523875], - [-1.676050342062734, 49.65728455138865], - [-1.675954139358735, 49.65726991981983], - [-1.675892723527981, 49.65726327047057], - [-1.675856254239052, 49.65725714244844], - [-1.67569549060223, 49.65724570429279], - [-1.675651975270466, 49.65724385646937], - [-1.675641965335153, 49.6572426867701], - [-1.675631965147522, 49.65723583359685], - [-1.675569391305867, 49.657209367441276], - [-1.675398407174624, 49.65718528332874], - [-1.67531716495159, 49.6571754067692], - [-1.675186271725575, 49.65715594555002], - [-1.675092779518475, 49.65714582769529], - [-1.674930244527375, 49.657125428348955], - [-1.674868614969784, 49.65711887563815], - [-1.674804747012458, 49.6571097533888], - [-1.674692561111355, 49.657094958714595], - [-1.674600142995935, 49.65708546130469], - [-1.674486934848108, 49.65707070034376], - [-1.674416818339161, 49.65705979780329], - [-1.674329314720484, 49.65704814991709], - [-1.674269819481414, 49.65703756051881], - [-1.674195246251969, 49.65702687757574], - [-1.674086000254391, 49.65701881003487], - [-1.673966304130941, 49.657014011399724], - [-1.673934457361715, 49.65701363757407], - [-1.673928516287633, 49.65701154152207], - [-1.673927343536305, 49.65700543865399], - [-1.673924391873185, 49.65700014113187], - [-1.673922973085514, 49.656996896986335], - [-1.673920117920933, 49.65699564280755], - [-1.673893732207176, 49.65699408075931], - [-1.673893732207176, 49.65699408075931] - ] - }, - "length": 0.35978615142983944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38007", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22604", - "bus2": "MVLV01706", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.673893732207176, 49.65699408075931], - [-1.673893732207176, 49.65699408075931], - [-1.673707310915567, 49.65697781693429], - [-1.673406236814339, 49.65695676628434], - [-1.673209625311018, 49.6569555239853], - [-1.672890090963208, 49.65695318556568], - [-1.672307056857197, 49.65696001158772], - [-1.670580370829152, 49.65698705886373], - [-1.67057193383152, 49.656677104031814], - [-1.670680684591789, 49.65660224611452], - [-1.670679585514564, 49.656588794073365], - [-1.6706848356208555, 49.656587653461884] - ] - }, - "length": 0.2869541126249135, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36813", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01706", - "bus2": "MVBus26721", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6706848356208555, 49.656587653461884], - [-1.670690085727147, 49.656586512850396], - [-1.67070169883703, 49.6565976832098], - [-1.670635519700989, 49.656687766511745], - [-1.67064106690749, 49.65696571458043], - [-1.672937131365823, 49.65694244508355], - [-1.673393205346661, 49.65694342208668], - [-1.673714225148667, 49.656963056106264], - [-1.674125972813084, 49.65699482395728], - [-1.674275818087714, 49.656969091911975], - [-1.674277152501746, 49.65696686252891], - [-1.674277152501746, 49.65696686252891] - ] - }, - "length": 0.30693215195631945, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41423", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus26721", - "bus2": "MVLV01698", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.674277152501746, 49.65696686252891], - [-1.674277152501746, 49.65696686252891], - [-1.675071025881376, 49.6556395065306], - [-1.674725960202185, 49.655558698636405], - [-1.674487217505072, 49.6555903649928], - [-1.674286160954233, 49.65589538000418], - [-1.674089395171112, 49.65604986454216], - [-1.673979041567607, 49.65596695458006], - [-1.673965482110437, 49.655956757270765], - [-1.67396768671466, 49.655955025085554] - ] - }, - "length": 0.2753332481217924, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32648", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01698", - "bus2": "MVLV10776", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.67396768671466, 49.655955025085554], - [-1.673969891318883, 49.65595329290034], - [-1.67398785998382, 49.65596002583815], - [-1.674042081236127, 49.655980358059864], - [-1.674226487934641, 49.655844313039566], - [-1.674444469242429, 49.655508999198744], - [-1.674715024543798, 49.65547623289931], - [-1.675128102066041, 49.6555744962176], - [-1.675176000480159, 49.65549899947378], - [-1.675255547689846, 49.65550814095187], - [-1.675275983450737, 49.65551049353201], - [-1.6752788266700036, 49.65550693267713] - ] - }, - "length": 0.13470701833430523, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47234", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10776", - "bus2": "MVLV09700", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6752788266700036, 49.65550693267713], - [-1.67528166988927, 49.65550337182224], - [-1.67526690675527, 49.655493897992116], - [-1.675208568631158, 49.65545645555238], - [-1.676192776458766, 49.65384476857928], - [-1.676286536254999, 49.65377038451844], - [-1.67637377763908, 49.653734955738095], - [-1.677036721521781, 49.65400466253389], - [-1.677494415781153, 49.654173412998034], - [-1.677347146971025, 49.65465303404376], - [-1.677343089919127, 49.65466624356853], - [-1.6773448547737, 49.65466658066605] - ] - }, - "length": 0.36876498865043383, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35242", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09700", - "bus2": "MVLV09696", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6773448547737, 49.65466658066605], - [-1.677346619628273, 49.65466691776358], - [-1.67735420638769, 49.6546543824335], - [-1.677628463706782, 49.6542011840085], - [-1.678113900867778, 49.654302342084655], - [-1.678667036130465, 49.654332711132014], - [-1.679010455358163, 49.65430911684581], - [-1.678880187127391, 49.654799883819], - [-1.678770591808817, 49.65490092737212], - [-1.678634464207953, 49.65523611346554], - [-1.678097528581897, 49.655268926155365], - [-1.678076864895278, 49.65527018750508], - [-1.6780747779003309, 49.655274905822935] - ] - }, - "length": 0.3056172779538304, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40080", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09696", - "bus2": "MVLV01697", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6780747779003309, 49.655274905822935], - [-1.678072690905384, 49.65527962414078], - [-1.678089181314788, 49.65528780839687], - [-1.678144418098371, 49.6553152181978], - [-1.67866190791389, 49.65530000143054], - [-1.678875756206534, 49.655404254920114], - [-1.678899802351542, 49.65540039026296], - [-1.6789199507355, 49.65539715856858], - [-1.678922603714337, 49.65539083429302] - ] - }, - "length": 0.06652125023066995, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43579", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01697", - "bus2": "MVLV10768", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.678922603714337, 49.65539083429302], - [-1.678925256693174, 49.65538451001746], - [-1.678910414981441, 49.655375102131124], - [-1.678736703536458, 49.65526499317018], - [-1.678829534214599, 49.655010547963066], - [-1.678973702731857, 49.65484076098087], - [-1.679144308889874, 49.65428376571825], - [-1.680034460154386, 49.65416198357893], - [-1.680088848218442, 49.65482375205744], - [-1.680622201035775, 49.65473798528497], - [-1.680629997114304, 49.65473672820811], - [-1.680650220947472, 49.654729537058294], - [-1.6806498367623357, 49.654726771172655] - ] - }, - "length": 0.3141553288143411, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44845", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10768", - "bus2": "MVBus32481", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.6806498367623357, 49.654726771172655], - [-1.680649452577199, 49.654724005287015], - [-1.680620082467265, 49.654724108466446], - [-1.680617720428734, 49.654724366761755], - [-1.680198212687284, 49.65477043741846], - [-1.680146921626781, 49.65409595873909], - [-1.679058120325391, 49.65423091938446], - [-1.678679042911614, 49.654259357440885], - [-1.678125611370777, 49.654225392366186], - [-1.677614535697321, 49.65411612883299], - [-1.677087691774939, 49.653949763364736], - [-1.676459009396345, 49.65365816574056], - [-1.676468589659444, 49.65355518204723], - [-1.676470873384789, 49.653553577574854], - [-1.676470873384789, 49.653553577574854] - ] - }, - "length": 0.4045281743946701, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35243", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32481", - "bus2": "MVLV13410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.676470873384789, 49.653553577574854], - [-1.676470873384789, 49.653553577574854], - [-1.676424765437117, 49.653482511979], - [-1.676521421331345, 49.65344053000349], - [-1.676858481206689, 49.65325319473666], - [-1.678152565183635, 49.65269022736848], - [-1.678544385244714, 49.65250613193956], - [-1.679098718928381, 49.65214385975146], - [-1.679151650142219, 49.652057816640855], - [-1.679181001130015, 49.651886589081585], - [-1.679277799252331, 49.65181342328669], - [-1.679907774876601, 49.65152996245496], - [-1.679918713866793, 49.65154223352049], - [-1.679931285366726, 49.65155465719737], - [-1.679931285366726, 49.65155465719737] - ] - }, - "length": 0.3519938016465228, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV16887_production", - "bus": "MVLV16887", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16887_consumption", - "bus": "MVLV16887", - "phases": "abc", - "powers": [ - [20992.888932081103, 6900.028913760339], - [20992.888932081103, 6900.028913760339], - [20992.888932081103, 6900.028913760339] - ] - }, - { - "id": "MVLV12762_production", - "bus": "MVLV12762", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12762_consumption", - "bus": "MVLV12762", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV04334_production", - "bus": "MVLV04334", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04334_consumption", - "bus": "MVLV04334", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV15648_production", - "bus": "MVLV15648", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15648_consumption", - "bus": "MVLV15648", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV11486_production", - "bus": "MVLV11486", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11486_consumption", - "bus": "MVLV11486", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV12761_production", - "bus": "MVLV12761", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12761_consumption", - "bus": "MVLV12761", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV08515_production", - "bus": "MVLV08515", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08515_consumption", - "bus": "MVLV08515", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV08514_production", - "bus": "MVLV08514", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08514_consumption", - "bus": "MVLV08514", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV08517_production", - "bus": "MVLV08517", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08517_consumption", - "bus": "MVLV08517", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV11487_production", - "bus": "MVLV11487", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11487_consumption", - "bus": "MVLV11487", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV15647_production", - "bus": "MVLV15647", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15647_consumption", - "bus": "MVLV15647", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV08518_production", - "bus": "MVLV08518", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08518_consumption", - "bus": "MVLV08518", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV12764_production", - "bus": "MVLV12764", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12764_consumption", - "bus": "MVLV12764", - "phases": "abc", - "powers": [ - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828], - [34171.6174720216, 11231.667511305828] - ] - }, - { - "id": "MVLV09710_production", - "bus": "MVLV09710", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09710_consumption", - "bus": "MVLV09710", - "phases": "abc", - "powers": [ - [32302.18066331616, 10617.21334664805], - [32302.18066331616, 10617.21334664805], - [32302.18066331616, 10617.21334664805] - ] - }, - { - "id": "MVLV01706_production", - "bus": "MVLV01706", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01706_consumption", - "bus": "MVLV01706", - "phases": "abc", - "powers": [ - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683] - ] - }, - { - "id": "MVLV01698_production", - "bus": "MVLV01698", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01698_consumption", - "bus": "MVLV01698", - "phases": "abc", - "powers": [ - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683] - ] - }, - { - "id": "MVLV10776_production", - "bus": "MVLV10776", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10776_consumption", - "bus": "MVLV10776", - "phases": "abc", - "powers": [ - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683] - ] - }, - { - "id": "MVLV09700_production", - "bus": "MVLV09700", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09700_consumption", - "bus": "MVLV09700", - "phases": "abc", - "powers": [ - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683] - ] - }, - { - "id": "MVLV09696_production", - "bus": "MVLV09696", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09696_consumption", - "bus": "MVLV09696", - "phases": "abc", - "powers": [ - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683] - ] - }, - { - "id": "MVLV01697_production", - "bus": "MVLV01697", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01697_consumption", - "bus": "MVLV01697", - "phases": "abc", - "powers": [ - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683], - [36920.71829453672, 12135.253255200683] - ] - }, - { - "id": "MVLV10768_production", - "bus": "MVLV10768", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10768_consumption", - "bus": "MVLV10768", - "phases": "abc", - "powers": [ - [32302.18066331616, 10617.21334664805], - [32302.18066331616, 10617.21334664805], - [32302.18066331616, 10617.21334664805] - ] - }, - { - "id": "MVLV13410_production", - "bus": "MVLV13410", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13410_consumption", - "bus": "MVLV13410", - "phases": "abc", - "powers": [ - [32302.18066331616, 10617.21334664805], - [32302.18066331616, 10617.21334664805], - [32302.18066331616, 10617.21334664805] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder232_summer.json b/data/MVFeeder232_summer.json deleted file mode 100644 index 5562b5a1..00000000 --- a/data/MVFeeder232_summer.json +++ /dev/null @@ -1,2596 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.480951121955717, 48.55306081426247] - } - }, - { - "id": "HVMV16", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.480951121955717, 48.55306081426247] - } - }, - { - "id": "MVBus02065", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.481478941947719, 48.5516792566919] - } - }, - { - "id": "MVBus02066", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540711137646514, 48.52866172204854] - } - }, - { - "id": "MVLV19187", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5407393002418477, 48.528722416439514] - } - }, - { - "id": "MVBus18124", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541250132048243, 48.52901194360347] - } - }, - { - "id": "MVBus18125", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543773388049549, 48.527435714338985] - } - }, - { - "id": "MVBus18126", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54368927326359, 48.52651719085881] - } - }, - { - "id": "MVBus18127", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543597094297414, 48.521270762668024] - } - }, - { - "id": "MVBus18128", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543018988027638, 48.51811436140585] - } - }, - { - "id": "MVBus18129", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541950199528134, 48.51627467859784] - } - }, - { - "id": "MVLV08087", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541892791108224, 48.516275500246905] - } - }, - { - "id": "MVBus18131", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542713276498972, 48.51630019405735] - } - }, - { - "id": "MVBus18132", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546595110847239, 48.51351840557732] - } - }, - { - "id": "MVLV11693", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549874417076119, 48.51328696908033] - } - }, - { - "id": "MVBus18134", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54648288050085, 48.51180724058062] - } - }, - { - "id": "MVLV11692", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.545202242552729, 48.51236649794666] - } - }, - { - "id": "MVBus18135", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549484139904866, 48.50883339939408] - } - }, - { - "id": "MVBus18136", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550206823560244, 48.506594905291905] - } - }, - { - "id": "MVLV12206", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550657327418384, 48.50670965386375] - } - }, - { - "id": "MVBus18151", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544330135848701, 48.50625699483946] - } - }, - { - "id": "MVLV16510", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544273568518067, 48.50713848580767] - } - }, - { - "id": "MVLV04916", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.539812687057545, 48.50495238135772] - } - }, - { - "id": "MVBus18137", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.552517516036617, 48.50070436464574] - } - }, - { - "id": "MVBus18139", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550525792181719, 48.50046445820923] - } - }, - { - "id": "MVBus18142", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54594405881023, 48.49991244299773] - } - }, - { - "id": "MVLV04549", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54471216962048, 48.500812011051494] - } - }, - { - "id": "MVBus18143", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546039604662548, 48.49955827259096] - } - }, - { - "id": "MVBus18144", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546208588807372, 48.49617619322259] - } - }, - { - "id": "MVBus18145", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546335613494759, 48.49363356982077] - } - }, - { - "id": "MVBus18147", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.545472108046927, 48.489233170871124] - } - }, - { - "id": "MVBus18146", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.547791851449651, 48.49306953019419] - } - }, - { - "id": "MVLV06933", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544750853574297, 48.49637633726677] - } - }, - { - "id": "MVBus18140", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550757687157653, 48.49985363073012] - } - }, - { - "id": "MVBus18141", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.554517778746445, 48.499844603554735] - } - }, - { - "id": "MVBus18138", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.561462602065331, 48.5008956649214] - } - }, - { - "id": "MVBus18155", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543311826142846, 48.526335372317355] - } - }, - { - "id": "MVLV17074", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.53943409979167, 48.52453662061788] - } - }, - { - "id": "MVBus16271", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541816399593816, 48.530014800295405] - } - }, - { - "id": "MVBus16272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549975000651848, 48.5281505762032] - } - }, - { - "id": "MVBus16274", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.554764788314803, 48.52669185049975] - } - }, - { - "id": "MVBus16276", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.558800346431667, 48.525433783523816] - } - }, - { - "id": "MVLV17143", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.557789595923771, 48.52501638217188] - } - }, - { - "id": "MVBus16277", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.560628107060558, 48.524941267714205] - } - }, - { - "id": "MVBus16278", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.566380318628245, 48.524694266551045] - } - }, - { - "id": "MVBus16280", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.566448158932665, 48.52407357603867] - } - }, - { - "id": "MVLV14272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.566423881056259, 48.52407453059369] - } - }, - { - "id": "MVBus16281", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.56465394114039, 48.520033791014896] - } - }, - { - "id": "MVBus16282", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564491960080981, 48.51992212672882] - } - }, - { - "id": "MVBus16283", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564111995320302, 48.51963491292472] - } - }, - { - "id": "MVBus16284", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.563127054612326, 48.51828552233302] - } - }, - { - "id": "MVBus16285", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564133081404684, 48.51575028018875] - } - }, - { - "id": "MVBus16286", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.568066585866426, 48.51554364477023] - } - }, - { - "id": "MVLV13935", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564471040507244, 48.51989277253283] - } - }, - { - "id": "MVLV17075", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564445711356673, 48.527963271453274] - } - }, - { - "id": "MVBus16289", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.567188445296061, 48.52466235447822] - } - }, - { - "id": "MVBus16290", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.572574753072218, 48.52414323836759] - } - }, - { - "id": "MVBus16291", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.571147770590084, 48.52818479539541] - } - }, - { - "id": "MVLV17142", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.572116843944956, 48.52806284345167] - } - }, - { - "id": "MVBus16292", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.570735844206441, 48.52929767150866] - } - }, - { - "id": "MVLV16629", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.57027769540357, 48.53031039976622] - } - }, - { - "id": "MVBus25989", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.569311917293301, 48.53149360990055] - } - }, - { - "id": "MVLV11702", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.567415544559584, 48.53152557552724] - } - }, - { - "id": "MVBus26847", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.562613678447487, 48.53155108903226] - } - }, - { - "id": "MVLV13936", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.555103571193291, 48.52185325111848] - } - }, - { - "id": "MVLV04950", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550220693123534, 48.528615590660756] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV16", - "geometry": { - "type": "Point", - "coordinates": [-1.480951121955717, 48.55306081426247] - } - }, - { - "id": "MVBranch41967", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV16", - "bus2": "MVBus02065", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.480951121955717, 48.55306081426247], - [-1.480931792761967, 48.55304566991032], - [-1.480931792761967, 48.55304566991032], - [-1.480931435591994, 48.55303375632181], - [-1.481478941947719, 48.5516792566919], - [-1.481478941947719, 48.5516792566919] - ] - }, - "length": 0.15727597000329052, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch13860", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02065", - "bus2": "MVBus02066", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.481478941947719, 48.5516792566919], - [-1.481478941947719, 48.5516792566919], - [-1.48367217582773, 48.5402473763072], - [-1.489363378721545, 48.5365353015778], - [-1.500796614988101, 48.5331497253835], - [-1.51788862856628, 48.5309917145436], - [-1.540711137646514, 48.52866172204854], - [-1.540711137646514, 48.52866172204854] - ] - }, - "length": 5.785430947880203, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch39425", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02066", - "bus2": "MVLV19187", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540711137646514, 48.52866172204854], - [-1.540711137646514, 48.52866172204854], - [-1.540749990969175, 48.52865191532068], - [-1.54077019147986, 48.52867793056845], - [-1.540725639151505, 48.528692739508685], - [-1.540725763228532, 48.52869878382927], - [-1.540726030049279, 48.528712581968364], - [-1.5407393002418477, 48.528722416439514] - ] - }, - "length": 0.012211272156633606, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45749", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV19187", - "bus2": "MVBus18124", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407393002418477, 48.528722416439514], - [-1.540745475848779, 48.52873044944361], - [-1.540764636969021, 48.52873482538227], - [-1.540772728885903, 48.528736675145396], - [-1.540804174679467, 48.52871745370808], - [-1.540838394843269, 48.52873573669866], - [-1.54092764073007, 48.528794058758066], - [-1.54105013145268, 48.52885735681454], - [-1.541136010715773, 48.528901739235266], - [-1.54124186648001, 48.52898023563977], - [-1.541250132048243, 48.52901194360347], - [-1.541250132048243, 48.52901194360347] - ] - }, - "length": 0.052572379997209664, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32488", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18124", - "bus2": "MVBus18125", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541250132048243, 48.52901194360347], - [-1.541250132048243, 48.52901194360347], - [-1.543513734086843, 48.528734247115395], - [-1.543773388049549, 48.527435714338985], - [-1.543773388049549, 48.527435714338985] - ] - }, - "length": 0.31568185930032555, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05815", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18125", - "bus2": "MVBus18126", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543773388049549, 48.527435714338985], - [-1.543773388049549, 48.527435714338985], - [-1.54368927326359, 48.52651719085881], - [-1.54368927326359, 48.52651719085881] - ] - }, - "length": 0.10232911084034518, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05816", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18126", - "bus2": "MVBus18127", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54368927326359, 48.52651719085881], - [-1.54368927326359, 48.52651719085881], - [-1.543597094297414, 48.521270762668024], - [-1.543597094297414, 48.521270762668024] - ] - }, - "length": 0.5834451909876508, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11801", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18127", - "bus2": "MVBus18128", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543597094297414, 48.521270762668024], - [-1.543597094297414, 48.521270762668024], - [-1.543584054670605, 48.520997625091454], - [-1.543018988027638, 48.51811436140585], - [-1.543018988027638, 48.51811436140585] - ] - }, - "length": 0.35371438128793947, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch41934", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18128", - "bus2": "MVBus18129", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543018988027638, 48.51811436140585], - [-1.543018988027638, 48.51811436140585], - [-1.541856025801888, 48.5181255230969], - [-1.541883218474555, 48.51750718588299], - [-1.541950199528134, 48.51627467859784], - [-1.541950199528134, 48.51627467859784] - ] - }, - "length": 0.29185611922074794, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37318", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18129", - "bus2": "MVLV08087", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541950199528134, 48.51627467859784], - [-1.541950199528134, 48.51627467859784], - [-1.541928543732977, 48.516260376076275], - [-1.541892791108224, 48.516275500246905], - [-1.541892791108224, 48.516275500246905] - ] - }, - "length": 0.005387219437622075, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48379", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18129", - "bus2": "MVBus18131", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541950199528134, 48.51627467859784], - [-1.541950199528134, 48.51627467859784], - [-1.542713276498972, 48.51630019405735], - [-1.542713276498972, 48.51630019405735] - ] - }, - "length": 0.05644575283858191, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch13476", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18131", - "bus2": "MVBus18132", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542713276498972, 48.51630019405735], - [-1.542713276498972, 48.51630019405735], - [-1.546595110847239, 48.51351840557732], - [-1.546595110847239, 48.51351840557732] - ] - }, - "length": 0.42182520865833195, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05798", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18132", - "bus2": "MVLV11693", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546595110847239, 48.51351840557732], - [-1.546595110847239, 48.51351840557732], - [-1.549874417076119, 48.51328696908033], - [-1.549874417076119, 48.51328696908033] - ] - }, - "length": 0.24364449345962885, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18132", - "bus2": "MVBus18134", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546595110847239, 48.51351840557732], - [-1.546595110847239, 48.51351840557732], - [-1.54648288050085, 48.51180724058062], - [-1.54648288050085, 48.51180724058062] - ] - }, - "length": 0.19046261936131878, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05386", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18134", - "bus2": "MVLV11692", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54648288050085, 48.51180724058062], - [-1.54648288050085, 48.51180724058062], - [-1.545202242552729, 48.51236649794666], - [-1.545202242552729, 48.51236649794666] - ] - }, - "length": 0.11322629500890477, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05797", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18134", - "bus2": "MVBus18135", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54648288050085, 48.51180724058062], - [-1.54648288050085, 48.51180724058062], - [-1.548740374214826, 48.510549453587466], - [-1.549484139904866, 48.50883339939408], - [-1.549484139904866, 48.50883339939408] - ] - }, - "length": 0.41625799562163196, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13478", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18135", - "bus2": "MVBus18136", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549484139904866, 48.50883339939408], - [-1.549484139904866, 48.50883339939408], - [-1.54949314386119, 48.508805516010526], - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905] - ] - }, - "length": 0.2545842245220032, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20766", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18136", - "bus2": "MVLV12206", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905], - [-1.550657327418384, 48.50670965386375], - [-1.550657327418384, 48.50670965386375] - ] - }, - "length": 0.035650306156386105, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13856", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18136", - "bus2": "MVBus18151", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905], - [-1.544330135848701, 48.50625699483946], - [-1.544330135848701, 48.50625699483946] - ] - }, - "length": 0.43586333573182945, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13479", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18151", - "bus2": "MVLV16510", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544330135848701, 48.50625699483946], - [-1.544330135848701, 48.50625699483946], - [-1.544273568518067, 48.50713848580767], - [-1.544273568518067, 48.50713848580767] - ] - }, - "length": 0.09811102382463735, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22620", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18151", - "bus2": "MVLV04916", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544330135848701, 48.50625699483946], - [-1.544330135848701, 48.50625699483946], - [-1.539812687057545, 48.50495238135772], - [-1.539812687057545, 48.50495238135772] - ] - }, - "length": 0.36397075238192916, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13477", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18136", - "bus2": "MVBus18137", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905], - [-1.55207876009101, 48.50117784633596], - [-1.552517516036617, 48.50070436464574], - [-1.552517516036617, 48.50070436464574] - ] - }, - "length": 0.6798903811193758, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00912", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18137", - "bus2": "MVBus18139", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.552517516036617, 48.50070436464574], - [-1.552517516036617, 48.50070436464574], - [-1.550525792181719, 48.50046445820923], - [-1.550525792181719, 48.50046445820923] - ] - }, - "length": 0.14958758934150304, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05387", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18139", - "bus2": "MVBus18142", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550525792181719, 48.50046445820923], - [-1.550525792181719, 48.50046445820923], - [-1.54594405881023, 48.49991244299773], - [-1.54594405881023, 48.49991244299773] - ] - }, - "length": 0.3441145016340234, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30134", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18142", - "bus2": "MVLV04549", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54594405881023, 48.49991244299773], - [-1.54594405881023, 48.49991244299773], - [-1.54471216962048, 48.500812011051494], - [-1.54471216962048, 48.500812011051494] - ] - }, - "length": 0.13525629710923887, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05388", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18142", - "bus2": "MVBus18143", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54594405881023, 48.49991244299773], - [-1.54594405881023, 48.49991244299773], - [-1.546039604662548, 48.49955827259096], - [-1.546039604662548, 48.49955827259096] - ] - }, - "length": 0.04001173001394585, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24251", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18143", - "bus2": "MVBus18144", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546039604662548, 48.49955827259096], - [-1.546039604662548, 48.49955827259096], - [-1.546208588807372, 48.49617619322259], - [-1.546208588807372, 48.49617619322259] - ] - }, - "length": 0.37629451918835716, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20644", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18144", - "bus2": "MVBus18145", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546208588807372, 48.49617619322259], - [-1.546208588807372, 48.49617619322259], - [-1.546335613494759, 48.49363356982077], - [-1.546335613494759, 48.49363356982077] - ] - }, - "length": 0.2828953957730023, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13480", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18145", - "bus2": "MVBus18147", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546335613494759, 48.49363356982077], - [-1.546335613494759, 48.49363356982077], - [-1.546205487762659, 48.49268519779081], - [-1.545472108046927, 48.489233170871124], - [-1.545472108046927, 48.489233170871124] - ] - }, - "length": 0.49357001977129167, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30133", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18145", - "bus2": "MVBus18146", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546335613494759, 48.49363356982077], - [-1.546335613494759, 48.49363356982077], - [-1.547791851449651, 48.49306953019419], - [-1.547791851449651, 48.49306953019419] - ] - }, - "length": 0.12457373286961472, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch33658", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18144", - "bus2": "MVLV06933", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546208588807372, 48.49617619322259], - [-1.546208588807372, 48.49617619322259], - [-1.546163206596123, 48.496179637750856], - [-1.546114923356977, 48.49617339370539], - [-1.546030643906099, 48.496150033846824], - [-1.545868816468609, 48.49609658517436], - [-1.545796565157224, 48.496067609444296], - [-1.545671171471222, 48.496037337547], - [-1.545510144970415, 48.496040171181996], - [-1.545377464569481, 48.4960517671586], - [-1.545209770161014, 48.49611390079066], - [-1.545048525080701, 48.49617316705424], - [-1.544928843007531, 48.49622188686486], - [-1.544766294952047, 48.496341770962836], - [-1.544750853574297, 48.49637633726677], - [-1.544750853574297, 48.49637633726677] - ] - }, - "length": 0.12514318360867333, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch00657", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18139", - "bus2": "MVBus18140", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550525792181719, 48.50046445820923], - [-1.550525792181719, 48.50046445820923], - [-1.550757687157653, 48.49985363073012], - [-1.550757687157653, 48.49985363073012] - ] - }, - "length": 0.07005257277568233, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42241", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18140", - "bus2": "MVBus18141", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550757687157653, 48.49985363073012], - [-1.550757687157653, 48.49985363073012], - [-1.550772920837456, 48.49983795418307], - [-1.552300093595419, 48.499815434140395], - [-1.553737200240187, 48.499816696612484], - [-1.554507829081777, 48.499800341029264], - [-1.554517778746445, 48.499844603554735], - [-1.554517778746445, 48.499844603554735] - ] - }, - "length": 0.2831246479931285, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20767", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18137", - "bus2": "MVBus18138", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.552517516036617, 48.50070436464574], - [-1.552517516036617, 48.50070436464574], - [-1.561462602065331, 48.5008956649214], - [-1.561462602065331, 48.5008956649214] - ] - }, - "length": 0.6613862657253364, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18126", - "bus2": "MVBus18155", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54368927326359, 48.52651719085881], - [-1.54368927326359, 48.52651719085881], - [-1.543311826142846, 48.526335372317355], - [-1.543311826142846, 48.526335372317355] - ] - }, - "length": 0.03443893142478112, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11802", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18155", - "bus2": "MVLV17074", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543311826142846, 48.526335372317355], - [-1.543311826142846, 48.526335372317355], - [-1.53943409979167, 48.52453662061788], - [-1.53943409979167, 48.52453662061788] - ] - }, - "length": 0.34935474936375255, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38453", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV19187", - "bus2": "MVBus16271", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407393002418477, 48.528722416439514], - [-1.540746394827485, 48.52872421790658], - [-1.540766852758472, 48.528722340916254], - [-1.540772532661135, 48.5287218216232], - [-1.540827231054627, 48.52869001084777], - [-1.54083643538341, 48.52869698145708], - [-1.540913344838151, 48.52874903867408], - [-1.541001267117247, 48.528801949738096], - [-1.541139461047629, 48.528867765886204], - [-1.541292189389803, 48.52898161829941], - [-1.541405470228495, 48.52922304255998], - [-1.541438595716016, 48.52932975599046], - [-1.541503427183287, 48.529538666079794], - [-1.541585313196577, 48.52982949800695], - [-1.54164978603542, 48.53003356843414], - [-1.541816399593816, 48.530014800295405], - [-1.541816399593816, 48.530014800295405] - ] - }, - "length": 0.18726485334894744, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch05215", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16271", - "bus2": "MVBus16272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541816399593816, 48.530014800295405], - [-1.541816399593816, 48.530014800295405], - [-1.547088740782389, 48.52912712179258], - [-1.549975000651848, 48.5281505762032], - [-1.549975000651848, 48.5281505762032] - ] - }, - "length": 0.640966387076621, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20711", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16272", - "bus2": "MVBus16274", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549975000651848, 48.5281505762032], - [-1.549975000651848, 48.5281505762032], - [-1.554764788314803, 48.52669185049975], - [-1.554764788314803, 48.52669185049975] - ] - }, - "length": 0.3891959981728256, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20712", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16274", - "bus2": "MVBus16276", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.554764788314803, 48.52669185049975], - [-1.554764788314803, 48.52669185049975], - [-1.558800346431667, 48.525433783523816], - [-1.558800346431667, 48.525433783523816] - ] - }, - "length": 0.32927704767560245, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20713", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16276", - "bus2": "MVLV17143", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558800346431667, 48.525433783523816], - [-1.558800346431667, 48.525433783523816], - [-1.557789595923771, 48.52501638217188], - [-1.557789595923771, 48.52501638217188] - ] - }, - "length": 0.08791083568496559, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05813", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16276", - "bus2": "MVBus16277", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558800346431667, 48.525433783523816], - [-1.558800346431667, 48.525433783523816], - [-1.560628107060558, 48.524941267714205], - [-1.560628107060558, 48.524941267714205] - ] - }, - "length": 0.14569306278429903, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05812", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16277", - "bus2": "MVBus16278", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.560628107060558, 48.524941267714205], - [-1.560628107060558, 48.524941267714205], - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045] - ] - }, - "length": 0.42577585741145935, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01013", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16278", - "bus2": "MVBus16280", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045], - [-1.566448158932665, 48.52407357603867], - [-1.566448158932665, 48.52407357603867] - ] - }, - "length": 0.06920277281002768, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28782", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16280", - "bus2": "MVLV14272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566448158932665, 48.52407357603867], - [-1.566448158932665, 48.52407357603867], - [-1.566423881056259, 48.52407453059369], - [-1.566423881056259, 48.52407453059369] - ] - }, - "length": 0.001796458276207273, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05494", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16280", - "bus2": "MVBus16281", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566448158932665, 48.52407357603867], - [-1.566448158932665, 48.52407357603867], - [-1.565875606024219, 48.52174143428685], - [-1.565715041632176, 48.520765254848165], - [-1.56465394114039, 48.520033791014896], - [-1.56465394114039, 48.520033791014896] - ] - }, - "length": 0.4849205732180417, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05472", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16281", - "bus2": "MVBus16282", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56465394114039, 48.520033791014896], - [-1.56465394114039, 48.520033791014896], - [-1.564491960080981, 48.51992212672882], - [-1.564491960080981, 48.51992212672882] - ] - }, - "length": 0.017244364937418964, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01014", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16282", - "bus2": "MVBus16283", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564491960080981, 48.51992212672882], - [-1.564491960080981, 48.51992212672882], - [-1.564111995320302, 48.51963491292472], - [-1.564111995320302, 48.51963491292472] - ] - }, - "length": 0.042519688607768884, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch41113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16283", - "bus2": "MVBus16284", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564111995320302, 48.51963491292472], - [-1.564111995320302, 48.51963491292472], - [-1.564175078572279, 48.51960012244928], - [-1.563938659171826, 48.5192810968531], - [-1.563417933641942, 48.51853573291047], - [-1.563270349565037, 48.51842734538977], - [-1.563260203282294, 48.51836628586064], - [-1.563127054612326, 48.51828552233302], - [-1.563127054612326, 48.51828552233302] - ] - }, - "length": 0.17337809445854596, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45763", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16284", - "bus2": "MVBus16285", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.563127054612326, 48.51828552233302], - [-1.563127054612326, 48.51828552233302], - [-1.563103711027032, 48.51802724117635], - [-1.56309817518798, 48.51785892928983], - [-1.563226358271758, 48.51731177334673], - [-1.563445525624898, 48.51637620131981], - [-1.563580998662717, 48.51607146496962], - [-1.563792819417851, 48.515904738400195], - [-1.563982601915087, 48.51578012430562], - [-1.564133081404684, 48.51575028018875], - [-1.564133081404684, 48.51575028018875] - ] - }, - "length": 0.3052687696299153, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42587", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16285", - "bus2": "MVBus16286", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564133081404684, 48.51575028018875], - [-1.564133081404684, 48.51575028018875], - [-1.564392283444212, 48.515616272787724], - [-1.564539416777802, 48.51560455816154], - [-1.564681069129749, 48.51566195237741], - [-1.565708543899329, 48.51562243657093], - [-1.565918626404687, 48.51560700380665], - [-1.566843367289996, 48.51534946795782], - [-1.567208174700681, 48.5153359976752], - [-1.56783448751535, 48.51544410310774], - [-1.567853542559899, 48.51548872977923], - [-1.568060857712863, 48.515521412957426], - [-1.568066585866426, 48.51554364477023], - [-1.568066585866426, 48.51554364477023] - ] - }, - "length": 0.31140773779321634, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch24310", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16282", - "bus2": "MVLV13935", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564491960080981, 48.51992212672882], - [-1.564491960080981, 48.51992212672882], - [-1.564471040507244, 48.51989277253283], - [-1.564471040507244, 48.51989277253283] - ] - }, - "length": 0.0036115366476767467, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05814", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16278", - "bus2": "MVLV17075", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045], - [-1.564445711356673, 48.527963271453274], - [-1.564445711356673, 48.527963271453274] - ] - }, - "length": 0.3905925912818533, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13642", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16278", - "bus2": "MVBus16289", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045], - [-1.567117273440814, 48.52466516368389], - [-1.567188445296061, 48.52466235447822], - [-1.567188445296061, 48.52466235447822] - ] - }, - "length": 0.059798093805106575, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05217", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16289", - "bus2": "MVBus16290", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.567188445296061, 48.52466235447822], - [-1.567188445296061, 48.52466235447822], - [-1.572574753072218, 48.52414323836759], - [-1.572574753072218, 48.52414323836759] - ] - }, - "length": 0.4020305539474718, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16290", - "bus2": "MVBus16291", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.572574753072218, 48.52414323836759], - [-1.572574753072218, 48.52414323836759], - [-1.571147770590084, 48.52818479539541], - [-1.571147770590084, 48.52818479539541] - ] - }, - "length": 0.46161767653803065, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24311", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16291", - "bus2": "MVLV17142", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.571147770590084, 48.52818479539541], - [-1.571147770590084, 48.52818479539541], - [-1.572116843944956, 48.52806284345167], - [-1.572116843944956, 48.52806284345167] - ] - }, - "length": 0.07284961003559856, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13645", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16291", - "bus2": "MVBus16292", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.571147770590084, 48.52818479539541], - [-1.571147770590084, 48.52818479539541], - [-1.570735844206441, 48.52929767150866], - [-1.570735844206441, 48.52929767150866] - ] - }, - "length": 0.12743760303491475, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch47818", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16292", - "bus2": "MVLV16629", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.570735844206441, 48.52929767150866], - [-1.570735844206441, 48.52929767150866], - [-1.570677092899632, 48.52932852352307], - [-1.570642393275525, 48.52934939989932], - [-1.570586839704426, 48.529368670236636], - [-1.570489638562891, 48.52938064912953], - [-1.570153949385153, 48.52938796158549], - [-1.570110083737531, 48.5296910168923], - [-1.570084209194029, 48.529753553928536], - [-1.570081557271373, 48.529904322934826], - [-1.569934163182408, 48.530181411392846], - [-1.570322285875, 48.530272482332926], - [-1.57030022185984, 48.53029760341768], - [-1.570289807881036, 48.53030945947996], - [-1.57027769540357, 48.53031039976622] - ] - }, - "length": 0.1714026584830801, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37631", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16629", - "bus2": "MVBus25989", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.57027769540357, 48.53031039976622], - [-1.570265582926104, 48.530311340052485], - [-1.57025135558707, 48.53030141432346], - [-1.570243348276653, 48.530295828433886], - [-1.570090366625953, 48.530259858025346], - [-1.569946769725084, 48.53052921530994], - [-1.569727341285589, 48.53068338415963], - [-1.569412514645828, 48.530706818312346], - [-1.569447918220324, 48.53091663481042], - [-1.569404696726503, 48.5309525804769], - [-1.569421242700044, 48.5311326244695], - [-1.569427214879668, 48.53142463575786], - [-1.569400871719194, 48.531464470163044], - [-1.569361363922504, 48.53149174241094], - [-1.569311917293301, 48.53149360990055], - [-1.569311917293301, 48.53149360990055] - ] - }, - "length": 0.18696207511301322, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33472", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus25989", - "bus2": "MVLV11702", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.569311917293301, 48.53149360990055], - [-1.569311917293301, 48.53149360990055], - [-1.569121425035223, 48.531474340569105], - [-1.567571515361342, 48.531528949142995], - [-1.567461862300803, 48.531527259420685], - [-1.567430317531325, 48.53152677087583], - [-1.567415544559584, 48.53152557552724] - ] - }, - "length": 0.1392927077735165, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42182", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11702", - "bus2": "MVBus26847", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.567415544559584, 48.53152557552724], - [-1.567400771587843, 48.531524380178645], - [-1.567360837337889, 48.53152080235734], - [-1.567284750986531, 48.531525249725895], - [-1.567260887537324, 48.5313838623755], - [-1.56724352327969, 48.53135899968272], - [-1.56720704476641, 48.531357773909626], - [-1.567101590881959, 48.531362209717024], - [-1.566711709985445, 48.53137859172699], - [-1.565943408133776, 48.53132906719382], - [-1.565560059562574, 48.53105146478999], - [-1.565190981724465, 48.53111764922949], - [-1.565165881153204, 48.531597314878304], - [-1.564900480161369, 48.53237923250737], - [-1.563496393254041, 48.53221493855495], - [-1.562874903784543, 48.532244770504626], - [-1.562863514197719, 48.53182470616985], - [-1.562551725882172, 48.53162495755879], - [-1.562603772564722, 48.53156596081666], - [-1.562613678447487, 48.53155108903226], - [-1.562613678447487, 48.53155108903226] - ] - }, - "length": 0.5759150366774, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch13639", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16274", - "bus2": "MVLV13936", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.554764788314803, 48.52669185049975], - [-1.554764788314803, 48.52669185049975], - [-1.554218558791524, 48.526036488018605], - [-1.553579595290158, 48.52557067761526], - [-1.555103571193291, 48.52185325111848], - [-1.555103571193291, 48.52185325111848] - ] - }, - "length": 0.5818083295433246, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05817", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16272", - "bus2": "MVLV04950", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549975000651848, 48.5281505762032], - [-1.549975000651848, 48.5281505762032], - [-1.550220693123534, 48.528615590660756], - [-1.550220693123534, 48.528615590660756] - ] - }, - "length": 0.05480165380197354, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV19187_production", - "bus": "MVLV19187", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV19187_consumption", - "bus": "MVLV19187", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV08087_production", - "bus": "MVLV08087", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08087_consumption", - "bus": "MVLV08087", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV11693_production", - "bus": "MVLV11693", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11693_consumption", - "bus": "MVLV11693", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV11692_production", - "bus": "MVLV11692", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11692_consumption", - "bus": "MVLV11692", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV12206_production", - "bus": "MVLV12206", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12206_consumption", - "bus": "MVLV12206", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV16510_production", - "bus": "MVLV16510", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16510_consumption", - "bus": "MVLV16510", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV04916_production", - "bus": "MVLV04916", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04916_consumption", - "bus": "MVLV04916", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV04549_production", - "bus": "MVLV04549", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04549_consumption", - "bus": "MVLV04549", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV06933_production", - "bus": "MVLV06933", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06933_consumption", - "bus": "MVLV06933", - "phases": "abc", - "powers": [ - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299], - [3969.894245863307, 1304.841137856299] - ] - }, - { - "id": "MVLV17074_production", - "bus": "MVLV17074", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV17074_consumption", - "bus": "MVLV17074", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV17143_production", - "bus": "MVLV17143", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV17143_consumption", - "bus": "MVLV17143", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV14272_production", - "bus": "MVLV14272", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV14272_consumption", - "bus": "MVLV14272", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV13935_production", - "bus": "MVLV13935", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV13935_consumption", - "bus": "MVLV13935", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV17075_production", - "bus": "MVLV17075", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV17075_consumption", - "bus": "MVLV17075", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV17142_production", - "bus": "MVLV17142", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV17142_consumption", - "bus": "MVLV17142", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV16629_production", - "bus": "MVLV16629", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV16629_consumption", - "bus": "MVLV16629", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV11702_production", - "bus": "MVLV11702", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV11702_consumption", - "bus": "MVLV11702", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV13936_production", - "bus": "MVLV13936", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV13936_consumption", - "bus": "MVLV13936", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - }, - { - "id": "MVLV04950_production", - "bus": "MVLV04950", - "phases": "abc", - "powers": [ - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0], - [-2465.858585858586, 0.0] - ] - }, - { - "id": "MVLV04950_consumption", - "bus": "MVLV04950", - "phases": "abc", - "powers": [ - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883], - [6501.6746079056, 2136.9971006635883] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder232_winter.json b/data/MVFeeder232_winter.json deleted file mode 100644 index a5907a8b..00000000 --- a/data/MVFeeder232_winter.json +++ /dev/null @@ -1,2596 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.480951121955717, 48.55306081426247] - } - }, - { - "id": "HVMV16", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.480951121955717, 48.55306081426247] - } - }, - { - "id": "MVBus02065", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.481478941947719, 48.5516792566919] - } - }, - { - "id": "MVBus02066", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540711137646514, 48.52866172204854] - } - }, - { - "id": "MVLV19187", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5407393002418477, 48.528722416439514] - } - }, - { - "id": "MVBus18124", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541250132048243, 48.52901194360347] - } - }, - { - "id": "MVBus18125", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543773388049549, 48.527435714338985] - } - }, - { - "id": "MVBus18126", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54368927326359, 48.52651719085881] - } - }, - { - "id": "MVBus18127", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543597094297414, 48.521270762668024] - } - }, - { - "id": "MVBus18128", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543018988027638, 48.51811436140585] - } - }, - { - "id": "MVBus18129", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541950199528134, 48.51627467859784] - } - }, - { - "id": "MVLV08087", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541892791108224, 48.516275500246905] - } - }, - { - "id": "MVBus18131", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542713276498972, 48.51630019405735] - } - }, - { - "id": "MVBus18132", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546595110847239, 48.51351840557732] - } - }, - { - "id": "MVLV11693", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549874417076119, 48.51328696908033] - } - }, - { - "id": "MVBus18134", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54648288050085, 48.51180724058062] - } - }, - { - "id": "MVLV11692", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.545202242552729, 48.51236649794666] - } - }, - { - "id": "MVBus18135", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549484139904866, 48.50883339939408] - } - }, - { - "id": "MVBus18136", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550206823560244, 48.506594905291905] - } - }, - { - "id": "MVLV12206", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550657327418384, 48.50670965386375] - } - }, - { - "id": "MVBus18151", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544330135848701, 48.50625699483946] - } - }, - { - "id": "MVLV16510", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544273568518067, 48.50713848580767] - } - }, - { - "id": "MVLV04916", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.539812687057545, 48.50495238135772] - } - }, - { - "id": "MVBus18137", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.552517516036617, 48.50070436464574] - } - }, - { - "id": "MVBus18139", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550525792181719, 48.50046445820923] - } - }, - { - "id": "MVBus18142", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54594405881023, 48.49991244299773] - } - }, - { - "id": "MVLV04549", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.54471216962048, 48.500812011051494] - } - }, - { - "id": "MVBus18143", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546039604662548, 48.49955827259096] - } - }, - { - "id": "MVBus18144", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546208588807372, 48.49617619322259] - } - }, - { - "id": "MVBus18145", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.546335613494759, 48.49363356982077] - } - }, - { - "id": "MVBus18147", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.545472108046927, 48.489233170871124] - } - }, - { - "id": "MVBus18146", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.547791851449651, 48.49306953019419] - } - }, - { - "id": "MVLV06933", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544750853574297, 48.49637633726677] - } - }, - { - "id": "MVBus18140", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550757687157653, 48.49985363073012] - } - }, - { - "id": "MVBus18141", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.554517778746445, 48.499844603554735] - } - }, - { - "id": "MVBus18138", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.561462602065331, 48.5008956649214] - } - }, - { - "id": "MVBus18155", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543311826142846, 48.526335372317355] - } - }, - { - "id": "MVLV17074", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.53943409979167, 48.52453662061788] - } - }, - { - "id": "MVBus16271", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541816399593816, 48.530014800295405] - } - }, - { - "id": "MVBus16272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549975000651848, 48.5281505762032] - } - }, - { - "id": "MVBus16274", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.554764788314803, 48.52669185049975] - } - }, - { - "id": "MVBus16276", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.558800346431667, 48.525433783523816] - } - }, - { - "id": "MVLV17143", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.557789595923771, 48.52501638217188] - } - }, - { - "id": "MVBus16277", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.560628107060558, 48.524941267714205] - } - }, - { - "id": "MVBus16278", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.566380318628245, 48.524694266551045] - } - }, - { - "id": "MVBus16280", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.566448158932665, 48.52407357603867] - } - }, - { - "id": "MVLV14272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.566423881056259, 48.52407453059369] - } - }, - { - "id": "MVBus16281", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.56465394114039, 48.520033791014896] - } - }, - { - "id": "MVBus16282", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564491960080981, 48.51992212672882] - } - }, - { - "id": "MVBus16283", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564111995320302, 48.51963491292472] - } - }, - { - "id": "MVBus16284", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.563127054612326, 48.51828552233302] - } - }, - { - "id": "MVBus16285", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564133081404684, 48.51575028018875] - } - }, - { - "id": "MVBus16286", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.568066585866426, 48.51554364477023] - } - }, - { - "id": "MVLV13935", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564471040507244, 48.51989277253283] - } - }, - { - "id": "MVLV17075", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.564445711356673, 48.527963271453274] - } - }, - { - "id": "MVBus16289", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.567188445296061, 48.52466235447822] - } - }, - { - "id": "MVBus16290", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.572574753072218, 48.52414323836759] - } - }, - { - "id": "MVBus16291", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.571147770590084, 48.52818479539541] - } - }, - { - "id": "MVLV17142", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.572116843944956, 48.52806284345167] - } - }, - { - "id": "MVBus16292", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.570735844206441, 48.52929767150866] - } - }, - { - "id": "MVLV16629", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.57027769540357, 48.53031039976622] - } - }, - { - "id": "MVBus25989", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.569311917293301, 48.53149360990055] - } - }, - { - "id": "MVLV11702", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.567415544559584, 48.53152557552724] - } - }, - { - "id": "MVBus26847", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.562613678447487, 48.53155108903226] - } - }, - { - "id": "MVLV13936", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.555103571193291, 48.52185325111848] - } - }, - { - "id": "MVLV04950", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550220693123534, 48.528615590660756] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV16", - "geometry": { - "type": "Point", - "coordinates": [-1.480951121955717, 48.55306081426247] - } - }, - { - "id": "MVBranch41967", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV16", - "bus2": "MVBus02065", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.480951121955717, 48.55306081426247], - [-1.480931792761967, 48.55304566991032], - [-1.480931792761967, 48.55304566991032], - [-1.480931435591994, 48.55303375632181], - [-1.481478941947719, 48.5516792566919], - [-1.481478941947719, 48.5516792566919] - ] - }, - "length": 0.15727597000329052, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch13860", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02065", - "bus2": "MVBus02066", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.481478941947719, 48.5516792566919], - [-1.481478941947719, 48.5516792566919], - [-1.48367217582773, 48.5402473763072], - [-1.489363378721545, 48.5365353015778], - [-1.500796614988101, 48.5331497253835], - [-1.51788862856628, 48.5309917145436], - [-1.540711137646514, 48.52866172204854], - [-1.540711137646514, 48.52866172204854] - ] - }, - "length": 5.785430947880203, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch39425", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02066", - "bus2": "MVLV19187", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540711137646514, 48.52866172204854], - [-1.540711137646514, 48.52866172204854], - [-1.540749990969175, 48.52865191532068], - [-1.54077019147986, 48.52867793056845], - [-1.540725639151505, 48.528692739508685], - [-1.540725763228532, 48.52869878382927], - [-1.540726030049279, 48.528712581968364], - [-1.5407393002418477, 48.528722416439514] - ] - }, - "length": 0.012211272156633606, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45749", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV19187", - "bus2": "MVBus18124", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407393002418477, 48.528722416439514], - [-1.540745475848779, 48.52873044944361], - [-1.540764636969021, 48.52873482538227], - [-1.540772728885903, 48.528736675145396], - [-1.540804174679467, 48.52871745370808], - [-1.540838394843269, 48.52873573669866], - [-1.54092764073007, 48.528794058758066], - [-1.54105013145268, 48.52885735681454], - [-1.541136010715773, 48.528901739235266], - [-1.54124186648001, 48.52898023563977], - [-1.541250132048243, 48.52901194360347], - [-1.541250132048243, 48.52901194360347] - ] - }, - "length": 0.052572379997209664, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32488", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18124", - "bus2": "MVBus18125", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541250132048243, 48.52901194360347], - [-1.541250132048243, 48.52901194360347], - [-1.543513734086843, 48.528734247115395], - [-1.543773388049549, 48.527435714338985], - [-1.543773388049549, 48.527435714338985] - ] - }, - "length": 0.31568185930032555, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05815", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18125", - "bus2": "MVBus18126", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543773388049549, 48.527435714338985], - [-1.543773388049549, 48.527435714338985], - [-1.54368927326359, 48.52651719085881], - [-1.54368927326359, 48.52651719085881] - ] - }, - "length": 0.10232911084034518, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05816", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18126", - "bus2": "MVBus18127", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54368927326359, 48.52651719085881], - [-1.54368927326359, 48.52651719085881], - [-1.543597094297414, 48.521270762668024], - [-1.543597094297414, 48.521270762668024] - ] - }, - "length": 0.5834451909876508, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11801", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18127", - "bus2": "MVBus18128", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543597094297414, 48.521270762668024], - [-1.543597094297414, 48.521270762668024], - [-1.543584054670605, 48.520997625091454], - [-1.543018988027638, 48.51811436140585], - [-1.543018988027638, 48.51811436140585] - ] - }, - "length": 0.35371438128793947, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch41934", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18128", - "bus2": "MVBus18129", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543018988027638, 48.51811436140585], - [-1.543018988027638, 48.51811436140585], - [-1.541856025801888, 48.5181255230969], - [-1.541883218474555, 48.51750718588299], - [-1.541950199528134, 48.51627467859784], - [-1.541950199528134, 48.51627467859784] - ] - }, - "length": 0.29185611922074794, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37318", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18129", - "bus2": "MVLV08087", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541950199528134, 48.51627467859784], - [-1.541950199528134, 48.51627467859784], - [-1.541928543732977, 48.516260376076275], - [-1.541892791108224, 48.516275500246905], - [-1.541892791108224, 48.516275500246905] - ] - }, - "length": 0.005387219437622075, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48379", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18129", - "bus2": "MVBus18131", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541950199528134, 48.51627467859784], - [-1.541950199528134, 48.51627467859784], - [-1.542713276498972, 48.51630019405735], - [-1.542713276498972, 48.51630019405735] - ] - }, - "length": 0.05644575283858191, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch13476", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18131", - "bus2": "MVBus18132", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542713276498972, 48.51630019405735], - [-1.542713276498972, 48.51630019405735], - [-1.546595110847239, 48.51351840557732], - [-1.546595110847239, 48.51351840557732] - ] - }, - "length": 0.42182520865833195, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05798", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18132", - "bus2": "MVLV11693", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546595110847239, 48.51351840557732], - [-1.546595110847239, 48.51351840557732], - [-1.549874417076119, 48.51328696908033], - [-1.549874417076119, 48.51328696908033] - ] - }, - "length": 0.24364449345962885, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18132", - "bus2": "MVBus18134", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546595110847239, 48.51351840557732], - [-1.546595110847239, 48.51351840557732], - [-1.54648288050085, 48.51180724058062], - [-1.54648288050085, 48.51180724058062] - ] - }, - "length": 0.19046261936131878, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05386", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18134", - "bus2": "MVLV11692", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54648288050085, 48.51180724058062], - [-1.54648288050085, 48.51180724058062], - [-1.545202242552729, 48.51236649794666], - [-1.545202242552729, 48.51236649794666] - ] - }, - "length": 0.11322629500890477, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05797", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18134", - "bus2": "MVBus18135", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54648288050085, 48.51180724058062], - [-1.54648288050085, 48.51180724058062], - [-1.548740374214826, 48.510549453587466], - [-1.549484139904866, 48.50883339939408], - [-1.549484139904866, 48.50883339939408] - ] - }, - "length": 0.41625799562163196, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13478", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18135", - "bus2": "MVBus18136", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549484139904866, 48.50883339939408], - [-1.549484139904866, 48.50883339939408], - [-1.54949314386119, 48.508805516010526], - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905] - ] - }, - "length": 0.2545842245220032, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20766", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18136", - "bus2": "MVLV12206", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905], - [-1.550657327418384, 48.50670965386375], - [-1.550657327418384, 48.50670965386375] - ] - }, - "length": 0.035650306156386105, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13856", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18136", - "bus2": "MVBus18151", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905], - [-1.544330135848701, 48.50625699483946], - [-1.544330135848701, 48.50625699483946] - ] - }, - "length": 0.43586333573182945, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13479", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18151", - "bus2": "MVLV16510", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544330135848701, 48.50625699483946], - [-1.544330135848701, 48.50625699483946], - [-1.544273568518067, 48.50713848580767], - [-1.544273568518067, 48.50713848580767] - ] - }, - "length": 0.09811102382463735, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch22620", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18151", - "bus2": "MVLV04916", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544330135848701, 48.50625699483946], - [-1.544330135848701, 48.50625699483946], - [-1.539812687057545, 48.50495238135772], - [-1.539812687057545, 48.50495238135772] - ] - }, - "length": 0.36397075238192916, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13477", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18136", - "bus2": "MVBus18137", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550206823560244, 48.506594905291905], - [-1.550206823560244, 48.506594905291905], - [-1.55207876009101, 48.50117784633596], - [-1.552517516036617, 48.50070436464574], - [-1.552517516036617, 48.50070436464574] - ] - }, - "length": 0.6798903811193758, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch00912", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18137", - "bus2": "MVBus18139", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.552517516036617, 48.50070436464574], - [-1.552517516036617, 48.50070436464574], - [-1.550525792181719, 48.50046445820923], - [-1.550525792181719, 48.50046445820923] - ] - }, - "length": 0.14958758934150304, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05387", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18139", - "bus2": "MVBus18142", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550525792181719, 48.50046445820923], - [-1.550525792181719, 48.50046445820923], - [-1.54594405881023, 48.49991244299773], - [-1.54594405881023, 48.49991244299773] - ] - }, - "length": 0.3441145016340234, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30134", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18142", - "bus2": "MVLV04549", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54594405881023, 48.49991244299773], - [-1.54594405881023, 48.49991244299773], - [-1.54471216962048, 48.500812011051494], - [-1.54471216962048, 48.500812011051494] - ] - }, - "length": 0.13525629710923887, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05388", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18142", - "bus2": "MVBus18143", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54594405881023, 48.49991244299773], - [-1.54594405881023, 48.49991244299773], - [-1.546039604662548, 48.49955827259096], - [-1.546039604662548, 48.49955827259096] - ] - }, - "length": 0.04001173001394585, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24251", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18143", - "bus2": "MVBus18144", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546039604662548, 48.49955827259096], - [-1.546039604662548, 48.49955827259096], - [-1.546208588807372, 48.49617619322259], - [-1.546208588807372, 48.49617619322259] - ] - }, - "length": 0.37629451918835716, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20644", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18144", - "bus2": "MVBus18145", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546208588807372, 48.49617619322259], - [-1.546208588807372, 48.49617619322259], - [-1.546335613494759, 48.49363356982077], - [-1.546335613494759, 48.49363356982077] - ] - }, - "length": 0.2828953957730023, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13480", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18145", - "bus2": "MVBus18147", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546335613494759, 48.49363356982077], - [-1.546335613494759, 48.49363356982077], - [-1.546205487762659, 48.49268519779081], - [-1.545472108046927, 48.489233170871124], - [-1.545472108046927, 48.489233170871124] - ] - }, - "length": 0.49357001977129167, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch30133", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18145", - "bus2": "MVBus18146", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546335613494759, 48.49363356982077], - [-1.546335613494759, 48.49363356982077], - [-1.547791851449651, 48.49306953019419], - [-1.547791851449651, 48.49306953019419] - ] - }, - "length": 0.12457373286961472, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch33658", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18144", - "bus2": "MVLV06933", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.546208588807372, 48.49617619322259], - [-1.546208588807372, 48.49617619322259], - [-1.546163206596123, 48.496179637750856], - [-1.546114923356977, 48.49617339370539], - [-1.546030643906099, 48.496150033846824], - [-1.545868816468609, 48.49609658517436], - [-1.545796565157224, 48.496067609444296], - [-1.545671171471222, 48.496037337547], - [-1.545510144970415, 48.496040171181996], - [-1.545377464569481, 48.4960517671586], - [-1.545209770161014, 48.49611390079066], - [-1.545048525080701, 48.49617316705424], - [-1.544928843007531, 48.49622188686486], - [-1.544766294952047, 48.496341770962836], - [-1.544750853574297, 48.49637633726677], - [-1.544750853574297, 48.49637633726677] - ] - }, - "length": 0.12514318360867333, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch00657", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18139", - "bus2": "MVBus18140", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550525792181719, 48.50046445820923], - [-1.550525792181719, 48.50046445820923], - [-1.550757687157653, 48.49985363073012], - [-1.550757687157653, 48.49985363073012] - ] - }, - "length": 0.07005257277568233, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch42241", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18140", - "bus2": "MVBus18141", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550757687157653, 48.49985363073012], - [-1.550757687157653, 48.49985363073012], - [-1.550772920837456, 48.49983795418307], - [-1.552300093595419, 48.499815434140395], - [-1.553737200240187, 48.499816696612484], - [-1.554507829081777, 48.499800341029264], - [-1.554517778746445, 48.499844603554735], - [-1.554517778746445, 48.499844603554735] - ] - }, - "length": 0.2831246479931285, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch20767", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18137", - "bus2": "MVBus18138", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.552517516036617, 48.50070436464574], - [-1.552517516036617, 48.50070436464574], - [-1.561462602065331, 48.5008956649214], - [-1.561462602065331, 48.5008956649214] - ] - }, - "length": 0.6613862657253364, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13643", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18126", - "bus2": "MVBus18155", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.54368927326359, 48.52651719085881], - [-1.54368927326359, 48.52651719085881], - [-1.543311826142846, 48.526335372317355], - [-1.543311826142846, 48.526335372317355] - ] - }, - "length": 0.03443893142478112, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11802", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus18155", - "bus2": "MVLV17074", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.543311826142846, 48.526335372317355], - [-1.543311826142846, 48.526335372317355], - [-1.53943409979167, 48.52453662061788], - [-1.53943409979167, 48.52453662061788] - ] - }, - "length": 0.34935474936375255, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38453", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV19187", - "bus2": "MVBus16271", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407393002418477, 48.528722416439514], - [-1.540746394827485, 48.52872421790658], - [-1.540766852758472, 48.528722340916254], - [-1.540772532661135, 48.5287218216232], - [-1.540827231054627, 48.52869001084777], - [-1.54083643538341, 48.52869698145708], - [-1.540913344838151, 48.52874903867408], - [-1.541001267117247, 48.528801949738096], - [-1.541139461047629, 48.528867765886204], - [-1.541292189389803, 48.52898161829941], - [-1.541405470228495, 48.52922304255998], - [-1.541438595716016, 48.52932975599046], - [-1.541503427183287, 48.529538666079794], - [-1.541585313196577, 48.52982949800695], - [-1.54164978603542, 48.53003356843414], - [-1.541816399593816, 48.530014800295405], - [-1.541816399593816, 48.530014800295405] - ] - }, - "length": 0.18726485334894744, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch05215", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16271", - "bus2": "MVBus16272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541816399593816, 48.530014800295405], - [-1.541816399593816, 48.530014800295405], - [-1.547088740782389, 48.52912712179258], - [-1.549975000651848, 48.5281505762032], - [-1.549975000651848, 48.5281505762032] - ] - }, - "length": 0.640966387076621, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20711", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16272", - "bus2": "MVBus16274", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549975000651848, 48.5281505762032], - [-1.549975000651848, 48.5281505762032], - [-1.554764788314803, 48.52669185049975], - [-1.554764788314803, 48.52669185049975] - ] - }, - "length": 0.3891959981728256, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20712", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16274", - "bus2": "MVBus16276", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.554764788314803, 48.52669185049975], - [-1.554764788314803, 48.52669185049975], - [-1.558800346431667, 48.525433783523816], - [-1.558800346431667, 48.525433783523816] - ] - }, - "length": 0.32927704767560245, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch20713", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16276", - "bus2": "MVLV17143", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558800346431667, 48.525433783523816], - [-1.558800346431667, 48.525433783523816], - [-1.557789595923771, 48.52501638217188], - [-1.557789595923771, 48.52501638217188] - ] - }, - "length": 0.08791083568496559, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05813", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16276", - "bus2": "MVBus16277", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558800346431667, 48.525433783523816], - [-1.558800346431667, 48.525433783523816], - [-1.560628107060558, 48.524941267714205], - [-1.560628107060558, 48.524941267714205] - ] - }, - "length": 0.14569306278429903, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05812", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16277", - "bus2": "MVBus16278", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.560628107060558, 48.524941267714205], - [-1.560628107060558, 48.524941267714205], - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045] - ] - }, - "length": 0.42577585741145935, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01013", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16278", - "bus2": "MVBus16280", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045], - [-1.566448158932665, 48.52407357603867], - [-1.566448158932665, 48.52407357603867] - ] - }, - "length": 0.06920277281002768, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch28782", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16280", - "bus2": "MVLV14272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566448158932665, 48.52407357603867], - [-1.566448158932665, 48.52407357603867], - [-1.566423881056259, 48.52407453059369], - [-1.566423881056259, 48.52407453059369] - ] - }, - "length": 0.001796458276207273, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05494", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16280", - "bus2": "MVBus16281", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566448158932665, 48.52407357603867], - [-1.566448158932665, 48.52407357603867], - [-1.565875606024219, 48.52174143428685], - [-1.565715041632176, 48.520765254848165], - [-1.56465394114039, 48.520033791014896], - [-1.56465394114039, 48.520033791014896] - ] - }, - "length": 0.4849205732180417, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05472", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16281", - "bus2": "MVBus16282", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.56465394114039, 48.520033791014896], - [-1.56465394114039, 48.520033791014896], - [-1.564491960080981, 48.51992212672882], - [-1.564491960080981, 48.51992212672882] - ] - }, - "length": 0.017244364937418964, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01014", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16282", - "bus2": "MVBus16283", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564491960080981, 48.51992212672882], - [-1.564491960080981, 48.51992212672882], - [-1.564111995320302, 48.51963491292472], - [-1.564111995320302, 48.51963491292472] - ] - }, - "length": 0.042519688607768884, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch41113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16283", - "bus2": "MVBus16284", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564111995320302, 48.51963491292472], - [-1.564111995320302, 48.51963491292472], - [-1.564175078572279, 48.51960012244928], - [-1.563938659171826, 48.5192810968531], - [-1.563417933641942, 48.51853573291047], - [-1.563270349565037, 48.51842734538977], - [-1.563260203282294, 48.51836628586064], - [-1.563127054612326, 48.51828552233302], - [-1.563127054612326, 48.51828552233302] - ] - }, - "length": 0.17337809445854596, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45763", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16284", - "bus2": "MVBus16285", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.563127054612326, 48.51828552233302], - [-1.563127054612326, 48.51828552233302], - [-1.563103711027032, 48.51802724117635], - [-1.56309817518798, 48.51785892928983], - [-1.563226358271758, 48.51731177334673], - [-1.563445525624898, 48.51637620131981], - [-1.563580998662717, 48.51607146496962], - [-1.563792819417851, 48.515904738400195], - [-1.563982601915087, 48.51578012430562], - [-1.564133081404684, 48.51575028018875], - [-1.564133081404684, 48.51575028018875] - ] - }, - "length": 0.3052687696299153, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42587", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16285", - "bus2": "MVBus16286", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564133081404684, 48.51575028018875], - [-1.564133081404684, 48.51575028018875], - [-1.564392283444212, 48.515616272787724], - [-1.564539416777802, 48.51560455816154], - [-1.564681069129749, 48.51566195237741], - [-1.565708543899329, 48.51562243657093], - [-1.565918626404687, 48.51560700380665], - [-1.566843367289996, 48.51534946795782], - [-1.567208174700681, 48.5153359976752], - [-1.56783448751535, 48.51544410310774], - [-1.567853542559899, 48.51548872977923], - [-1.568060857712863, 48.515521412957426], - [-1.568066585866426, 48.51554364477023], - [-1.568066585866426, 48.51554364477023] - ] - }, - "length": 0.31140773779321634, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch24310", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16282", - "bus2": "MVLV13935", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.564491960080981, 48.51992212672882], - [-1.564491960080981, 48.51992212672882], - [-1.564471040507244, 48.51989277253283], - [-1.564471040507244, 48.51989277253283] - ] - }, - "length": 0.0036115366476767467, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05814", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16278", - "bus2": "MVLV17075", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045], - [-1.564445711356673, 48.527963271453274], - [-1.564445711356673, 48.527963271453274] - ] - }, - "length": 0.3905925912818533, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13642", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16278", - "bus2": "MVBus16289", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.566380318628245, 48.524694266551045], - [-1.566380318628245, 48.524694266551045], - [-1.567117273440814, 48.52466516368389], - [-1.567188445296061, 48.52466235447822], - [-1.567188445296061, 48.52466235447822] - ] - }, - "length": 0.059798093805106575, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05217", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16289", - "bus2": "MVBus16290", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.567188445296061, 48.52466235447822], - [-1.567188445296061, 48.52466235447822], - [-1.572574753072218, 48.52414323836759], - [-1.572574753072218, 48.52414323836759] - ] - }, - "length": 0.4020305539474718, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16290", - "bus2": "MVBus16291", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.572574753072218, 48.52414323836759], - [-1.572574753072218, 48.52414323836759], - [-1.571147770590084, 48.52818479539541], - [-1.571147770590084, 48.52818479539541] - ] - }, - "length": 0.46161767653803065, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch24311", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16291", - "bus2": "MVLV17142", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.571147770590084, 48.52818479539541], - [-1.571147770590084, 48.52818479539541], - [-1.572116843944956, 48.52806284345167], - [-1.572116843944956, 48.52806284345167] - ] - }, - "length": 0.07284961003559856, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch13645", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16291", - "bus2": "MVBus16292", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.571147770590084, 48.52818479539541], - [-1.571147770590084, 48.52818479539541], - [-1.570735844206441, 48.52929767150866], - [-1.570735844206441, 48.52929767150866] - ] - }, - "length": 0.12743760303491475, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch47818", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16292", - "bus2": "MVLV16629", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.570735844206441, 48.52929767150866], - [-1.570735844206441, 48.52929767150866], - [-1.570677092899632, 48.52932852352307], - [-1.570642393275525, 48.52934939989932], - [-1.570586839704426, 48.529368670236636], - [-1.570489638562891, 48.52938064912953], - [-1.570153949385153, 48.52938796158549], - [-1.570110083737531, 48.5296910168923], - [-1.570084209194029, 48.529753553928536], - [-1.570081557271373, 48.529904322934826], - [-1.569934163182408, 48.530181411392846], - [-1.570322285875, 48.530272482332926], - [-1.57030022185984, 48.53029760341768], - [-1.570289807881036, 48.53030945947996], - [-1.57027769540357, 48.53031039976622] - ] - }, - "length": 0.1714026584830801, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37631", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV16629", - "bus2": "MVBus25989", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.57027769540357, 48.53031039976622], - [-1.570265582926104, 48.530311340052485], - [-1.57025135558707, 48.53030141432346], - [-1.570243348276653, 48.530295828433886], - [-1.570090366625953, 48.530259858025346], - [-1.569946769725084, 48.53052921530994], - [-1.569727341285589, 48.53068338415963], - [-1.569412514645828, 48.530706818312346], - [-1.569447918220324, 48.53091663481042], - [-1.569404696726503, 48.5309525804769], - [-1.569421242700044, 48.5311326244695], - [-1.569427214879668, 48.53142463575786], - [-1.569400871719194, 48.531464470163044], - [-1.569361363922504, 48.53149174241094], - [-1.569311917293301, 48.53149360990055], - [-1.569311917293301, 48.53149360990055] - ] - }, - "length": 0.18696207511301322, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33472", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus25989", - "bus2": "MVLV11702", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.569311917293301, 48.53149360990055], - [-1.569311917293301, 48.53149360990055], - [-1.569121425035223, 48.531474340569105], - [-1.567571515361342, 48.531528949142995], - [-1.567461862300803, 48.531527259420685], - [-1.567430317531325, 48.53152677087583], - [-1.567415544559584, 48.53152557552724] - ] - }, - "length": 0.1392927077735165, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42182", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV11702", - "bus2": "MVBus26847", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.567415544559584, 48.53152557552724], - [-1.567400771587843, 48.531524380178645], - [-1.567360837337889, 48.53152080235734], - [-1.567284750986531, 48.531525249725895], - [-1.567260887537324, 48.5313838623755], - [-1.56724352327969, 48.53135899968272], - [-1.56720704476641, 48.531357773909626], - [-1.567101590881959, 48.531362209717024], - [-1.566711709985445, 48.53137859172699], - [-1.565943408133776, 48.53132906719382], - [-1.565560059562574, 48.53105146478999], - [-1.565190981724465, 48.53111764922949], - [-1.565165881153204, 48.531597314878304], - [-1.564900480161369, 48.53237923250737], - [-1.563496393254041, 48.53221493855495], - [-1.562874903784543, 48.532244770504626], - [-1.562863514197719, 48.53182470616985], - [-1.562551725882172, 48.53162495755879], - [-1.562603772564722, 48.53156596081666], - [-1.562613678447487, 48.53155108903226], - [-1.562613678447487, 48.53155108903226] - ] - }, - "length": 0.5759150366774, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch13639", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16274", - "bus2": "MVLV13936", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.554764788314803, 48.52669185049975], - [-1.554764788314803, 48.52669185049975], - [-1.554218558791524, 48.526036488018605], - [-1.553579595290158, 48.52557067761526], - [-1.555103571193291, 48.52185325111848], - [-1.555103571193291, 48.52185325111848] - ] - }, - "length": 0.5818083295433246, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05817", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus16272", - "bus2": "MVLV04950", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549975000651848, 48.5281505762032], - [-1.549975000651848, 48.5281505762032], - [-1.550220693123534, 48.528615590660756], - [-1.550220693123534, 48.528615590660756] - ] - }, - "length": 0.05480165380197354, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV19187_production", - "bus": "MVLV19187", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19187_consumption", - "bus": "MVLV19187", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV08087_production", - "bus": "MVLV08087", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08087_consumption", - "bus": "MVLV08087", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV11693_production", - "bus": "MVLV11693", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11693_consumption", - "bus": "MVLV11693", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV11692_production", - "bus": "MVLV11692", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11692_consumption", - "bus": "MVLV11692", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV12206_production", - "bus": "MVLV12206", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12206_consumption", - "bus": "MVLV12206", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV16510_production", - "bus": "MVLV16510", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16510_consumption", - "bus": "MVLV16510", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV04916_production", - "bus": "MVLV04916", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04916_consumption", - "bus": "MVLV04916", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV04549_production", - "bus": "MVLV04549", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04549_consumption", - "bus": "MVLV04549", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV06933_production", - "bus": "MVLV06933", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06933_consumption", - "bus": "MVLV06933", - "phases": "abc", - "powers": [ - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494], - [19849.471229316532, 6524.205689281494] - ] - }, - { - "id": "MVLV17074_production", - "bus": "MVLV17074", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17074_consumption", - "bus": "MVLV17074", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV17143_production", - "bus": "MVLV17143", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17143_consumption", - "bus": "MVLV17143", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV14272_production", - "bus": "MVLV14272", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14272_consumption", - "bus": "MVLV14272", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV13935_production", - "bus": "MVLV13935", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13935_consumption", - "bus": "MVLV13935", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV17075_production", - "bus": "MVLV17075", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17075_consumption", - "bus": "MVLV17075", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV17142_production", - "bus": "MVLV17142", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17142_consumption", - "bus": "MVLV17142", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV16629_production", - "bus": "MVLV16629", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16629_consumption", - "bus": "MVLV16629", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV11702_production", - "bus": "MVLV11702", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11702_consumption", - "bus": "MVLV11702", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV13936_production", - "bus": "MVLV13936", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13936_consumption", - "bus": "MVLV13936", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - }, - { - "id": "MVLV04950_production", - "bus": "MVLV04950", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04950_consumption", - "bus": "MVLV04950", - "phases": "abc", - "powers": [ - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943], - [32508.373039528, 10684.985503317943] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder251_summer.json b/data/MVFeeder251_summer.json deleted file mode 100644 index 4880ed98..00000000 --- a/data/MVFeeder251_summer.json +++ /dev/null @@ -1,5427 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.544122777559802, 49.28792921131057] - } - }, - { - "id": "HVMV17", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544122777559802, 49.28792921131057] - } - }, - { - "id": "MVBus02317", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544278715354673, 49.28819278593066] - } - }, - { - "id": "MVBus02318", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.545353494551501, 49.288203281286165] - } - }, - { - "id": "MVBus02319", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548968224727916, 49.288476803005885] - } - }, - { - "id": "MVBus02320", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549076450270867, 49.28842758779228] - } - }, - { - "id": "MVBus02321", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550843810591999, 49.28835713931457] - } - }, - { - "id": "MVBus02322", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.558363431607862, 49.293103186411905] - } - }, - { - "id": "MVLV07004", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5580257550948962, 49.29312307703382] - } - }, - { - "id": "MVBus05969", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.558365114135587, 49.29312791296315] - } - }, - { - "id": "MVBus05970", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.556899752581278, 49.294687718159565] - } - }, - { - "id": "MVLV10176", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5557191205984735, 49.29423783326932] - } - }, - { - "id": "MVBus06431", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.556855381394924, 49.294703989676044] - } - }, - { - "id": "MVBus06432", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.553605845662367, 49.300981342922235] - } - }, - { - "id": "MVLV12189", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.557217555766814, 49.303017120020975] - } - }, - { - "id": "MVLV08091", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5407539952262903, 49.305622831378344] - } - }, - { - "id": "MVBus09269", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540486402010409, 49.308234227444785] - } - }, - { - "id": "MVLV05282", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540443543412636, 49.30824396710194] - } - }, - { - "id": "MVLV14297", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.538193007833593, 49.31216799569018] - } - }, - { - "id": "MVBus11803", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.536534847236821, 49.321120183051995] - } - }, - { - "id": "MVLV06470", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5339935260812059, 49.32782537754664] - } - }, - { - "id": "MVLV14298", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5329799874850207, 49.33507754804151] - } - }, - { - "id": "MVBus22066", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.533131628048518, 49.33571004547227] - } - }, - { - "id": "MVBus22072", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.533046984107669, 49.335762285638104] - } - }, - { - "id": "MVBus22073", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.533057531446026, 49.33486137550976] - } - }, - { - "id": "MVLV07424", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.534883420349337, 49.33506643532471] - } - }, - { - "id": "MVLV03792", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.532877816023977, 49.33303061717324] - } - }, - { - "id": "MVLV15114", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.532053313651179, 49.337907928002785] - } - }, - { - "id": "MVBus22067", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.532403732174482, 49.35257682859679] - } - }, - { - "id": "MVLV18758", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531733080868806, 49.352784404544984] - } - }, - { - "id": "MVBus22069", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531441732019706, 49.3553465205665] - } - }, - { - "id": "MVLV14458", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.526507526635254, 49.35513073595609] - } - }, - { - "id": "MVLV02134", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531585636721146, 49.36510976245396] - } - }, - { - "id": "MVBus32942", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527320367955829, 49.373951706325954] - } - }, - { - "id": "MVBus32948", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.528727248595691, 49.37807677444229] - } - }, - { - "id": "MVBus32950", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527625344427467, 49.38114490026094] - } - }, - { - "id": "MVBus32951", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527156505637376, 49.38105323794978] - } - }, - { - "id": "MVLV00376", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.526160390385847, 49.381286355063466] - } - }, - { - "id": "MVBus32953", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.517504389409401, 49.38872725310879] - } - }, - { - "id": "MVLV03057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531109516842623, 49.374778041057695] - } - }, - { - "id": "MVBus32943", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.522950716921357, 49.37216582565863] - } - }, - { - "id": "MVBus32944", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.51909312942812, 49.37219771660025] - } - }, - { - "id": "MVBus32945", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5179650794455, 49.372197550213805] - } - }, - { - "id": "MVLV19162", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.518256530861644, 49.37146823421635] - } - }, - { - "id": "MVLV08862", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.514287610518751, 49.37219695446738] - } - }, - { - "id": "MVBus34410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530854289006823, 49.36466877623434] - } - }, - { - "id": "MVLV06284", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531589190610127, 49.36492882285905] - } - }, - { - "id": "MVBus34411", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.529769581166713, 49.364480054902444] - } - }, - { - "id": "MVLV03060", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.535568417050356, 49.36472085133499] - } - }, - { - "id": "MVBus34412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.52856610290105, 49.36430611482931] - } - }, - { - "id": "MVBus34413", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.520096239743545, 49.361924579760256] - } - }, - { - "id": "MVBus34414", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.519139011907793, 49.36212948743184] - } - }, - { - "id": "MVBus34416", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.514492224885197, 49.36467005047749] - } - }, - { - "id": "MVBus34418", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.510635276449318, 49.36476553532519] - } - }, - { - "id": "MVBus34429", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.509289955481284, 49.361120529396175] - } - }, - { - "id": "MVBus34430", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.510721727829247, 49.3581988444997] - } - }, - { - "id": "MVLV10164", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.509866575618648, 49.35795541122072] - } - }, - { - "id": "MVBus34419", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.508108365725732, 49.364432954296966] - } - }, - { - "id": "MVBus34420", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.504233252185425, 49.36406601752124] - } - }, - { - "id": "MVBus34421", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.503321601957881, 49.36235272639792] - } - }, - { - "id": "MVLV10159", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.50417103993675, 49.360882830762066] - } - }, - { - "id": "MVBus34423", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.50445347690626, 49.36467905920785] - } - }, - { - "id": "MVBus34424", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.49892473707318, 49.364392249251054] - } - }, - { - "id": "MVLV13646", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.493997799159938, 49.36470190719969] - } - }, - { - "id": "MVLV00373", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.49790226678558, 49.364741187553236] - } - }, - { - "id": "MVLV00375", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.505218708194213, 49.36706491493334] - } - }, - { - "id": "MVLV13649", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.508471587649024, 49.36306583437844] - } - }, - { - "id": "MVLV10158", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.514068875814502, 49.36644570324624] - } - }, - { - "id": "MVLV16575", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.520552683911972, 49.36221285227293] - } - }, - { - "id": "MVBus23647", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.52674422159139, 49.335008438613734] - } - }, - { - "id": "MVBus23649", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.525990741835495, 49.3352494526061] - } - }, - { - "id": "MVBus23650", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.516088184722974, 49.33830826797327] - } - }, - { - "id": "MVLV13841", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.51474496203316, 49.33546599960393] - } - }, - { - "id": "MVBus23651", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.511792612037957, 49.339128954091514] - } - }, - { - "id": "MVBus23653", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.506374434040589, 49.33702907136982] - } - }, - { - "id": "MVBus23654", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.501088222606753, 49.33532522876661] - } - }, - { - "id": "MVBus23656", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.500188561543648, 49.33493741338863] - } - }, - { - "id": "MVLV18938", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.501331914032815, 49.33384038654791] - } - }, - { - "id": "MVBus23658", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.495520666720995, 49.33409063193276] - } - }, - { - "id": "MVBus23659", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.484133426908198, 49.33134359624456] - } - }, - { - "id": "MVBus23663", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.478918590402116, 49.330026289077466] - } - }, - { - "id": "MVLV10338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.478484932562386, 49.327578929121835] - } - }, - { - "id": "MVBus23664", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.477379351775069, 49.3300143463499] - } - }, - { - "id": "MVBus23665", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.469473420583994, 49.33253844546463] - } - }, - { - "id": "MVBus23660", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.482695123969117, 49.333934930040506] - } - }, - { - "id": "MVLV03243", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.486548333330025, 49.33618052052723] - } - }, - { - "id": "MVLV16207", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.478685676715247, 49.33494320019281] - } - }, - { - "id": "MVLV00556", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.497950206009199, 49.338225291933846] - } - }, - { - "id": "MVLV00557", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.500250673650373, 49.34212810136862] - } - }, - { - "id": "MVBus23669", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.498817642378083, 49.34189422851426] - } - }, - { - "id": "MVLV16630", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.495517486299349, 49.34353092753231] - } - }, - { - "id": "MVBus23668", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.500237842828451, 49.34213599416101] - } - }, - { - "id": "MVLV16209", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.511308187603026, 49.33950177292033] - } - }, - { - "id": "MVLV10753", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527661328563556, 49.334799790674595] - } - }, - { - "id": "MVLV04212", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.536408762697852, 49.32104609385472] - } - }, - { - "id": "MVBus14674", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.535713313391154, 49.312254360208854] - } - }, - { - "id": "MVBus14676", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530785822896225, 49.31237819129319] - } - }, - { - "id": "MVBus14677", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.529735073884145, 49.31219514900721] - } - }, - { - "id": "MVBus14678", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.528425285894258, 49.31235791228221] - } - }, - { - "id": "MVLV13843", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.526075820963424, 49.316179302994485] - } - }, - { - "id": "MVBus14679", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527098863522479, 49.312303382214324] - } - }, - { - "id": "MVBus14681", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.524153720605166, 49.31233014733411] - } - }, - { - "id": "MVBus14682", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.522584528407902, 49.31253675757177] - } - }, - { - "id": "MVLV00558", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.513063287685275, 49.31448992931678] - } - }, - { - "id": "MVLV15540", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.523128830492736, 49.31217904723409] - } - }, - { - "id": "MVLV00901", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530018730823778, 49.30732834984887] - } - }, - { - "id": "MVLV14088", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.535652057142803, 49.312189495608315] - } - }, - { - "id": "MVBus10224", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541937703242198, 49.30336187256208] - } - }, - { - "id": "MVLV13673", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540211585895342, 49.302759829436454] - } - }, - { - "id": "MVBus10226", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542223387630054, 49.302440303362495] - } - }, - { - "id": "MVLV12002", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543721334528962, 49.30340473390545] - } - }, - { - "id": "MVBus10227", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542801364055465, 49.30079264624719] - } - }, - { - "id": "MVLV18774", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5432777670666975, 49.29954408210185] - } - }, - { - "id": "MVLV15279", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540722291595128, 49.29754240257251] - } - }, - { - "id": "MVBus14650", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541323068619209, 49.297148442866344] - } - }, - { - "id": "MVLV14464", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5413683400166376, 49.29720035014075] - } - }, - { - "id": "MVBus15061", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.538555666205925, 49.29770355732112] - } - }, - { - "id": "MVBus15062", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.537662421485925, 49.29783948270921] - } - }, - { - "id": "MVLV05023", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.537550409693325, 49.29779259087647] - } - }, - { - "id": "MVLV09251", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.537446392202924, 49.29874144503897] - } - }, - { - "id": "MVBus17206", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541353993106287, 49.29714270383739] - } - }, - { - "id": "MVBus17207", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541378117392617, 49.2971385246556] - } - }, - { - "id": "MVLV00382", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543989146153294, 49.29615131859048] - } - }, - { - "id": "MVBus17209", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541402610105714, 49.29717365001366] - } - }, - { - "id": "MVLV11101", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541178395735151, 49.2967821229966] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV17", - "geometry": { - "type": "Point", - "coordinates": [-1.544122777559802, 49.28792921131057] - } - }, - { - "id": "MVBranch38653", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV17", - "bus2": "MVBus02317", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544122777559802, 49.28792921131057], - [-1.544064545911348, 49.28798295843586], - [-1.544064545911348, 49.28798295843586], - [-1.544077653421258, 49.288012119047494], - [-1.544278715354673, 49.28819278593066], - [-1.544278715354673, 49.28819278593066] - ] - }, - "length": 0.028233461470556193, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42953", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02317", - "bus2": "MVBus02318", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544278715354673, 49.28819278593066], - [-1.544278715354673, 49.28819278593066], - [-1.544303558063525, 49.28822274548962], - [-1.54435607356844, 49.28824604470486], - [-1.545130203710099, 49.28833265255595], - [-1.545209700990572, 49.28819838727139], - [-1.545353494551501, 49.288203281286165], - [-1.545353494551501, 49.288203281286165] - ] - }, - "length": 0.09202958332239944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42071", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02318", - "bus2": "MVBus02319", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.545353494551501, 49.288203281286165], - [-1.545353494551501, 49.288203281286165], - [-1.546008060470975, 49.28826332879754], - [-1.548968224727916, 49.288476803005885], - [-1.548968224727916, 49.288476803005885] - ] - }, - "length": 0.26473687880197855, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45726", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02319", - "bus2": "MVBus02320", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548968224727916, 49.288476803005885], - [-1.548968224727916, 49.288476803005885], - [-1.548982258759324, 49.28847690646835], - [-1.548995094108262, 49.28847588837704], - [-1.549006195572715, 49.28847230887253], - [-1.549076450270867, 49.28842758779228], - [-1.549076450270867, 49.28842758779228] - ] - }, - "length": 0.009993540367716214, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41856", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02320", - "bus2": "MVBus02321", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549076450270867, 49.28842758779228], - [-1.549076450270867, 49.28842758779228], - [-1.549707744573232, 49.288011977627775], - [-1.550695748472193, 49.28845703745152], - [-1.550843810591999, 49.28835713931457], - [-1.550843810591999, 49.28835713931457] - ] - }, - "length": 0.16790378725191302, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37561", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02321", - "bus2": "MVBus02322", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550843810591999, 49.28835713931457], - [-1.550843810591999, 49.28835713931457], - [-1.551839432502873, 49.287688941766646], - [-1.553279985823405, 49.28708984593353], - [-1.553503940504962, 49.28707924282997], - [-1.553543166339699, 49.28709133827926], - [-1.553899215320274, 49.28735040531045], - [-1.553968724727013, 49.28734820661443], - [-1.554241009766557, 49.287469701434006], - [-1.555416921953299, 49.28829202690255], - [-1.556178942262156, 49.28894397726274], - [-1.556385200192579, 49.2891377783652], - [-1.556720883237592, 49.2894904431109], - [-1.556809603307307, 49.28959833018744], - [-1.557245758799447, 49.290198938107046], - [-1.557690435710151, 49.29093012703566], - [-1.557942459673677, 49.291503900155284], - [-1.558222844204846, 49.29214220902152], - [-1.558348944311179, 49.29289019680917], - [-1.558363431607862, 49.293103186411905], - [-1.558363431607862, 49.293103186411905] - ] - }, - "length": 1.02694858466435, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45571", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02322", - "bus2": "MVLV07004", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558363431607862, 49.293103186411905], - [-1.558363431607862, 49.293103186411905], - [-1.55805054665262, 49.293113318348006], - [-1.558020461421296, 49.29311429426378], - [-1.5580257550948962, 49.29312307703382] - ] - }, - "length": 0.024978720138269347, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39992", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07004", - "bus2": "MVBus05969", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5580257550948962, 49.29312307703382], - [-1.558031048768496, 49.29313185980386], - [-1.558050477712716, 49.293131634333434], - [-1.558365114135587, 49.29312791296315], - [-1.558365114135587, 49.29312791296315] - ] - }, - "length": 0.02430435716809026, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33409", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05969", - "bus2": "MVBus05970", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558365114135587, 49.29312791296315], - [-1.558365114135587, 49.29312791296315], - [-1.558392089694838, 49.293524624310635], - [-1.558280714090231, 49.29394800525873], - [-1.558040077361262, 49.294485515181684], - [-1.557938886183728, 49.29471153951785], - [-1.557700469612923, 49.29479684511406], - [-1.557428898309983, 49.29485499934382], - [-1.556899752581278, 49.294687718159565], - [-1.556899752581278, 49.294687718159565] - ] - }, - "length": 0.2637279374416299, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42258", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05970", - "bus2": "MVLV10176", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.556899752581278, 49.294687718159565], - [-1.556899752581278, 49.294687718159565], - [-1.556814469048323, 49.294640705664165], - [-1.556718802029458, 49.294597681758205], - [-1.556591039727252, 49.29454853850857], - [-1.556494810813047, 49.29451152328497], - [-1.556432842835297, 49.29448288677953], - [-1.556392651342564, 49.29446085705984], - [-1.556328001464675, 49.29434167440167], - [-1.55628925265661, 49.294269181207206], - [-1.556304925080461, 49.29410180781812], - [-1.556343839970858, 49.293982343461415], - [-1.556362771102496, 49.29390859171891], - [-1.556381207489351, 49.29378549172503], - [-1.556396318378328, 49.2936845641523], - [-1.556210487577078, 49.29368286278066], - [-1.55618574224843, 49.29377353362615], - [-1.556152807001273, 49.29389423427251], - [-1.556116150076947, 49.293994502101754], - [-1.556083366586389, 49.294084183201825], - [-1.556026524815464, 49.29415964970232], - [-1.555981200868604, 49.29420326944431], - [-1.55592979929424, 49.29424708620182], - [-1.555880909499325, 49.294259806939614], - [-1.555819110006087, 49.29426260199422], - [-1.55577362005528, 49.294256125199816], - [-1.555747863745295, 49.294247812327605], - [-1.555727196290815, 49.294236600015545], - [-1.5557191205984735, 49.29423783326932] - ] - }, - "length": 0.22922896329104542, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36528", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10176", - "bus2": "MVBus06431", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5557191205984735, 49.29423783326932], - [-1.555711044906132, 49.2942390665231], - [-1.555709905069873, 49.294253243523166], - [-1.555709198985772, 49.29426189256228], - [-1.555709931822406, 49.29426357784397], - [-1.555712490740126, 49.294266130406406], - [-1.555720317511327, 49.29426996037984], - [-1.555735095779786, 49.294273511027], - [-1.555779595703046, 49.294283438009664], - [-1.555829091516181, 49.29428687956951], - [-1.555864717826817, 49.29428587750309], - [-1.555891111460949, 49.29428372656106], - [-1.555923156242119, 49.294276840962326], - [-1.555948604950386, 49.294266940016115], - [-1.555969287987201, 49.294254585035404], - [-1.556003276956387, 49.29422853112254], - [-1.556034803230663, 49.29420373537883], - [-1.556076994421136, 49.29415180690991], - [-1.556125826648493, 49.29409169358501], - [-1.556157939117807, 49.294005317383096], - [-1.556200655048918, 49.293893177649416], - [-1.556250700331611, 49.293706996683525], - [-1.556348259995224, 49.2937066128991], - [-1.556329617172461, 49.29388432792322], - [-1.556307256366287, 49.293973797096946], - [-1.556271881582729, 49.294098417698], - [-1.556266782426805, 49.294178116340724], - [-1.556265015824324, 49.294209062262105], - [-1.556261763331609, 49.2942664925027], - [-1.556281986378516, 49.29432718233691], - [-1.556374544382792, 49.294476897467476], - [-1.556392908305692, 49.29449817774516], - [-1.556429590489454, 49.29451818045427], - [-1.556572271027878, 49.294575988002045], - [-1.556662459852183, 49.294611696866966], - [-1.556743180009085, 49.2946442316602], - [-1.55680296771059, 49.29467077093173], - [-1.556855381394924, 49.294703989676044], - [-1.556855381394924, 49.294703989676044] - ] - }, - "length": 0.22660860033133476, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33646", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06431", - "bus2": "MVBus06432", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.556855381394924, 49.294703989676044], - [-1.556855381394924, 49.294703989676044], - [-1.557385961413851, 49.294889826086106], - [-1.557374224253447, 49.29495595979581], - [-1.557377472157742, 49.29510927224081], - [-1.557447574394346, 49.29526041646288], - [-1.557600012496063, 49.295392456490234], - [-1.556759096316054, 49.29634572864169], - [-1.556579087547653, 49.29654977774208], - [-1.555315453710993, 49.29874313638626], - [-1.554888850513974, 49.299483579715265], - [-1.554252138743037, 49.30030083592989], - [-1.553884931034575, 49.30070834655858], - [-1.553605845662367, 49.300981342922235], - [-1.553605845662367, 49.300981342922235] - ] - }, - "length": 0.792612707543813, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33079", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06432", - "bus2": "MVLV12189", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.553605845662367, 49.300981342922235], - [-1.553605845662367, 49.300981342922235], - [-1.553555508523467, 49.30093328593693], - [-1.553551549135147, 49.30092205367382], - [-1.553557411221908, 49.30091137574002], - [-1.553565984347756, 49.30090089781547], - [-1.553578063367311, 49.30089584715829], - [-1.553597811397932, 49.30089580106276], - [-1.553613958204717, 49.30089905581698], - [-1.553633862540597, 49.300903070336815], - [-1.55399009915498, 49.300936395487454], - [-1.554190468669792, 49.300958453231885], - [-1.554302270953267, 49.30096414937148], - [-1.554481280001602, 49.300974953552796], - [-1.554711951660181, 49.300997197877564], - [-1.555065407876741, 49.30104662987325], - [-1.55519228638043, 49.30106903482119], - [-1.555269650336245, 49.30107876053144], - [-1.555331080802683, 49.30108405541743], - [-1.555688720860971, 49.30113567969149], - [-1.555850105479012, 49.30116074334859], - [-1.556008531656012, 49.30119377322279], - [-1.556270060929051, 49.30125871150144], - [-1.556647434206616, 49.301359228140356], - [-1.556970056453826, 49.30144257564067], - [-1.557205950358328, 49.30150425946166], - [-1.557253925503791, 49.301526009590695], - [-1.557306142946434, 49.301574139085304], - [-1.557313041661406, 49.301582946256744], - [-1.557319745327957, 49.301600790625756], - [-1.557329814618145, 49.30162202487161], - [-1.557334447431986, 49.30165246627675], - [-1.557325963696158, 49.30171799032931], - [-1.557299542459669, 49.30192190675507], - [-1.557274931690841, 49.302161312222125], - [-1.557262743114333, 49.30220627711829], - [-1.557256612186251, 49.302283966875386], - [-1.557240764678853, 49.30236285318992], - [-1.557226800025733, 49.30247255788512], - [-1.557204594706673, 49.3025851472808], - [-1.557191013422283, 49.30266453575059], - [-1.557185802101667, 49.302713358051335], - [-1.55718402632807, 49.302760323945265], - [-1.557181059621486, 49.302809361296035], - [-1.55718051443686, 49.3028609466328], - [-1.557161679238428, 49.30299440275693], - [-1.557161933080845, 49.30300954190518], - [-1.5571667754686, 49.30301462890893], - [-1.557171573633508, 49.30301913267917], - [-1.557180431404835, 49.303024386316736], - [-1.557203846225003, 49.30303132671748], - [-1.557214339020699, 49.30303093252168], - [-1.557217555766814, 49.303017120020975], - [-1.557217555766814, 49.303017120020975] - ] - }, - "length": 0.4629762715887536, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42712", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06432", - "bus2": "MVLV08091", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.553605845662367, 49.300981342922235], - [-1.553605845662367, 49.300981342922235], - [-1.553560795305768, 49.301027407964334], - [-1.552594969124907, 49.301762685000945], - [-1.551512962290502, 49.302411397240476], - [-1.550412629007579, 49.302929196038185], - [-1.549429388234952, 49.30333360172381], - [-1.547763099915991, 49.30390255410561], - [-1.545811760819645, 49.30456880161366], - [-1.543162515540441, 49.30547325882959], - [-1.542670038667878, 49.3055849261342], - [-1.542005868259237, 49.305666643144605], - [-1.541857568293667, 49.30558924736994], - [-1.541685849847407, 49.305534527944204], - [-1.541177197726519, 49.30556738651739], - [-1.540953239587985, 49.30560106237891], - [-1.540811464642975, 49.305606593293135], - [-1.540803495450311, 49.30560325268304], - [-1.540755659370213, 49.30563466872761], - [-1.540753463779378, 49.305623262296365], - [-1.5407539952262903, 49.305622831378344] - ] - }, - "length": 1.103705815148244, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41857", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08091", - "bus2": "MVBus09269", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407539952262903, 49.305622831378344], - [-1.540737589952468, 49.30561579643945], - [-1.540733252043573, 49.30562848418592], - [-1.540667639081251, 49.30568953620466], - [-1.540956808587693, 49.3058488877968], - [-1.540971261033053, 49.30595957843265], - [-1.541027931857217, 49.306038413687574], - [-1.541096484657075, 49.30609990114828], - [-1.541117458642052, 49.30621442882496], - [-1.541109133809264, 49.30633006440599], - [-1.541093430236417, 49.30639899457513], - [-1.54094106280494, 49.30684465715278], - [-1.540784234481206, 49.307252046706346], - [-1.540713405873436, 49.30747395814078], - [-1.540621244350711, 49.30777498333838], - [-1.540486402010409, 49.308234227444785], - [-1.540486402010409, 49.308234227444785] - ] - }, - "length": 0.31007777091499894, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42713", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09269", - "bus2": "MVLV05282", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540486402010409, 49.308234227444785], - [-1.540486402010409, 49.308234227444785], - [-1.540443543412636, 49.30824396710194], - [-1.540443543412636, 49.30824396710194] - ] - }, - "length": 0.0032995137003003863, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44335", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09269", - "bus2": "MVLV14297", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540486402010409, 49.308234227444785], - [-1.540486402010409, 49.308234227444785], - [-1.540357106825738, 49.30865765491602], - [-1.540115246377979, 49.309496781924345], - [-1.54000806287199, 49.30987352256521], - [-1.539654921138788, 49.31102038614626], - [-1.539401148113282, 49.31187276493722], - [-1.539286999629095, 49.31225615071473], - [-1.538879004282582, 49.31227395691951], - [-1.538256034072516, 49.31220261581701], - [-1.538237184293533, 49.312188004900676], - [-1.538211714626803, 49.312168255698744], - [-1.538193007833593, 49.31216799569018] - ] - }, - "length": 0.5364504470557699, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39369", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14297", - "bus2": "MVBus11803", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.538193007833593, 49.31216799569018], - [-1.53819725642402, 49.31217209513156], - [-1.5382016944777, 49.312192073085164], - [-1.538205743115031, 49.31221035460955], - [-1.538897043950175, 49.3122871277447], - [-1.539044227710228, 49.312284843196664], - [-1.53908960859427, 49.31233526028656], - [-1.539222826034261, 49.31234824943974], - [-1.538556981108027, 49.314640036218165], - [-1.537956343956155, 49.31670716342029], - [-1.537320265163982, 49.31868196165967], - [-1.536534847236821, 49.321120183051995], - [-1.536534847236821, 49.321120183051995] - ] - }, - "length": 1.0773011885807644, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39368", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11803", - "bus2": "MVLV06470", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.536534847236821, 49.321120183051995], - [-1.536534847236821, 49.321120183051995], - [-1.536501546561255, 49.32122356129653], - [-1.534655567865235, 49.32770166357225], - [-1.534061875940245, 49.327845581054355], - [-1.534014836367798, 49.327815255782454], - [-1.5339935260812059, 49.32782537754664] - ] - }, - "length": 0.7954401697427387, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45860", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06470", - "bus2": "MVLV14298", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5339935260812059, 49.32782537754664], - [-1.533972215794614, 49.32783549931082], - [-1.534038075431918, 49.327884178788445], - [-1.534317828192986, 49.327814201326994], - [-1.534372586757423, 49.32785308344783], - [-1.53449046786076, 49.32783573977103], - [-1.533170628988937, 49.33232559921571], - [-1.533134314554963, 49.333141749962856], - [-1.533094342636425, 49.33508909025087], - [-1.532986027192007, 49.33515101521379], - [-1.533020283768441, 49.335088030199934], - [-1.53301283434399, 49.335066629402824], - [-1.5329799874850207, 49.33507754804151] - ] - }, - "length": 0.8798759256032205, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37781", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14298", - "bus2": "MVBus22066", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5329799874850207, 49.33507754804151], - [-1.532979533929907, 49.335080051117835], - [-1.532986300373905, 49.33509951311616], - [-1.532994928163547, 49.33512431185406], - [-1.532921199659583, 49.33516213315831], - [-1.53273432520775, 49.33518066177989], - [-1.532746921746389, 49.33530537812459], - [-1.532899599785382, 49.335298788967386], - [-1.533024909995921, 49.33535272317475], - [-1.533121262658806, 49.33544554638144], - [-1.533131628048518, 49.33571004547227], - [-1.533131628048518, 49.33571004547227] - ] - }, - "length": 0.10342519827364842, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37825", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22066", - "bus2": "MVBus22072", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533131628048518, 49.33571004547227], - [-1.533131628048518, 49.33571004547227], - [-1.533046984107669, 49.335762285638104], - [-1.533046984107669, 49.335762285638104] - ] - }, - "length": 0.008461700673569049, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch12288", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22072", - "bus2": "MVBus22073", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533046984107669, 49.335762285638104], - [-1.533046984107669, 49.335762285638104], - [-1.533057531446026, 49.33486137550976], - [-1.533057531446026, 49.33486137550976] - ] - }, - "length": 0.10019875986664627, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29389", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22073", - "bus2": "MVLV07424", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533057531446026, 49.33486137550976], - [-1.533057531446026, 49.33486137550976], - [-1.53398943703501, 49.335195989512854], - [-1.534883420349337, 49.33506643532471], - [-1.534883420349337, 49.33506643532471] - ] - }, - "length": 0.14383385188322648, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29388", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22073", - "bus2": "MVLV03792", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533057531446026, 49.33486137550976], - [-1.533057531446026, 49.33486137550976], - [-1.533011979073309, 49.334190631787195], - [-1.533039825764406, 49.33345854723634], - [-1.532877816023977, 49.33303061717324], - [-1.532877816023977, 49.33303061717324] - ] - }, - "length": 0.2051436384266768, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29382", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22072", - "bus2": "MVLV15114", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533046984107669, 49.335762285638104], - [-1.533046984107669, 49.335762285638104], - [-1.532053313651179, 49.337907928002785], - [-1.532053313651179, 49.337907928002785] - ] - }, - "length": 0.2493185426177021, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch44471", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22066", - "bus2": "MVBus22067", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533131628048518, 49.33571004547227], - [-1.533131628048518, 49.33571004547227], - [-1.532947292298687, 49.3411369986952], - [-1.532740413744813, 49.3415789077134], - [-1.53278160534124, 49.34165620164864], - [-1.532878494600845, 49.34163934779399], - [-1.532915555431578, 49.34163283888735], - [-1.532983237310681, 49.34162824926677], - [-1.532957908744556, 49.34210447299129], - [-1.532908563438801, 49.34277497516311], - [-1.532771270861551, 49.34290282535032], - [-1.532844701353445, 49.34301204574741], - [-1.5327744631901, 49.34345244180959], - [-1.532729045377297, 49.343639853956425], - [-1.532657756778632, 49.35045146206623], - [-1.532087461291756, 49.350791247571166], - [-1.531904838815109, 49.35129708296319], - [-1.532261866158014, 49.35231340901049], - [-1.532403732174482, 49.35257682859679], - [-1.532403732174482, 49.35257682859679] - ] - }, - "length": 1.926359122832335, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22067", - "bus2": "MVLV18758", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.532403732174482, 49.35257682859679], - [-1.532403732174482, 49.35257682859679], - [-1.532318582392134, 49.352663449981854], - [-1.532227468992275, 49.35265986145356], - [-1.531733080868806, 49.352784404544984], - [-1.531733080868806, 49.352784404544984] - ] - }, - "length": 0.056578106178282746, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45337", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22067", - "bus2": "MVBus22069", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.532403732174482, 49.35257682859679], - [-1.532403732174482, 49.35257682859679], - [-1.53264913595584, 49.35317922079326], - [-1.532702848551083, 49.35332108602859], - [-1.532684420052383, 49.35339347169895], - [-1.532621439228901, 49.35344544416329], - [-1.532498902629156, 49.353468114175726], - [-1.532392156566066, 49.35344658155164], - [-1.532277977981303, 49.3534533772329], - [-1.532032779700746, 49.353623588265485], - [-1.531927759460042, 49.353751835653576], - [-1.531856350066794, 49.35388212237224], - [-1.531882224053266, 49.353971808328446], - [-1.53192882130631, 49.354082692532], - [-1.531975708734858, 49.35413425002378], - [-1.532009720320815, 49.354204947960284], - [-1.531998695945411, 49.354249005985515], - [-1.531912223146382, 49.35432251075777], - [-1.531787395530182, 49.35436193807548], - [-1.531706052936165, 49.35442387283807], - [-1.531583857413184, 49.35457764053744], - [-1.531499002561331, 49.35478327288385], - [-1.531441732019706, 49.3553465205665], - [-1.531441732019706, 49.3553465205665] - ] - }, - "length": 0.36238372555403137, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47705", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22069", - "bus2": "MVLV14458", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531441732019706, 49.3553465205665], - [-1.531441732019706, 49.3553465205665], - [-1.531385451423608, 49.355335289663294], - [-1.531386067616132, 49.35536774817351], - [-1.531380218497825, 49.355395539800796], - [-1.531370833342849, 49.35544016555585], - [-1.531319051605202, 49.35549407932305], - [-1.531274757250741, 49.35551745944992], - [-1.531238305393986, 49.355533823548285], - [-1.531159340552414, 49.35555428064477], - [-1.531036689240641, 49.35557860757163], - [-1.530903052239168, 49.35559949219689], - [-1.530724987624325, 49.35562665376268], - [-1.530499971586221, 49.35566113563619], - [-1.530348254933174, 49.355679273310365], - [-1.530185595337207, 49.35569563111755], - [-1.52996260291213, 49.35571385719575], - [-1.529735820241337, 49.35572491040191], - [-1.529645084310406, 49.35578741545591], - [-1.529598017950466, 49.3557943076446], - [-1.529538683016079, 49.35580375297779], - [-1.52947746702286, 49.355817288201635], - [-1.529423260505689, 49.355830472065875], - [-1.529279032626479, 49.355876735437576], - [-1.528932104851519, 49.35600241475257], - [-1.528828966383681, 49.35603958534019], - [-1.528740910796219, 49.356068427902315], - [-1.528628993181144, 49.35609690430503], - [-1.528470005240302, 49.35613222748504], - [-1.52833777959128, 49.35615615781715], - [-1.528271201209621, 49.35616687869827], - [-1.528245202657719, 49.35616885676052], - [-1.528185214942384, 49.3561700116971], - [-1.52812785415475, 49.35617112712831], - [-1.528044023158241, 49.35616722919092], - [-1.527996840282627, 49.356151198132466], - [-1.527952634906449, 49.35611492422224], - [-1.527923982819329, 49.356087162577886], - [-1.527856224359591, 49.356025742300524], - [-1.527785666176666, 49.355963710428966], - [-1.527660854309551, 49.35586214777877], - [-1.527489768884338, 49.3557368704239], - [-1.527413041989026, 49.35567628681694], - [-1.527291831390711, 49.355573159979755], - [-1.527150278499086, 49.355449478360086], - [-1.52695226508292, 49.35535858728895], - [-1.52648157487598, 49.355177575474116], - [-1.526481408963931, 49.35516787600893], - [-1.526507526635254, 49.35513073595609], - [-1.526507526635254, 49.35513073595609] - ] - }, - "length": 0.44321442367888547, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34135", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22069", - "bus2": "MVLV02134", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531441732019706, 49.3553465205665], - [-1.531441732019706, 49.3553465205665], - [-1.531463965605725, 49.3554264568919], - [-1.531664465304281, 49.35549834583802], - [-1.53183991724384, 49.35554299629057], - [-1.53189239271028, 49.35555434043819], - [-1.532281840418759, 49.355696626571635], - [-1.532672047395941, 49.35599425424982], - [-1.532778121387907, 49.356213439668494], - [-1.532308183717842, 49.362295885970966], - [-1.532300355928635, 49.362378506927946], - [-1.531996134805592, 49.36510477099037], - [-1.531858186575423, 49.365100044004556], - [-1.531683659565037, 49.36503102487483], - [-1.531637653396617, 49.36507344646523], - [-1.531599957535678, 49.36510700224723], - [-1.531585636721146, 49.36510976245396] - ] - }, - "length": 1.1707233869850964, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39913", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02134", - "bus2": "MVBus32942", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531585636721146, 49.36510976245396], - [-1.531591077797617, 49.36512913479824], - [-1.53165298114622, 49.36521550234027], - [-1.531843685074216, 49.3655053751369], - [-1.531665988640638, 49.36821135085916], - [-1.528833824377521, 49.37087365739615], - [-1.528200911840818, 49.371626624153215], - [-1.528160682391598, 49.371665764231246], - [-1.52784953601465, 49.37195498518486], - [-1.527669458759808, 49.37240437899802], - [-1.527592831367765, 49.37276712698362], - [-1.527320367955829, 49.373951706325954], - [-1.527320367955829, 49.373951706325954] - ] - }, - "length": 1.0731453489406135, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32942", - "bus2": "MVBus32948", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527320367955829, 49.373951706325954], - [-1.527320367955829, 49.373951706325954], - [-1.527400051396363, 49.37446682801028], - [-1.527421005225278, 49.37482422732028], - [-1.527401991409717, 49.37501242778035], - [-1.527315739745103, 49.375253928704204], - [-1.527226268859421, 49.37545290097939], - [-1.527283293402961, 49.375689789762255], - [-1.527441313500359, 49.37588081086286], - [-1.527621122274153, 49.376148732579026], - [-1.527893984631622, 49.37639386819455], - [-1.527968338296842, 49.37653329764479], - [-1.528139295529732, 49.3768646413651], - [-1.528291978122515, 49.37730895291319], - [-1.528727248595691, 49.37807677444229], - [-1.528727248595691, 49.37807677444229] - ] - }, - "length": 0.4830376263026058, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39914", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32948", - "bus2": "MVBus32950", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528727248595691, 49.37807677444229], - [-1.528727248595691, 49.37807677444229], - [-1.528601099201575, 49.378123766068285], - [-1.528608157069455, 49.37821337193959], - [-1.528462993116187, 49.378311835849416], - [-1.528065698686118, 49.37858221876822], - [-1.527697869402059, 49.37891150892088], - [-1.527458293715266, 49.37914643129591], - [-1.527257948239472, 49.37936307612514], - [-1.527454042954106, 49.379610786425374], - [-1.527548552366555, 49.37977615468656], - [-1.527599769425953, 49.38008194354724], - [-1.527633494827969, 49.38033805357043], - [-1.527842423424155, 49.380345830698545], - [-1.527791056549856, 49.38095960598652], - [-1.527625344427467, 49.38114490026094], - [-1.527625344427467, 49.38114490026094] - ] - }, - "length": 0.40312747799055015, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48422", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32950", - "bus2": "MVBus32951", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527625344427467, 49.38114490026094], - [-1.527625344427467, 49.38114490026094], - [-1.527246457920927, 49.3810555650266], - [-1.527156505637376, 49.38105323794978], - [-1.527156505637376, 49.38105323794978] - ] - }, - "length": 0.03578752012234594, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35426", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32951", - "bus2": "MVLV00376", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527156505637376, 49.38105323794978], - [-1.527156505637376, 49.38105323794978], - [-1.52620738657595, 49.38120782106345], - [-1.526160390385847, 49.381286355063466], - [-1.526160390385847, 49.381286355063466] - ] - }, - "length": 0.08040663184049307, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33515", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32950", - "bus2": "MVBus32953", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527625344427467, 49.38114490026094], - [-1.527625344427467, 49.38114490026094], - [-1.527515449617921, 49.38148627328165], - [-1.527512212844316, 49.381560308147634], - [-1.52752355936672, 49.38158948901832], - [-1.528031859335662, 49.38178753170748], - [-1.528397231736701, 49.38193653351875], - [-1.52837450900985, 49.381972088501556], - [-1.52876321837867, 49.38211393565683], - [-1.528625406061104, 49.38225742972185], - [-1.528850748151494, 49.382633909622115], - [-1.528942469770747, 49.38290815789958], - [-1.529029796174817, 49.38310400253717], - [-1.529035658108145, 49.383181747337815], - [-1.528927917985613, 49.3834602736569], - [-1.528800423755089, 49.383569816433365], - [-1.528341538492892, 49.38381683158706], - [-1.527533355757772, 49.38430382816528], - [-1.527522220550659, 49.38429537173722], - [-1.527072768441347, 49.38456352013355], - [-1.527048139325459, 49.38457508599294], - [-1.526736368640366, 49.38423756222454], - [-1.526665658751571, 49.384214236217375], - [-1.525901425053955, 49.38438116143926], - [-1.525119948105659, 49.38426600815902], - [-1.523752775329072, 49.384649044110766], - [-1.523604201076715, 49.38484602213671], - [-1.522605210011718, 49.38696375611163], - [-1.522844837792189, 49.38748145010745], - [-1.522789669743934, 49.38754308366898], - [-1.522509569982801, 49.38759575281451], - [-1.522247974294246, 49.38768285014764], - [-1.521969001368021, 49.38783031392183], - [-1.521766920366799, 49.38799169785384], - [-1.521623302265864, 49.38825420494629], - [-1.521588808311371, 49.38857902971922], - [-1.5216530848726, 49.38891498711093], - [-1.52165752519756, 49.38893133057315], - [-1.521635553101718, 49.38897329936228], - [-1.521496951908399, 49.388977933160554], - [-1.521389289415794, 49.38901451939029], - [-1.520957401427379, 49.38891098889611], - [-1.520275943139262, 49.388752329878855], - [-1.519703064871274, 49.388691197359144], - [-1.518494880436735, 49.38868354650642], - [-1.517510891907542, 49.38868857786499], - [-1.517506396412699, 49.388715280883034], - [-1.517504389409401, 49.38872725310879], - [-1.517504389409401, 49.38872725310879] - ] - }, - "length": 1.6326161105779273, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48421", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32948", - "bus2": "MVLV03057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528727248595691, 49.37807677444229], - [-1.528727248595691, 49.37807677444229], - [-1.528808973458675, 49.3781180390623], - [-1.529743545000941, 49.37760751041046], - [-1.531015923828987, 49.37701826001692], - [-1.531090817819815, 49.37477848949631], - [-1.531109516842623, 49.374778041057695], - [-1.531109516842623, 49.374778041057695] - ] - }, - "length": 0.4597844729770908, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48420", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32942", - "bus2": "MVBus32943", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527320367955829, 49.373951706325954], - [-1.527320367955829, 49.373951706325954], - [-1.52705392159122, 49.373806503430025], - [-1.526569246098225, 49.373510670681604], - [-1.526273175627114, 49.37341298911873], - [-1.525869852601984, 49.37331350789843], - [-1.525394677976571, 49.37324334195383], - [-1.524897363677829, 49.37320619178711], - [-1.524338110483229, 49.37300971022446], - [-1.523788343680933, 49.372829039052675], - [-1.523256494223086, 49.37235184919758], - [-1.523075288509421, 49.37216479580243], - [-1.522950716921357, 49.37216582565863], - [-1.522950716921357, 49.37216582565863] - ] - }, - "length": 0.39063953902460974, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch10876", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32943", - "bus2": "MVBus32944", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.522950716921357, 49.37216582565863], - [-1.522950716921357, 49.37216582565863], - [-1.51909312942812, 49.37219771660025], - [-1.51909312942812, 49.37219771660025] - ] - }, - "length": 0.28017990056768277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch09992", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32944", - "bus2": "MVBus32945", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.51909312942812, 49.37219771660025], - [-1.51909312942812, 49.37219771660025], - [-1.5179650794455, 49.372197550213805], - [-1.5179650794455, 49.372197550213805] - ] - }, - "length": 0.08192465202152102, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05584", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32945", - "bus2": "MVLV19162", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5179650794455, 49.372197550213805], - [-1.5179650794455, 49.372197550213805], - [-1.518256530861644, 49.37146823421635], - [-1.518256530861644, 49.37146823421635] - ] - }, - "length": 0.08382862257920029, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14895", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32945", - "bus2": "MVLV08862", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5179650794455, 49.372197550213805], - [-1.5179650794455, 49.372197550213805], - [-1.514287610518751, 49.37219695446738], - [-1.514287610518751, 49.37219695446738] - ] - }, - "length": 0.26707625608160257, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch36578", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02134", - "bus2": "MVBus34410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531585636721146, 49.36510976245396], - [-1.531565874830143, 49.36509315031643], - [-1.531583643366446, 49.365064525826554], - [-1.531639602388052, 49.36498827170826], - [-1.531234928266094, 49.364842577821825], - [-1.53089448046018, 49.3647106826351], - [-1.530838952226338, 49.36469878845856], - [-1.530854289006823, 49.36466877623434], - [-1.530854289006823, 49.36466877623434] - ] - }, - "length": 0.08291962228537283, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25201", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34410", - "bus2": "MVLV06284", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530854289006823, 49.36466877623434], - [-1.530854289006823, 49.36466877623434], - [-1.531589190610127, 49.36492882285905], - [-1.531589190610127, 49.36492882285905] - ] - }, - "length": 0.0607116755354689, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10148", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34410", - "bus2": "MVBus34411", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530854289006823, 49.36466877623434], - [-1.530854289006823, 49.36466877623434], - [-1.529769581166713, 49.364480054902444], - [-1.529769581166713, 49.364480054902444] - ] - }, - "length": 0.08153686761905633, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch22885", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34411", - "bus2": "MVLV03060", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.529769581166713, 49.364480054902444], - [-1.529769581166713, 49.364480054902444], - [-1.531632792071112, 49.3631560479711], - [-1.535568417050356, 49.36472085133499], - [-1.535568417050356, 49.36472085133499] - ] - }, - "length": 0.5346788249293161, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08104", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34411", - "bus2": "MVBus34412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.529769581166713, 49.364480054902444], - [-1.529769581166713, 49.364480054902444], - [-1.52856610290105, 49.36430611482931], - [-1.52856610290105, 49.36430611482931] - ] - }, - "length": 0.08953139053423927, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19724", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34412", - "bus2": "MVBus34413", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.52856610290105, 49.36430611482931], - [-1.52856610290105, 49.36430611482931], - [-1.527342148691834, 49.364099542493356], - [-1.52452541132236, 49.363413261367334], - [-1.520096239743545, 49.361924579760256], - [-1.520096239743545, 49.361924579760256] - ] - }, - "length": 0.6720310690910645, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14883", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34413", - "bus2": "MVBus34414", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.520096239743545, 49.361924579760256], - [-1.520096239743545, 49.361924579760256], - [-1.519139011907793, 49.36212948743184], - [-1.519139011907793, 49.36212948743184] - ] - }, - "length": 0.07317231902175302, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08093", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34414", - "bus2": "MVBus34416", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.519139011907793, 49.36212948743184], - [-1.519139011907793, 49.36212948743184], - [-1.516622875854373, 49.36268995750727], - [-1.514492224885197, 49.36467005047749], - [-1.514492224885197, 49.36467005047749] - ] - }, - "length": 0.46227121366192264, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19725", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34416", - "bus2": "MVBus34418", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.514492224885197, 49.36467005047749], - [-1.514492224885197, 49.36467005047749], - [-1.510635276449318, 49.36476553532519], - [-1.510635276449318, 49.36476553532519] - ] - }, - "length": 0.280354646989838, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08095", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34418", - "bus2": "MVBus34429", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.510635276449318, 49.36476553532519], - [-1.510635276449318, 49.36476553532519], - [-1.51065692468431, 49.36349162254032], - [-1.50914873596642, 49.36141247978162], - [-1.509289955481284, 49.361120529396175], - [-1.509289955481284, 49.361120529396175] - ] - }, - "length": 0.4316157313277553, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19738", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34429", - "bus2": "MVBus34430", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.509289955481284, 49.361120529396175], - [-1.509289955481284, 49.361120529396175], - [-1.510342313002278, 49.35913601325839], - [-1.510721727829247, 49.3581988444997], - [-1.510721727829247, 49.3581988444997] - ] - }, - "length": 0.34138710270072825, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43784", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34430", - "bus2": "MVLV10164", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.510721727829247, 49.3581988444997], - [-1.510721727829247, 49.3581988444997], - [-1.510779652100793, 49.358063122197834], - [-1.509866575618648, 49.35795541122072], - [-1.509866575618648, 49.35795541122072] - ] - }, - "length": 0.08307445089227075, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25194", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34418", - "bus2": "MVBus34419", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.510635276449318, 49.36476553532519], - [-1.510635276449318, 49.36476553532519], - [-1.508108365725732, 49.364432954296966], - [-1.508108365725732, 49.364432954296966] - ] - }, - "length": 0.1872351576860677, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04512", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34419", - "bus2": "MVBus34420", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.508108365725732, 49.364432954296966], - [-1.508108365725732, 49.364432954296966], - [-1.504233252185425, 49.36406601752124], - [-1.504233252185425, 49.36406601752124] - ] - }, - "length": 0.28441854620385315, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34420", - "bus2": "MVBus34421", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.504233252185425, 49.36406601752124], - [-1.504233252185425, 49.36406601752124], - [-1.503321601957881, 49.36235272639792], - [-1.503321601957881, 49.36235272639792] - ] - }, - "length": 0.20172561841725256, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08096", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34421", - "bus2": "MVLV10159", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.503321601957881, 49.36235272639792], - [-1.503321601957881, 49.36235272639792], - [-1.503302547939844, 49.36231691797257], - [-1.50327030090469, 49.361515722753715], - [-1.50417103993675, 49.360882830762066], - [-1.50417103993675, 49.360882830762066] - ] - }, - "length": 0.18945571956595136, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04513", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34420", - "bus2": "MVBus34423", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.504233252185425, 49.36406601752124], - [-1.504233252185425, 49.36406601752124], - [-1.50445347690626, 49.36467905920785], - [-1.50445347690626, 49.36467905920785] - ] - }, - "length": 0.07003190855528035, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25202", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34423", - "bus2": "MVBus34424", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.50445347690626, 49.36467905920785], - [-1.50445347690626, 49.36467905920785], - [-1.500002523513261, 49.3641231754568], - [-1.49892473707318, 49.364392249251054], - [-1.49892473707318, 49.364392249251054] - ] - }, - "length": 0.4129712656640833, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch46764", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34424", - "bus2": "MVLV13646", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.49892473707318, 49.364392249251054], - [-1.49892473707318, 49.364392249251054], - [-1.498817753367313, 49.36425805336535], - [-1.49829710059671, 49.364476161252625], - [-1.497741790400166, 49.364656256931], - [-1.497414067164997, 49.364697556264154], - [-1.496298636860344, 49.3648494718576], - [-1.495629295366785, 49.36495277686566], - [-1.495055046610993, 49.3650157768793], - [-1.494889212838484, 49.36501115870508], - [-1.494712626489046, 49.364971734421616], - [-1.494391642802679, 49.36479781849538], - [-1.493997799159938, 49.36470190719969], - [-1.493997799159938, 49.36470190719969] - ] - }, - "length": 0.3924871147476781, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch19733", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34424", - "bus2": "MVLV00373", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.49892473707318, 49.364392249251054], - [-1.49892473707318, 49.364392249251054], - [-1.49790226678558, 49.364741187553236], - [-1.49790226678558, 49.364741187553236] - ] - }, - "length": 0.08379643799941182, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31267", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34423", - "bus2": "MVLV00375", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.50445347690626, 49.36467905920785], - [-1.50445347690626, 49.36467905920785], - [-1.505076514084524, 49.36635377603919], - [-1.505218708194213, 49.36706491493334], - [-1.505218708194213, 49.36706491493334] - ] - }, - "length": 0.271437589653534, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08094", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34419", - "bus2": "MVLV13649", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.508108365725732, 49.364432954296966], - [-1.508108365725732, 49.364432954296966], - [-1.50817403755374, 49.363721240526324], - [-1.508471587649024, 49.36306583437844], - [-1.508471587649024, 49.36306583437844] - ] - }, - "length": 0.15532711411755915, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10874", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34416", - "bus2": "MVLV10158", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.514492224885197, 49.36467005047749], - [-1.514492224885197, 49.36467005047749], - [-1.514068875814502, 49.36644570324624], - [-1.514068875814502, 49.36644570324624] - ] - }, - "length": 0.19986212906546252, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08097", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34414", - "bus2": "MVLV16575", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.519139011907793, 49.36212948743184], - [-1.519139011907793, 49.36212948743184], - [-1.520552683911972, 49.36221285227293], - [-1.520552683911972, 49.36221285227293] - ] - }, - "length": 0.10310654010388842, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch41858", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14298", - "bus2": "MVBus23647", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5329799874850207, 49.33507754804151], - [-1.532947594181165, 49.33508596360389], - [-1.532956035298951, 49.33510573145595], - [-1.532962504448413, 49.335120885685875], - [-1.532892636361214, 49.335142914309635], - [-1.532691081116922, 49.33516917412243], - [-1.532692599129636, 49.33531416991168], - [-1.532409721660146, 49.33535093579553], - [-1.531830125253673, 49.335361734054494], - [-1.53130087325173, 49.33530712043941], - [-1.530815733550139, 49.335257057185764], - [-1.530503620526786, 49.33525673091457], - [-1.530034216965783, 49.33531119527789], - [-1.529658507987354, 49.33531094329507], - [-1.528393772734871, 49.33531748446953], - [-1.527788020909013, 49.33538779312547], - [-1.527092091099686, 49.3354685534104], - [-1.52674422159139, 49.335008438613734], - [-1.52674422159139, 49.335008438613734] - ] - }, - "length": 0.508202408525906, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch24031", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23647", - "bus2": "MVBus23649", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.52674422159139, 49.335008438613734], - [-1.52674422159139, 49.335008438613734], - [-1.525990741835495, 49.3352494526061], - [-1.525990741835495, 49.3352494526061] - ] - }, - "length": 0.06097076611982121, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch06915", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23649", - "bus2": "MVBus23650", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.525990741835495, 49.3352494526061], - [-1.525990741835495, 49.3352494526061], - [-1.52505817676497, 49.335459726265235], - [-1.524033277563845, 49.33560302726533], - [-1.522945805275997, 49.33609058385038], - [-1.522052595380504, 49.336437453147326], - [-1.521043370614789, 49.33660541758927], - [-1.520041961210907, 49.33687305899442], - [-1.518818728766924, 49.33726426734355], - [-1.517139278478294, 49.33800568121021], - [-1.516088184722974, 49.33830826797327], - [-1.516088184722974, 49.33830826797327] - ] - }, - "length": 0.8033045776755825, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23650", - "bus2": "MVLV13841", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.516088184722974, 49.33830826797327], - [-1.516088184722974, 49.33830826797327], - [-1.51474496203316, 49.33546599960393], - [-1.51474496203316, 49.33546599960393] - ] - }, - "length": 0.330837173677165, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03516", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23650", - "bus2": "MVBus23651", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.516088184722974, 49.33830826797327], - [-1.516088184722974, 49.33830826797327], - [-1.5138569422553, 49.33904286520298], - [-1.511792612037957, 49.339128954091514], - [-1.511792612037957, 49.339128954091514] - ] - }, - "length": 0.33190085523301377, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08382", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23651", - "bus2": "MVBus23653", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.511792612037957, 49.339128954091514], - [-1.511792612037957, 49.339128954091514], - [-1.51086413684498, 49.339185179204556], - [-1.508210361683165, 49.33779438766284], - [-1.506374434040589, 49.33702907136982], - [-1.506374434040589, 49.33702907136982] - ] - }, - "length": 0.4732570571516864, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25449", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23653", - "bus2": "MVBus23654", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.506374434040589, 49.33702907136982], - [-1.506374434040589, 49.33702907136982], - [-1.505591997150413, 49.336678793899225], - [-1.502256473181538, 49.3358706723199], - [-1.501088222606753, 49.33532522876661], - [-1.501088222606753, 49.33532522876661] - ] - }, - "length": 0.43182383669511015, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15262", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23654", - "bus2": "MVBus23656", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.501088222606753, 49.33532522876661], - [-1.501088222606753, 49.33532522876661], - [-1.500188561543648, 49.33493741338863], - [-1.500188561543648, 49.33493741338863] - ] - }, - "length": 0.07833119469092044, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31540", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23656", - "bus2": "MVLV18938", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500188561543648, 49.33493741338863], - [-1.500188561543648, 49.33493741338863], - [-1.501331914032815, 49.33384038654791], - [-1.501331914032815, 49.33384038654791] - ] - }, - "length": 0.14761877610763896, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23158", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23656", - "bus2": "MVBus23658", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500188561543648, 49.33493741338863], - [-1.500188561543648, 49.33493741338863], - [-1.498913519757045, 49.3343117664599], - [-1.495520666720995, 49.33409063193276], - [-1.495520666720995, 49.33409063193276] - ] - }, - "length": 0.3637049063758763, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19987", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23658", - "bus2": "MVBus23659", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.495520666720995, 49.33409063193276], - [-1.495520666720995, 49.33409063193276], - [-1.49381386709555, 49.33368729563582], - [-1.490483706138056, 49.333598090614345], - [-1.48934684129875, 49.333276591614855], - [-1.487250563907883, 49.33229272802707], - [-1.486258441762622, 49.33202492246158], - [-1.484133426908198, 49.33134359624456], - [-1.484133426908198, 49.33134359624456] - ] - }, - "length": 0.9018397404516275, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23159", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23659", - "bus2": "MVBus23663", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.484133426908198, 49.33134359624456], - [-1.484133426908198, 49.33134359624456], - [-1.482602209287364, 49.33005818027853], - [-1.478918590402116, 49.330026289077466], - [-1.478918590402116, 49.330026289077466] - ] - }, - "length": 0.4489506342270319, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04351", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23663", - "bus2": "MVLV10338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.478918590402116, 49.330026289077466], - [-1.478918590402116, 49.330026289077466], - [-1.478484932562386, 49.327578929121835], - [-1.478484932562386, 49.327578929121835] - ] - }, - "length": 0.2740050631911384, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01995", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23663", - "bus2": "MVBus23664", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.478918590402116, 49.330026289077466], - [-1.478918590402116, 49.330026289077466], - [-1.477382860443532, 49.330013227631625], - [-1.477379351775069, 49.3300143463499], - [-1.477379351775069, 49.3300143463499] - ] - }, - "length": 0.1119210277032705, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11164", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23664", - "bus2": "MVBus23665", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.477379351775069, 49.3300143463499], - [-1.477379351775069, 49.3300143463499], - [-1.469473420583994, 49.33253844546463], - [-1.469473420583994, 49.33253844546463] - ] - }, - "length": 0.6395473100197062, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15263", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23659", - "bus2": "MVBus23660", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.484133426908198, 49.33134359624456], - [-1.484133426908198, 49.33134359624456], - [-1.482695123969117, 49.333934930040506], - [-1.482695123969117, 49.333934930040506] - ] - }, - "length": 0.3065729223546083, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19991", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23660", - "bus2": "MVLV03243", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.482695123969117, 49.333934930040506], - [-1.482695123969117, 49.333934930040506], - [-1.484443100222334, 49.334958340796625], - [-1.486548333330025, 49.33618052052723], - [-1.486548333330025, 49.33618052052723] - ] - }, - "length": 0.37523568002671814, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23448", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23660", - "bus2": "MVLV16207", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.482695123969117, 49.333934930040506], - [-1.482695123969117, 49.333934930040506], - [-1.480173475885151, 49.33423279739736], - [-1.479392536599125, 49.33457381549308], - [-1.478685676715247, 49.33494320019281], - [-1.478685676715247, 49.33494320019281] - ] - }, - "length": 0.32029104368682343, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23157", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23654", - "bus2": "MVLV00556", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.501088222606753, 49.33532522876661], - [-1.501088222606753, 49.33532522876661], - [-1.49991598353188, 49.33737849775162], - [-1.499432801241324, 49.33770253259602], - [-1.498718124072025, 49.338044170722846], - [-1.497950206009199, 49.338225291933846], - [-1.497950206009199, 49.338225291933846] - ] - }, - "length": 0.4177356164704489, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03872", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23653", - "bus2": "MVLV00557", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.506374434040589, 49.33702907136982], - [-1.506374434040589, 49.33702907136982], - [-1.505789916628994, 49.33871883648804], - [-1.500250673650373, 49.34212810136862], - [-1.500250673650373, 49.34212810136862] - ] - }, - "length": 0.74567234079204, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03873", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00557", - "bus2": "MVBus23669", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500250673650373, 49.34212810136862], - [-1.500250673650373, 49.34212810136862], - [-1.499633063956089, 49.34213404600997], - [-1.498817642378083, 49.34189422851426], - [-1.498817642378083, 49.34189422851426] - ] - }, - "length": 0.10986828457659217, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch46135", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23669", - "bus2": "MVLV16630", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.498817642378083, 49.34189422851426], - [-1.498817642378083, 49.34189422851426], - [-1.498800537496032, 49.3418784588689], - [-1.498671610462556, 49.34178853864639], - [-1.498595317975536, 49.341635589229384], - [-1.498082515137614, 49.34165195177634], - [-1.497818290739259, 49.34168392863495], - [-1.497474517759035, 49.34177650915794], - [-1.49734890745959, 49.341734996507654], - [-1.497156280695769, 49.34192163668587], - [-1.496946824844434, 49.342204547472356], - [-1.496721937085727, 49.34250829478752], - [-1.495544520706128, 49.34354086758737], - [-1.495517486299349, 49.34353092753231], - [-1.495517486299349, 49.34353092753231] - ] - }, - "length": 0.37081031837191913, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch19986", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00557", - "bus2": "MVBus23668", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500250673650373, 49.34212810136862], - [-1.500250673650373, 49.34212810136862], - [-1.500237842828451, 49.34213599416101], - [-1.500237842828451, 49.34213599416101] - ] - }, - "length": 0.0012805970531591306, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08588", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23651", - "bus2": "MVLV16209", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.511792612037957, 49.339128954091514], - [-1.511792612037957, 49.339128954091514], - [-1.511308187603026, 49.33950177292033], - [-1.511308187603026, 49.33950177292033] - ] - }, - "length": 0.05439303367334706, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29387", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23647", - "bus2": "MVLV10753", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.52674422159139, 49.335008438613734], - [-1.52674422159139, 49.335008438613734], - [-1.527661328563556, 49.334799790674595], - [-1.527661328563556, 49.334799790674595] - ] - }, - "length": 0.07057903647257757, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34988", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11803", - "bus2": "MVLV04212", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.536534847236821, 49.321120183051995], - [-1.536534847236821, 49.321120183051995], - [-1.536406592515027, 49.321066023906944], - [-1.536408762697852, 49.32104609385472], - [-1.536408762697852, 49.32104609385472] - ] - }, - "length": 0.01332263067374734, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41778", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14297", - "bus2": "MVBus14674", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.538193007833593, 49.31216799569018], - [-1.538170052449956, 49.31216363624025], - [-1.538137849537636, 49.312177168723125], - [-1.538123901866753, 49.312183033472245], - [-1.537626963128404, 49.31214575188578], - [-1.53708557469033, 49.312147121825525], - [-1.536217870153149, 49.31222740691322], - [-1.535713313391154, 49.312254360208854], - [-1.535713313391154, 49.312254360208854] - ] - }, - "length": 0.1802597631984163, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48294", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14674", - "bus2": "MVBus14676", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.535713313391154, 49.312254360208854], - [-1.535713313391154, 49.312254360208854], - [-1.535457931048004, 49.31226799908143], - [-1.534338948275798, 49.31227992497371], - [-1.533606760999899, 49.31228772489628], - [-1.532943608155652, 49.31229478946092], - [-1.532608028380869, 49.3122552389903], - [-1.532263978912218, 49.312262300885415], - [-1.531725612374166, 49.312303773396195], - [-1.530879514782274, 49.31226263351347], - [-1.530785822896225, 49.31237819129319], - [-1.530785822896225, 49.31237819129319] - ] - }, - "length": 0.3669595001259236, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23315", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14676", - "bus2": "MVBus14677", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530785822896225, 49.31237819129319], - [-1.530785822896225, 49.31237819129319], - [-1.529735073884145, 49.31219514900721], - [-1.529735073884145, 49.31219514900721] - ] - }, - "length": 0.07906888946602389, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10671", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14677", - "bus2": "MVBus14678", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.529735073884145, 49.31219514900721], - [-1.529735073884145, 49.31219514900721], - [-1.528425285894258, 49.31235791228221], - [-1.528425285894258, 49.31235791228221] - ] - }, - "length": 0.09694397235096873, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08411", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14678", - "bus2": "MVLV13843", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528425285894258, 49.31235791228221], - [-1.528425285894258, 49.31235791228221], - [-1.526075820963424, 49.316179302994485], - [-1.526075820963424, 49.316179302994485] - ] - }, - "length": 0.4580472166707575, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18509", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14678", - "bus2": "MVBus14679", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528425285894258, 49.31235791228221], - [-1.528425285894258, 49.31235791228221], - [-1.527098863522479, 49.312303382214324], - [-1.527098863522479, 49.312303382214324] - ] - }, - "length": 0.09663886198510684, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18510", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14679", - "bus2": "MVBus14681", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527098863522479, 49.312303382214324], - [-1.527098863522479, 49.312303382214324], - [-1.524153720605166, 49.31233014733411], - [-1.524153720605166, 49.31233014733411] - ] - }, - "length": 0.21417143761172072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch27894", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14681", - "bus2": "MVBus14682", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.524153720605166, 49.31233014733411], - [-1.524153720605166, 49.31233014733411], - [-1.522586050277545, 49.31253577323639], - [-1.522584528407902, 49.31253675757177], - [-1.522584528407902, 49.31253675757177] - ] - }, - "length": 0.11641707040119277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38085", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14682", - "bus2": "MVLV00558", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.522584528407902, 49.31253675757177], - [-1.522584528407902, 49.31253675757177], - [-1.521550179657872, 49.31320078591419], - [-1.520245543534837, 49.313775748036875], - [-1.518102246333365, 49.31437348265132], - [-1.517082918956999, 49.314367863780625], - [-1.513409597282692, 49.31441871052916], - [-1.513063287685275, 49.31448992931678], - [-1.513063287685275, 49.31448992931678] - ] - }, - "length": 0.756896951853965, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch31695", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14681", - "bus2": "MVLV15540", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.524153720605166, 49.31233014733411], - [-1.524153720605166, 49.31233014733411], - [-1.523128830492736, 49.31217904723409], - [-1.523128830492736, 49.31217904723409] - ] - }, - "length": 0.07639433946605165, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31694", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14679", - "bus2": "MVLV00901", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527098863522479, 49.312303382214324], - [-1.527098863522479, 49.312303382214324], - [-1.530018730823778, 49.30732834984887], - [-1.530018730823778, 49.30732834984887] - ] - }, - "length": 0.5926417980284098, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43479", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14674", - "bus2": "MVLV14088", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.535713313391154, 49.312254360208854], - [-1.535713313391154, 49.312254360208854], - [-1.535678506609903, 49.31221750682438], - [-1.535652057142803, 49.312189495608315], - [-1.535652057142803, 49.312189495608315] - ] - }, - "length": 0.008478251107719109, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39367", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08091", - "bus2": "MVBus10224", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407539952262903, 49.305622831378344], - [-1.540770931947025, 49.30562943539922], - [-1.540778659181527, 49.30562173825415], - [-1.540823703328984, 49.30557684823684], - [-1.540950318339718, 49.30557276022702], - [-1.541173966163845, 49.30553989492004], - [-1.541379243388977, 49.305477435953634], - [-1.54139881330825, 49.30521727794323], - [-1.541529995899582, 49.304738927306005], - [-1.54172129145631, 49.3042176546864], - [-1.541908258779853, 49.30355280245655], - [-1.541937703242198, 49.30336187256208], - [-1.541937703242198, 49.30336187256208] - ] - }, - "length": 0.288510435240511, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35790", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10224", - "bus2": "MVLV13673", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541937703242198, 49.30336187256208], - [-1.541937703242198, 49.30336187256208], - [-1.541529677889739, 49.30318964937108], - [-1.541298719792966, 49.30334524282238], - [-1.540966177982104, 49.30308440121235], - [-1.540658106472455, 49.30288582211388], - [-1.540401264694867, 49.302781670637664], - [-1.540211585895342, 49.302759829436454], - [-1.540211585895342, 49.302759829436454] - ] - }, - "length": 0.16464985621011782, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33037", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10224", - "bus2": "MVBus10226", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541937703242198, 49.30336187256208], - [-1.541937703242198, 49.30336187256208], - [-1.542223387630054, 49.302440303362495], - [-1.542223387630054, 49.302440303362495] - ] - }, - "length": 0.10457758935540795, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46055", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10226", - "bus2": "MVLV12002", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542223387630054, 49.302440303362495], - [-1.542223387630054, 49.302440303362495], - [-1.542286507604268, 49.302491459800805], - [-1.542347944838915, 49.30249575369062], - [-1.543287745475706, 49.30308795956141], - [-1.54331998363382, 49.30314452967704], - [-1.54365550869017, 49.30338825061464], - [-1.543721334528962, 49.30340473390545], - [-1.543721334528962, 49.30340473390545] - ] - }, - "length": 0.1550339128722013, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43483", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10226", - "bus2": "MVBus10227", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542223387630054, 49.302440303362495], - [-1.542223387630054, 49.302440303362495], - [-1.542471534666646, 49.301639764738134], - [-1.542801364055465, 49.30079264624719], - [-1.542801364055465, 49.30079264624719] - ] - }, - "length": 0.1880618514463853, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34596", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10227", - "bus2": "MVLV18774", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542801364055465, 49.30079264624719], - [-1.542801364055465, 49.30079264624719], - [-1.543074812336536, 49.29952906998616], - [-1.543255810475533, 49.299545016408466], - [-1.543276233423465, 49.299546812114606], - [-1.5432777670666975, 49.29954408210185] - ] - }, - "length": 0.15671172166017394, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44086", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18774", - "bus2": "MVLV15279", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5432777670666975, 49.29954408210185], - [-1.54327930070993, 49.2995413520891], - [-1.543261945051934, 49.299534096358364], - [-1.543021981793605, 49.2994048852615], - [-1.543729397162779, 49.29685079708619], - [-1.54364517698851, 49.2966555419782], - [-1.542321475676577, 49.296886267646975], - [-1.542253353754012, 49.29698185278405], - [-1.541914524945784, 49.297041585899535], - [-1.541412556221464, 49.29714362782427], - [-1.540845933502151, 49.29724261036738], - [-1.540834644587022, 49.297248839543464], - [-1.540823676571206, 49.297262416131204], - [-1.540633277065016, 49.297300900788], - [-1.540622591437736, 49.297308198837065], - [-1.54059443877525, 49.29740002766545], - [-1.540595595770228, 49.29741535348045], - [-1.540603073636934, 49.29743114980665], - [-1.540696198869637, 49.297511129080256], - [-1.540728848225262, 49.297539164091546], - [-1.540722291595128, 49.29754240257251] - ] - }, - "length": 0.6005951041406843, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37342", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15279", - "bus2": "MVBus14650", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540722291595128, 49.29754240257251], - [-1.540715734964994, 49.297545641053475], - [-1.540683189104523, 49.297517701640146], - [-1.540588185781181, 49.29743616393078], - [-1.540579233993002, 49.29741724002069], - [-1.540577873784522, 49.29739922231761], - [-1.540607373135704, 49.297303005504524], - [-1.540624323791336, 49.297291430497545], - [-1.540812284829669, 49.297253438358865], - [-1.540821567466289, 49.29724194902918], - [-1.54083812472163, 49.29723281529839], - [-1.541323068619209, 49.297148442866344], - [-1.541323068619209, 49.297148442866344] - ] - }, - "length": 0.08604247104581982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34273", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14650", - "bus2": "MVLV14464", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541323068619209, 49.297148442866344], - [-1.541323068619209, 49.297148442866344], - [-1.541338137388253, 49.297145644527156], - [-1.541351775372225, 49.29717034464484], - [-1.541368392977678, 49.297200444375925], - [-1.5413683400166376, 49.29720035014075] - ] - }, - "length": 0.007619096156059685, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43429", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14464", - "bus2": "MVBus15061", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5413683400166376, 49.29720035014075], - [-1.541352879564613, 49.29720409359873], - [-1.541341248751791, 49.297183025536185], - [-1.54131626380843, 49.29718764626811], - [-1.541245229313058, 49.2972007881631], - [-1.541179712248823, 49.297214507395836], - [-1.541139579823809, 49.29723472860372], - [-1.540862267611248, 49.297291365605844], - [-1.540812055194363, 49.297295757478814], - [-1.54062931439739, 49.297332942414116], - [-1.540564748011375, 49.29735142484719], - [-1.540534809864111, 49.297363491163246], - [-1.540526227749276, 49.29737260120101], - [-1.540520377731841, 49.29738474422715], - [-1.540514564448229, 49.29738790022909], - [-1.540490696381317, 49.297394382629165], - [-1.54043856088713, 49.29740463810236], - [-1.540354075240552, 49.29742124502784], - [-1.540226564258623, 49.297439798733656], - [-1.539886332441949, 49.29750123526946], - [-1.53974488122933, 49.29752825288703], - [-1.539556385875935, 49.29756082766095], - [-1.539438860653758, 49.29758304286213], - [-1.539369820557496, 49.29759838592583], - [-1.539272544623011, 49.297617923481724], - [-1.539197102850192, 49.297630450820364], - [-1.539162986540141, 49.29763837010339], - [-1.539130908405831, 49.29764267962889], - [-1.538855465272838, 49.297693701699366], - [-1.538802634415764, 49.29769894178305], - [-1.538665445659885, 49.297700257242624], - [-1.538597742892225, 49.29770452904011], - [-1.538581300759887, 49.297707722144374], - [-1.538567408521974, 49.29770807154465], - [-1.538555666205925, 49.29770355732112], - [-1.538555666205925, 49.29770355732112] - ] - }, - "length": 0.21550751613824057, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37240", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15061", - "bus2": "MVBus15062", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.538555666205925, 49.29770355732112], - [-1.538555666205925, 49.29770355732112], - [-1.538536902163315, 49.29770040305343], - [-1.538518431778451, 49.29770132295329], - [-1.537662421485925, 49.29783948270921], - [-1.537662421485925, 49.29783948270921] - ] - }, - "length": 0.06688605844940153, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44877", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15062", - "bus2": "MVLV05023", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.537662421485925, 49.29783948270921], - [-1.537662421485925, 49.29783948270921], - [-1.537600824756657, 49.29785086070992], - [-1.537550409693325, 49.29779259087647], - [-1.537550409693325, 49.29779259087647] - ] - }, - "length": 0.012101505956263555, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36615", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15062", - "bus2": "MVLV09251", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.537662421485925, 49.29783948270921], - [-1.537662421485925, 49.29783948270921], - [-1.537606280596458, 49.297883803574834], - [-1.537580332100724, 49.29791722899418], - [-1.537576022127304, 49.29800631773501], - [-1.537697829254288, 49.298418604441736], - [-1.537601100516259, 49.298617353403465], - [-1.537403224954161, 49.298684272565666], - [-1.537446392202924, 49.29874144503897], - [-1.537446392202924, 49.29874144503897] - ] - }, - "length": 0.11367425331406272, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38532", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14464", - "bus2": "MVBus17206", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5413683400166376, 49.29720035014075], - [-1.541383747507622, 49.2971965124476], - [-1.541367405818449, 49.297166970481975], - [-1.541353993106287, 49.29714270383739], - [-1.541353993106287, 49.29714270383739] - ] - }, - "length": 0.0063636643007188185, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45615", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17206", - "bus2": "MVBus17207", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541353993106287, 49.29714270383739], - [-1.541353993106287, 49.29714270383739], - [-1.541378117392617, 49.2971385246556], - [-1.541378117392617, 49.2971385246556] - ] - }, - "length": 0.0018152069112323077, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47283", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17207", - "bus2": "MVLV00382", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541378117392617, 49.2971385246556], - [-1.541378117392617, 49.2971385246556], - [-1.541407652255103, 49.29713332520885], - [-1.541910096343041, 49.297031204981835], - [-1.542239776802761, 49.29697308065234], - [-1.542299971205669, 49.296869773188504], - [-1.543693723882401, 49.296572866499915], - [-1.543956558641666, 49.29613449001025], - [-1.544000276794944, 49.29616266116647], - [-1.543989146153294, 49.29615131859048], - [-1.543989146153294, 49.29615131859048] - ] - }, - "length": 0.24257532653511676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46481", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17207", - "bus2": "MVBus17209", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541378117392617, 49.2971385246556], - [-1.541378117392617, 49.2971385246556], - [-1.541379443151688, 49.297158450381666], - [-1.541389251247893, 49.29717523280184], - [-1.541402610105714, 49.29717365001366], - [-1.541402610105714, 49.29717365001366] - ] - }, - "length": 0.005203781737639504, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch16684", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17209", - "bus2": "MVLV11101", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541402610105714, 49.29717365001366], - [-1.541402610105714, 49.29717365001366], - [-1.541178395735151, 49.2967821229966], - [-1.541178395735151, 49.2967821229966] - ] - }, - "length": 0.04649766143979308, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV07004_production", - "bus": "MVLV07004", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV07004_consumption", - "bus": "MVLV07004", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV10176_production", - "bus": "MVLV10176", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV10176_consumption", - "bus": "MVLV10176", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV12189_production", - "bus": "MVLV12189", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV12189_consumption", - "bus": "MVLV12189", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV08091_production", - "bus": "MVLV08091", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV08091_consumption", - "bus": "MVLV08091", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV05282_production", - "bus": "MVLV05282", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV05282_consumption", - "bus": "MVLV05282", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV14297_production", - "bus": "MVLV14297", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14297_consumption", - "bus": "MVLV14297", - "phases": "abc", - "powers": [ - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678] - ] - }, - { - "id": "MVLV06470_production", - "bus": "MVLV06470", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06470_consumption", - "bus": "MVLV06470", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV14298_production", - "bus": "MVLV14298", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14298_consumption", - "bus": "MVLV14298", - "phases": "abc", - "powers": [ - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012] - ] - }, - { - "id": "MVLV07424_production", - "bus": "MVLV07424", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07424_consumption", - "bus": "MVLV07424", - "phases": "abc", - "powers": [ - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012] - ] - }, - { - "id": "MVLV03792_production", - "bus": "MVLV03792", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03792_consumption", - "bus": "MVLV03792", - "phases": "abc", - "powers": [ - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012] - ] - }, - { - "id": "MVLV15114_production", - "bus": "MVLV15114", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15114_consumption", - "bus": "MVLV15114", - "phases": "abc", - "powers": [ - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012] - ] - }, - { - "id": "MVLV18758_production", - "bus": "MVLV18758", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV18758_consumption", - "bus": "MVLV18758", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV14458_production", - "bus": "MVLV14458", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV14458_consumption", - "bus": "MVLV14458", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV02134_production", - "bus": "MVLV02134", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV02134_consumption", - "bus": "MVLV02134", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV00376_production", - "bus": "MVLV00376", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV00376_consumption", - "bus": "MVLV00376", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV03057_production", - "bus": "MVLV03057", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV03057_consumption", - "bus": "MVLV03057", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV19162_production", - "bus": "MVLV19162", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV19162_consumption", - "bus": "MVLV19162", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV08862_production", - "bus": "MVLV08862", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV08862_consumption", - "bus": "MVLV08862", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV06284_production", - "bus": "MVLV06284", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV06284_consumption", - "bus": "MVLV06284", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV03060_production", - "bus": "MVLV03060", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV03060_consumption", - "bus": "MVLV03060", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV10164_production", - "bus": "MVLV10164", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV10164_consumption", - "bus": "MVLV10164", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV10159_production", - "bus": "MVLV10159", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV10159_consumption", - "bus": "MVLV10159", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV13646_production", - "bus": "MVLV13646", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV13646_consumption", - "bus": "MVLV13646", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV00373_production", - "bus": "MVLV00373", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV00373_consumption", - "bus": "MVLV00373", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV00375_production", - "bus": "MVLV00375", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV00375_consumption", - "bus": "MVLV00375", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV13649_production", - "bus": "MVLV13649", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV13649_consumption", - "bus": "MVLV13649", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV10158_production", - "bus": "MVLV10158", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV10158_consumption", - "bus": "MVLV10158", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV16575_production", - "bus": "MVLV16575", - "phases": "abc", - "powers": [ - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0], - [-959.8039215686275, 0.0] - ] - }, - { - "id": "MVLV16575_consumption", - "bus": "MVLV16575", - "phases": "abc", - "powers": [ - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476], - [4390.61843163705, 1443.1264903844476] - ] - }, - { - "id": "MVLV13841_production", - "bus": "MVLV13841", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13841_consumption", - "bus": "MVLV13841", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV18938_production", - "bus": "MVLV18938", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18938_consumption", - "bus": "MVLV18938", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV10338_production", - "bus": "MVLV10338", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10338_consumption", - "bus": "MVLV10338", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV03243_production", - "bus": "MVLV03243", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03243_consumption", - "bus": "MVLV03243", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV16207_production", - "bus": "MVLV16207", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16207_consumption", - "bus": "MVLV16207", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV00556_production", - "bus": "MVLV00556", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00556_consumption", - "bus": "MVLV00556", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV00557_production", - "bus": "MVLV00557", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00557_consumption", - "bus": "MVLV00557", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV16630_production", - "bus": "MVLV16630", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16630_consumption", - "bus": "MVLV16630", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV16209_production", - "bus": "MVLV16209", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16209_consumption", - "bus": "MVLV16209", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV10753_production", - "bus": "MVLV10753", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10753_consumption", - "bus": "MVLV10753", - "phases": "abc", - "powers": [ - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012], - [2181.6442414882986, 717.0717853322012] - ] - }, - { - "id": "MVLV04212_production", - "bus": "MVLV04212", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04212_consumption", - "bus": "MVLV04212", - "phases": "abc", - "powers": [ - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678] - ] - }, - { - "id": "MVLV13843_production", - "bus": "MVLV13843", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13843_consumption", - "bus": "MVLV13843", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV00558_production", - "bus": "MVLV00558", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00558_consumption", - "bus": "MVLV00558", - "phases": "abc", - "powers": [ - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847], - [1478.7994739243802, 486.05788182580847] - ] - }, - { - "id": "MVLV15540_production", - "bus": "MVLV15540", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15540_consumption", - "bus": "MVLV15540", - "phases": "abc", - "powers": [ - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678] - ] - }, - { - "id": "MVLV00901_production", - "bus": "MVLV00901", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00901_consumption", - "bus": "MVLV00901", - "phases": "abc", - "powers": [ - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678] - ] - }, - { - "id": "MVLV14088_production", - "bus": "MVLV14088", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14088_consumption", - "bus": "MVLV14088", - "phases": "abc", - "powers": [ - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678], - [1323.1184491818083, 434.8880035149678] - ] - }, - { - "id": "MVLV13673_production", - "bus": "MVLV13673", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV13673_consumption", - "bus": "MVLV13673", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV12002_production", - "bus": "MVLV12002", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV12002_consumption", - "bus": "MVLV12002", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV18774_production", - "bus": "MVLV18774", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV18774_consumption", - "bus": "MVLV18774", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV15279_production", - "bus": "MVLV15279", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV15279_consumption", - "bus": "MVLV15279", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV14464_production", - "bus": "MVLV14464", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV14464_consumption", - "bus": "MVLV14464", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV05023_production", - "bus": "MVLV05023", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV05023_consumption", - "bus": "MVLV05023", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV09251_production", - "bus": "MVLV09251", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV09251_consumption", - "bus": "MVLV09251", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV00382_production", - "bus": "MVLV00382", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV00382_consumption", - "bus": "MVLV00382", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - }, - { - "id": "MVLV11101_production", - "bus": "MVLV11101", - "phases": "abc", - "powers": [ - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0], - [-485.9872611464968, 0.0] - ] - }, - { - "id": "MVLV11101_consumption", - "bus": "MVLV11101", - "phases": "abc", - "powers": [ - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569], - [3531.688562467807, 1160.8098949251569] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder251_winter.json b/data/MVFeeder251_winter.json deleted file mode 100644 index 000672f1..00000000 --- a/data/MVFeeder251_winter.json +++ /dev/null @@ -1,5427 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.544122777559802, 49.28792921131057] - } - }, - { - "id": "HVMV17", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544122777559802, 49.28792921131057] - } - }, - { - "id": "MVBus02317", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.544278715354673, 49.28819278593066] - } - }, - { - "id": "MVBus02318", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.545353494551501, 49.288203281286165] - } - }, - { - "id": "MVBus02319", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.548968224727916, 49.288476803005885] - } - }, - { - "id": "MVBus02320", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.549076450270867, 49.28842758779228] - } - }, - { - "id": "MVBus02321", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.550843810591999, 49.28835713931457] - } - }, - { - "id": "MVBus02322", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.558363431607862, 49.293103186411905] - } - }, - { - "id": "MVLV07004", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5580257550948962, 49.29312307703382] - } - }, - { - "id": "MVBus05969", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.558365114135587, 49.29312791296315] - } - }, - { - "id": "MVBus05970", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.556899752581278, 49.294687718159565] - } - }, - { - "id": "MVLV10176", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5557191205984735, 49.29423783326932] - } - }, - { - "id": "MVBus06431", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.556855381394924, 49.294703989676044] - } - }, - { - "id": "MVBus06432", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.553605845662367, 49.300981342922235] - } - }, - { - "id": "MVLV12189", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.557217555766814, 49.303017120020975] - } - }, - { - "id": "MVLV08091", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5407539952262903, 49.305622831378344] - } - }, - { - "id": "MVBus09269", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540486402010409, 49.308234227444785] - } - }, - { - "id": "MVLV05282", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540443543412636, 49.30824396710194] - } - }, - { - "id": "MVLV14297", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.538193007833593, 49.31216799569018] - } - }, - { - "id": "MVBus11803", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.536534847236821, 49.321120183051995] - } - }, - { - "id": "MVLV06470", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5339935260812059, 49.32782537754664] - } - }, - { - "id": "MVLV14298", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5329799874850207, 49.33507754804151] - } - }, - { - "id": "MVBus22066", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.533131628048518, 49.33571004547227] - } - }, - { - "id": "MVBus22072", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.533046984107669, 49.335762285638104] - } - }, - { - "id": "MVBus22073", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.533057531446026, 49.33486137550976] - } - }, - { - "id": "MVLV07424", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.534883420349337, 49.33506643532471] - } - }, - { - "id": "MVLV03792", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.532877816023977, 49.33303061717324] - } - }, - { - "id": "MVLV15114", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.532053313651179, 49.337907928002785] - } - }, - { - "id": "MVBus22067", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.532403732174482, 49.35257682859679] - } - }, - { - "id": "MVLV18758", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531733080868806, 49.352784404544984] - } - }, - { - "id": "MVBus22069", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531441732019706, 49.3553465205665] - } - }, - { - "id": "MVLV14458", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.526507526635254, 49.35513073595609] - } - }, - { - "id": "MVLV02134", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531585636721146, 49.36510976245396] - } - }, - { - "id": "MVBus32942", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527320367955829, 49.373951706325954] - } - }, - { - "id": "MVBus32948", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.528727248595691, 49.37807677444229] - } - }, - { - "id": "MVBus32950", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527625344427467, 49.38114490026094] - } - }, - { - "id": "MVBus32951", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527156505637376, 49.38105323794978] - } - }, - { - "id": "MVLV00376", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.526160390385847, 49.381286355063466] - } - }, - { - "id": "MVBus32953", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.517504389409401, 49.38872725310879] - } - }, - { - "id": "MVLV03057", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531109516842623, 49.374778041057695] - } - }, - { - "id": "MVBus32943", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.522950716921357, 49.37216582565863] - } - }, - { - "id": "MVBus32944", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.51909312942812, 49.37219771660025] - } - }, - { - "id": "MVBus32945", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5179650794455, 49.372197550213805] - } - }, - { - "id": "MVLV19162", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.518256530861644, 49.37146823421635] - } - }, - { - "id": "MVLV08862", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.514287610518751, 49.37219695446738] - } - }, - { - "id": "MVBus34410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530854289006823, 49.36466877623434] - } - }, - { - "id": "MVLV06284", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.531589190610127, 49.36492882285905] - } - }, - { - "id": "MVBus34411", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.529769581166713, 49.364480054902444] - } - }, - { - "id": "MVLV03060", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.535568417050356, 49.36472085133499] - } - }, - { - "id": "MVBus34412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.52856610290105, 49.36430611482931] - } - }, - { - "id": "MVBus34413", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.520096239743545, 49.361924579760256] - } - }, - { - "id": "MVBus34414", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.519139011907793, 49.36212948743184] - } - }, - { - "id": "MVBus34416", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.514492224885197, 49.36467005047749] - } - }, - { - "id": "MVBus34418", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.510635276449318, 49.36476553532519] - } - }, - { - "id": "MVBus34429", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.509289955481284, 49.361120529396175] - } - }, - { - "id": "MVBus34430", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.510721727829247, 49.3581988444997] - } - }, - { - "id": "MVLV10164", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.509866575618648, 49.35795541122072] - } - }, - { - "id": "MVBus34419", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.508108365725732, 49.364432954296966] - } - }, - { - "id": "MVBus34420", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.504233252185425, 49.36406601752124] - } - }, - { - "id": "MVBus34421", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.503321601957881, 49.36235272639792] - } - }, - { - "id": "MVLV10159", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.50417103993675, 49.360882830762066] - } - }, - { - "id": "MVBus34423", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.50445347690626, 49.36467905920785] - } - }, - { - "id": "MVBus34424", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.49892473707318, 49.364392249251054] - } - }, - { - "id": "MVLV13646", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.493997799159938, 49.36470190719969] - } - }, - { - "id": "MVLV00373", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.49790226678558, 49.364741187553236] - } - }, - { - "id": "MVLV00375", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.505218708194213, 49.36706491493334] - } - }, - { - "id": "MVLV13649", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.508471587649024, 49.36306583437844] - } - }, - { - "id": "MVLV10158", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.514068875814502, 49.36644570324624] - } - }, - { - "id": "MVLV16575", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.520552683911972, 49.36221285227293] - } - }, - { - "id": "MVBus23647", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.52674422159139, 49.335008438613734] - } - }, - { - "id": "MVBus23649", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.525990741835495, 49.3352494526061] - } - }, - { - "id": "MVBus23650", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.516088184722974, 49.33830826797327] - } - }, - { - "id": "MVLV13841", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.51474496203316, 49.33546599960393] - } - }, - { - "id": "MVBus23651", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.511792612037957, 49.339128954091514] - } - }, - { - "id": "MVBus23653", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.506374434040589, 49.33702907136982] - } - }, - { - "id": "MVBus23654", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.501088222606753, 49.33532522876661] - } - }, - { - "id": "MVBus23656", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.500188561543648, 49.33493741338863] - } - }, - { - "id": "MVLV18938", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.501331914032815, 49.33384038654791] - } - }, - { - "id": "MVBus23658", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.495520666720995, 49.33409063193276] - } - }, - { - "id": "MVBus23659", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.484133426908198, 49.33134359624456] - } - }, - { - "id": "MVBus23663", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.478918590402116, 49.330026289077466] - } - }, - { - "id": "MVLV10338", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.478484932562386, 49.327578929121835] - } - }, - { - "id": "MVBus23664", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.477379351775069, 49.3300143463499] - } - }, - { - "id": "MVBus23665", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.469473420583994, 49.33253844546463] - } - }, - { - "id": "MVBus23660", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.482695123969117, 49.333934930040506] - } - }, - { - "id": "MVLV03243", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.486548333330025, 49.33618052052723] - } - }, - { - "id": "MVLV16207", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.478685676715247, 49.33494320019281] - } - }, - { - "id": "MVLV00556", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.497950206009199, 49.338225291933846] - } - }, - { - "id": "MVLV00557", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.500250673650373, 49.34212810136862] - } - }, - { - "id": "MVBus23669", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.498817642378083, 49.34189422851426] - } - }, - { - "id": "MVLV16630", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.495517486299349, 49.34353092753231] - } - }, - { - "id": "MVBus23668", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.500237842828451, 49.34213599416101] - } - }, - { - "id": "MVLV16209", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.511308187603026, 49.33950177292033] - } - }, - { - "id": "MVLV10753", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527661328563556, 49.334799790674595] - } - }, - { - "id": "MVLV04212", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.536408762697852, 49.32104609385472] - } - }, - { - "id": "MVBus14674", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.535713313391154, 49.312254360208854] - } - }, - { - "id": "MVBus14676", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530785822896225, 49.31237819129319] - } - }, - { - "id": "MVBus14677", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.529735073884145, 49.31219514900721] - } - }, - { - "id": "MVBus14678", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.528425285894258, 49.31235791228221] - } - }, - { - "id": "MVLV13843", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.526075820963424, 49.316179302994485] - } - }, - { - "id": "MVBus14679", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.527098863522479, 49.312303382214324] - } - }, - { - "id": "MVBus14681", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.524153720605166, 49.31233014733411] - } - }, - { - "id": "MVBus14682", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.522584528407902, 49.31253675757177] - } - }, - { - "id": "MVLV00558", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.513063287685275, 49.31448992931678] - } - }, - { - "id": "MVLV15540", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.523128830492736, 49.31217904723409] - } - }, - { - "id": "MVLV00901", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.530018730823778, 49.30732834984887] - } - }, - { - "id": "MVLV14088", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.535652057142803, 49.312189495608315] - } - }, - { - "id": "MVBus10224", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541937703242198, 49.30336187256208] - } - }, - { - "id": "MVLV13673", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540211585895342, 49.302759829436454] - } - }, - { - "id": "MVBus10226", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542223387630054, 49.302440303362495] - } - }, - { - "id": "MVLV12002", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543721334528962, 49.30340473390545] - } - }, - { - "id": "MVBus10227", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.542801364055465, 49.30079264624719] - } - }, - { - "id": "MVLV18774", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5432777670666975, 49.29954408210185] - } - }, - { - "id": "MVLV15279", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.540722291595128, 49.29754240257251] - } - }, - { - "id": "MVBus14650", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541323068619209, 49.297148442866344] - } - }, - { - "id": "MVLV14464", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.5413683400166376, 49.29720035014075] - } - }, - { - "id": "MVBus15061", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.538555666205925, 49.29770355732112] - } - }, - { - "id": "MVBus15062", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.537662421485925, 49.29783948270921] - } - }, - { - "id": "MVLV05023", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.537550409693325, 49.29779259087647] - } - }, - { - "id": "MVLV09251", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.537446392202924, 49.29874144503897] - } - }, - { - "id": "MVBus17206", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541353993106287, 49.29714270383739] - } - }, - { - "id": "MVBus17207", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541378117392617, 49.2971385246556] - } - }, - { - "id": "MVLV00382", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.543989146153294, 49.29615131859048] - } - }, - { - "id": "MVBus17209", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541402610105714, 49.29717365001366] - } - }, - { - "id": "MVLV11101", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.541178395735151, 49.2967821229966] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV17", - "geometry": { - "type": "Point", - "coordinates": [-1.544122777559802, 49.28792921131057] - } - }, - { - "id": "MVBranch38653", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV17", - "bus2": "MVBus02317", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544122777559802, 49.28792921131057], - [-1.544064545911348, 49.28798295843586], - [-1.544064545911348, 49.28798295843586], - [-1.544077653421258, 49.288012119047494], - [-1.544278715354673, 49.28819278593066], - [-1.544278715354673, 49.28819278593066] - ] - }, - "length": 0.028233461470556193, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42953", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02317", - "bus2": "MVBus02318", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.544278715354673, 49.28819278593066], - [-1.544278715354673, 49.28819278593066], - [-1.544303558063525, 49.28822274548962], - [-1.54435607356844, 49.28824604470486], - [-1.545130203710099, 49.28833265255595], - [-1.545209700990572, 49.28819838727139], - [-1.545353494551501, 49.288203281286165], - [-1.545353494551501, 49.288203281286165] - ] - }, - "length": 0.09202958332239944, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42071", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02318", - "bus2": "MVBus02319", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.545353494551501, 49.288203281286165], - [-1.545353494551501, 49.288203281286165], - [-1.546008060470975, 49.28826332879754], - [-1.548968224727916, 49.288476803005885], - [-1.548968224727916, 49.288476803005885] - ] - }, - "length": 0.26473687880197855, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45726", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02319", - "bus2": "MVBus02320", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.548968224727916, 49.288476803005885], - [-1.548968224727916, 49.288476803005885], - [-1.548982258759324, 49.28847690646835], - [-1.548995094108262, 49.28847588837704], - [-1.549006195572715, 49.28847230887253], - [-1.549076450270867, 49.28842758779228], - [-1.549076450270867, 49.28842758779228] - ] - }, - "length": 0.009993540367716214, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41856", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02320", - "bus2": "MVBus02321", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.549076450270867, 49.28842758779228], - [-1.549076450270867, 49.28842758779228], - [-1.549707744573232, 49.288011977627775], - [-1.550695748472193, 49.28845703745152], - [-1.550843810591999, 49.28835713931457], - [-1.550843810591999, 49.28835713931457] - ] - }, - "length": 0.16790378725191302, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37561", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02321", - "bus2": "MVBus02322", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.550843810591999, 49.28835713931457], - [-1.550843810591999, 49.28835713931457], - [-1.551839432502873, 49.287688941766646], - [-1.553279985823405, 49.28708984593353], - [-1.553503940504962, 49.28707924282997], - [-1.553543166339699, 49.28709133827926], - [-1.553899215320274, 49.28735040531045], - [-1.553968724727013, 49.28734820661443], - [-1.554241009766557, 49.287469701434006], - [-1.555416921953299, 49.28829202690255], - [-1.556178942262156, 49.28894397726274], - [-1.556385200192579, 49.2891377783652], - [-1.556720883237592, 49.2894904431109], - [-1.556809603307307, 49.28959833018744], - [-1.557245758799447, 49.290198938107046], - [-1.557690435710151, 49.29093012703566], - [-1.557942459673677, 49.291503900155284], - [-1.558222844204846, 49.29214220902152], - [-1.558348944311179, 49.29289019680917], - [-1.558363431607862, 49.293103186411905], - [-1.558363431607862, 49.293103186411905] - ] - }, - "length": 1.02694858466435, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45571", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus02322", - "bus2": "MVLV07004", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558363431607862, 49.293103186411905], - [-1.558363431607862, 49.293103186411905], - [-1.55805054665262, 49.293113318348006], - [-1.558020461421296, 49.29311429426378], - [-1.5580257550948962, 49.29312307703382] - ] - }, - "length": 0.024978720138269347, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39992", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07004", - "bus2": "MVBus05969", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5580257550948962, 49.29312307703382], - [-1.558031048768496, 49.29313185980386], - [-1.558050477712716, 49.293131634333434], - [-1.558365114135587, 49.29312791296315], - [-1.558365114135587, 49.29312791296315] - ] - }, - "length": 0.02430435716809026, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33409", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05969", - "bus2": "MVBus05970", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.558365114135587, 49.29312791296315], - [-1.558365114135587, 49.29312791296315], - [-1.558392089694838, 49.293524624310635], - [-1.558280714090231, 49.29394800525873], - [-1.558040077361262, 49.294485515181684], - [-1.557938886183728, 49.29471153951785], - [-1.557700469612923, 49.29479684511406], - [-1.557428898309983, 49.29485499934382], - [-1.556899752581278, 49.294687718159565], - [-1.556899752581278, 49.294687718159565] - ] - }, - "length": 0.2637279374416299, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42258", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05970", - "bus2": "MVLV10176", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.556899752581278, 49.294687718159565], - [-1.556899752581278, 49.294687718159565], - [-1.556814469048323, 49.294640705664165], - [-1.556718802029458, 49.294597681758205], - [-1.556591039727252, 49.29454853850857], - [-1.556494810813047, 49.29451152328497], - [-1.556432842835297, 49.29448288677953], - [-1.556392651342564, 49.29446085705984], - [-1.556328001464675, 49.29434167440167], - [-1.55628925265661, 49.294269181207206], - [-1.556304925080461, 49.29410180781812], - [-1.556343839970858, 49.293982343461415], - [-1.556362771102496, 49.29390859171891], - [-1.556381207489351, 49.29378549172503], - [-1.556396318378328, 49.2936845641523], - [-1.556210487577078, 49.29368286278066], - [-1.55618574224843, 49.29377353362615], - [-1.556152807001273, 49.29389423427251], - [-1.556116150076947, 49.293994502101754], - [-1.556083366586389, 49.294084183201825], - [-1.556026524815464, 49.29415964970232], - [-1.555981200868604, 49.29420326944431], - [-1.55592979929424, 49.29424708620182], - [-1.555880909499325, 49.294259806939614], - [-1.555819110006087, 49.29426260199422], - [-1.55577362005528, 49.294256125199816], - [-1.555747863745295, 49.294247812327605], - [-1.555727196290815, 49.294236600015545], - [-1.5557191205984735, 49.29423783326932] - ] - }, - "length": 0.22922896329104542, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36528", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV10176", - "bus2": "MVBus06431", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5557191205984735, 49.29423783326932], - [-1.555711044906132, 49.2942390665231], - [-1.555709905069873, 49.294253243523166], - [-1.555709198985772, 49.29426189256228], - [-1.555709931822406, 49.29426357784397], - [-1.555712490740126, 49.294266130406406], - [-1.555720317511327, 49.29426996037984], - [-1.555735095779786, 49.294273511027], - [-1.555779595703046, 49.294283438009664], - [-1.555829091516181, 49.29428687956951], - [-1.555864717826817, 49.29428587750309], - [-1.555891111460949, 49.29428372656106], - [-1.555923156242119, 49.294276840962326], - [-1.555948604950386, 49.294266940016115], - [-1.555969287987201, 49.294254585035404], - [-1.556003276956387, 49.29422853112254], - [-1.556034803230663, 49.29420373537883], - [-1.556076994421136, 49.29415180690991], - [-1.556125826648493, 49.29409169358501], - [-1.556157939117807, 49.294005317383096], - [-1.556200655048918, 49.293893177649416], - [-1.556250700331611, 49.293706996683525], - [-1.556348259995224, 49.2937066128991], - [-1.556329617172461, 49.29388432792322], - [-1.556307256366287, 49.293973797096946], - [-1.556271881582729, 49.294098417698], - [-1.556266782426805, 49.294178116340724], - [-1.556265015824324, 49.294209062262105], - [-1.556261763331609, 49.2942664925027], - [-1.556281986378516, 49.29432718233691], - [-1.556374544382792, 49.294476897467476], - [-1.556392908305692, 49.29449817774516], - [-1.556429590489454, 49.29451818045427], - [-1.556572271027878, 49.294575988002045], - [-1.556662459852183, 49.294611696866966], - [-1.556743180009085, 49.2946442316602], - [-1.55680296771059, 49.29467077093173], - [-1.556855381394924, 49.294703989676044], - [-1.556855381394924, 49.294703989676044] - ] - }, - "length": 0.22660860033133476, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33646", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06431", - "bus2": "MVBus06432", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.556855381394924, 49.294703989676044], - [-1.556855381394924, 49.294703989676044], - [-1.557385961413851, 49.294889826086106], - [-1.557374224253447, 49.29495595979581], - [-1.557377472157742, 49.29510927224081], - [-1.557447574394346, 49.29526041646288], - [-1.557600012496063, 49.295392456490234], - [-1.556759096316054, 49.29634572864169], - [-1.556579087547653, 49.29654977774208], - [-1.555315453710993, 49.29874313638626], - [-1.554888850513974, 49.299483579715265], - [-1.554252138743037, 49.30030083592989], - [-1.553884931034575, 49.30070834655858], - [-1.553605845662367, 49.300981342922235], - [-1.553605845662367, 49.300981342922235] - ] - }, - "length": 0.792612707543813, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33079", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06432", - "bus2": "MVLV12189", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.553605845662367, 49.300981342922235], - [-1.553605845662367, 49.300981342922235], - [-1.553555508523467, 49.30093328593693], - [-1.553551549135147, 49.30092205367382], - [-1.553557411221908, 49.30091137574002], - [-1.553565984347756, 49.30090089781547], - [-1.553578063367311, 49.30089584715829], - [-1.553597811397932, 49.30089580106276], - [-1.553613958204717, 49.30089905581698], - [-1.553633862540597, 49.300903070336815], - [-1.55399009915498, 49.300936395487454], - [-1.554190468669792, 49.300958453231885], - [-1.554302270953267, 49.30096414937148], - [-1.554481280001602, 49.300974953552796], - [-1.554711951660181, 49.300997197877564], - [-1.555065407876741, 49.30104662987325], - [-1.55519228638043, 49.30106903482119], - [-1.555269650336245, 49.30107876053144], - [-1.555331080802683, 49.30108405541743], - [-1.555688720860971, 49.30113567969149], - [-1.555850105479012, 49.30116074334859], - [-1.556008531656012, 49.30119377322279], - [-1.556270060929051, 49.30125871150144], - [-1.556647434206616, 49.301359228140356], - [-1.556970056453826, 49.30144257564067], - [-1.557205950358328, 49.30150425946166], - [-1.557253925503791, 49.301526009590695], - [-1.557306142946434, 49.301574139085304], - [-1.557313041661406, 49.301582946256744], - [-1.557319745327957, 49.301600790625756], - [-1.557329814618145, 49.30162202487161], - [-1.557334447431986, 49.30165246627675], - [-1.557325963696158, 49.30171799032931], - [-1.557299542459669, 49.30192190675507], - [-1.557274931690841, 49.302161312222125], - [-1.557262743114333, 49.30220627711829], - [-1.557256612186251, 49.302283966875386], - [-1.557240764678853, 49.30236285318992], - [-1.557226800025733, 49.30247255788512], - [-1.557204594706673, 49.3025851472808], - [-1.557191013422283, 49.30266453575059], - [-1.557185802101667, 49.302713358051335], - [-1.55718402632807, 49.302760323945265], - [-1.557181059621486, 49.302809361296035], - [-1.55718051443686, 49.3028609466328], - [-1.557161679238428, 49.30299440275693], - [-1.557161933080845, 49.30300954190518], - [-1.5571667754686, 49.30301462890893], - [-1.557171573633508, 49.30301913267917], - [-1.557180431404835, 49.303024386316736], - [-1.557203846225003, 49.30303132671748], - [-1.557214339020699, 49.30303093252168], - [-1.557217555766814, 49.303017120020975], - [-1.557217555766814, 49.303017120020975] - ] - }, - "length": 0.4629762715887536, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42712", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06432", - "bus2": "MVLV08091", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.553605845662367, 49.300981342922235], - [-1.553605845662367, 49.300981342922235], - [-1.553560795305768, 49.301027407964334], - [-1.552594969124907, 49.301762685000945], - [-1.551512962290502, 49.302411397240476], - [-1.550412629007579, 49.302929196038185], - [-1.549429388234952, 49.30333360172381], - [-1.547763099915991, 49.30390255410561], - [-1.545811760819645, 49.30456880161366], - [-1.543162515540441, 49.30547325882959], - [-1.542670038667878, 49.3055849261342], - [-1.542005868259237, 49.305666643144605], - [-1.541857568293667, 49.30558924736994], - [-1.541685849847407, 49.305534527944204], - [-1.541177197726519, 49.30556738651739], - [-1.540953239587985, 49.30560106237891], - [-1.540811464642975, 49.305606593293135], - [-1.540803495450311, 49.30560325268304], - [-1.540755659370213, 49.30563466872761], - [-1.540753463779378, 49.305623262296365], - [-1.5407539952262903, 49.305622831378344] - ] - }, - "length": 1.103705815148244, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41857", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08091", - "bus2": "MVBus09269", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407539952262903, 49.305622831378344], - [-1.540737589952468, 49.30561579643945], - [-1.540733252043573, 49.30562848418592], - [-1.540667639081251, 49.30568953620466], - [-1.540956808587693, 49.3058488877968], - [-1.540971261033053, 49.30595957843265], - [-1.541027931857217, 49.306038413687574], - [-1.541096484657075, 49.30609990114828], - [-1.541117458642052, 49.30621442882496], - [-1.541109133809264, 49.30633006440599], - [-1.541093430236417, 49.30639899457513], - [-1.54094106280494, 49.30684465715278], - [-1.540784234481206, 49.307252046706346], - [-1.540713405873436, 49.30747395814078], - [-1.540621244350711, 49.30777498333838], - [-1.540486402010409, 49.308234227444785], - [-1.540486402010409, 49.308234227444785] - ] - }, - "length": 0.31007777091499894, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42713", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09269", - "bus2": "MVLV05282", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540486402010409, 49.308234227444785], - [-1.540486402010409, 49.308234227444785], - [-1.540443543412636, 49.30824396710194], - [-1.540443543412636, 49.30824396710194] - ] - }, - "length": 0.0032995137003003863, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44335", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09269", - "bus2": "MVLV14297", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540486402010409, 49.308234227444785], - [-1.540486402010409, 49.308234227444785], - [-1.540357106825738, 49.30865765491602], - [-1.540115246377979, 49.309496781924345], - [-1.54000806287199, 49.30987352256521], - [-1.539654921138788, 49.31102038614626], - [-1.539401148113282, 49.31187276493722], - [-1.539286999629095, 49.31225615071473], - [-1.538879004282582, 49.31227395691951], - [-1.538256034072516, 49.31220261581701], - [-1.538237184293533, 49.312188004900676], - [-1.538211714626803, 49.312168255698744], - [-1.538193007833593, 49.31216799569018] - ] - }, - "length": 0.5364504470557699, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39369", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14297", - "bus2": "MVBus11803", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.538193007833593, 49.31216799569018], - [-1.53819725642402, 49.31217209513156], - [-1.5382016944777, 49.312192073085164], - [-1.538205743115031, 49.31221035460955], - [-1.538897043950175, 49.3122871277447], - [-1.539044227710228, 49.312284843196664], - [-1.53908960859427, 49.31233526028656], - [-1.539222826034261, 49.31234824943974], - [-1.538556981108027, 49.314640036218165], - [-1.537956343956155, 49.31670716342029], - [-1.537320265163982, 49.31868196165967], - [-1.536534847236821, 49.321120183051995], - [-1.536534847236821, 49.321120183051995] - ] - }, - "length": 1.0773011885807644, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39368", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11803", - "bus2": "MVLV06470", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.536534847236821, 49.321120183051995], - [-1.536534847236821, 49.321120183051995], - [-1.536501546561255, 49.32122356129653], - [-1.534655567865235, 49.32770166357225], - [-1.534061875940245, 49.327845581054355], - [-1.534014836367798, 49.327815255782454], - [-1.5339935260812059, 49.32782537754664] - ] - }, - "length": 0.7954401697427387, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45860", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV06470", - "bus2": "MVLV14298", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5339935260812059, 49.32782537754664], - [-1.533972215794614, 49.32783549931082], - [-1.534038075431918, 49.327884178788445], - [-1.534317828192986, 49.327814201326994], - [-1.534372586757423, 49.32785308344783], - [-1.53449046786076, 49.32783573977103], - [-1.533170628988937, 49.33232559921571], - [-1.533134314554963, 49.333141749962856], - [-1.533094342636425, 49.33508909025087], - [-1.532986027192007, 49.33515101521379], - [-1.533020283768441, 49.335088030199934], - [-1.53301283434399, 49.335066629402824], - [-1.5329799874850207, 49.33507754804151] - ] - }, - "length": 0.8798759256032205, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37781", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14298", - "bus2": "MVBus22066", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5329799874850207, 49.33507754804151], - [-1.532979533929907, 49.335080051117835], - [-1.532986300373905, 49.33509951311616], - [-1.532994928163547, 49.33512431185406], - [-1.532921199659583, 49.33516213315831], - [-1.53273432520775, 49.33518066177989], - [-1.532746921746389, 49.33530537812459], - [-1.532899599785382, 49.335298788967386], - [-1.533024909995921, 49.33535272317475], - [-1.533121262658806, 49.33544554638144], - [-1.533131628048518, 49.33571004547227], - [-1.533131628048518, 49.33571004547227] - ] - }, - "length": 0.10342519827364842, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37825", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22066", - "bus2": "MVBus22072", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533131628048518, 49.33571004547227], - [-1.533131628048518, 49.33571004547227], - [-1.533046984107669, 49.335762285638104], - [-1.533046984107669, 49.335762285638104] - ] - }, - "length": 0.008461700673569049, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch12288", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22072", - "bus2": "MVBus22073", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533046984107669, 49.335762285638104], - [-1.533046984107669, 49.335762285638104], - [-1.533057531446026, 49.33486137550976], - [-1.533057531446026, 49.33486137550976] - ] - }, - "length": 0.10019875986664627, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29389", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22073", - "bus2": "MVLV07424", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533057531446026, 49.33486137550976], - [-1.533057531446026, 49.33486137550976], - [-1.53398943703501, 49.335195989512854], - [-1.534883420349337, 49.33506643532471], - [-1.534883420349337, 49.33506643532471] - ] - }, - "length": 0.14383385188322648, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29388", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22073", - "bus2": "MVLV03792", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533057531446026, 49.33486137550976], - [-1.533057531446026, 49.33486137550976], - [-1.533011979073309, 49.334190631787195], - [-1.533039825764406, 49.33345854723634], - [-1.532877816023977, 49.33303061717324], - [-1.532877816023977, 49.33303061717324] - ] - }, - "length": 0.2051436384266768, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29382", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22072", - "bus2": "MVLV15114", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533046984107669, 49.335762285638104], - [-1.533046984107669, 49.335762285638104], - [-1.532053313651179, 49.337907928002785], - [-1.532053313651179, 49.337907928002785] - ] - }, - "length": 0.2493185426177021, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch44471", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22066", - "bus2": "MVBus22067", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.533131628048518, 49.33571004547227], - [-1.533131628048518, 49.33571004547227], - [-1.532947292298687, 49.3411369986952], - [-1.532740413744813, 49.3415789077134], - [-1.53278160534124, 49.34165620164864], - [-1.532878494600845, 49.34163934779399], - [-1.532915555431578, 49.34163283888735], - [-1.532983237310681, 49.34162824926677], - [-1.532957908744556, 49.34210447299129], - [-1.532908563438801, 49.34277497516311], - [-1.532771270861551, 49.34290282535032], - [-1.532844701353445, 49.34301204574741], - [-1.5327744631901, 49.34345244180959], - [-1.532729045377297, 49.343639853956425], - [-1.532657756778632, 49.35045146206623], - [-1.532087461291756, 49.350791247571166], - [-1.531904838815109, 49.35129708296319], - [-1.532261866158014, 49.35231340901049], - [-1.532403732174482, 49.35257682859679], - [-1.532403732174482, 49.35257682859679] - ] - }, - "length": 1.926359122832335, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22067", - "bus2": "MVLV18758", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.532403732174482, 49.35257682859679], - [-1.532403732174482, 49.35257682859679], - [-1.532318582392134, 49.352663449981854], - [-1.532227468992275, 49.35265986145356], - [-1.531733080868806, 49.352784404544984], - [-1.531733080868806, 49.352784404544984] - ] - }, - "length": 0.056578106178282746, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45337", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22067", - "bus2": "MVBus22069", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.532403732174482, 49.35257682859679], - [-1.532403732174482, 49.35257682859679], - [-1.53264913595584, 49.35317922079326], - [-1.532702848551083, 49.35332108602859], - [-1.532684420052383, 49.35339347169895], - [-1.532621439228901, 49.35344544416329], - [-1.532498902629156, 49.353468114175726], - [-1.532392156566066, 49.35344658155164], - [-1.532277977981303, 49.3534533772329], - [-1.532032779700746, 49.353623588265485], - [-1.531927759460042, 49.353751835653576], - [-1.531856350066794, 49.35388212237224], - [-1.531882224053266, 49.353971808328446], - [-1.53192882130631, 49.354082692532], - [-1.531975708734858, 49.35413425002378], - [-1.532009720320815, 49.354204947960284], - [-1.531998695945411, 49.354249005985515], - [-1.531912223146382, 49.35432251075777], - [-1.531787395530182, 49.35436193807548], - [-1.531706052936165, 49.35442387283807], - [-1.531583857413184, 49.35457764053744], - [-1.531499002561331, 49.35478327288385], - [-1.531441732019706, 49.3553465205665], - [-1.531441732019706, 49.3553465205665] - ] - }, - "length": 0.36238372555403137, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47705", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22069", - "bus2": "MVLV14458", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531441732019706, 49.3553465205665], - [-1.531441732019706, 49.3553465205665], - [-1.531385451423608, 49.355335289663294], - [-1.531386067616132, 49.35536774817351], - [-1.531380218497825, 49.355395539800796], - [-1.531370833342849, 49.35544016555585], - [-1.531319051605202, 49.35549407932305], - [-1.531274757250741, 49.35551745944992], - [-1.531238305393986, 49.355533823548285], - [-1.531159340552414, 49.35555428064477], - [-1.531036689240641, 49.35557860757163], - [-1.530903052239168, 49.35559949219689], - [-1.530724987624325, 49.35562665376268], - [-1.530499971586221, 49.35566113563619], - [-1.530348254933174, 49.355679273310365], - [-1.530185595337207, 49.35569563111755], - [-1.52996260291213, 49.35571385719575], - [-1.529735820241337, 49.35572491040191], - [-1.529645084310406, 49.35578741545591], - [-1.529598017950466, 49.3557943076446], - [-1.529538683016079, 49.35580375297779], - [-1.52947746702286, 49.355817288201635], - [-1.529423260505689, 49.355830472065875], - [-1.529279032626479, 49.355876735437576], - [-1.528932104851519, 49.35600241475257], - [-1.528828966383681, 49.35603958534019], - [-1.528740910796219, 49.356068427902315], - [-1.528628993181144, 49.35609690430503], - [-1.528470005240302, 49.35613222748504], - [-1.52833777959128, 49.35615615781715], - [-1.528271201209621, 49.35616687869827], - [-1.528245202657719, 49.35616885676052], - [-1.528185214942384, 49.3561700116971], - [-1.52812785415475, 49.35617112712831], - [-1.528044023158241, 49.35616722919092], - [-1.527996840282627, 49.356151198132466], - [-1.527952634906449, 49.35611492422224], - [-1.527923982819329, 49.356087162577886], - [-1.527856224359591, 49.356025742300524], - [-1.527785666176666, 49.355963710428966], - [-1.527660854309551, 49.35586214777877], - [-1.527489768884338, 49.3557368704239], - [-1.527413041989026, 49.35567628681694], - [-1.527291831390711, 49.355573159979755], - [-1.527150278499086, 49.355449478360086], - [-1.52695226508292, 49.35535858728895], - [-1.52648157487598, 49.355177575474116], - [-1.526481408963931, 49.35516787600893], - [-1.526507526635254, 49.35513073595609], - [-1.526507526635254, 49.35513073595609] - ] - }, - "length": 0.44321442367888547, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34135", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus22069", - "bus2": "MVLV02134", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531441732019706, 49.3553465205665], - [-1.531441732019706, 49.3553465205665], - [-1.531463965605725, 49.3554264568919], - [-1.531664465304281, 49.35549834583802], - [-1.53183991724384, 49.35554299629057], - [-1.53189239271028, 49.35555434043819], - [-1.532281840418759, 49.355696626571635], - [-1.532672047395941, 49.35599425424982], - [-1.532778121387907, 49.356213439668494], - [-1.532308183717842, 49.362295885970966], - [-1.532300355928635, 49.362378506927946], - [-1.531996134805592, 49.36510477099037], - [-1.531858186575423, 49.365100044004556], - [-1.531683659565037, 49.36503102487483], - [-1.531637653396617, 49.36507344646523], - [-1.531599957535678, 49.36510700224723], - [-1.531585636721146, 49.36510976245396] - ] - }, - "length": 1.1707233869850964, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39913", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02134", - "bus2": "MVBus32942", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531585636721146, 49.36510976245396], - [-1.531591077797617, 49.36512913479824], - [-1.53165298114622, 49.36521550234027], - [-1.531843685074216, 49.3655053751369], - [-1.531665988640638, 49.36821135085916], - [-1.528833824377521, 49.37087365739615], - [-1.528200911840818, 49.371626624153215], - [-1.528160682391598, 49.371665764231246], - [-1.52784953601465, 49.37195498518486], - [-1.527669458759808, 49.37240437899802], - [-1.527592831367765, 49.37276712698362], - [-1.527320367955829, 49.373951706325954], - [-1.527320367955829, 49.373951706325954] - ] - }, - "length": 1.0731453489406135, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32942", - "bus2": "MVBus32948", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527320367955829, 49.373951706325954], - [-1.527320367955829, 49.373951706325954], - [-1.527400051396363, 49.37446682801028], - [-1.527421005225278, 49.37482422732028], - [-1.527401991409717, 49.37501242778035], - [-1.527315739745103, 49.375253928704204], - [-1.527226268859421, 49.37545290097939], - [-1.527283293402961, 49.375689789762255], - [-1.527441313500359, 49.37588081086286], - [-1.527621122274153, 49.376148732579026], - [-1.527893984631622, 49.37639386819455], - [-1.527968338296842, 49.37653329764479], - [-1.528139295529732, 49.3768646413651], - [-1.528291978122515, 49.37730895291319], - [-1.528727248595691, 49.37807677444229], - [-1.528727248595691, 49.37807677444229] - ] - }, - "length": 0.4830376263026058, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39914", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32948", - "bus2": "MVBus32950", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528727248595691, 49.37807677444229], - [-1.528727248595691, 49.37807677444229], - [-1.528601099201575, 49.378123766068285], - [-1.528608157069455, 49.37821337193959], - [-1.528462993116187, 49.378311835849416], - [-1.528065698686118, 49.37858221876822], - [-1.527697869402059, 49.37891150892088], - [-1.527458293715266, 49.37914643129591], - [-1.527257948239472, 49.37936307612514], - [-1.527454042954106, 49.379610786425374], - [-1.527548552366555, 49.37977615468656], - [-1.527599769425953, 49.38008194354724], - [-1.527633494827969, 49.38033805357043], - [-1.527842423424155, 49.380345830698545], - [-1.527791056549856, 49.38095960598652], - [-1.527625344427467, 49.38114490026094], - [-1.527625344427467, 49.38114490026094] - ] - }, - "length": 0.40312747799055015, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48422", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32950", - "bus2": "MVBus32951", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527625344427467, 49.38114490026094], - [-1.527625344427467, 49.38114490026094], - [-1.527246457920927, 49.3810555650266], - [-1.527156505637376, 49.38105323794978], - [-1.527156505637376, 49.38105323794978] - ] - }, - "length": 0.03578752012234594, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35426", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32951", - "bus2": "MVLV00376", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527156505637376, 49.38105323794978], - [-1.527156505637376, 49.38105323794978], - [-1.52620738657595, 49.38120782106345], - [-1.526160390385847, 49.381286355063466], - [-1.526160390385847, 49.381286355063466] - ] - }, - "length": 0.08040663184049307, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33515", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32950", - "bus2": "MVBus32953", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527625344427467, 49.38114490026094], - [-1.527625344427467, 49.38114490026094], - [-1.527515449617921, 49.38148627328165], - [-1.527512212844316, 49.381560308147634], - [-1.52752355936672, 49.38158948901832], - [-1.528031859335662, 49.38178753170748], - [-1.528397231736701, 49.38193653351875], - [-1.52837450900985, 49.381972088501556], - [-1.52876321837867, 49.38211393565683], - [-1.528625406061104, 49.38225742972185], - [-1.528850748151494, 49.382633909622115], - [-1.528942469770747, 49.38290815789958], - [-1.529029796174817, 49.38310400253717], - [-1.529035658108145, 49.383181747337815], - [-1.528927917985613, 49.3834602736569], - [-1.528800423755089, 49.383569816433365], - [-1.528341538492892, 49.38381683158706], - [-1.527533355757772, 49.38430382816528], - [-1.527522220550659, 49.38429537173722], - [-1.527072768441347, 49.38456352013355], - [-1.527048139325459, 49.38457508599294], - [-1.526736368640366, 49.38423756222454], - [-1.526665658751571, 49.384214236217375], - [-1.525901425053955, 49.38438116143926], - [-1.525119948105659, 49.38426600815902], - [-1.523752775329072, 49.384649044110766], - [-1.523604201076715, 49.38484602213671], - [-1.522605210011718, 49.38696375611163], - [-1.522844837792189, 49.38748145010745], - [-1.522789669743934, 49.38754308366898], - [-1.522509569982801, 49.38759575281451], - [-1.522247974294246, 49.38768285014764], - [-1.521969001368021, 49.38783031392183], - [-1.521766920366799, 49.38799169785384], - [-1.521623302265864, 49.38825420494629], - [-1.521588808311371, 49.38857902971922], - [-1.5216530848726, 49.38891498711093], - [-1.52165752519756, 49.38893133057315], - [-1.521635553101718, 49.38897329936228], - [-1.521496951908399, 49.388977933160554], - [-1.521389289415794, 49.38901451939029], - [-1.520957401427379, 49.38891098889611], - [-1.520275943139262, 49.388752329878855], - [-1.519703064871274, 49.388691197359144], - [-1.518494880436735, 49.38868354650642], - [-1.517510891907542, 49.38868857786499], - [-1.517506396412699, 49.388715280883034], - [-1.517504389409401, 49.38872725310879], - [-1.517504389409401, 49.38872725310879] - ] - }, - "length": 1.6326161105779273, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48421", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32948", - "bus2": "MVLV03057", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528727248595691, 49.37807677444229], - [-1.528727248595691, 49.37807677444229], - [-1.528808973458675, 49.3781180390623], - [-1.529743545000941, 49.37760751041046], - [-1.531015923828987, 49.37701826001692], - [-1.531090817819815, 49.37477848949631], - [-1.531109516842623, 49.374778041057695], - [-1.531109516842623, 49.374778041057695] - ] - }, - "length": 0.4597844729770908, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48420", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32942", - "bus2": "MVBus32943", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527320367955829, 49.373951706325954], - [-1.527320367955829, 49.373951706325954], - [-1.52705392159122, 49.373806503430025], - [-1.526569246098225, 49.373510670681604], - [-1.526273175627114, 49.37341298911873], - [-1.525869852601984, 49.37331350789843], - [-1.525394677976571, 49.37324334195383], - [-1.524897363677829, 49.37320619178711], - [-1.524338110483229, 49.37300971022446], - [-1.523788343680933, 49.372829039052675], - [-1.523256494223086, 49.37235184919758], - [-1.523075288509421, 49.37216479580243], - [-1.522950716921357, 49.37216582565863], - [-1.522950716921357, 49.37216582565863] - ] - }, - "length": 0.39063953902460974, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch10876", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32943", - "bus2": "MVBus32944", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.522950716921357, 49.37216582565863], - [-1.522950716921357, 49.37216582565863], - [-1.51909312942812, 49.37219771660025], - [-1.51909312942812, 49.37219771660025] - ] - }, - "length": 0.28017990056768277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch09992", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32944", - "bus2": "MVBus32945", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.51909312942812, 49.37219771660025], - [-1.51909312942812, 49.37219771660025], - [-1.5179650794455, 49.372197550213805], - [-1.5179650794455, 49.372197550213805] - ] - }, - "length": 0.08192465202152102, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch05584", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32945", - "bus2": "MVLV19162", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5179650794455, 49.372197550213805], - [-1.5179650794455, 49.372197550213805], - [-1.518256530861644, 49.37146823421635], - [-1.518256530861644, 49.37146823421635] - ] - }, - "length": 0.08382862257920029, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14895", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus32945", - "bus2": "MVLV08862", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5179650794455, 49.372197550213805], - [-1.5179650794455, 49.372197550213805], - [-1.514287610518751, 49.37219695446738], - [-1.514287610518751, 49.37219695446738] - ] - }, - "length": 0.26707625608160257, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch36578", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02134", - "bus2": "MVBus34410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.531585636721146, 49.36510976245396], - [-1.531565874830143, 49.36509315031643], - [-1.531583643366446, 49.365064525826554], - [-1.531639602388052, 49.36498827170826], - [-1.531234928266094, 49.364842577821825], - [-1.53089448046018, 49.3647106826351], - [-1.530838952226338, 49.36469878845856], - [-1.530854289006823, 49.36466877623434], - [-1.530854289006823, 49.36466877623434] - ] - }, - "length": 0.08291962228537283, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25201", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34410", - "bus2": "MVLV06284", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530854289006823, 49.36466877623434], - [-1.530854289006823, 49.36466877623434], - [-1.531589190610127, 49.36492882285905], - [-1.531589190610127, 49.36492882285905] - ] - }, - "length": 0.0607116755354689, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10148", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34410", - "bus2": "MVBus34411", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530854289006823, 49.36466877623434], - [-1.530854289006823, 49.36466877623434], - [-1.529769581166713, 49.364480054902444], - [-1.529769581166713, 49.364480054902444] - ] - }, - "length": 0.08153686761905633, - "params_id": "A_AM_148", - "ground": "ground" - }, - { - "id": "MVBranch22885", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34411", - "bus2": "MVLV03060", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.529769581166713, 49.364480054902444], - [-1.529769581166713, 49.364480054902444], - [-1.531632792071112, 49.3631560479711], - [-1.535568417050356, 49.36472085133499], - [-1.535568417050356, 49.36472085133499] - ] - }, - "length": 0.5346788249293161, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08104", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34411", - "bus2": "MVBus34412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.529769581166713, 49.364480054902444], - [-1.529769581166713, 49.364480054902444], - [-1.52856610290105, 49.36430611482931], - [-1.52856610290105, 49.36430611482931] - ] - }, - "length": 0.08953139053423927, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19724", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34412", - "bus2": "MVBus34413", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.52856610290105, 49.36430611482931], - [-1.52856610290105, 49.36430611482931], - [-1.527342148691834, 49.364099542493356], - [-1.52452541132236, 49.363413261367334], - [-1.520096239743545, 49.361924579760256], - [-1.520096239743545, 49.361924579760256] - ] - }, - "length": 0.6720310690910645, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch14883", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34413", - "bus2": "MVBus34414", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.520096239743545, 49.361924579760256], - [-1.520096239743545, 49.361924579760256], - [-1.519139011907793, 49.36212948743184], - [-1.519139011907793, 49.36212948743184] - ] - }, - "length": 0.07317231902175302, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08093", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34414", - "bus2": "MVBus34416", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.519139011907793, 49.36212948743184], - [-1.519139011907793, 49.36212948743184], - [-1.516622875854373, 49.36268995750727], - [-1.514492224885197, 49.36467005047749], - [-1.514492224885197, 49.36467005047749] - ] - }, - "length": 0.46227121366192264, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19725", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34416", - "bus2": "MVBus34418", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.514492224885197, 49.36467005047749], - [-1.514492224885197, 49.36467005047749], - [-1.510635276449318, 49.36476553532519], - [-1.510635276449318, 49.36476553532519] - ] - }, - "length": 0.280354646989838, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08095", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34418", - "bus2": "MVBus34429", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.510635276449318, 49.36476553532519], - [-1.510635276449318, 49.36476553532519], - [-1.51065692468431, 49.36349162254032], - [-1.50914873596642, 49.36141247978162], - [-1.509289955481284, 49.361120529396175], - [-1.509289955481284, 49.361120529396175] - ] - }, - "length": 0.4316157313277553, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19738", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34429", - "bus2": "MVBus34430", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.509289955481284, 49.361120529396175], - [-1.509289955481284, 49.361120529396175], - [-1.510342313002278, 49.35913601325839], - [-1.510721727829247, 49.3581988444997], - [-1.510721727829247, 49.3581988444997] - ] - }, - "length": 0.34138710270072825, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43784", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34430", - "bus2": "MVLV10164", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.510721727829247, 49.3581988444997], - [-1.510721727829247, 49.3581988444997], - [-1.510779652100793, 49.358063122197834], - [-1.509866575618648, 49.35795541122072], - [-1.509866575618648, 49.35795541122072] - ] - }, - "length": 0.08307445089227075, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch25194", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34418", - "bus2": "MVBus34419", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.510635276449318, 49.36476553532519], - [-1.510635276449318, 49.36476553532519], - [-1.508108365725732, 49.364432954296966], - [-1.508108365725732, 49.364432954296966] - ] - }, - "length": 0.1872351576860677, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04512", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34419", - "bus2": "MVBus34420", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.508108365725732, 49.364432954296966], - [-1.508108365725732, 49.364432954296966], - [-1.504233252185425, 49.36406601752124], - [-1.504233252185425, 49.36406601752124] - ] - }, - "length": 0.28441854620385315, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04514", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34420", - "bus2": "MVBus34421", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.504233252185425, 49.36406601752124], - [-1.504233252185425, 49.36406601752124], - [-1.503321601957881, 49.36235272639792], - [-1.503321601957881, 49.36235272639792] - ] - }, - "length": 0.20172561841725256, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08096", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34421", - "bus2": "MVLV10159", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.503321601957881, 49.36235272639792], - [-1.503321601957881, 49.36235272639792], - [-1.503302547939844, 49.36231691797257], - [-1.50327030090469, 49.361515722753715], - [-1.50417103993675, 49.360882830762066], - [-1.50417103993675, 49.360882830762066] - ] - }, - "length": 0.18945571956595136, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04513", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34420", - "bus2": "MVBus34423", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.504233252185425, 49.36406601752124], - [-1.504233252185425, 49.36406601752124], - [-1.50445347690626, 49.36467905920785], - [-1.50445347690626, 49.36467905920785] - ] - }, - "length": 0.07003190855528035, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25202", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34423", - "bus2": "MVBus34424", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.50445347690626, 49.36467905920785], - [-1.50445347690626, 49.36467905920785], - [-1.500002523513261, 49.3641231754568], - [-1.49892473707318, 49.364392249251054], - [-1.49892473707318, 49.364392249251054] - ] - }, - "length": 0.4129712656640833, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch46764", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34424", - "bus2": "MVLV13646", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.49892473707318, 49.364392249251054], - [-1.49892473707318, 49.364392249251054], - [-1.498817753367313, 49.36425805336535], - [-1.49829710059671, 49.364476161252625], - [-1.497741790400166, 49.364656256931], - [-1.497414067164997, 49.364697556264154], - [-1.496298636860344, 49.3648494718576], - [-1.495629295366785, 49.36495277686566], - [-1.495055046610993, 49.3650157768793], - [-1.494889212838484, 49.36501115870508], - [-1.494712626489046, 49.364971734421616], - [-1.494391642802679, 49.36479781849538], - [-1.493997799159938, 49.36470190719969], - [-1.493997799159938, 49.36470190719969] - ] - }, - "length": 0.3924871147476781, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch19733", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34424", - "bus2": "MVLV00373", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.49892473707318, 49.364392249251054], - [-1.49892473707318, 49.364392249251054], - [-1.49790226678558, 49.364741187553236], - [-1.49790226678558, 49.364741187553236] - ] - }, - "length": 0.08379643799941182, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31267", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34423", - "bus2": "MVLV00375", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.50445347690626, 49.36467905920785], - [-1.50445347690626, 49.36467905920785], - [-1.505076514084524, 49.36635377603919], - [-1.505218708194213, 49.36706491493334], - [-1.505218708194213, 49.36706491493334] - ] - }, - "length": 0.271437589653534, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08094", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34419", - "bus2": "MVLV13649", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.508108365725732, 49.364432954296966], - [-1.508108365725732, 49.364432954296966], - [-1.50817403755374, 49.363721240526324], - [-1.508471587649024, 49.36306583437844], - [-1.508471587649024, 49.36306583437844] - ] - }, - "length": 0.15532711411755915, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10874", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34416", - "bus2": "MVLV10158", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.514492224885197, 49.36467005047749], - [-1.514492224885197, 49.36467005047749], - [-1.514068875814502, 49.36644570324624], - [-1.514068875814502, 49.36644570324624] - ] - }, - "length": 0.19986212906546252, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08097", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus34414", - "bus2": "MVLV16575", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.519139011907793, 49.36212948743184], - [-1.519139011907793, 49.36212948743184], - [-1.520552683911972, 49.36221285227293], - [-1.520552683911972, 49.36221285227293] - ] - }, - "length": 0.10310654010388842, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch41858", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14298", - "bus2": "MVBus23647", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5329799874850207, 49.33507754804151], - [-1.532947594181165, 49.33508596360389], - [-1.532956035298951, 49.33510573145595], - [-1.532962504448413, 49.335120885685875], - [-1.532892636361214, 49.335142914309635], - [-1.532691081116922, 49.33516917412243], - [-1.532692599129636, 49.33531416991168], - [-1.532409721660146, 49.33535093579553], - [-1.531830125253673, 49.335361734054494], - [-1.53130087325173, 49.33530712043941], - [-1.530815733550139, 49.335257057185764], - [-1.530503620526786, 49.33525673091457], - [-1.530034216965783, 49.33531119527789], - [-1.529658507987354, 49.33531094329507], - [-1.528393772734871, 49.33531748446953], - [-1.527788020909013, 49.33538779312547], - [-1.527092091099686, 49.3354685534104], - [-1.52674422159139, 49.335008438613734], - [-1.52674422159139, 49.335008438613734] - ] - }, - "length": 0.508202408525906, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch24031", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23647", - "bus2": "MVBus23649", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.52674422159139, 49.335008438613734], - [-1.52674422159139, 49.335008438613734], - [-1.525990741835495, 49.3352494526061], - [-1.525990741835495, 49.3352494526061] - ] - }, - "length": 0.06097076611982121, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch06915", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23649", - "bus2": "MVBus23650", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.525990741835495, 49.3352494526061], - [-1.525990741835495, 49.3352494526061], - [-1.52505817676497, 49.335459726265235], - [-1.524033277563845, 49.33560302726533], - [-1.522945805275997, 49.33609058385038], - [-1.522052595380504, 49.336437453147326], - [-1.521043370614789, 49.33660541758927], - [-1.520041961210907, 49.33687305899442], - [-1.518818728766924, 49.33726426734355], - [-1.517139278478294, 49.33800568121021], - [-1.516088184722974, 49.33830826797327], - [-1.516088184722974, 49.33830826797327] - ] - }, - "length": 0.8033045776755825, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch12292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23650", - "bus2": "MVLV13841", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.516088184722974, 49.33830826797327], - [-1.516088184722974, 49.33830826797327], - [-1.51474496203316, 49.33546599960393], - [-1.51474496203316, 49.33546599960393] - ] - }, - "length": 0.330837173677165, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03516", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23650", - "bus2": "MVBus23651", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.516088184722974, 49.33830826797327], - [-1.516088184722974, 49.33830826797327], - [-1.5138569422553, 49.33904286520298], - [-1.511792612037957, 49.339128954091514], - [-1.511792612037957, 49.339128954091514] - ] - }, - "length": 0.33190085523301377, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08382", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23651", - "bus2": "MVBus23653", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.511792612037957, 49.339128954091514], - [-1.511792612037957, 49.339128954091514], - [-1.51086413684498, 49.339185179204556], - [-1.508210361683165, 49.33779438766284], - [-1.506374434040589, 49.33702907136982], - [-1.506374434040589, 49.33702907136982] - ] - }, - "length": 0.4732570571516864, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch25449", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23653", - "bus2": "MVBus23654", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.506374434040589, 49.33702907136982], - [-1.506374434040589, 49.33702907136982], - [-1.505591997150413, 49.336678793899225], - [-1.502256473181538, 49.3358706723199], - [-1.501088222606753, 49.33532522876661], - [-1.501088222606753, 49.33532522876661] - ] - }, - "length": 0.43182383669511015, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15262", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23654", - "bus2": "MVBus23656", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.501088222606753, 49.33532522876661], - [-1.501088222606753, 49.33532522876661], - [-1.500188561543648, 49.33493741338863], - [-1.500188561543648, 49.33493741338863] - ] - }, - "length": 0.07833119469092044, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31540", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23656", - "bus2": "MVLV18938", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500188561543648, 49.33493741338863], - [-1.500188561543648, 49.33493741338863], - [-1.501331914032815, 49.33384038654791], - [-1.501331914032815, 49.33384038654791] - ] - }, - "length": 0.14761877610763896, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23158", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23656", - "bus2": "MVBus23658", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500188561543648, 49.33493741338863], - [-1.500188561543648, 49.33493741338863], - [-1.498913519757045, 49.3343117664599], - [-1.495520666720995, 49.33409063193276], - [-1.495520666720995, 49.33409063193276] - ] - }, - "length": 0.3637049063758763, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19987", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23658", - "bus2": "MVBus23659", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.495520666720995, 49.33409063193276], - [-1.495520666720995, 49.33409063193276], - [-1.49381386709555, 49.33368729563582], - [-1.490483706138056, 49.333598090614345], - [-1.48934684129875, 49.333276591614855], - [-1.487250563907883, 49.33229272802707], - [-1.486258441762622, 49.33202492246158], - [-1.484133426908198, 49.33134359624456], - [-1.484133426908198, 49.33134359624456] - ] - }, - "length": 0.9018397404516275, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23159", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23659", - "bus2": "MVBus23663", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.484133426908198, 49.33134359624456], - [-1.484133426908198, 49.33134359624456], - [-1.482602209287364, 49.33005818027853], - [-1.478918590402116, 49.330026289077466], - [-1.478918590402116, 49.330026289077466] - ] - }, - "length": 0.4489506342270319, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch04351", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23663", - "bus2": "MVLV10338", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.478918590402116, 49.330026289077466], - [-1.478918590402116, 49.330026289077466], - [-1.478484932562386, 49.327578929121835], - [-1.478484932562386, 49.327578929121835] - ] - }, - "length": 0.2740050631911384, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch01995", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23663", - "bus2": "MVBus23664", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.478918590402116, 49.330026289077466], - [-1.478918590402116, 49.330026289077466], - [-1.477382860443532, 49.330013227631625], - [-1.477379351775069, 49.3300143463499], - [-1.477379351775069, 49.3300143463499] - ] - }, - "length": 0.1119210277032705, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch11164", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23664", - "bus2": "MVBus23665", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.477379351775069, 49.3300143463499], - [-1.477379351775069, 49.3300143463499], - [-1.469473420583994, 49.33253844546463], - [-1.469473420583994, 49.33253844546463] - ] - }, - "length": 0.6395473100197062, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch15263", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23659", - "bus2": "MVBus23660", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.484133426908198, 49.33134359624456], - [-1.484133426908198, 49.33134359624456], - [-1.482695123969117, 49.333934930040506], - [-1.482695123969117, 49.333934930040506] - ] - }, - "length": 0.3065729223546083, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch19991", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23660", - "bus2": "MVLV03243", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.482695123969117, 49.333934930040506], - [-1.482695123969117, 49.333934930040506], - [-1.484443100222334, 49.334958340796625], - [-1.486548333330025, 49.33618052052723], - [-1.486548333330025, 49.33618052052723] - ] - }, - "length": 0.37523568002671814, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23448", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23660", - "bus2": "MVLV16207", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.482695123969117, 49.333934930040506], - [-1.482695123969117, 49.333934930040506], - [-1.480173475885151, 49.33423279739736], - [-1.479392536599125, 49.33457381549308], - [-1.478685676715247, 49.33494320019281], - [-1.478685676715247, 49.33494320019281] - ] - }, - "length": 0.32029104368682343, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch23157", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23654", - "bus2": "MVLV00556", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.501088222606753, 49.33532522876661], - [-1.501088222606753, 49.33532522876661], - [-1.49991598353188, 49.33737849775162], - [-1.499432801241324, 49.33770253259602], - [-1.498718124072025, 49.338044170722846], - [-1.497950206009199, 49.338225291933846], - [-1.497950206009199, 49.338225291933846] - ] - }, - "length": 0.4177356164704489, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03872", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23653", - "bus2": "MVLV00557", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.506374434040589, 49.33702907136982], - [-1.506374434040589, 49.33702907136982], - [-1.505789916628994, 49.33871883648804], - [-1.500250673650373, 49.34212810136862], - [-1.500250673650373, 49.34212810136862] - ] - }, - "length": 0.74567234079204, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch03873", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00557", - "bus2": "MVBus23669", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500250673650373, 49.34212810136862], - [-1.500250673650373, 49.34212810136862], - [-1.499633063956089, 49.34213404600997], - [-1.498817642378083, 49.34189422851426], - [-1.498817642378083, 49.34189422851426] - ] - }, - "length": 0.10986828457659217, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch46135", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23669", - "bus2": "MVLV16630", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.498817642378083, 49.34189422851426], - [-1.498817642378083, 49.34189422851426], - [-1.498800537496032, 49.3418784588689], - [-1.498671610462556, 49.34178853864639], - [-1.498595317975536, 49.341635589229384], - [-1.498082515137614, 49.34165195177634], - [-1.497818290739259, 49.34168392863495], - [-1.497474517759035, 49.34177650915794], - [-1.49734890745959, 49.341734996507654], - [-1.497156280695769, 49.34192163668587], - [-1.496946824844434, 49.342204547472356], - [-1.496721937085727, 49.34250829478752], - [-1.495544520706128, 49.34354086758737], - [-1.495517486299349, 49.34353092753231], - [-1.495517486299349, 49.34353092753231] - ] - }, - "length": 0.37081031837191913, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch19986", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV00557", - "bus2": "MVBus23668", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.500250673650373, 49.34212810136862], - [-1.500250673650373, 49.34212810136862], - [-1.500237842828451, 49.34213599416101], - [-1.500237842828451, 49.34213599416101] - ] - }, - "length": 0.0012805970531591306, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08588", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23651", - "bus2": "MVLV16209", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.511792612037957, 49.339128954091514], - [-1.511792612037957, 49.339128954091514], - [-1.511308187603026, 49.33950177292033], - [-1.511308187603026, 49.33950177292033] - ] - }, - "length": 0.05439303367334706, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch29387", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus23647", - "bus2": "MVLV10753", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.52674422159139, 49.335008438613734], - [-1.52674422159139, 49.335008438613734], - [-1.527661328563556, 49.334799790674595], - [-1.527661328563556, 49.334799790674595] - ] - }, - "length": 0.07057903647257757, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch34988", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus11803", - "bus2": "MVLV04212", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.536534847236821, 49.321120183051995], - [-1.536534847236821, 49.321120183051995], - [-1.536406592515027, 49.321066023906944], - [-1.536408762697852, 49.32104609385472], - [-1.536408762697852, 49.32104609385472] - ] - }, - "length": 0.01332263067374734, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41778", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14297", - "bus2": "MVBus14674", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.538193007833593, 49.31216799569018], - [-1.538170052449956, 49.31216363624025], - [-1.538137849537636, 49.312177168723125], - [-1.538123901866753, 49.312183033472245], - [-1.537626963128404, 49.31214575188578], - [-1.53708557469033, 49.312147121825525], - [-1.536217870153149, 49.31222740691322], - [-1.535713313391154, 49.312254360208854], - [-1.535713313391154, 49.312254360208854] - ] - }, - "length": 0.1802597631984163, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48294", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14674", - "bus2": "MVBus14676", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.535713313391154, 49.312254360208854], - [-1.535713313391154, 49.312254360208854], - [-1.535457931048004, 49.31226799908143], - [-1.534338948275798, 49.31227992497371], - [-1.533606760999899, 49.31228772489628], - [-1.532943608155652, 49.31229478946092], - [-1.532608028380869, 49.3122552389903], - [-1.532263978912218, 49.312262300885415], - [-1.531725612374166, 49.312303773396195], - [-1.530879514782274, 49.31226263351347], - [-1.530785822896225, 49.31237819129319], - [-1.530785822896225, 49.31237819129319] - ] - }, - "length": 0.3669595001259236, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch23315", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14676", - "bus2": "MVBus14677", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.530785822896225, 49.31237819129319], - [-1.530785822896225, 49.31237819129319], - [-1.529735073884145, 49.31219514900721], - [-1.529735073884145, 49.31219514900721] - ] - }, - "length": 0.07906888946602389, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch10671", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14677", - "bus2": "MVBus14678", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.529735073884145, 49.31219514900721], - [-1.529735073884145, 49.31219514900721], - [-1.528425285894258, 49.31235791228221], - [-1.528425285894258, 49.31235791228221] - ] - }, - "length": 0.09694397235096873, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch08411", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14678", - "bus2": "MVLV13843", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528425285894258, 49.31235791228221], - [-1.528425285894258, 49.31235791228221], - [-1.526075820963424, 49.316179302994485], - [-1.526075820963424, 49.316179302994485] - ] - }, - "length": 0.4580472166707575, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18509", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14678", - "bus2": "MVBus14679", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.528425285894258, 49.31235791228221], - [-1.528425285894258, 49.31235791228221], - [-1.527098863522479, 49.312303382214324], - [-1.527098863522479, 49.312303382214324] - ] - }, - "length": 0.09663886198510684, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch18510", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14679", - "bus2": "MVBus14681", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527098863522479, 49.312303382214324], - [-1.527098863522479, 49.312303382214324], - [-1.524153720605166, 49.31233014733411], - [-1.524153720605166, 49.31233014733411] - ] - }, - "length": 0.21417143761172072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch27894", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14681", - "bus2": "MVBus14682", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.524153720605166, 49.31233014733411], - [-1.524153720605166, 49.31233014733411], - [-1.522586050277545, 49.31253577323639], - [-1.522584528407902, 49.31253675757177], - [-1.522584528407902, 49.31253675757177] - ] - }, - "length": 0.11641707040119277, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch38085", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14682", - "bus2": "MVLV00558", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.522584528407902, 49.31253675757177], - [-1.522584528407902, 49.31253675757177], - [-1.521550179657872, 49.31320078591419], - [-1.520245543534837, 49.313775748036875], - [-1.518102246333365, 49.31437348265132], - [-1.517082918956999, 49.314367863780625], - [-1.513409597282692, 49.31441871052916], - [-1.513063287685275, 49.31448992931678], - [-1.513063287685275, 49.31448992931678] - ] - }, - "length": 0.756896951853965, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch31695", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14681", - "bus2": "MVLV15540", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.524153720605166, 49.31233014733411], - [-1.524153720605166, 49.31233014733411], - [-1.523128830492736, 49.31217904723409], - [-1.523128830492736, 49.31217904723409] - ] - }, - "length": 0.07639433946605165, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch31694", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14679", - "bus2": "MVLV00901", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.527098863522479, 49.312303382214324], - [-1.527098863522479, 49.312303382214324], - [-1.530018730823778, 49.30732834984887], - [-1.530018730823778, 49.30732834984887] - ] - }, - "length": 0.5926417980284098, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "MVBranch43479", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14674", - "bus2": "MVLV14088", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.535713313391154, 49.312254360208854], - [-1.535713313391154, 49.312254360208854], - [-1.535678506609903, 49.31221750682438], - [-1.535652057142803, 49.312189495608315], - [-1.535652057142803, 49.312189495608315] - ] - }, - "length": 0.008478251107719109, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39367", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08091", - "bus2": "MVBus10224", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5407539952262903, 49.305622831378344], - [-1.540770931947025, 49.30562943539922], - [-1.540778659181527, 49.30562173825415], - [-1.540823703328984, 49.30557684823684], - [-1.540950318339718, 49.30557276022702], - [-1.541173966163845, 49.30553989492004], - [-1.541379243388977, 49.305477435953634], - [-1.54139881330825, 49.30521727794323], - [-1.541529995899582, 49.304738927306005], - [-1.54172129145631, 49.3042176546864], - [-1.541908258779853, 49.30355280245655], - [-1.541937703242198, 49.30336187256208], - [-1.541937703242198, 49.30336187256208] - ] - }, - "length": 0.288510435240511, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35790", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10224", - "bus2": "MVLV13673", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541937703242198, 49.30336187256208], - [-1.541937703242198, 49.30336187256208], - [-1.541529677889739, 49.30318964937108], - [-1.541298719792966, 49.30334524282238], - [-1.540966177982104, 49.30308440121235], - [-1.540658106472455, 49.30288582211388], - [-1.540401264694867, 49.302781670637664], - [-1.540211585895342, 49.302759829436454], - [-1.540211585895342, 49.302759829436454] - ] - }, - "length": 0.16464985621011782, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33037", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10224", - "bus2": "MVBus10226", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541937703242198, 49.30336187256208], - [-1.541937703242198, 49.30336187256208], - [-1.542223387630054, 49.302440303362495], - [-1.542223387630054, 49.302440303362495] - ] - }, - "length": 0.10457758935540795, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46055", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10226", - "bus2": "MVLV12002", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542223387630054, 49.302440303362495], - [-1.542223387630054, 49.302440303362495], - [-1.542286507604268, 49.302491459800805], - [-1.542347944838915, 49.30249575369062], - [-1.543287745475706, 49.30308795956141], - [-1.54331998363382, 49.30314452967704], - [-1.54365550869017, 49.30338825061464], - [-1.543721334528962, 49.30340473390545], - [-1.543721334528962, 49.30340473390545] - ] - }, - "length": 0.1550339128722013, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43483", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10226", - "bus2": "MVBus10227", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542223387630054, 49.302440303362495], - [-1.542223387630054, 49.302440303362495], - [-1.542471534666646, 49.301639764738134], - [-1.542801364055465, 49.30079264624719], - [-1.542801364055465, 49.30079264624719] - ] - }, - "length": 0.1880618514463853, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34596", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus10227", - "bus2": "MVLV18774", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.542801364055465, 49.30079264624719], - [-1.542801364055465, 49.30079264624719], - [-1.543074812336536, 49.29952906998616], - [-1.543255810475533, 49.299545016408466], - [-1.543276233423465, 49.299546812114606], - [-1.5432777670666975, 49.29954408210185] - ] - }, - "length": 0.15671172166017394, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44086", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV18774", - "bus2": "MVLV15279", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5432777670666975, 49.29954408210185], - [-1.54327930070993, 49.2995413520891], - [-1.543261945051934, 49.299534096358364], - [-1.543021981793605, 49.2994048852615], - [-1.543729397162779, 49.29685079708619], - [-1.54364517698851, 49.2966555419782], - [-1.542321475676577, 49.296886267646975], - [-1.542253353754012, 49.29698185278405], - [-1.541914524945784, 49.297041585899535], - [-1.541412556221464, 49.29714362782427], - [-1.540845933502151, 49.29724261036738], - [-1.540834644587022, 49.297248839543464], - [-1.540823676571206, 49.297262416131204], - [-1.540633277065016, 49.297300900788], - [-1.540622591437736, 49.297308198837065], - [-1.54059443877525, 49.29740002766545], - [-1.540595595770228, 49.29741535348045], - [-1.540603073636934, 49.29743114980665], - [-1.540696198869637, 49.297511129080256], - [-1.540728848225262, 49.297539164091546], - [-1.540722291595128, 49.29754240257251] - ] - }, - "length": 0.6005951041406843, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37342", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15279", - "bus2": "MVBus14650", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.540722291595128, 49.29754240257251], - [-1.540715734964994, 49.297545641053475], - [-1.540683189104523, 49.297517701640146], - [-1.540588185781181, 49.29743616393078], - [-1.540579233993002, 49.29741724002069], - [-1.540577873784522, 49.29739922231761], - [-1.540607373135704, 49.297303005504524], - [-1.540624323791336, 49.297291430497545], - [-1.540812284829669, 49.297253438358865], - [-1.540821567466289, 49.29724194902918], - [-1.54083812472163, 49.29723281529839], - [-1.541323068619209, 49.297148442866344], - [-1.541323068619209, 49.297148442866344] - ] - }, - "length": 0.08604247104581982, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34273", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus14650", - "bus2": "MVLV14464", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541323068619209, 49.297148442866344], - [-1.541323068619209, 49.297148442866344], - [-1.541338137388253, 49.297145644527156], - [-1.541351775372225, 49.29717034464484], - [-1.541368392977678, 49.297200444375925], - [-1.5413683400166376, 49.29720035014075] - ] - }, - "length": 0.007619096156059685, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43429", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14464", - "bus2": "MVBus15061", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5413683400166376, 49.29720035014075], - [-1.541352879564613, 49.29720409359873], - [-1.541341248751791, 49.297183025536185], - [-1.54131626380843, 49.29718764626811], - [-1.541245229313058, 49.2972007881631], - [-1.541179712248823, 49.297214507395836], - [-1.541139579823809, 49.29723472860372], - [-1.540862267611248, 49.297291365605844], - [-1.540812055194363, 49.297295757478814], - [-1.54062931439739, 49.297332942414116], - [-1.540564748011375, 49.29735142484719], - [-1.540534809864111, 49.297363491163246], - [-1.540526227749276, 49.29737260120101], - [-1.540520377731841, 49.29738474422715], - [-1.540514564448229, 49.29738790022909], - [-1.540490696381317, 49.297394382629165], - [-1.54043856088713, 49.29740463810236], - [-1.540354075240552, 49.29742124502784], - [-1.540226564258623, 49.297439798733656], - [-1.539886332441949, 49.29750123526946], - [-1.53974488122933, 49.29752825288703], - [-1.539556385875935, 49.29756082766095], - [-1.539438860653758, 49.29758304286213], - [-1.539369820557496, 49.29759838592583], - [-1.539272544623011, 49.297617923481724], - [-1.539197102850192, 49.297630450820364], - [-1.539162986540141, 49.29763837010339], - [-1.539130908405831, 49.29764267962889], - [-1.538855465272838, 49.297693701699366], - [-1.538802634415764, 49.29769894178305], - [-1.538665445659885, 49.297700257242624], - [-1.538597742892225, 49.29770452904011], - [-1.538581300759887, 49.297707722144374], - [-1.538567408521974, 49.29770807154465], - [-1.538555666205925, 49.29770355732112], - [-1.538555666205925, 49.29770355732112] - ] - }, - "length": 0.21550751613824057, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37240", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15061", - "bus2": "MVBus15062", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.538555666205925, 49.29770355732112], - [-1.538555666205925, 49.29770355732112], - [-1.538536902163315, 49.29770040305343], - [-1.538518431778451, 49.29770132295329], - [-1.537662421485925, 49.29783948270921], - [-1.537662421485925, 49.29783948270921] - ] - }, - "length": 0.06688605844940153, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44877", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15062", - "bus2": "MVLV05023", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.537662421485925, 49.29783948270921], - [-1.537662421485925, 49.29783948270921], - [-1.537600824756657, 49.29785086070992], - [-1.537550409693325, 49.29779259087647], - [-1.537550409693325, 49.29779259087647] - ] - }, - "length": 0.012101505956263555, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36615", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus15062", - "bus2": "MVLV09251", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.537662421485925, 49.29783948270921], - [-1.537662421485925, 49.29783948270921], - [-1.537606280596458, 49.297883803574834], - [-1.537580332100724, 49.29791722899418], - [-1.537576022127304, 49.29800631773501], - [-1.537697829254288, 49.298418604441736], - [-1.537601100516259, 49.298617353403465], - [-1.537403224954161, 49.298684272565666], - [-1.537446392202924, 49.29874144503897], - [-1.537446392202924, 49.29874144503897] - ] - }, - "length": 0.11367425331406272, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38532", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14464", - "bus2": "MVBus17206", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.5413683400166376, 49.29720035014075], - [-1.541383747507622, 49.2971965124476], - [-1.541367405818449, 49.297166970481975], - [-1.541353993106287, 49.29714270383739], - [-1.541353993106287, 49.29714270383739] - ] - }, - "length": 0.0063636643007188185, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45615", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17206", - "bus2": "MVBus17207", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541353993106287, 49.29714270383739], - [-1.541353993106287, 49.29714270383739], - [-1.541378117392617, 49.2971385246556], - [-1.541378117392617, 49.2971385246556] - ] - }, - "length": 0.0018152069112323077, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47283", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17207", - "bus2": "MVLV00382", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541378117392617, 49.2971385246556], - [-1.541378117392617, 49.2971385246556], - [-1.541407652255103, 49.29713332520885], - [-1.541910096343041, 49.297031204981835], - [-1.542239776802761, 49.29697308065234], - [-1.542299971205669, 49.296869773188504], - [-1.543693723882401, 49.296572866499915], - [-1.543956558641666, 49.29613449001025], - [-1.544000276794944, 49.29616266116647], - [-1.543989146153294, 49.29615131859048], - [-1.543989146153294, 49.29615131859048] - ] - }, - "length": 0.24257532653511676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46481", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17207", - "bus2": "MVBus17209", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541378117392617, 49.2971385246556], - [-1.541378117392617, 49.2971385246556], - [-1.541379443151688, 49.297158450381666], - [-1.541389251247893, 49.29717523280184], - [-1.541402610105714, 49.29717365001366], - [-1.541402610105714, 49.29717365001366] - ] - }, - "length": 0.005203781737639504, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch16684", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus17209", - "bus2": "MVLV11101", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.541402610105714, 49.29717365001366], - [-1.541402610105714, 49.29717365001366], - [-1.541178395735151, 49.2967821229966], - [-1.541178395735151, 49.2967821229966] - ] - }, - "length": 0.04649766143979308, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV07004_production", - "bus": "MVLV07004", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07004_consumption", - "bus": "MVLV07004", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV10176_production", - "bus": "MVLV10176", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10176_consumption", - "bus": "MVLV10176", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV12189_production", - "bus": "MVLV12189", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12189_consumption", - "bus": "MVLV12189", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV08091_production", - "bus": "MVLV08091", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08091_consumption", - "bus": "MVLV08091", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV05282_production", - "bus": "MVLV05282", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05282_consumption", - "bus": "MVLV05282", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV14297_production", - "bus": "MVLV14297", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14297_consumption", - "bus": "MVLV14297", - "phases": "abc", - "powers": [ - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839] - ] - }, - { - "id": "MVLV06470_production", - "bus": "MVLV06470", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06470_consumption", - "bus": "MVLV06470", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV14298_production", - "bus": "MVLV14298", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14298_consumption", - "bus": "MVLV14298", - "phases": "abc", - "powers": [ - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056] - ] - }, - { - "id": "MVLV07424_production", - "bus": "MVLV07424", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07424_consumption", - "bus": "MVLV07424", - "phases": "abc", - "powers": [ - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056] - ] - }, - { - "id": "MVLV03792_production", - "bus": "MVLV03792", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03792_consumption", - "bus": "MVLV03792", - "phases": "abc", - "powers": [ - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056] - ] - }, - { - "id": "MVLV15114_production", - "bus": "MVLV15114", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15114_consumption", - "bus": "MVLV15114", - "phases": "abc", - "powers": [ - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056] - ] - }, - { - "id": "MVLV18758_production", - "bus": "MVLV18758", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18758_consumption", - "bus": "MVLV18758", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV14458_production", - "bus": "MVLV14458", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14458_consumption", - "bus": "MVLV14458", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV02134_production", - "bus": "MVLV02134", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02134_consumption", - "bus": "MVLV02134", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV00376_production", - "bus": "MVLV00376", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00376_consumption", - "bus": "MVLV00376", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV03057_production", - "bus": "MVLV03057", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03057_consumption", - "bus": "MVLV03057", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV19162_production", - "bus": "MVLV19162", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV19162_consumption", - "bus": "MVLV19162", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV08862_production", - "bus": "MVLV08862", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08862_consumption", - "bus": "MVLV08862", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV06284_production", - "bus": "MVLV06284", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV06284_consumption", - "bus": "MVLV06284", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV03060_production", - "bus": "MVLV03060", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03060_consumption", - "bus": "MVLV03060", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV10164_production", - "bus": "MVLV10164", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10164_consumption", - "bus": "MVLV10164", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV10159_production", - "bus": "MVLV10159", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10159_consumption", - "bus": "MVLV10159", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV13646_production", - "bus": "MVLV13646", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13646_consumption", - "bus": "MVLV13646", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV00373_production", - "bus": "MVLV00373", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00373_consumption", - "bus": "MVLV00373", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV00375_production", - "bus": "MVLV00375", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00375_consumption", - "bus": "MVLV00375", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV13649_production", - "bus": "MVLV13649", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13649_consumption", - "bus": "MVLV13649", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV10158_production", - "bus": "MVLV10158", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10158_consumption", - "bus": "MVLV10158", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV16575_production", - "bus": "MVLV16575", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16575_consumption", - "bus": "MVLV16575", - "phases": "abc", - "powers": [ - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237], - [21953.09215818525, 7215.632451922237] - ] - }, - { - "id": "MVLV13841_production", - "bus": "MVLV13841", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13841_consumption", - "bus": "MVLV13841", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV18938_production", - "bus": "MVLV18938", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18938_consumption", - "bus": "MVLV18938", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV10338_production", - "bus": "MVLV10338", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10338_consumption", - "bus": "MVLV10338", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV03243_production", - "bus": "MVLV03243", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03243_consumption", - "bus": "MVLV03243", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV16207_production", - "bus": "MVLV16207", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16207_consumption", - "bus": "MVLV16207", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV00556_production", - "bus": "MVLV00556", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00556_consumption", - "bus": "MVLV00556", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV00557_production", - "bus": "MVLV00557", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00557_consumption", - "bus": "MVLV00557", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV16630_production", - "bus": "MVLV16630", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16630_consumption", - "bus": "MVLV16630", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV16209_production", - "bus": "MVLV16209", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV16209_consumption", - "bus": "MVLV16209", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV10753_production", - "bus": "MVLV10753", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV10753_consumption", - "bus": "MVLV10753", - "phases": "abc", - "powers": [ - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056], - [10908.221207441493, 3585.3589266610056] - ] - }, - { - "id": "MVLV04212_production", - "bus": "MVLV04212", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04212_consumption", - "bus": "MVLV04212", - "phases": "abc", - "powers": [ - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839] - ] - }, - { - "id": "MVLV13843_production", - "bus": "MVLV13843", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13843_consumption", - "bus": "MVLV13843", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV00558_production", - "bus": "MVLV00558", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00558_consumption", - "bus": "MVLV00558", - "phases": "abc", - "powers": [ - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423], - [7393.997369621899, 2430.2894091290423] - ] - }, - { - "id": "MVLV15540_production", - "bus": "MVLV15540", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15540_consumption", - "bus": "MVLV15540", - "phases": "abc", - "powers": [ - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839] - ] - }, - { - "id": "MVLV00901_production", - "bus": "MVLV00901", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00901_consumption", - "bus": "MVLV00901", - "phases": "abc", - "powers": [ - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839] - ] - }, - { - "id": "MVLV14088_production", - "bus": "MVLV14088", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14088_consumption", - "bus": "MVLV14088", - "phases": "abc", - "powers": [ - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839], - [6615.592245909041, 2174.440017574839] - ] - }, - { - "id": "MVLV13673_production", - "bus": "MVLV13673", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13673_consumption", - "bus": "MVLV13673", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV12002_production", - "bus": "MVLV12002", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12002_consumption", - "bus": "MVLV12002", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV18774_production", - "bus": "MVLV18774", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18774_consumption", - "bus": "MVLV18774", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV15279_production", - "bus": "MVLV15279", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15279_consumption", - "bus": "MVLV15279", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV14464_production", - "bus": "MVLV14464", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14464_consumption", - "bus": "MVLV14464", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV05023_production", - "bus": "MVLV05023", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05023_consumption", - "bus": "MVLV05023", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV09251_production", - "bus": "MVLV09251", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09251_consumption", - "bus": "MVLV09251", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV00382_production", - "bus": "MVLV00382", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV00382_consumption", - "bus": "MVLV00382", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - }, - { - "id": "MVLV11101_production", - "bus": "MVLV11101", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV11101_consumption", - "bus": "MVLV11101", - "phases": "abc", - "powers": [ - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784], - [17658.442812339035, 5804.049474625784] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "A_AM_148", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.22364864864864864, - 0.0, - 0.0 - ], - [ - 0.0, - 0.22364864864864864, - 0.0 - ], - [ - 0.0, - 0.0, - 0.22364864864864864 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6129629629629629, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6129629629629629, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6129629629629629 - ] - ], - [ - [ - 0.35, - 0.0, - 0.0 - ], - [ - 0.0, - 0.35, - 0.0 - ], - [ - 0.0, - 0.0, - 0.35 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948965e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948965e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948965e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder290_summer.json b/data/MVFeeder290_summer.json deleted file mode 100644 index a08386db..00000000 --- a/data/MVFeeder290_summer.json +++ /dev/null @@ -1,669 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.110304663668984, 48.57658336890665] - } - }, - { - "id": "HVMV20", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.110304663668984, 48.57658336890665] - } - }, - { - "id": "MVLV04478", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0990179748058666, 48.57227231621206] - } - }, - { - "id": "MVLV01189", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0951039520830765, 48.57331117610068] - } - }, - { - "id": "MVLV15816", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0954203403982659, 48.57453799744745] - } - }, - { - "id": "MVLV15808", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0949562874472534, 48.57688161636299] - } - }, - { - "id": "MVLV08672", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0943209415004231, 48.57538064663255] - } - }, - { - "id": "MVLV12940", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0900227394716775, 48.576108592491494] - } - }, - { - "id": "MVBus07231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.092214809134924, 48.57695669474363] - } - }, - { - "id": "MVLV08671", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0915269953777949, 48.577059455453295] - } - }, - { - "id": "MVBus07781", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.092144808206271, 48.57724086102603] - } - }, - { - "id": "MVLV15809", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.092676858882234, 48.57786175424816] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV20", - "geometry": { - "type": "Point", - "coordinates": [-1.110304663668984, 48.57658336890665] - } - }, - { - "id": "MVBranch47143", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV20", - "bus2": "MVLV04478", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.110304663668984, 48.57658336890665], - [-1.110253689368388, 48.57662085428511], - [-1.110253689368388, 48.57662085428511], - [-1.110237372824222, 48.57665319136177], - [-1.110217075555628, 48.576693409631154], - [-1.109873675364081, 48.57662399209226], - [-1.109698214657879, 48.57664375840926], - [-1.109536206382531, 48.57671111919079], - [-1.109403130203786, 48.57668940303102], - [-1.108496471426669, 48.57630068923038], - [-1.103196520585661, 48.57400941316723], - [-1.103044986987291, 48.57394866232427], - [-1.099176682051122, 48.57224488598976], - [-1.099042623173635, 48.57227239707254], - [-1.099023211929418, 48.572276379750605], - [-1.0990179748058666, 48.57227231621206] - ] - }, - "length": 0.9863054390973716, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47406", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04478", - "bus2": "MVLV01189", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0990179748058666, 48.57227231621206], - [-1.099012737682315, 48.57226825267351], - [-1.099021674678247, 48.57225614292076], - [-1.099063090072669, 48.57220194264777], - [-1.095781289741568, 48.57074675365208], - [-1.095630184238855, 48.570758522969705], - [-1.094990615002868, 48.572526038519435], - [-1.094911379143011, 48.57263645520378], - [-1.094743946241119, 48.57315658618915], - [-1.095052210518495, 48.57320562305473], - [-1.095101378274757, 48.573299782829025], - [-1.095108033684014, 48.57331251993099], - [-1.0951039520830765, 48.57331117610068] - ] - }, - "length": 0.6216146977045005, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32782", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01189", - "bus2": "MVLV15816", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0951039520830765, 48.57331117610068], - [-1.095099870482139, 48.573309832270375], - [-1.095089164328958, 48.57329838234451], - [-1.0950222422897, 48.57322679129237], - [-1.094802261199556, 48.573188889900145], - [-1.094616534798966, 48.57366762929182], - [-1.094683628425398, 48.57371216773785], - [-1.094616208270455, 48.573899740866445], - [-1.094523284806702, 48.573913295057544], - [-1.094333322933212, 48.57441819642749], - [-1.094374996512046, 48.57456041570457], - [-1.094637109242936, 48.574570471783716], - [-1.09473722230548, 48.57459546327303], - [-1.094831047937378, 48.574595388717285], - [-1.095151618076339, 48.57450540141735], - [-1.095369879990429, 48.57446480004983], - [-1.095424769743947, 48.574523719745464], - [-1.095434033111804, 48.57453961147086], - [-1.0954203403982659, 48.57453799744745] - ] - }, - "length": 0.27826011633328457, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46721", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15816", - "bus2": "MVLV15808", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0954203403982659, 48.57453799744745], - [-1.095406647684728, 48.57453638342403], - [-1.095389722945255, 48.57452892896245], - [-1.095343809569679, 48.57450625366662], - [-1.095141245218564, 48.57453938147006], - [-1.094828932032004, 48.57465325285666], - [-1.094792269099217, 48.57471197453005], - [-1.094830569770596, 48.57485484031318], - [-1.094863685565844, 48.57563340793797], - [-1.094833930782242, 48.57579274219562], - [-1.094638780992077, 48.576348658961074], - [-1.094492785992915, 48.576658496587214], - [-1.094986187873697, 48.5768469263356], - [-1.094974655023586, 48.576865562462615], - [-1.094961417525105, 48.57688261038158], - [-1.0949562874472534, 48.57688161636299] - ] - }, - "length": 0.32103748257947046, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15808", - "bus2": "MVLV08672", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0949562874472534, 48.57688161636299], - [-1.094951157369402, 48.5768806223444], - [-1.094957150585919, 48.576861876874005], - [-1.094963683264215, 48.57685008916092], - [-1.094486905053578, 48.5766678269434], - [-1.093793420527889, 48.5764746931656], - [-1.093823010719884, 48.57605610677029], - [-1.09395924170385, 48.57564960014454], - [-1.094129287206892, 48.575419417469405], - [-1.094301786757652, 48.575385561332965], - [-1.094321277827, 48.575381739131466], - [-1.0943209415004231, 48.57538064663255] - ] - }, - "length": 0.2358136357626263, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08672", - "bus2": "MVLV12940", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0943209415004231, 48.57538064663255], - [-1.094320605173846, 48.57537955413364], - [-1.094300441452934, 48.57538119133707], - [-1.094092542857796, 48.5753980235912], - [-1.093918071316105, 48.57564274917792], - [-1.093770217437716, 48.57603789527185], - [-1.093716313002474, 48.57645811304636], - [-1.092790060653491, 48.57626466440287], - [-1.092554625169703, 48.576253777195184], - [-1.090893110266117, 48.57636594607289], - [-1.09069786922447, 48.57618148229735], - [-1.090116550888661, 48.57615858654292], - [-1.090057651349784, 48.57612172656623], - [-1.090044343947815, 48.576111539249986], - [-1.0900227394716775, 48.576108592491494] - ] - }, - "length": 0.42704930125149193, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12940", - "bus2": "MVBus07231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0900227394716775, 48.576108592491494], - [-1.09000113499554, 48.576105645732994], - [-1.089999999972888, 48.576119112470764], - [-1.090009529596862, 48.57620548648586], - [-1.09066229300343, 48.576228977590006], - [-1.090844514881847, 48.57641341348439], - [-1.092547056252668, 48.576295368912476], - [-1.092349250845196, 48.576931475321615], - [-1.092226915166475, 48.57696757347589], - [-1.092214809134924, 48.57695669474363], - [-1.092214809134924, 48.57695669474363] - ] - }, - "length": 0.29381782841035065, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36383", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07231", - "bus2": "MVLV08671", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.092214809134924, 48.57695669474363], - [-1.092214809134924, 48.57695669474363], - [-1.091557043586806, 48.576982035496265], - [-1.09152774702909, 48.57704397977046], - [-1.091521663984228, 48.5770568429947], - [-1.0915269953777949, 48.577059455453295] - ] - }, - "length": 0.05733663538018223, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35377", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08671", - "bus2": "MVBus07781", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0915269953777949, 48.577059455453295], - [-1.091532326771362, 48.577062067911896], - [-1.091549072010739, 48.57705442062207], - [-1.091584268276561, 48.57703640425343], - [-1.09220693906406, 48.5770200970814], - [-1.092144808206271, 48.57724086102603], - [-1.092144808206271, 48.57724086102603] - ] - }, - "length": 0.0757359998583347, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36934", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07781", - "bus2": "MVLV15809", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.092144808206271, 48.57724086102603], - [-1.092144808206271, 48.57724086102603], - [-1.092144731782429, 48.57724114217504], - [-1.092131108066036, 48.57749720350789], - [-1.09206230563105, 48.57772251553854], - [-1.092685723438909, 48.57782563176213], - [-1.092681485239172, 48.57784221172524], - [-1.092676858882234, 48.57786175424816], - [-1.092676858882234, 48.57786175424816] - ] - }, - "length": 0.10556655982771243, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV04478_production", - "bus": "MVLV04478", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV04478_consumption", - "bus": "MVLV04478", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV01189_production", - "bus": "MVLV01189", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV01189_consumption", - "bus": "MVLV01189", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV15816_production", - "bus": "MVLV15816", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV15816_consumption", - "bus": "MVLV15816", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV15808_production", - "bus": "MVLV15808", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV15808_consumption", - "bus": "MVLV15808", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV08672_production", - "bus": "MVLV08672", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV08672_consumption", - "bus": "MVLV08672", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV12940_production", - "bus": "MVLV12940", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV12940_consumption", - "bus": "MVLV12940", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV08671_production", - "bus": "MVLV08671", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV08671_consumption", - "bus": "MVLV08671", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - }, - { - "id": "MVLV15809_production", - "bus": "MVLV15809", - "phases": "abc", - "powers": [ - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0], - [-991.2738853503184, 0.0] - ] - }, - { - "id": "MVLV15809_consumption", - "bus": "MVLV15809", - "phases": "abc", - "powers": [ - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204], - [5275.726410977455, 1734.0474145606204] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder290_winter.json b/data/MVFeeder290_winter.json deleted file mode 100644 index f38717b9..00000000 --- a/data/MVFeeder290_winter.json +++ /dev/null @@ -1,669 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.110304663668984, 48.57658336890665] - } - }, - { - "id": "HVMV20", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.110304663668984, 48.57658336890665] - } - }, - { - "id": "MVLV04478", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0990179748058666, 48.57227231621206] - } - }, - { - "id": "MVLV01189", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0951039520830765, 48.57331117610068] - } - }, - { - "id": "MVLV15816", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0954203403982659, 48.57453799744745] - } - }, - { - "id": "MVLV15808", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0949562874472534, 48.57688161636299] - } - }, - { - "id": "MVLV08672", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0943209415004231, 48.57538064663255] - } - }, - { - "id": "MVLV12940", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0900227394716775, 48.576108592491494] - } - }, - { - "id": "MVBus07231", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.092214809134924, 48.57695669474363] - } - }, - { - "id": "MVLV08671", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0915269953777949, 48.577059455453295] - } - }, - { - "id": "MVBus07781", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.092144808206271, 48.57724086102603] - } - }, - { - "id": "MVLV15809", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.092676858882234, 48.57786175424816] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV20", - "geometry": { - "type": "Point", - "coordinates": [-1.110304663668984, 48.57658336890665] - } - }, - { - "id": "MVBranch47143", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV20", - "bus2": "MVLV04478", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.110304663668984, 48.57658336890665], - [-1.110253689368388, 48.57662085428511], - [-1.110253689368388, 48.57662085428511], - [-1.110237372824222, 48.57665319136177], - [-1.110217075555628, 48.576693409631154], - [-1.109873675364081, 48.57662399209226], - [-1.109698214657879, 48.57664375840926], - [-1.109536206382531, 48.57671111919079], - [-1.109403130203786, 48.57668940303102], - [-1.108496471426669, 48.57630068923038], - [-1.103196520585661, 48.57400941316723], - [-1.103044986987291, 48.57394866232427], - [-1.099176682051122, 48.57224488598976], - [-1.099042623173635, 48.57227239707254], - [-1.099023211929418, 48.572276379750605], - [-1.0990179748058666, 48.57227231621206] - ] - }, - "length": 0.9863054390973716, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47406", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04478", - "bus2": "MVLV01189", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0990179748058666, 48.57227231621206], - [-1.099012737682315, 48.57226825267351], - [-1.099021674678247, 48.57225614292076], - [-1.099063090072669, 48.57220194264777], - [-1.095781289741568, 48.57074675365208], - [-1.095630184238855, 48.570758522969705], - [-1.094990615002868, 48.572526038519435], - [-1.094911379143011, 48.57263645520378], - [-1.094743946241119, 48.57315658618915], - [-1.095052210518495, 48.57320562305473], - [-1.095101378274757, 48.573299782829025], - [-1.095108033684014, 48.57331251993099], - [-1.0951039520830765, 48.57331117610068] - ] - }, - "length": 0.6216146977045005, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch32782", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01189", - "bus2": "MVLV15816", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0951039520830765, 48.57331117610068], - [-1.095099870482139, 48.573309832270375], - [-1.095089164328958, 48.57329838234451], - [-1.0950222422897, 48.57322679129237], - [-1.094802261199556, 48.573188889900145], - [-1.094616534798966, 48.57366762929182], - [-1.094683628425398, 48.57371216773785], - [-1.094616208270455, 48.573899740866445], - [-1.094523284806702, 48.573913295057544], - [-1.094333322933212, 48.57441819642749], - [-1.094374996512046, 48.57456041570457], - [-1.094637109242936, 48.574570471783716], - [-1.09473722230548, 48.57459546327303], - [-1.094831047937378, 48.574595388717285], - [-1.095151618076339, 48.57450540141735], - [-1.095369879990429, 48.57446480004983], - [-1.095424769743947, 48.574523719745464], - [-1.095434033111804, 48.57453961147086], - [-1.0954203403982659, 48.57453799744745] - ] - }, - "length": 0.27826011633328457, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46721", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15816", - "bus2": "MVLV15808", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0954203403982659, 48.57453799744745], - [-1.095406647684728, 48.57453638342403], - [-1.095389722945255, 48.57452892896245], - [-1.095343809569679, 48.57450625366662], - [-1.095141245218564, 48.57453938147006], - [-1.094828932032004, 48.57465325285666], - [-1.094792269099217, 48.57471197453005], - [-1.094830569770596, 48.57485484031318], - [-1.094863685565844, 48.57563340793797], - [-1.094833930782242, 48.57579274219562], - [-1.094638780992077, 48.576348658961074], - [-1.094492785992915, 48.576658496587214], - [-1.094986187873697, 48.5768469263356], - [-1.094974655023586, 48.576865562462615], - [-1.094961417525105, 48.57688261038158], - [-1.0949562874472534, 48.57688161636299] - ] - }, - "length": 0.32103748257947046, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15808", - "bus2": "MVLV08672", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0949562874472534, 48.57688161636299], - [-1.094951157369402, 48.5768806223444], - [-1.094957150585919, 48.576861876874005], - [-1.094963683264215, 48.57685008916092], - [-1.094486905053578, 48.5766678269434], - [-1.093793420527889, 48.5764746931656], - [-1.093823010719884, 48.57605610677029], - [-1.09395924170385, 48.57564960014454], - [-1.094129287206892, 48.575419417469405], - [-1.094301786757652, 48.575385561332965], - [-1.094321277827, 48.575381739131466], - [-1.0943209415004231, 48.57538064663255] - ] - }, - "length": 0.2358136357626263, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39250", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08672", - "bus2": "MVLV12940", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0943209415004231, 48.57538064663255], - [-1.094320605173846, 48.57537955413364], - [-1.094300441452934, 48.57538119133707], - [-1.094092542857796, 48.5753980235912], - [-1.093918071316105, 48.57564274917792], - [-1.093770217437716, 48.57603789527185], - [-1.093716313002474, 48.57645811304636], - [-1.092790060653491, 48.57626466440287], - [-1.092554625169703, 48.576253777195184], - [-1.090893110266117, 48.57636594607289], - [-1.09069786922447, 48.57618148229735], - [-1.090116550888661, 48.57615858654292], - [-1.090057651349784, 48.57612172656623], - [-1.090044343947815, 48.576111539249986], - [-1.0900227394716775, 48.576108592491494] - ] - }, - "length": 0.42704930125149193, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV12940", - "bus2": "MVBus07231", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0900227394716775, 48.576108592491494], - [-1.09000113499554, 48.576105645732994], - [-1.089999999972888, 48.576119112470764], - [-1.090009529596862, 48.57620548648586], - [-1.09066229300343, 48.576228977590006], - [-1.090844514881847, 48.57641341348439], - [-1.092547056252668, 48.576295368912476], - [-1.092349250845196, 48.576931475321615], - [-1.092226915166475, 48.57696757347589], - [-1.092214809134924, 48.57695669474363], - [-1.092214809134924, 48.57695669474363] - ] - }, - "length": 0.29381782841035065, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36383", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07231", - "bus2": "MVLV08671", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.092214809134924, 48.57695669474363], - [-1.092214809134924, 48.57695669474363], - [-1.091557043586806, 48.576982035496265], - [-1.09152774702909, 48.57704397977046], - [-1.091521663984228, 48.5770568429947], - [-1.0915269953777949, 48.577059455453295] - ] - }, - "length": 0.05733663538018223, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35377", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV08671", - "bus2": "MVBus07781", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0915269953777949, 48.577059455453295], - [-1.091532326771362, 48.577062067911896], - [-1.091549072010739, 48.57705442062207], - [-1.091584268276561, 48.57703640425343], - [-1.09220693906406, 48.5770200970814], - [-1.092144808206271, 48.57724086102603], - [-1.092144808206271, 48.57724086102603] - ] - }, - "length": 0.0757359998583347, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36934", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07781", - "bus2": "MVLV15809", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.092144808206271, 48.57724086102603], - [-1.092144808206271, 48.57724086102603], - [-1.092144731782429, 48.57724114217504], - [-1.092131108066036, 48.57749720350789], - [-1.09206230563105, 48.57772251553854], - [-1.092685723438909, 48.57782563176213], - [-1.092681485239172, 48.57784221172524], - [-1.092676858882234, 48.57786175424816], - [-1.092676858882234, 48.57786175424816] - ] - }, - "length": 0.10556655982771243, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV04478_production", - "bus": "MVLV04478", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04478_consumption", - "bus": "MVLV04478", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV01189_production", - "bus": "MVLV01189", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01189_consumption", - "bus": "MVLV01189", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV15816_production", - "bus": "MVLV15816", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15816_consumption", - "bus": "MVLV15816", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV15808_production", - "bus": "MVLV15808", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15808_consumption", - "bus": "MVLV15808", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV08672_production", - "bus": "MVLV08672", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08672_consumption", - "bus": "MVLV08672", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV12940_production", - "bus": "MVLV12940", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12940_consumption", - "bus": "MVLV12940", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV08671_production", - "bus": "MVLV08671", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV08671_consumption", - "bus": "MVLV08671", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - }, - { - "id": "MVLV15809_production", - "bus": "MVLV15809", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15809_consumption", - "bus": "MVLV15809", - "phases": "abc", - "powers": [ - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102], - [26378.632054887275, 8670.237072803102] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder312_summer.json b/data/MVFeeder312_summer.json deleted file mode 100644 index 4416bdf2..00000000 --- a/data/MVFeeder312_summer.json +++ /dev/null @@ -1,673 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.8900710079343, 49.258817450938] - } - }, - { - "id": "HVMV23", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8900710079343, 49.258817450938] - } - }, - { - "id": "MVBus03246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.890518079267901, 49.25885604408974] - } - }, - { - "id": "MVBus03247", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.883709467593089, 49.24446960503848] - } - }, - { - "id": "MVLV14607", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.892897202229386, 49.2363866831773] - } - }, - { - "id": "MVBus07867", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.886163224026916, 49.23814376086724] - } - }, - { - "id": "MVLV07687", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.881835000987274, 49.241389848492354] - } - }, - { - "id": "MVBus09361", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880642256929955, 49.24089738375072] - } - }, - { - "id": "MVBus09362", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880607514550805, 49.2408818422678] - } - }, - { - "id": "MVLV18592", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.877273257127134, 49.23991209308561] - } - }, - { - "id": "MVLV12316", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.886134334135075, 49.23811159939885] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV23", - "geometry": { - "type": "Point", - "coordinates": [-0.8900710079343, 49.258817450938] - } - }, - { - "id": "MVBranch33893", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV23", - "bus2": "MVBus03246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8900710079343, 49.258817450938], - [-0.890132613416136, 49.258824732328755], - [-0.890132613416136, 49.258824732328755], - [-0.890213106539946, 49.258839418621335], - [-0.890456996513497, 49.258920126012626], - [-0.890518079267901, 49.25885604408974], - [-0.890518079267901, 49.25885604408974] - ] - }, - "length": 0.03437601393347589, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46168", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03246", - "bus2": "MVBus03247", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.890518079267901, 49.25885604408974], - [-0.890518079267901, 49.25885604408974], - [-0.890901289800942, 49.258484212303095], - [-0.890960540513392, 49.25847477782435], - [-0.891404671071976, 49.258036618266985], - [-0.891425419479236, 49.257985921602504], - [-0.8914299273254, 49.25790149279107], - [-0.891586455864218, 49.25773803640127], - [-0.891712409042302, 49.25752632480084], - [-0.891779088157999, 49.25724709630781], - [-0.89177281769518, 49.25714811183049], - [-0.891713169834477, 49.256953415367455], - [-0.891529183111682, 49.256726114402284], - [-0.891524859623383, 49.25669138726554], - [-0.891181632971773, 49.25629434107835], - [-0.890952684829614, 49.25603568910862], - [-0.89068627239982, 49.25577805330976], - [-0.890390876571987, 49.25552391192277], - [-0.890262255452032, 49.25540179050987], - [-0.889540980987186, 49.25494070470427], - [-0.888928104464742, 49.254558886518794], - [-0.888444925635507, 49.25422741373271], - [-0.887775454153121, 49.2538043726486], - [-0.88695093701918, 49.25329614126756], - [-0.884975705697855, 49.25209143600255], - [-0.884831279293524, 49.251988562286186], - [-0.884775134190805, 49.25194068635764], - [-0.884725837079683, 49.25188305920597], - [-0.884692026533699, 49.251822453579116], - [-0.884680309391527, 49.25176040056725], - [-0.884681044433974, 49.25173047388403], - [-0.884681619761379, 49.251697997797564], - [-0.884372713293313, 49.25138102791627], - [-0.884265294451482, 49.251307966203996], - [-0.883801620562575, 49.25098997906478], - [-0.883782615787526, 49.25096221872274], - [-0.883766416564782, 49.25092420427982], - [-0.883736509987092, 49.25072259098228], - [-0.883740579708071, 49.25067725263805], - [-0.883758444562349, 49.25063154402744], - [-0.883844763635875, 49.25054780576246], - [-0.884150812805608, 49.25030438121662], - [-0.884232813448853, 49.25020719878625], - [-0.88426349624391, 49.25014531127482], - [-0.884282114610696, 49.25005660113605], - [-0.884291030621658, 49.24997833924609], - [-0.884312279489561, 49.24993140668233], - [-0.884358157422018, 49.24989172578585], - [-0.884400599293143, 49.24986955438765], - [-0.884407789935949, 49.24982843929388], - [-0.884392101570724, 49.24980669547579], - [-0.884340557547508, 49.24978420576918], - [-0.884130659819135, 49.24972846183027], - [-0.883979105455504, 49.24967700517361], - [-0.883869885979426, 49.249633026218824], - [-0.883717618914768, 49.24959913153117], - [-0.883411618399528, 49.24951888223154], - [-0.883234584552383, 49.249470913942844], - [-0.883184279808389, 49.249441439774664], - [-0.882930518832942, 49.24937810382164], - [-0.882932760269341, 49.249359277623824], - [-0.882988411415866, 49.24917996084801], - [-0.882966929289648, 49.24908760622163], - [-0.882924406048689, 49.24895337452536], - [-0.882926002379589, 49.24894618314263], - [-0.882946228532681, 49.248909448060296], - [-0.882954534655454, 49.248856955354285], - [-0.882976213077453, 49.24884341631832], - [-0.88300720110986, 49.24880416244034], - [-0.883044541661205, 49.248768307858], - [-0.882984130952967, 49.248457631811945], - [-0.882968615517035, 49.24842766458209], - [-0.882971434004477, 49.248385587843785], - [-0.88294627371981, 49.24817985422621], - [-0.882797118055686, 49.24725812342875], - [-0.882757625034863, 49.24693553782791], - [-0.882751126021842, 49.24692431049447], - [-0.882724699247673, 49.246904113460396], - [-0.881365766531545, 49.246449757353496], - [-0.881321930291555, 49.246426574100376], - [-0.881306183892508, 49.2464100107612], - [-0.881308471422797, 49.24639125525258], - [-0.881347275168451, 49.24631996974937], - [-0.881969752548423, 49.245600041966796], - [-0.882064907055608, 49.24551996988685], - [-0.88217291177573, 49.2454488146143], - [-0.882474600307083, 49.24525281601738], - [-0.882564582922736, 49.2451943639305], - [-0.883139102610479, 49.24486455294448], - [-0.883566768297133, 49.244585411873324], - [-0.883709467593089, 49.24446960503848], - [-0.883709467593089, 49.24446960503848] - ] - }, - "length": 2.071208490393622, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45456", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03247", - "bus2": "MVLV14607", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.883709467593089, 49.24446960503848], - [-0.883709467593089, 49.24446960503848], - [-0.884184229377249, 49.244010545618714], - [-0.884330881137206, 49.24392258770365], - [-0.884682522315761, 49.243770300221065], - [-0.88502384170455, 49.24362910611965], - [-0.885374604185673, 49.24349245006394], - [-0.885406500452197, 49.24347478746522], - [-0.885436166361273, 49.24339237085228], - [-0.885493273565053, 49.24333802736923], - [-0.885779430387922, 49.24298944761374], - [-0.885831885825315, 49.24291961886043], - [-0.886164112754665, 49.24254580086654], - [-0.886354586289205, 49.24233782522554], - [-0.886371224582025, 49.24231097783463], - [-0.886509038735172, 49.24214042941683], - [-0.886623276090726, 49.24197412004918], - [-0.886735087767808, 49.24179826329924], - [-0.887084452681715, 49.24120071996567], - [-0.887281830779827, 49.240840124926464], - [-0.887338878309803, 49.24075576670856], - [-0.887412617238388, 49.24067456563303], - [-0.887478774906847, 49.240618772762986], - [-0.887504173552536, 49.24061448434506], - [-0.887550969524801, 49.24057121609662], - [-0.887623000603809, 49.24052127191131], - [-0.887807014143259, 49.240415498813725], - [-0.888031231731437, 49.240307439737606], - [-0.888165587445624, 49.24022821441154], - [-0.888576885925707, 49.23991707640471], - [-0.888675855847016, 49.2398291893856], - [-0.888854016809171, 49.23962994726778], - [-0.888868208037688, 49.239622363098995], - [-0.888905092184681, 49.239567356439665], - [-0.888965537672147, 49.23950811941095], - [-0.889198492793863, 49.23924738168518], - [-0.889230159906052, 49.239226127259265], - [-0.889483595096178, 49.23899965509596], - [-0.889621281678398, 49.23885671092865], - [-0.889773868064895, 49.23868816122689], - [-0.889970587020718, 49.23843440289482], - [-0.890085420145151, 49.238277676570675], - [-0.89049528613681, 49.23773970977248], - [-0.890868526992405, 49.23724979077323], - [-0.890922335597395, 49.23715445726995], - [-0.89109859106332, 49.237012882985105], - [-0.891141386916112, 49.23699372036682], - [-0.891627821958223, 49.2368582033284], - [-0.891670542549248, 49.23683784659613], - [-0.891883165266933, 49.23677930475295], - [-0.891955920594196, 49.23677014386174], - [-0.891993068686999, 49.23674874105849], - [-0.892576733828613, 49.23658538921702], - [-0.892618444722289, 49.23657826860371], - [-0.892724085024723, 49.23653821549101], - [-0.892959225255736, 49.23645866249661], - [-0.892932972563738, 49.236417160731015], - [-0.892923854707593, 49.236402731224274], - [-0.892902678056337, 49.236383896582225], - [-0.892897202229386, 49.2363866831773] - ] - }, - "length": 1.166091630690215, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42704", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14607", - "bus2": "MVBus07867", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.892897202229386, 49.2363866831773], - [-0.892891726402435, 49.23638946977238], - [-0.892906181541801, 49.2364031710963], - [-0.892897418234313, 49.23640794802007], - [-0.89287831429588, 49.236416438313334], - [-0.892594095271773, 49.23651611478945], - [-0.891571448149967, 49.23680718012721], - [-0.891153662298, 49.236918423557036], - [-0.889561481750273, 49.237381427460804], - [-0.888959529819191, 49.237514700928216], - [-0.887966942411736, 49.23775138750242], - [-0.886163224026916, 49.23814376086724], - [-0.886163224026916, 49.23814376086724] - ] - }, - "length": 0.5303723579195851, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46354", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07867", - "bus2": "MVLV07687", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.886163224026916, 49.23814376086724], - [-0.886163224026916, 49.23814376086724], - [-0.88579212988692, 49.2382402334419], - [-0.885437117959917, 49.2383490234728], - [-0.885244443040563, 49.2384111899376], - [-0.884773324545714, 49.23855361518243], - [-0.884320691583989, 49.23866715446074], - [-0.883992062841363, 49.238744497018786], - [-0.883849963879515, 49.23878672581352], - [-0.88373978923198, 49.23880761366753], - [-0.883627000983091, 49.23883369700478], - [-0.883432997528276, 49.238876239646544], - [-0.883448143987773, 49.23899555213153], - [-0.883541794869655, 49.23914591058355], - [-0.883625503967794, 49.2393601000593], - [-0.883677136783881, 49.23954582776682], - [-0.883607307645389, 49.23970862254284], - [-0.88352877522092, 49.239850861459324], - [-0.883364382462172, 49.24005516561823], - [-0.88318068466099, 49.24029925552247], - [-0.882920174694278, 49.240579315266835], - [-0.882805536356202, 49.24070732613978], - [-0.882606657751963, 49.24092683367392], - [-0.882412269177766, 49.24108733204784], - [-0.88207392802604, 49.24129987140639], - [-0.881882674199694, 49.2413792762798], - [-0.881870142283123, 49.24138991727078], - [-0.881835000987274, 49.241389848492354] - ] - }, - "length": 0.5398981925554321, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47021", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07687", - "bus2": "MVBus09361", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.881835000987274, 49.241389848492354], - [-0.881799859691425, 49.24138977971393], - [-0.881783109182248, 49.24138194753422], - [-0.881290970711528, 49.241152340683676], - [-0.881010013171883, 49.24101799318286], - [-0.880919519389735, 49.241021427522504], - [-0.880642256929955, 49.24089738375072], - [-0.880642256929955, 49.24089738375072] - ] - }, - "length": 0.10188973558821779, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46357", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09361", - "bus2": "MVBus09362", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880642256929955, 49.24089738375072], - [-0.880642256929955, 49.24089738375072], - [-0.880607514550805, 49.2408818422678], - [-0.880607514550805, 49.2408818422678] - ] - }, - "length": 0.0030639494102197053, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34205", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09362", - "bus2": "MVLV18592", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880607514550805, 49.2408818422678], - [-0.880607514550805, 49.2408818422678], - [-0.880588158110897, 49.24087318061059], - [-0.880388072555058, 49.24060875229094], - [-0.879301575042177, 49.24026381041191], - [-0.87918880904727, 49.24017875737017], - [-0.87917790005823, 49.24011696047202], - [-0.879044422507606, 49.23998837503634], - [-0.878929411297452, 49.239932192117024], - [-0.878768337070381, 49.2398862896597], - [-0.877929661223324, 49.23979992811692], - [-0.877253910292094, 49.23987192292139], - [-0.877256069750912, 49.23990516219053], - [-0.877255282173517, 49.23990552498414], - [-0.877273257127134, 49.23991209308561], - [-0.877273257127134, 49.23991209308561] - ] - }, - "length": 0.2993785990167933, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42705", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07867", - "bus2": "MVLV12316", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.886163224026916, 49.23814376086724], - [-0.886163224026916, 49.23814376086724], - [-0.886134334135075, 49.23811159939885], - [-0.886134334135075, 49.23811159939885] - ] - }, - "length": 0.004149664526962077, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV14607_production", - "bus": "MVLV14607", - "phases": "abc", - "powers": [ - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0] - ] - }, - { - "id": "MVLV14607_consumption", - "bus": "MVLV14607", - "phases": "abc", - "powers": [ - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663] - ] - }, - { - "id": "MVLV07687_production", - "bus": "MVLV07687", - "phases": "abc", - "powers": [ - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0] - ] - }, - { - "id": "MVLV07687_consumption", - "bus": "MVLV07687", - "phases": "abc", - "powers": [ - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663] - ] - }, - { - "id": "MVLV18592_production", - "bus": "MVLV18592", - "phases": "abc", - "powers": [ - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0] - ] - }, - { - "id": "MVLV18592_consumption", - "bus": "MVLV18592", - "phases": "abc", - "powers": [ - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663] - ] - }, - { - "id": "MVLV12316_production", - "bus": "MVLV12316", - "phases": "abc", - "powers": [ - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0], - [-1018.4523809523808, 0.0] - ] - }, - { - "id": "MVLV12316_consumption", - "bus": "MVLV12316", - "phases": "abc", - "powers": [ - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663], - [9315.280851977634, 3061.7847513220663] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder312_winter.json b/data/MVFeeder312_winter.json deleted file mode 100644 index 3c5e2141..00000000 --- a/data/MVFeeder312_winter.json +++ /dev/null @@ -1,673 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.8900710079343, 49.258817450938] - } - }, - { - "id": "HVMV23", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.8900710079343, 49.258817450938] - } - }, - { - "id": "MVBus03246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.890518079267901, 49.25885604408974] - } - }, - { - "id": "MVBus03247", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.883709467593089, 49.24446960503848] - } - }, - { - "id": "MVLV14607", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.892897202229386, 49.2363866831773] - } - }, - { - "id": "MVBus07867", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.886163224026916, 49.23814376086724] - } - }, - { - "id": "MVLV07687", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.881835000987274, 49.241389848492354] - } - }, - { - "id": "MVBus09361", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880642256929955, 49.24089738375072] - } - }, - { - "id": "MVBus09362", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.880607514550805, 49.2408818422678] - } - }, - { - "id": "MVLV18592", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.877273257127134, 49.23991209308561] - } - }, - { - "id": "MVLV12316", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.886134334135075, 49.23811159939885] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV23", - "geometry": { - "type": "Point", - "coordinates": [-0.8900710079343, 49.258817450938] - } - }, - { - "id": "MVBranch33893", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV23", - "bus2": "MVBus03246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.8900710079343, 49.258817450938], - [-0.890132613416136, 49.258824732328755], - [-0.890132613416136, 49.258824732328755], - [-0.890213106539946, 49.258839418621335], - [-0.890456996513497, 49.258920126012626], - [-0.890518079267901, 49.25885604408974], - [-0.890518079267901, 49.25885604408974] - ] - }, - "length": 0.03437601393347589, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46168", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03246", - "bus2": "MVBus03247", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.890518079267901, 49.25885604408974], - [-0.890518079267901, 49.25885604408974], - [-0.890901289800942, 49.258484212303095], - [-0.890960540513392, 49.25847477782435], - [-0.891404671071976, 49.258036618266985], - [-0.891425419479236, 49.257985921602504], - [-0.8914299273254, 49.25790149279107], - [-0.891586455864218, 49.25773803640127], - [-0.891712409042302, 49.25752632480084], - [-0.891779088157999, 49.25724709630781], - [-0.89177281769518, 49.25714811183049], - [-0.891713169834477, 49.256953415367455], - [-0.891529183111682, 49.256726114402284], - [-0.891524859623383, 49.25669138726554], - [-0.891181632971773, 49.25629434107835], - [-0.890952684829614, 49.25603568910862], - [-0.89068627239982, 49.25577805330976], - [-0.890390876571987, 49.25552391192277], - [-0.890262255452032, 49.25540179050987], - [-0.889540980987186, 49.25494070470427], - [-0.888928104464742, 49.254558886518794], - [-0.888444925635507, 49.25422741373271], - [-0.887775454153121, 49.2538043726486], - [-0.88695093701918, 49.25329614126756], - [-0.884975705697855, 49.25209143600255], - [-0.884831279293524, 49.251988562286186], - [-0.884775134190805, 49.25194068635764], - [-0.884725837079683, 49.25188305920597], - [-0.884692026533699, 49.251822453579116], - [-0.884680309391527, 49.25176040056725], - [-0.884681044433974, 49.25173047388403], - [-0.884681619761379, 49.251697997797564], - [-0.884372713293313, 49.25138102791627], - [-0.884265294451482, 49.251307966203996], - [-0.883801620562575, 49.25098997906478], - [-0.883782615787526, 49.25096221872274], - [-0.883766416564782, 49.25092420427982], - [-0.883736509987092, 49.25072259098228], - [-0.883740579708071, 49.25067725263805], - [-0.883758444562349, 49.25063154402744], - [-0.883844763635875, 49.25054780576246], - [-0.884150812805608, 49.25030438121662], - [-0.884232813448853, 49.25020719878625], - [-0.88426349624391, 49.25014531127482], - [-0.884282114610696, 49.25005660113605], - [-0.884291030621658, 49.24997833924609], - [-0.884312279489561, 49.24993140668233], - [-0.884358157422018, 49.24989172578585], - [-0.884400599293143, 49.24986955438765], - [-0.884407789935949, 49.24982843929388], - [-0.884392101570724, 49.24980669547579], - [-0.884340557547508, 49.24978420576918], - [-0.884130659819135, 49.24972846183027], - [-0.883979105455504, 49.24967700517361], - [-0.883869885979426, 49.249633026218824], - [-0.883717618914768, 49.24959913153117], - [-0.883411618399528, 49.24951888223154], - [-0.883234584552383, 49.249470913942844], - [-0.883184279808389, 49.249441439774664], - [-0.882930518832942, 49.24937810382164], - [-0.882932760269341, 49.249359277623824], - [-0.882988411415866, 49.24917996084801], - [-0.882966929289648, 49.24908760622163], - [-0.882924406048689, 49.24895337452536], - [-0.882926002379589, 49.24894618314263], - [-0.882946228532681, 49.248909448060296], - [-0.882954534655454, 49.248856955354285], - [-0.882976213077453, 49.24884341631832], - [-0.88300720110986, 49.24880416244034], - [-0.883044541661205, 49.248768307858], - [-0.882984130952967, 49.248457631811945], - [-0.882968615517035, 49.24842766458209], - [-0.882971434004477, 49.248385587843785], - [-0.88294627371981, 49.24817985422621], - [-0.882797118055686, 49.24725812342875], - [-0.882757625034863, 49.24693553782791], - [-0.882751126021842, 49.24692431049447], - [-0.882724699247673, 49.246904113460396], - [-0.881365766531545, 49.246449757353496], - [-0.881321930291555, 49.246426574100376], - [-0.881306183892508, 49.2464100107612], - [-0.881308471422797, 49.24639125525258], - [-0.881347275168451, 49.24631996974937], - [-0.881969752548423, 49.245600041966796], - [-0.882064907055608, 49.24551996988685], - [-0.88217291177573, 49.2454488146143], - [-0.882474600307083, 49.24525281601738], - [-0.882564582922736, 49.2451943639305], - [-0.883139102610479, 49.24486455294448], - [-0.883566768297133, 49.244585411873324], - [-0.883709467593089, 49.24446960503848], - [-0.883709467593089, 49.24446960503848] - ] - }, - "length": 2.071208490393622, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45456", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03247", - "bus2": "MVLV14607", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.883709467593089, 49.24446960503848], - [-0.883709467593089, 49.24446960503848], - [-0.884184229377249, 49.244010545618714], - [-0.884330881137206, 49.24392258770365], - [-0.884682522315761, 49.243770300221065], - [-0.88502384170455, 49.24362910611965], - [-0.885374604185673, 49.24349245006394], - [-0.885406500452197, 49.24347478746522], - [-0.885436166361273, 49.24339237085228], - [-0.885493273565053, 49.24333802736923], - [-0.885779430387922, 49.24298944761374], - [-0.885831885825315, 49.24291961886043], - [-0.886164112754665, 49.24254580086654], - [-0.886354586289205, 49.24233782522554], - [-0.886371224582025, 49.24231097783463], - [-0.886509038735172, 49.24214042941683], - [-0.886623276090726, 49.24197412004918], - [-0.886735087767808, 49.24179826329924], - [-0.887084452681715, 49.24120071996567], - [-0.887281830779827, 49.240840124926464], - [-0.887338878309803, 49.24075576670856], - [-0.887412617238388, 49.24067456563303], - [-0.887478774906847, 49.240618772762986], - [-0.887504173552536, 49.24061448434506], - [-0.887550969524801, 49.24057121609662], - [-0.887623000603809, 49.24052127191131], - [-0.887807014143259, 49.240415498813725], - [-0.888031231731437, 49.240307439737606], - [-0.888165587445624, 49.24022821441154], - [-0.888576885925707, 49.23991707640471], - [-0.888675855847016, 49.2398291893856], - [-0.888854016809171, 49.23962994726778], - [-0.888868208037688, 49.239622363098995], - [-0.888905092184681, 49.239567356439665], - [-0.888965537672147, 49.23950811941095], - [-0.889198492793863, 49.23924738168518], - [-0.889230159906052, 49.239226127259265], - [-0.889483595096178, 49.23899965509596], - [-0.889621281678398, 49.23885671092865], - [-0.889773868064895, 49.23868816122689], - [-0.889970587020718, 49.23843440289482], - [-0.890085420145151, 49.238277676570675], - [-0.89049528613681, 49.23773970977248], - [-0.890868526992405, 49.23724979077323], - [-0.890922335597395, 49.23715445726995], - [-0.89109859106332, 49.237012882985105], - [-0.891141386916112, 49.23699372036682], - [-0.891627821958223, 49.2368582033284], - [-0.891670542549248, 49.23683784659613], - [-0.891883165266933, 49.23677930475295], - [-0.891955920594196, 49.23677014386174], - [-0.891993068686999, 49.23674874105849], - [-0.892576733828613, 49.23658538921702], - [-0.892618444722289, 49.23657826860371], - [-0.892724085024723, 49.23653821549101], - [-0.892959225255736, 49.23645866249661], - [-0.892932972563738, 49.236417160731015], - [-0.892923854707593, 49.236402731224274], - [-0.892902678056337, 49.236383896582225], - [-0.892897202229386, 49.2363866831773] - ] - }, - "length": 1.166091630690215, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42704", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14607", - "bus2": "MVBus07867", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.892897202229386, 49.2363866831773], - [-0.892891726402435, 49.23638946977238], - [-0.892906181541801, 49.2364031710963], - [-0.892897418234313, 49.23640794802007], - [-0.89287831429588, 49.236416438313334], - [-0.892594095271773, 49.23651611478945], - [-0.891571448149967, 49.23680718012721], - [-0.891153662298, 49.236918423557036], - [-0.889561481750273, 49.237381427460804], - [-0.888959529819191, 49.237514700928216], - [-0.887966942411736, 49.23775138750242], - [-0.886163224026916, 49.23814376086724], - [-0.886163224026916, 49.23814376086724] - ] - }, - "length": 0.5303723579195851, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46354", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07867", - "bus2": "MVLV07687", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.886163224026916, 49.23814376086724], - [-0.886163224026916, 49.23814376086724], - [-0.88579212988692, 49.2382402334419], - [-0.885437117959917, 49.2383490234728], - [-0.885244443040563, 49.2384111899376], - [-0.884773324545714, 49.23855361518243], - [-0.884320691583989, 49.23866715446074], - [-0.883992062841363, 49.238744497018786], - [-0.883849963879515, 49.23878672581352], - [-0.88373978923198, 49.23880761366753], - [-0.883627000983091, 49.23883369700478], - [-0.883432997528276, 49.238876239646544], - [-0.883448143987773, 49.23899555213153], - [-0.883541794869655, 49.23914591058355], - [-0.883625503967794, 49.2393601000593], - [-0.883677136783881, 49.23954582776682], - [-0.883607307645389, 49.23970862254284], - [-0.88352877522092, 49.239850861459324], - [-0.883364382462172, 49.24005516561823], - [-0.88318068466099, 49.24029925552247], - [-0.882920174694278, 49.240579315266835], - [-0.882805536356202, 49.24070732613978], - [-0.882606657751963, 49.24092683367392], - [-0.882412269177766, 49.24108733204784], - [-0.88207392802604, 49.24129987140639], - [-0.881882674199694, 49.2413792762798], - [-0.881870142283123, 49.24138991727078], - [-0.881835000987274, 49.241389848492354] - ] - }, - "length": 0.5398981925554321, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47021", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07687", - "bus2": "MVBus09361", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.881835000987274, 49.241389848492354], - [-0.881799859691425, 49.24138977971393], - [-0.881783109182248, 49.24138194753422], - [-0.881290970711528, 49.241152340683676], - [-0.881010013171883, 49.24101799318286], - [-0.880919519389735, 49.241021427522504], - [-0.880642256929955, 49.24089738375072], - [-0.880642256929955, 49.24089738375072] - ] - }, - "length": 0.10188973558821779, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46357", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09361", - "bus2": "MVBus09362", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880642256929955, 49.24089738375072], - [-0.880642256929955, 49.24089738375072], - [-0.880607514550805, 49.2408818422678], - [-0.880607514550805, 49.2408818422678] - ] - }, - "length": 0.0030639494102197053, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34205", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09362", - "bus2": "MVLV18592", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.880607514550805, 49.2408818422678], - [-0.880607514550805, 49.2408818422678], - [-0.880588158110897, 49.24087318061059], - [-0.880388072555058, 49.24060875229094], - [-0.879301575042177, 49.24026381041191], - [-0.87918880904727, 49.24017875737017], - [-0.87917790005823, 49.24011696047202], - [-0.879044422507606, 49.23998837503634], - [-0.878929411297452, 49.239932192117024], - [-0.878768337070381, 49.2398862896597], - [-0.877929661223324, 49.23979992811692], - [-0.877253910292094, 49.23987192292139], - [-0.877256069750912, 49.23990516219053], - [-0.877255282173517, 49.23990552498414], - [-0.877273257127134, 49.23991209308561], - [-0.877273257127134, 49.23991209308561] - ] - }, - "length": 0.2993785990167933, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42705", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07867", - "bus2": "MVLV12316", - "geometry": { - "type": "LineString", - "coordinates": [ - [-0.886163224026916, 49.23814376086724], - [-0.886163224026916, 49.23814376086724], - [-0.886134334135075, 49.23811159939885], - [-0.886134334135075, 49.23811159939885] - ] - }, - "length": 0.004149664526962077, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV14607_production", - "bus": "MVLV14607", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14607_consumption", - "bus": "MVLV14607", - "phases": "abc", - "powers": [ - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333] - ] - }, - { - "id": "MVLV07687_production", - "bus": "MVLV07687", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07687_consumption", - "bus": "MVLV07687", - "phases": "abc", - "powers": [ - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333] - ] - }, - { - "id": "MVLV18592_production", - "bus": "MVLV18592", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV18592_consumption", - "bus": "MVLV18592", - "phases": "abc", - "powers": [ - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333] - ] - }, - { - "id": "MVLV12316_production", - "bus": "MVLV12316", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV12316_consumption", - "bus": "MVLV12316", - "phases": "abc", - "powers": [ - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333], - [46576.404259888164, 15308.923756610333] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder320_summer.json b/data/MVFeeder320_summer.json deleted file mode 100644 index 42dcc3ea..00000000 --- a/data/MVFeeder320_summer.json +++ /dev/null @@ -1,867 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "HVMV24", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBus03272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.118771483267404, 49.1085233008711] - } - }, - { - "id": "MVBus03273", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.116603611405577, 49.10567001171423] - } - }, - { - "id": "MVBus03274", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.116558398469074, 49.10550728051061] - } - }, - { - "id": "MVLV15900", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.114356949552328, 49.10219869675666] - } - }, - { - "id": "MVBus06241", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.113451342366867, 49.10301925894434] - } - }, - { - "id": "MVLV04536", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1124929103886734, 49.1020702604019] - } - }, - { - "id": "MVBus06393", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.113361214583669, 49.10304249989962] - } - }, - { - "id": "MVBus06394", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.113290374699996, 49.10322404020471] - } - }, - { - "id": "MVLV15889", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1111834901653443, 49.10470070458305] - } - }, - { - "id": "MVBus06697", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.107295136047514, 49.10761828058603] - } - }, - { - "id": "MVLV15887", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1072595556386244, 49.107578646783914] - } - }, - { - "id": "MVBus07251", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.107272123677667, 49.1076351414578] - } - }, - { - "id": "MVLV05633", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1047738883191665, 49.10789730368813] - } - }, - { - "id": "MVBus07719", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.105251850515671, 49.10568196530121] - } - }, - { - "id": "MVLV02667", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1054259887101194, 49.105803224052394] - } - }, - { - "id": "MVBus08243", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.10530745327206, 49.105688721167525] - } - }, - { - "id": "MVBus08244", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.10419910236934, 49.10412508714011] - } - }, - { - "id": "MVBus08245", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.104077900830377, 49.10401651493053] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV24", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBranch35480", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV24", - "bus2": "MVBus03272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.122502301274675, 49.11336333911259], - [-1.122515758188838, 49.113353164419976], - [-1.122515758188838, 49.113353164419976], - [-1.122529215097694, 49.11334298972578], - [-1.122867662972574, 49.113095551719404], - [-1.123081883206688, 49.112818129434], - [-1.123024691125668, 49.112635312546374], - [-1.122819570703073, 49.11150722094648], - [-1.123021919062925, 49.11051898866405], - [-1.122162854611667, 49.11031353875101], - [-1.120820439144195, 49.111235324404205], - [-1.120456826456457, 49.11082048744736], - [-1.120976455047906, 49.10968225108492], - [-1.118771483267404, 49.1085233008711], - [-1.118771483267404, 49.1085233008711] - ] - }, - "length": 0.9312494543348707, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43080", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03272", - "bus2": "MVBus03273", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.118771483267404, 49.1085233008711], - [-1.118771483267404, 49.1085233008711], - [-1.118770275319291, 49.10852265219978], - [-1.118058080300463, 49.10798507584726], - [-1.117514430446321, 49.107426215007955], - [-1.117030497809509, 49.106760224908584], - [-1.116818572840983, 49.106317397237426], - [-1.116650153829339, 49.10581024599025], - [-1.116603611405577, 49.10567001171423], - [-1.116603611405577, 49.10567001171423] - ] - }, - "length": 0.3604669225339614, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47785", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03273", - "bus2": "MVBus03274", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.116603611405577, 49.10567001171423], - [-1.116603611405577, 49.10567001171423], - [-1.116605574535409, 49.105648593819446], - [-1.116558398469074, 49.10550728051061], - [-1.116558398469074, 49.10550728051061] - ] - }, - "length": 0.018475017486536353, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37396", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03274", - "bus2": "MVLV15900", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.116558398469074, 49.10550728051061], - [-1.116558398469074, 49.10550728051061], - [-1.116356566657015, 49.105112963010804], - [-1.116181599379155, 49.10478695426727], - [-1.115960184998297, 49.10446323910245], - [-1.115669452453222, 49.104187520297394], - [-1.115004527168162, 49.10379523979116], - [-1.114373185658246, 49.103530676074016], - [-1.113765312345798, 49.10326810355195], - [-1.11370329467668, 49.103125931001635], - [-1.113741152653556, 49.103000566118105], - [-1.113885192828147, 49.10288370511618], - [-1.114646629656024, 49.102341370630505], - [-1.114462423438236, 49.10221638567206], - [-1.114344452929517, 49.10218993712635], - [-1.114323968157725, 49.10218902603398], - [-1.114356949552328, 49.10219869675666] - ] - }, - "length": 0.4939133036688335, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39762", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15900", - "bus2": "MVBus06241", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114356949552328, 49.10219869675666], - [-1.114389930946931, 49.10220836747934], - [-1.114390339813299, 49.10222184701178], - [-1.114392475058534, 49.10225682688755], - [-1.114543085659624, 49.10235221881769], - [-1.113685535660551, 49.102971257139565], - [-1.113546733725049, 49.10298624231028], - [-1.113451728463866, 49.10301970651387], - [-1.113451342366867, 49.10301925894434], - [-1.113451342366867, 49.10301925894434] - ] - }, - "length": 0.1319376452899145, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46734", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06241", - "bus2": "MVLV04536", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113451342366867, 49.10301925894434], - [-1.113451342366867, 49.10301925894434], - [-1.112590215879752, 49.10201037753735], - [-1.112507001548805, 49.102055247520056], - [-1.112491135901967, 49.10206379975681], - [-1.1124929103886734, 49.1020702604019] - ] - }, - "length": 0.13798024400367132, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41589", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04536", - "bus2": "MVBus06393", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1124929103886734, 49.1020702604019], - [-1.11249468487538, 49.102076721047], - [-1.112514100104552, 49.10208109907633], - [-1.112588088096089, 49.10209776367929], - [-1.113361214583669, 49.10304249989962], - [-1.113361214583669, 49.10304249989962] - ] - }, - "length": 0.1264834129891168, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44199", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06393", - "bus2": "MVBus06394", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113361214583669, 49.10304249989962], - [-1.113361214583669, 49.10304249989962], - [-1.113385455218025, 49.10307211129203], - [-1.113317029538608, 49.10313268188011], - [-1.113290374699996, 49.10322404020471], - [-1.113290374699996, 49.10322404020471] - ] - }, - "length": 0.02247050530209471, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46735", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06394", - "bus2": "MVLV15889", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113290374699996, 49.10322404020471], - [-1.113290374699996, 49.10322404020471], - [-1.113279411241362, 49.103261646346226], - [-1.111226775511101, 49.10475291401361], - [-1.111208807976315, 49.10471098829749], - [-1.111199109510269, 49.1046991076747], - [-1.1111834901653443, 49.10470070458305] - ] - }, - "length": 0.23413995893045467, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38163", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15889", - "bus2": "MVBus06697", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1111834901653443, 49.10470070458305], - [-1.11116787082042, 49.1047023014914], - [-1.11117404117023, 49.10471140565835], - [-1.111171940085997, 49.104726900228], - [-1.111155775748212, 49.104846152236696], - [-1.107295136047514, 49.10761828058603], - [-1.107295136047514, 49.10761828058603] - ] - }, - "length": 0.43389202608035926, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47752", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06697", - "bus2": "MVLV15887", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.107295136047514, 49.10761828058603], - [-1.107295136047514, 49.10761828058603], - [-1.107278230081981, 49.10757313996695], - [-1.107275964057728, 49.10756710716929], - [-1.107264756369101, 49.10756872494561], - [-1.1072595556386244, 49.107578646783914] - ] - }, - "length": 0.006698580964137551, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37774", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15887", - "bus2": "MVBus07251", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1072595556386244, 49.107578646783914], - [-1.107254354908148, 49.10758856862222], - [-1.107263080927471, 49.1075928684739], - [-1.107264372560184, 49.10759887535522], - [-1.107272123677667, 49.1076351414578], - [-1.107272123677667, 49.1076351414578] - ] - }, - "length": 0.005544006519024985, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36406", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07251", - "bus2": "MVLV05633", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.107272123677667, 49.1076351414578], - [-1.107272123677667, 49.1076351414578], - [-1.107323126342092, 49.10763575095126], - [-1.106027941745831, 49.10857888880871], - [-1.105951336328116, 49.108584888597264], - [-1.105903018805837, 49.10857998298788], - [-1.105868959753751, 49.108560258509215], - [-1.10570142650957, 49.10843610313509], - [-1.10561013237445, 49.108328569772915], - [-1.105528639295212, 49.10822050252374], - [-1.10528005425125, 49.108019683063], - [-1.104783953626866, 49.10806546960726], - [-1.104763488992972, 49.107938440641036], - [-1.104777009832455, 49.107920162408014], - [-1.104778996117332, 49.10791564418773], - [-1.104782693741236, 49.1079072092679], - [-1.1047738883191665, 49.10789730368813] - ] - }, - "length": 0.2863367475352318, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37628", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05633", - "bus2": "MVBus07719", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1047738883191665, 49.10789730368813], - [-1.104765082897097, 49.10788739810835], - [-1.10473586256072, 49.10788473989768], - [-1.104394206407897, 49.107900071284185], - [-1.104362712572404, 49.10789475315261], - [-1.104352156801776, 49.10784660540915], - [-1.104268325377526, 49.10738070140299], - [-1.104317366133909, 49.107362795723354], - [-1.104263514137814, 49.107022810542226], - [-1.10424661809741, 49.106887440159085], - [-1.10423504896882, 49.10656274298069], - [-1.104219591854861, 49.10582212474427], - [-1.104249742025216, 49.10576092490523], - [-1.104287263313729, 49.10575127432024], - [-1.104654394187146, 49.10572950774388], - [-1.104985556678583, 49.10570987204645], - [-1.105251850515671, 49.10568196530121], - [-1.105251850515671, 49.10568196530121] - ] - }, - "length": 0.3438063636066759, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36060", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07719", - "bus2": "MVLV02667", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.105251850515671, 49.10568196530121], - [-1.105251850515671, 49.10568196530121], - [-1.105355141120245, 49.10567479333838], - [-1.105380593266276, 49.105797109956406], - [-1.105390992409981, 49.10579713455313], - [-1.105425986164548, 49.10579723402532], - [-1.1054259887101194, 49.105803224052394] - ] - }, - "length": 0.024627893652587315, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36674", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02667", - "bus2": "MVBus08243", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1054259887101194, 49.105803224052394], - [-1.105425991255691, 49.105809214079464], - [-1.105379126106463, 49.105809609057744], - [-1.105362093905267, 49.10580974831517], - [-1.105339243747707, 49.105686187596184], - [-1.10530745327206, 49.105688721167525], - [-1.10530745327206, 49.105688721167525] - ] - }, - "length": 0.020846555492663302, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45547", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08243", - "bus2": "MVBus08244", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.10530745327206, 49.105688721167525], - [-1.10530745327206, 49.105688721167525], - [-1.104532899782066, 49.10576319577339], - [-1.104520621427359, 49.10570667899328], - [-1.104401241471811, 49.105717856695954], - [-1.104209844526672, 49.105642162540626], - [-1.104226110846048, 49.10492140777142], - [-1.104123494271267, 49.10492449406452], - [-1.104121625612562, 49.104602269554135], - [-1.10395512797682, 49.10455415450196], - [-1.10419910236934, 49.10412508714011], - [-1.10419910236934, 49.10412508714011] - ] - }, - "length": 0.27634588096113716, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48195", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08244", - "bus2": "MVBus08245", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.10419910236934, 49.10412508714011], - [-1.10419910236934, 49.10412508714011], - [-1.104252318745341, 49.10411601942363], - [-1.10410055399674, 49.104082770898536], - [-1.104072678550523, 49.10403679404062], - [-1.104074472699001, 49.104029807948045], - [-1.104077900830377, 49.10401651493053], - [-1.104077900830377, 49.10401651493053] - ] - }, - "length": 0.02348758279773055, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV15900_production", - "bus": "MVLV15900", - "phases": "abc", - "powers": [ - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0] - ] - }, - { - "id": "MVLV15900_consumption", - "bus": "MVLV15900", - "phases": "abc", - "powers": [ - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037] - ] - }, - { - "id": "MVLV04536_production", - "bus": "MVLV04536", - "phases": "abc", - "powers": [ - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0] - ] - }, - { - "id": "MVLV04536_consumption", - "bus": "MVLV04536", - "phases": "abc", - "powers": [ - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037] - ] - }, - { - "id": "MVLV15889_production", - "bus": "MVLV15889", - "phases": "abc", - "powers": [ - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0] - ] - }, - { - "id": "MVLV15889_consumption", - "bus": "MVLV15889", - "phases": "abc", - "powers": [ - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037] - ] - }, - { - "id": "MVLV15887_production", - "bus": "MVLV15887", - "phases": "abc", - "powers": [ - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0] - ] - }, - { - "id": "MVLV15887_consumption", - "bus": "MVLV15887", - "phases": "abc", - "powers": [ - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037] - ] - }, - { - "id": "MVLV05633_production", - "bus": "MVLV05633", - "phases": "abc", - "powers": [ - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0] - ] - }, - { - "id": "MVLV05633_consumption", - "bus": "MVLV05633", - "phases": "abc", - "powers": [ - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037] - ] - }, - { - "id": "MVLV02667_production", - "bus": "MVLV02667", - "phases": "abc", - "powers": [ - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0], - [-448.2807515065579, 0.0] - ] - }, - { - "id": "MVLV02667_consumption", - "bus": "MVLV02667", - "phases": "abc", - "powers": [ - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037], - [9021.159739691348, 2965.111816716037] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder320_winter.json b/data/MVFeeder320_winter.json deleted file mode 100644 index 1997055d..00000000 --- a/data/MVFeeder320_winter.json +++ /dev/null @@ -1,867 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "HVMV24", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBus03272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.118771483267404, 49.1085233008711] - } - }, - { - "id": "MVBus03273", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.116603611405577, 49.10567001171423] - } - }, - { - "id": "MVBus03274", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.116558398469074, 49.10550728051061] - } - }, - { - "id": "MVLV15900", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.114356949552328, 49.10219869675666] - } - }, - { - "id": "MVBus06241", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.113451342366867, 49.10301925894434] - } - }, - { - "id": "MVLV04536", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1124929103886734, 49.1020702604019] - } - }, - { - "id": "MVBus06393", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.113361214583669, 49.10304249989962] - } - }, - { - "id": "MVBus06394", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.113290374699996, 49.10322404020471] - } - }, - { - "id": "MVLV15889", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1111834901653443, 49.10470070458305] - } - }, - { - "id": "MVBus06697", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.107295136047514, 49.10761828058603] - } - }, - { - "id": "MVLV15887", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1072595556386244, 49.107578646783914] - } - }, - { - "id": "MVBus07251", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.107272123677667, 49.1076351414578] - } - }, - { - "id": "MVLV05633", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1047738883191665, 49.10789730368813] - } - }, - { - "id": "MVBus07719", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.105251850515671, 49.10568196530121] - } - }, - { - "id": "MVLV02667", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1054259887101194, 49.105803224052394] - } - }, - { - "id": "MVBus08243", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.10530745327206, 49.105688721167525] - } - }, - { - "id": "MVBus08244", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.10419910236934, 49.10412508714011] - } - }, - { - "id": "MVBus08245", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.104077900830377, 49.10401651493053] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV24", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBranch35480", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV24", - "bus2": "MVBus03272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.122502301274675, 49.11336333911259], - [-1.122515758188838, 49.113353164419976], - [-1.122515758188838, 49.113353164419976], - [-1.122529215097694, 49.11334298972578], - [-1.122867662972574, 49.113095551719404], - [-1.123081883206688, 49.112818129434], - [-1.123024691125668, 49.112635312546374], - [-1.122819570703073, 49.11150722094648], - [-1.123021919062925, 49.11051898866405], - [-1.122162854611667, 49.11031353875101], - [-1.120820439144195, 49.111235324404205], - [-1.120456826456457, 49.11082048744736], - [-1.120976455047906, 49.10968225108492], - [-1.118771483267404, 49.1085233008711], - [-1.118771483267404, 49.1085233008711] - ] - }, - "length": 0.9312494543348707, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43080", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03272", - "bus2": "MVBus03273", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.118771483267404, 49.1085233008711], - [-1.118771483267404, 49.1085233008711], - [-1.118770275319291, 49.10852265219978], - [-1.118058080300463, 49.10798507584726], - [-1.117514430446321, 49.107426215007955], - [-1.117030497809509, 49.106760224908584], - [-1.116818572840983, 49.106317397237426], - [-1.116650153829339, 49.10581024599025], - [-1.116603611405577, 49.10567001171423], - [-1.116603611405577, 49.10567001171423] - ] - }, - "length": 0.3604669225339614, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47785", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03273", - "bus2": "MVBus03274", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.116603611405577, 49.10567001171423], - [-1.116603611405577, 49.10567001171423], - [-1.116605574535409, 49.105648593819446], - [-1.116558398469074, 49.10550728051061], - [-1.116558398469074, 49.10550728051061] - ] - }, - "length": 0.018475017486536353, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37396", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03274", - "bus2": "MVLV15900", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.116558398469074, 49.10550728051061], - [-1.116558398469074, 49.10550728051061], - [-1.116356566657015, 49.105112963010804], - [-1.116181599379155, 49.10478695426727], - [-1.115960184998297, 49.10446323910245], - [-1.115669452453222, 49.104187520297394], - [-1.115004527168162, 49.10379523979116], - [-1.114373185658246, 49.103530676074016], - [-1.113765312345798, 49.10326810355195], - [-1.11370329467668, 49.103125931001635], - [-1.113741152653556, 49.103000566118105], - [-1.113885192828147, 49.10288370511618], - [-1.114646629656024, 49.102341370630505], - [-1.114462423438236, 49.10221638567206], - [-1.114344452929517, 49.10218993712635], - [-1.114323968157725, 49.10218902603398], - [-1.114356949552328, 49.10219869675666] - ] - }, - "length": 0.4939133036688335, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39762", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15900", - "bus2": "MVBus06241", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.114356949552328, 49.10219869675666], - [-1.114389930946931, 49.10220836747934], - [-1.114390339813299, 49.10222184701178], - [-1.114392475058534, 49.10225682688755], - [-1.114543085659624, 49.10235221881769], - [-1.113685535660551, 49.102971257139565], - [-1.113546733725049, 49.10298624231028], - [-1.113451728463866, 49.10301970651387], - [-1.113451342366867, 49.10301925894434], - [-1.113451342366867, 49.10301925894434] - ] - }, - "length": 0.1319376452899145, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46734", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06241", - "bus2": "MVLV04536", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113451342366867, 49.10301925894434], - [-1.113451342366867, 49.10301925894434], - [-1.112590215879752, 49.10201037753735], - [-1.112507001548805, 49.102055247520056], - [-1.112491135901967, 49.10206379975681], - [-1.1124929103886734, 49.1020702604019] - ] - }, - "length": 0.13798024400367132, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41589", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV04536", - "bus2": "MVBus06393", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1124929103886734, 49.1020702604019], - [-1.11249468487538, 49.102076721047], - [-1.112514100104552, 49.10208109907633], - [-1.112588088096089, 49.10209776367929], - [-1.113361214583669, 49.10304249989962], - [-1.113361214583669, 49.10304249989962] - ] - }, - "length": 0.1264834129891168, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch44199", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06393", - "bus2": "MVBus06394", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113361214583669, 49.10304249989962], - [-1.113361214583669, 49.10304249989962], - [-1.113385455218025, 49.10307211129203], - [-1.113317029538608, 49.10313268188011], - [-1.113290374699996, 49.10322404020471], - [-1.113290374699996, 49.10322404020471] - ] - }, - "length": 0.02247050530209471, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46735", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06394", - "bus2": "MVLV15889", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.113290374699996, 49.10322404020471], - [-1.113290374699996, 49.10322404020471], - [-1.113279411241362, 49.103261646346226], - [-1.111226775511101, 49.10475291401361], - [-1.111208807976315, 49.10471098829749], - [-1.111199109510269, 49.1046991076747], - [-1.1111834901653443, 49.10470070458305] - ] - }, - "length": 0.23413995893045467, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38163", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15889", - "bus2": "MVBus06697", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1111834901653443, 49.10470070458305], - [-1.11116787082042, 49.1047023014914], - [-1.11117404117023, 49.10471140565835], - [-1.111171940085997, 49.104726900228], - [-1.111155775748212, 49.104846152236696], - [-1.107295136047514, 49.10761828058603], - [-1.107295136047514, 49.10761828058603] - ] - }, - "length": 0.43389202608035926, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47752", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06697", - "bus2": "MVLV15887", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.107295136047514, 49.10761828058603], - [-1.107295136047514, 49.10761828058603], - [-1.107278230081981, 49.10757313996695], - [-1.107275964057728, 49.10756710716929], - [-1.107264756369101, 49.10756872494561], - [-1.1072595556386244, 49.107578646783914] - ] - }, - "length": 0.006698580964137551, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37774", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV15887", - "bus2": "MVBus07251", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1072595556386244, 49.107578646783914], - [-1.107254354908148, 49.10758856862222], - [-1.107263080927471, 49.1075928684739], - [-1.107264372560184, 49.10759887535522], - [-1.107272123677667, 49.1076351414578], - [-1.107272123677667, 49.1076351414578] - ] - }, - "length": 0.005544006519024985, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36406", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07251", - "bus2": "MVLV05633", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.107272123677667, 49.1076351414578], - [-1.107272123677667, 49.1076351414578], - [-1.107323126342092, 49.10763575095126], - [-1.106027941745831, 49.10857888880871], - [-1.105951336328116, 49.108584888597264], - [-1.105903018805837, 49.10857998298788], - [-1.105868959753751, 49.108560258509215], - [-1.10570142650957, 49.10843610313509], - [-1.10561013237445, 49.108328569772915], - [-1.105528639295212, 49.10822050252374], - [-1.10528005425125, 49.108019683063], - [-1.104783953626866, 49.10806546960726], - [-1.104763488992972, 49.107938440641036], - [-1.104777009832455, 49.107920162408014], - [-1.104778996117332, 49.10791564418773], - [-1.104782693741236, 49.1079072092679], - [-1.1047738883191665, 49.10789730368813] - ] - }, - "length": 0.2863367475352318, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37628", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV05633", - "bus2": "MVBus07719", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1047738883191665, 49.10789730368813], - [-1.104765082897097, 49.10788739810835], - [-1.10473586256072, 49.10788473989768], - [-1.104394206407897, 49.107900071284185], - [-1.104362712572404, 49.10789475315261], - [-1.104352156801776, 49.10784660540915], - [-1.104268325377526, 49.10738070140299], - [-1.104317366133909, 49.107362795723354], - [-1.104263514137814, 49.107022810542226], - [-1.10424661809741, 49.106887440159085], - [-1.10423504896882, 49.10656274298069], - [-1.104219591854861, 49.10582212474427], - [-1.104249742025216, 49.10576092490523], - [-1.104287263313729, 49.10575127432024], - [-1.104654394187146, 49.10572950774388], - [-1.104985556678583, 49.10570987204645], - [-1.105251850515671, 49.10568196530121], - [-1.105251850515671, 49.10568196530121] - ] - }, - "length": 0.3438063636066759, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36060", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07719", - "bus2": "MVLV02667", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.105251850515671, 49.10568196530121], - [-1.105251850515671, 49.10568196530121], - [-1.105355141120245, 49.10567479333838], - [-1.105380593266276, 49.105797109956406], - [-1.105390992409981, 49.10579713455313], - [-1.105425986164548, 49.10579723402532], - [-1.1054259887101194, 49.105803224052394] - ] - }, - "length": 0.024627893652587315, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch36674", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV02667", - "bus2": "MVBus08243", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1054259887101194, 49.105803224052394], - [-1.105425991255691, 49.105809214079464], - [-1.105379126106463, 49.105809609057744], - [-1.105362093905267, 49.10580974831517], - [-1.105339243747707, 49.105686187596184], - [-1.10530745327206, 49.105688721167525], - [-1.10530745327206, 49.105688721167525] - ] - }, - "length": 0.020846555492663302, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45547", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08243", - "bus2": "MVBus08244", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.10530745327206, 49.105688721167525], - [-1.10530745327206, 49.105688721167525], - [-1.104532899782066, 49.10576319577339], - [-1.104520621427359, 49.10570667899328], - [-1.104401241471811, 49.105717856695954], - [-1.104209844526672, 49.105642162540626], - [-1.104226110846048, 49.10492140777142], - [-1.104123494271267, 49.10492449406452], - [-1.104121625612562, 49.104602269554135], - [-1.10395512797682, 49.10455415450196], - [-1.10419910236934, 49.10412508714011], - [-1.10419910236934, 49.10412508714011] - ] - }, - "length": 0.27634588096113716, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch48195", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus08244", - "bus2": "MVBus08245", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.10419910236934, 49.10412508714011], - [-1.10419910236934, 49.10412508714011], - [-1.104252318745341, 49.10411601942363], - [-1.10410055399674, 49.104082770898536], - [-1.104072678550523, 49.10403679404062], - [-1.104074472699001, 49.104029807948045], - [-1.104077900830377, 49.10401651493053], - [-1.104077900830377, 49.10401651493053] - ] - }, - "length": 0.02348758279773055, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV15900_production", - "bus": "MVLV15900", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15900_consumption", - "bus": "MVLV15900", - "phases": "abc", - "powers": [ - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185] - ] - }, - { - "id": "MVLV04536_production", - "bus": "MVLV04536", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV04536_consumption", - "bus": "MVLV04536", - "phases": "abc", - "powers": [ - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185] - ] - }, - { - "id": "MVLV15889_production", - "bus": "MVLV15889", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15889_consumption", - "bus": "MVLV15889", - "phases": "abc", - "powers": [ - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185] - ] - }, - { - "id": "MVLV15887_production", - "bus": "MVLV15887", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV15887_consumption", - "bus": "MVLV15887", - "phases": "abc", - "powers": [ - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185] - ] - }, - { - "id": "MVLV05633_production", - "bus": "MVLV05633", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV05633_consumption", - "bus": "MVLV05633", - "phases": "abc", - "powers": [ - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185] - ] - }, - { - "id": "MVLV02667_production", - "bus": "MVLV02667", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV02667_consumption", - "bus": "MVLV02667", - "phases": "abc", - "powers": [ - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185], - [45105.79869845673, 14825.559083580185] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder339_summer.json b/data/MVFeeder339_summer.json deleted file mode 100644 index 5b5cc922..00000000 --- a/data/MVFeeder339_summer.json +++ /dev/null @@ -1,1486 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "HVMV24", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBus03445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.123870876133732, 49.113367217043866] - } - }, - { - "id": "MVBus03446", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130453200031668, 49.11078015694125] - } - }, - { - "id": "MVLV17998", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1302244281285492, 49.110148550835596] - } - }, - { - "id": "MVBus04986", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130554237696906, 49.10842944451173] - } - }, - { - "id": "MVBus04987", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130536882601092, 49.10799691922555] - } - }, - { - "id": "MVLV03412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1309158792652, 49.106900762867234] - } - }, - { - "id": "MVLV07034", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13187267044615, 49.106548331341614] - } - }, - { - "id": "MVBus05272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130520028176319, 49.10797302424653] - } - }, - { - "id": "MVBus05273", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.134640189983407, 49.108157314591196] - } - }, - { - "id": "MVLV01263", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.133991777245086, 49.10719013339036] - } - }, - { - "id": "MVLV03413", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1340089537298175, 49.10725563511267] - } - }, - { - "id": "MVBus06246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13468194569207, 49.10821753395187] - } - }, - { - "id": "MVBus06247", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.133004271887047, 49.10856984554126] - } - }, - { - "id": "MVLV03414", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1330918699037185, 49.10872703870734] - } - }, - { - "id": "MVBus06404", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.132970170905764, 49.108610742012765] - } - }, - { - "id": "MVBus06405", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130642062379304, 49.10846441433993] - } - }, - { - "id": "MVBus06406", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130263519753087, 49.11003257521372] - } - }, - { - "id": "MVBus06407", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13054546862156, 49.11073282681292] - } - }, - { - "id": "MVBus06408", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130312098223946, 49.111434024604876] - } - }, - { - "id": "MVLV07791", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1316018628211864, 49.11104375646305] - } - }, - { - "id": "MVBus07055", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130323324546056, 49.11145020371014] - } - }, - { - "id": "MVLV09318", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1315118134130806, 49.1119505611383] - } - }, - { - "id": "MVLV14712", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.134965876166687, 49.111460293504116] - } - }, - { - "id": "MVLV14711", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1342700452937602, 49.11173576018305] - } - }, - { - "id": "MVLV09319", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.132262020484745, 49.11396037425162] - } - }, - { - "id": "MVBus09049", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13224498118458, 49.11399181282946] - } - }, - { - "id": "MVLV13031", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1364339543418398, 49.113451177884166] - } - }, - { - "id": "MVBus09523", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.132228909254047, 49.114009322801685] - } - }, - { - "id": "MVLV03410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1266887804672565, 49.11440224755239] - } - }, - { - "id": "MVLV17997", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.125978403645698, 49.11553831359176] - } - }, - { - "id": "MVBus10661", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.141032490555135, 49.112874190818054] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV24", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBranch47063", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV24", - "bus2": "MVBus03445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.122502301274675, 49.11336333911259], - [-1.122344662808787, 49.11344553394968], - [-1.122344662808787, 49.11344553394968], - [-1.122178248276865, 49.113553156919636], - [-1.122394405659547, 49.1137221776174], - [-1.122556506695437, 49.11372629668535], - [-1.123870876133732, 49.113367217043866], - [-1.123870876133732, 49.113367217043866] - ] - }, - "length": 0.157374575367922, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33323", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03445", - "bus2": "MVBus03446", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.123870876133732, 49.113367217043866], - [-1.123870876133732, 49.113367217043866], - [-1.126949426864055, 49.11248620315874], - [-1.129986870408272, 49.111634719143865], - [-1.129983353260803, 49.11159565121373], - [-1.130006000591707, 49.11141632481774], - [-1.130240662592236, 49.11108333199993], - [-1.130453200031668, 49.11078015694125], - [-1.130453200031668, 49.11078015694125] - ] - }, - "length": 0.5885938744082162, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39830", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03446", - "bus2": "MVLV17998", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130453200031668, 49.11078015694125], - [-1.130453200031668, 49.11078015694125], - [-1.130439394260748, 49.11071990890411], - [-1.130267340319085, 49.110163366601526], - [-1.130234572707299, 49.110173607133284], - [-1.13023245224106, 49.110160204207915], - [-1.1302244281285492, 49.110148550835596] - ] - }, - "length": 0.07407985403789215, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43862", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17998", - "bus2": "MVBus04986", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1302244281285492, 49.110148550835596], - [-1.130216404016038, 49.11013689746328], - [-1.13020723943181, 49.11013039035878], - [-1.130205432352078, 49.11012592761518], - [-1.130067982008692, 49.10978711302514], - [-1.130503413595942, 49.10889729610442], - [-1.130554237696906, 49.10842944451173], - [-1.130554237696906, 49.10842944451173] - ] - }, - "length": 0.19659511934477608, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04986", - "bus2": "MVBus04987", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130554237696906, 49.10842944451173], - [-1.130554237696906, 49.10842944451173], - [-1.130784011675479, 49.10829294443268], - [-1.130786254065524, 49.10810910887082], - [-1.130536882601092, 49.10799691922555], - [-1.130536882601092, 49.10799691922555] - ] - }, - "length": 0.0651426538253046, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47517", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04987", - "bus2": "MVLV03412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130536882601092, 49.10799691922555], - [-1.130536882601092, 49.10799691922555], - [-1.130560755067636, 49.107641080255185], - [-1.130580698440648, 49.10758275915819], - [-1.130731061460289, 49.10750650134283], - [-1.130890506055937, 49.10693373971603], - [-1.130902764883163, 49.10692372457062], - [-1.130918385316706, 49.106911750178625], - [-1.1309158792652, 49.106900762867234] - ] - }, - "length": 0.12806728975747192, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42524", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03412", - "bus2": "MVLV07034", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1309158792652, 49.106900762867234], - [-1.130916098185835, 49.1068824232141], - [-1.130907004420455, 49.10687492473673], - [-1.130898473235062, 49.10686703219391], - [-1.131006410483078, 49.106857652703084], - [-1.131151829979765, 49.10684298634093], - [-1.131247182939561, 49.106818411315906], - [-1.131440659881612, 49.10675404334872], - [-1.131631926394861, 49.10666985280215], - [-1.13187267044615, 49.106548331341614], - [-1.13187267044615, 49.106548331341614] - ] - }, - "length": 0.08313723421317573, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37042", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03412", - "bus2": "MVBus05272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1309158792652, 49.106900762867234], - [-1.130913154293059, 49.10690811520897], - [-1.130879599758308, 49.10691578847076], - [-1.130720715738181, 49.1074944430714], - [-1.130573945317239, 49.10757074966178], - [-1.130520028176319, 49.10797302424653], - [-1.130520028176319, 49.10797302424653] - ] - }, - "length": 0.1265649035855997, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34750", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05272", - "bus2": "MVBus05273", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130520028176319, 49.10797302424653], - [-1.130520028176319, 49.10797302424653], - [-1.130814673259255, 49.10806376366296], - [-1.130886747180674, 49.10832106903585], - [-1.131963266479544, 49.10853147634329], - [-1.133274293946837, 49.108551275340915], - [-1.134640189983407, 49.108157314591196], - [-1.134640189983407, 49.108157314591196] - ] - }, - "length": 0.33954123986204615, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37043", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05273", - "bus2": "MVLV01263", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.134640189983407, 49.108157314591196], - [-1.134640189983407, 49.108157314591196], - [-1.134703178160511, 49.10807199317653], - [-1.134659714435899, 49.1079866034313], - [-1.134461798848012, 49.107903230445594], - [-1.134301779050807, 49.10776676183317], - [-1.134156199581145, 49.1075085773023], - [-1.133977201773011, 49.10737018540545], - [-1.133942104914405, 49.10729692880476], - [-1.13394235168335, 49.10719210234898], - [-1.13395967434877, 49.10719138397101], - [-1.133983485572351, 49.10719038741877], - [-1.133991777245086, 49.10719013339036] - ] - }, - "length": 0.13089632690546296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47520", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01263", - "bus2": "MVLV03413", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133991777245086, 49.10719013339036], - [-1.134000068917821, 49.10718987936195], - [-1.134002939830688, 49.107203224533784], - [-1.134007792693569, 49.107225866257885], - [-1.13401064993758, 49.107239211825764], - [-1.1340089537298175, 49.10725563511267] - ] - }, - "length": 0.005540481233914797, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03413", - "bus2": "MVBus06246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1340089537298175, 49.10725563511267], - [-1.134007257522055, 49.10727205839958], - [-1.13400166684196, 49.10728465966686], - [-1.133998276368168, 49.10729229522629], - [-1.134040960525625, 49.107357578641555], - [-1.134208141585709, 49.10749035905515], - [-1.134361736640474, 49.10775710738378], - [-1.13452556716915, 49.107885262580254], - [-1.134723436779652, 49.107970597548785], - [-1.13477991209397, 49.10807689918363], - [-1.13468194569207, 49.10821753395187], - [-1.13468194569207, 49.10821753395187] - ] - }, - "length": 0.12672948365836864, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41244", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06246", - "bus2": "MVBus06247", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.13468194569207, 49.10821753395187], - [-1.13468194569207, 49.10821753395187], - [-1.133297396135859, 49.108575564392275], - [-1.133003513162977, 49.10856915699793], - [-1.133004271887047, 49.10856984554126], - [-1.133004271887047, 49.10856984554126] - ] - }, - "length": 0.1302124244386434, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40295", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06247", - "bus2": "MVLV03414", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133004271887047, 49.10856984554126], - [-1.133004271887047, 49.10856984554126], - [-1.133125092295313, 49.10867980424598], - [-1.133099367507921, 49.108710195379], - [-1.133100300898265, 49.10872365970012], - [-1.1330918699037185, 49.10872703870734] - ] - }, - "length": 0.020444027554901663, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43864", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03414", - "bus2": "MVBus06404", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1330918699037185, 49.10872703870734], - [-1.133083438909172, 49.10873041771456], - [-1.133065629860617, 49.10872371180187], - [-1.13308107634035, 49.108697342382285], - [-1.132947040111755, 49.10856546112813], - [-1.132970170905764, 49.108610742012765], - [-1.132970170905764, 49.108610742012765] - ] - }, - "length": 0.027584319044840308, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06404", - "bus2": "MVBus06405", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132970170905764, 49.108610742012765], - [-1.132970170905764, 49.108610742012765], - [-1.132580802709948, 49.10862393087496], - [-1.132086374987822, 49.10859096588674], - [-1.130850374684556, 49.108329633408154], - [-1.130642062379304, 49.10846441433993], - [-1.130642062379304, 49.10846441433993] - ] - }, - "length": 0.1809143110905235, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35920", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06405", - "bus2": "MVBus06406", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130642062379304, 49.10846441433993], - [-1.130642062379304, 49.10846441433993], - [-1.130616409698243, 49.10878929249692], - [-1.130182294487445, 49.1097746536154], - [-1.130263519753087, 49.11003257521372], - [-1.130263519753087, 49.11003257521372] - ] - }, - "length": 0.17954486915604917, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37041", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06406", - "bus2": "MVBus06407", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130263519753087, 49.11003257521372], - [-1.130263519753087, 49.11003257521372], - [-1.130312465623924, 49.11006387794788], - [-1.13054546862156, 49.11073282681292], - [-1.13054546862156, 49.11073282681292] - ] - }, - "length": 0.08130416864677811, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35919", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06407", - "bus2": "MVBus06408", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.13054546862156, 49.11073282681292], - [-1.13054546862156, 49.11073282681292], - [-1.130301016864691, 49.111072175210424], - [-1.130185204432873, 49.1112467810317], - [-1.130297515701403, 49.11141072038583], - [-1.130312098223946, 49.111434024604876], - [-1.130312098223946, 49.111434024604876] - ] - }, - "length": 0.08571897747858663, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43433", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06408", - "bus2": "MVLV07791", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130312098223946, 49.111434024604876], - [-1.130312098223946, 49.111434024604876], - [-1.130415471902968, 49.11141694422943], - [-1.131393878963113, 49.11113548219991], - [-1.131436779641228, 49.11110213828243], - [-1.131550661778249, 49.11106592736453], - [-1.131558498900107, 49.11105839687375], - [-1.131554927270695, 49.111042571615975], - [-1.13156664528313, 49.11103366943692], - [-1.131584623347782, 49.11103534290007], - [-1.131603387466545, 49.111037092511594], - [-1.1316018628211864, 49.11104375646305] - ] - }, - "length": 0.10667568759828626, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37269", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07791", - "bus2": "MVBus07055", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1316018628211864, 49.11104375646305], - [-1.131600338175828, 49.11105042041451], - [-1.131583011834839, 49.11104886297554], - [-1.131571323397537, 49.111047816676184], - [-1.13156769317976, 49.11105128574849], - [-1.131573134585954, 49.11106822605716], - [-1.131564525334444, 49.11107649846914], - [-1.131449650031959, 49.1111130170085], - [-1.131406489157682, 49.11114656634528], - [-1.130420703499477, 49.111430158051434], - [-1.130323324546056, 49.11145020371014], - [-1.130323324546056, 49.11145020371014] - ] - }, - "length": 0.10587671624338621, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45493", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07055", - "bus2": "MVLV09318", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130323324546056, 49.11145020371014], - [-1.130323324546056, 49.11145020371014], - [-1.130362726892551, 49.11151437802733], - [-1.130033770527538, 49.11160358041416], - [-1.130076738219629, 49.11186424718036], - [-1.130207850471553, 49.1120718304157], - [-1.130351754043072, 49.112109789655726], - [-1.131419086781041, 49.11194455595076], - [-1.131473689174294, 49.11195379333402], - [-1.131494167471122, 49.11195474676352], - [-1.1315118134130806, 49.1119505611383] - ] - }, - "length": 0.18482834408613613, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40293", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09318", - "bus2": "MVLV14712", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1315118134130806, 49.1119505611383], - [-1.131529459355039, 49.111946375513085], - [-1.131535663569615, 49.11194247206738], - [-1.131547056206928, 49.11194013612598], - [-1.133721598931606, 49.11149465846081], - [-1.134802815074063, 49.1114061258013], - [-1.134948273645958, 49.11145270492194], - [-1.134966729276507, 49.11145861830661], - [-1.134965876166687, 49.111460293504116] - ] - }, - "length": 0.2606729615617879, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34751", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14712", - "bus2": "MVLV14711", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.134965876166687, 49.111460293504116], - [-1.134965023056867, 49.111461968701626], - [-1.13494486180883, 49.11145941468818], - [-1.134790094903241, 49.111439818546195], - [-1.1336814754295, 49.111548078761565], - [-1.133377745064499, 49.11161669055667], - [-1.133421847341906, 49.11167837117484], - [-1.134253686403172, 49.111709908592964], - [-1.134262068868588, 49.11171760734145], - [-1.134274014403656, 49.111728575568506], - [-1.1342700452937602, 49.11173576018305] - ] - }, - "length": 0.18924834087506856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40294", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14711", - "bus2": "MVLV09319", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1342700452937602, 49.11173576018305], - [-1.134266076183864, 49.1117429447976], - [-1.134246206095352, 49.111746345401], - [-1.134241221782386, 49.11174720053551], - [-1.133378837135625, 49.11171027990816], - [-1.133302762125434, 49.11164235811719], - [-1.130338889868551, 49.11220190343956], - [-1.130341862329378, 49.11234269374271], - [-1.130577053980169, 49.113287916239344], - [-1.13066830803145, 49.113972762222275], - [-1.130691143183134, 49.114074355632155], - [-1.132192717813637, 49.11401554368424], - [-1.132198328779046, 49.11400872530224], - [-1.132242052613226, 49.113967019736364], - [-1.132252108039428, 49.113957428203584], - [-1.132262020484745, 49.11396037425162] - ] - }, - "length": 0.6271520819798866, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47060", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09319", - "bus2": "MVBus09049", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132262020484745, 49.11396037425162], - [-1.132271932930062, 49.11396332029966], - [-1.13226381870878, 49.11397569772816], - [-1.13224498118458, 49.11399181282946], - [-1.13224498118458, 49.11399181282946] - ] - }, - "length": 0.0037575964027371745, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38884", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09049", - "bus2": "MVLV13031", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.13224498118458, 49.11399181282946], - [-1.13224498118458, 49.11399181282946], - [-1.132409183922345, 49.11395850470208], - [-1.132549172885966, 49.11395426614106], - [-1.133569941935581, 49.11390306206766], - [-1.134184236873158, 49.113758902834284], - [-1.135354619179537, 49.11348428888239], - [-1.136012425316793, 49.1134081579428], - [-1.136340945566205, 49.113364723651216], - [-1.136404913064509, 49.11343383149391], - [-1.136418270671658, 49.11344825728706], - [-1.1364339543418398, 49.113451177884166] - ] - }, - "length": 0.31998005680489433, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46278", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13031", - "bus2": "MVBus09523", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1364339543418398, 49.113451177884166], - [-1.136407694678695, 49.113463125939106], - [-1.136393734834821, 49.11344769228215], - [-1.13633295278543, 49.11338051567912], - [-1.136060190493446, 49.11341389509389], - [-1.135355543949287, 49.1134974116172], - [-1.134104358374749, 49.11378882313603], - [-1.133570357384471, 49.113909031175744], - [-1.133025663563272, 49.113942248938095], - [-1.132228909254047, 49.114009322801685], - [-1.132228909254047, 49.114009322801685] - ] - }, - "length": 0.3199311641698213, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37843", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09523", - "bus2": "MVLV03410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132228909254047, 49.114009322801685], - [-1.132228909254047, 49.114009322801685], - [-1.132230174526184, 49.11404238482505], - [-1.130698573388899, 49.114084195842096], - [-1.130628019938902, 49.114134035511405], - [-1.130625650581823, 49.11419802597629], - [-1.130035675768794, 49.1142329648183], - [-1.129839685614512, 49.11439102264389], - [-1.129670193197206, 49.11441865214423], - [-1.129674075512244, 49.1148650475095], - [-1.129530616934719, 49.11485317559845], - [-1.129523031883221, 49.114920923717094], - [-1.126788881145896, 49.11457345506428], - [-1.126709876767994, 49.114419018195164], - [-1.126706531133983, 49.1144057226948], - [-1.1266887804672565, 49.11440224755239] - ] - }, - "length": 0.4996150453081294, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41241", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03410", - "bus2": "MVLV17997", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1266887804672565, 49.11440224755239], - [-1.12667102980053, 49.11439877240999], - [-1.126660475054749, 49.11441032962753], - [-1.126645679026762, 49.11441851086582], - [-1.126641665099044, 49.114461763139104], - [-1.126522164301736, 49.114462622555], - [-1.126403207886791, 49.114492598245675], - [-1.126377640700086, 49.11462049790831], - [-1.126456179197633, 49.11464581901107], - [-1.12648252580882, 49.11466660653692], - [-1.12650779203553, 49.11471027054055], - [-1.126511584580985, 49.114757146364234], - [-1.126446472833783, 49.11497069081174], - [-1.126416956456836, 49.1150004253635], - [-1.126396878152652, 49.1151039717789], - [-1.126407901147935, 49.11512957397138], - [-1.126297403234112, 49.1154595211899], - [-1.126283236490153, 49.11547728093473], - [-1.126263392947615, 49.11549089675552], - [-1.126232532272765, 49.115500622133055], - [-1.126200315450574, 49.115503416265874], - [-1.125998833709996, 49.115475284867934], - [-1.125986291554672, 49.115513971966365], - [-1.125985100433518, 49.115517658067425], - [-1.125978403645698, 49.11553831359176], - [-1.125978403645698, 49.11553831359176] - ] - }, - "length": 0.17161761950768745, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39387", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13031", - "bus2": "MVBus10661", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1364339543418398, 49.113451177884166], - [-1.136475897675167, 49.11344215042633], - [-1.13647164413238, 49.11342415949396], - [-1.136453452026322, 49.11334731909719], - [-1.136559921855146, 49.113334676725174], - [-1.136898760185647, 49.113297372249555], - [-1.137185045594345, 49.11326278879473], - [-1.137367327527038, 49.113229461470354], - [-1.137465692625822, 49.11320451561277], - [-1.137557190110004, 49.11317199804846], - [-1.137638063405154, 49.11313024600273], - [-1.137872121105293, 49.112986107369444], - [-1.138341833630575, 49.11264047078319], - [-1.138463981635524, 49.112563476121196], - [-1.138583961238423, 49.11261612456228], - [-1.138955841557934, 49.112627412726674], - [-1.139537534275386, 49.11266869828361], - [-1.139933414194787, 49.112646987775065], - [-1.140062912495784, 49.112636973991194], - [-1.140196481500532, 49.11261641742565], - [-1.140338908948239, 49.11258622226776], - [-1.140449363478333, 49.11258556684479], - [-1.14052231612736, 49.11259584988783], - [-1.140598296445898, 49.11261466140601], - [-1.140668357532843, 49.112655204160816], - [-1.140866865039198, 49.11282005619467], - [-1.141032490555135, 49.112874190818054], - [-1.141032490555135, 49.112874190818054] - ] - }, - "length": 0.39186115109558195, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV17998_production", - "bus": "MVLV17998", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV17998_consumption", - "bus": "MVLV17998", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV03412_production", - "bus": "MVLV03412", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV03412_consumption", - "bus": "MVLV03412", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV07034_production", - "bus": "MVLV07034", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV07034_consumption", - "bus": "MVLV07034", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV01263_production", - "bus": "MVLV01263", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV01263_consumption", - "bus": "MVLV01263", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV03413_production", - "bus": "MVLV03413", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV03413_consumption", - "bus": "MVLV03413", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV03414_production", - "bus": "MVLV03414", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV03414_consumption", - "bus": "MVLV03414", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV07791_production", - "bus": "MVLV07791", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV07791_consumption", - "bus": "MVLV07791", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV09318_production", - "bus": "MVLV09318", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV09318_consumption", - "bus": "MVLV09318", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV14712_production", - "bus": "MVLV14712", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV14712_consumption", - "bus": "MVLV14712", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV14711_production", - "bus": "MVLV14711", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV14711_consumption", - "bus": "MVLV14711", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV09319_production", - "bus": "MVLV09319", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV09319_consumption", - "bus": "MVLV09319", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV13031_production", - "bus": "MVLV13031", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV13031_consumption", - "bus": "MVLV13031", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV03410_production", - "bus": "MVLV03410", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV03410_consumption", - "bus": "MVLV03410", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - }, - { - "id": "MVLV17997_production", - "bus": "MVLV17997", - "phases": "abc", - "powers": [ - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0], - [-1035.1333333333334, 0.0] - ] - }, - { - "id": "MVLV17997_consumption", - "bus": "MVLV17997", - "phases": "abc", - "powers": [ - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363], - [12070.075482817978, 3967.241959511363] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/data/MVFeeder339_winter.json b/data/MVFeeder339_winter.json deleted file mode 100644 index 156b7be1..00000000 --- a/data/MVFeeder339_winter.json +++ /dev/null @@ -1,1486 +0,0 @@ -{ - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": "VoltageSource", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": "VoltageSource", - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "HVMV24", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBus03445", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.123870876133732, 49.113367217043866] - } - }, - { - "id": "MVBus03446", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130453200031668, 49.11078015694125] - } - }, - { - "id": "MVLV17998", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1302244281285492, 49.110148550835596] - } - }, - { - "id": "MVBus04986", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130554237696906, 49.10842944451173] - } - }, - { - "id": "MVBus04987", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130536882601092, 49.10799691922555] - } - }, - { - "id": "MVLV03412", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1309158792652, 49.106900762867234] - } - }, - { - "id": "MVLV07034", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13187267044615, 49.106548331341614] - } - }, - { - "id": "MVBus05272", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130520028176319, 49.10797302424653] - } - }, - { - "id": "MVBus05273", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.134640189983407, 49.108157314591196] - } - }, - { - "id": "MVLV01263", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.133991777245086, 49.10719013339036] - } - }, - { - "id": "MVLV03413", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1340089537298175, 49.10725563511267] - } - }, - { - "id": "MVBus06246", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13468194569207, 49.10821753395187] - } - }, - { - "id": "MVBus06247", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.133004271887047, 49.10856984554126] - } - }, - { - "id": "MVLV03414", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1330918699037185, 49.10872703870734] - } - }, - { - "id": "MVBus06404", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.132970170905764, 49.108610742012765] - } - }, - { - "id": "MVBus06405", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130642062379304, 49.10846441433993] - } - }, - { - "id": "MVBus06406", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130263519753087, 49.11003257521372] - } - }, - { - "id": "MVBus06407", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13054546862156, 49.11073282681292] - } - }, - { - "id": "MVBus06408", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130312098223946, 49.111434024604876] - } - }, - { - "id": "MVLV07791", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1316018628211864, 49.11104375646305] - } - }, - { - "id": "MVBus07055", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.130323324546056, 49.11145020371014] - } - }, - { - "id": "MVLV09318", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1315118134130806, 49.1119505611383] - } - }, - { - "id": "MVLV14712", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.134965876166687, 49.111460293504116] - } - }, - { - "id": "MVLV14711", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1342700452937602, 49.11173576018305] - } - }, - { - "id": "MVLV09319", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.132262020484745, 49.11396037425162] - } - }, - { - "id": "MVBus09049", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.13224498118458, 49.11399181282946] - } - }, - { - "id": "MVLV13031", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1364339543418398, 49.113451177884166] - } - }, - { - "id": "MVBus09523", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.132228909254047, 49.114009322801685] - } - }, - { - "id": "MVLV03410", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.1266887804672565, 49.11440224755239] - } - }, - { - "id": "MVLV17997", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.125978403645698, 49.11553831359176] - } - }, - { - "id": "MVBus10661", - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.141032490555135, 49.112874190818054] - } - } - ], - "branches": [ - { - "id": "Switch", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": "VoltageSource", - "bus2": "HVMV24", - "geometry": { - "type": "Point", - "coordinates": [-1.122502301274675, 49.11336333911259] - } - }, - { - "id": "MVBranch47063", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "HVMV24", - "bus2": "MVBus03445", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.122502301274675, 49.11336333911259], - [-1.122344662808787, 49.11344553394968], - [-1.122344662808787, 49.11344553394968], - [-1.122178248276865, 49.113553156919636], - [-1.122394405659547, 49.1137221776174], - [-1.122556506695437, 49.11372629668535], - [-1.123870876133732, 49.113367217043866], - [-1.123870876133732, 49.113367217043866] - ] - }, - "length": 0.157374575367922, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch33323", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03445", - "bus2": "MVBus03446", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.123870876133732, 49.113367217043866], - [-1.123870876133732, 49.113367217043866], - [-1.126949426864055, 49.11248620315874], - [-1.129986870408272, 49.111634719143865], - [-1.129983353260803, 49.11159565121373], - [-1.130006000591707, 49.11141632481774], - [-1.130240662592236, 49.11108333199993], - [-1.130453200031668, 49.11078015694125], - [-1.130453200031668, 49.11078015694125] - ] - }, - "length": 0.5885938744082162, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39830", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus03446", - "bus2": "MVLV17998", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130453200031668, 49.11078015694125], - [-1.130453200031668, 49.11078015694125], - [-1.130439394260748, 49.11071990890411], - [-1.130267340319085, 49.110163366601526], - [-1.130234572707299, 49.110173607133284], - [-1.13023245224106, 49.110160204207915], - [-1.1302244281285492, 49.110148550835596] - ] - }, - "length": 0.07407985403789215, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43862", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV17998", - "bus2": "MVBus04986", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1302244281285492, 49.110148550835596], - [-1.130216404016038, 49.11013689746328], - [-1.13020723943181, 49.11013039035878], - [-1.130205432352078, 49.11012592761518], - [-1.130067982008692, 49.10978711302514], - [-1.130503413595942, 49.10889729610442], - [-1.130554237696906, 49.10842944451173], - [-1.130554237696906, 49.10842944451173] - ] - }, - "length": 0.19659511934477608, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40292", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04986", - "bus2": "MVBus04987", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130554237696906, 49.10842944451173], - [-1.130554237696906, 49.10842944451173], - [-1.130784011675479, 49.10829294443268], - [-1.130786254065524, 49.10810910887082], - [-1.130536882601092, 49.10799691922555], - [-1.130536882601092, 49.10799691922555] - ] - }, - "length": 0.0651426538253046, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47517", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus04987", - "bus2": "MVLV03412", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130536882601092, 49.10799691922555], - [-1.130536882601092, 49.10799691922555], - [-1.130560755067636, 49.107641080255185], - [-1.130580698440648, 49.10758275915819], - [-1.130731061460289, 49.10750650134283], - [-1.130890506055937, 49.10693373971603], - [-1.130902764883163, 49.10692372457062], - [-1.130918385316706, 49.106911750178625], - [-1.1309158792652, 49.106900762867234] - ] - }, - "length": 0.12806728975747192, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch42524", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03412", - "bus2": "MVLV07034", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1309158792652, 49.106900762867234], - [-1.130916098185835, 49.1068824232141], - [-1.130907004420455, 49.10687492473673], - [-1.130898473235062, 49.10686703219391], - [-1.131006410483078, 49.106857652703084], - [-1.131151829979765, 49.10684298634093], - [-1.131247182939561, 49.106818411315906], - [-1.131440659881612, 49.10675404334872], - [-1.131631926394861, 49.10666985280215], - [-1.13187267044615, 49.106548331341614], - [-1.13187267044615, 49.106548331341614] - ] - }, - "length": 0.08313723421317573, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37042", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03412", - "bus2": "MVBus05272", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1309158792652, 49.106900762867234], - [-1.130913154293059, 49.10690811520897], - [-1.130879599758308, 49.10691578847076], - [-1.130720715738181, 49.1074944430714], - [-1.130573945317239, 49.10757074966178], - [-1.130520028176319, 49.10797302424653], - [-1.130520028176319, 49.10797302424653] - ] - }, - "length": 0.1265649035855997, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34750", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05272", - "bus2": "MVBus05273", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130520028176319, 49.10797302424653], - [-1.130520028176319, 49.10797302424653], - [-1.130814673259255, 49.10806376366296], - [-1.130886747180674, 49.10832106903585], - [-1.131963266479544, 49.10853147634329], - [-1.133274293946837, 49.108551275340915], - [-1.134640189983407, 49.108157314591196], - [-1.134640189983407, 49.108157314591196] - ] - }, - "length": 0.33954123986204615, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37043", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus05273", - "bus2": "MVLV01263", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.134640189983407, 49.108157314591196], - [-1.134640189983407, 49.108157314591196], - [-1.134703178160511, 49.10807199317653], - [-1.134659714435899, 49.1079866034313], - [-1.134461798848012, 49.107903230445594], - [-1.134301779050807, 49.10776676183317], - [-1.134156199581145, 49.1075085773023], - [-1.133977201773011, 49.10737018540545], - [-1.133942104914405, 49.10729692880476], - [-1.13394235168335, 49.10719210234898], - [-1.13395967434877, 49.10719138397101], - [-1.133983485572351, 49.10719038741877], - [-1.133991777245086, 49.10719013339036] - ] - }, - "length": 0.13089632690546296, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47520", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV01263", - "bus2": "MVLV03413", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133991777245086, 49.10719013339036], - [-1.134000068917821, 49.10718987936195], - [-1.134002939830688, 49.107203224533784], - [-1.134007792693569, 49.107225866257885], - [-1.13401064993758, 49.107239211825764], - [-1.1340089537298175, 49.10725563511267] - ] - }, - "length": 0.005540481233914797, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03413", - "bus2": "MVBus06246", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1340089537298175, 49.10725563511267], - [-1.134007257522055, 49.10727205839958], - [-1.13400166684196, 49.10728465966686], - [-1.133998276368168, 49.10729229522629], - [-1.134040960525625, 49.107357578641555], - [-1.134208141585709, 49.10749035905515], - [-1.134361736640474, 49.10775710738378], - [-1.13452556716915, 49.107885262580254], - [-1.134723436779652, 49.107970597548785], - [-1.13477991209397, 49.10807689918363], - [-1.13468194569207, 49.10821753395187], - [-1.13468194569207, 49.10821753395187] - ] - }, - "length": 0.12672948365836864, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41244", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06246", - "bus2": "MVBus06247", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.13468194569207, 49.10821753395187], - [-1.13468194569207, 49.10821753395187], - [-1.133297396135859, 49.108575564392275], - [-1.133003513162977, 49.10856915699793], - [-1.133004271887047, 49.10856984554126], - [-1.133004271887047, 49.10856984554126] - ] - }, - "length": 0.1302124244386434, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40295", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06247", - "bus2": "MVLV03414", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.133004271887047, 49.10856984554126], - [-1.133004271887047, 49.10856984554126], - [-1.133125092295313, 49.10867980424598], - [-1.133099367507921, 49.108710195379], - [-1.133100300898265, 49.10872365970012], - [-1.1330918699037185, 49.10872703870734] - ] - }, - "length": 0.020444027554901663, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43864", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03414", - "bus2": "MVBus06404", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1330918699037185, 49.10872703870734], - [-1.133083438909172, 49.10873041771456], - [-1.133065629860617, 49.10872371180187], - [-1.13308107634035, 49.108697342382285], - [-1.132947040111755, 49.10856546112813], - [-1.132970170905764, 49.108610742012765], - [-1.132970170905764, 49.108610742012765] - ] - }, - "length": 0.027584319044840308, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06404", - "bus2": "MVBus06405", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132970170905764, 49.108610742012765], - [-1.132970170905764, 49.108610742012765], - [-1.132580802709948, 49.10862393087496], - [-1.132086374987822, 49.10859096588674], - [-1.130850374684556, 49.108329633408154], - [-1.130642062379304, 49.10846441433993], - [-1.130642062379304, 49.10846441433993] - ] - }, - "length": 0.1809143110905235, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35920", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06405", - "bus2": "MVBus06406", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130642062379304, 49.10846441433993], - [-1.130642062379304, 49.10846441433993], - [-1.130616409698243, 49.10878929249692], - [-1.130182294487445, 49.1097746536154], - [-1.130263519753087, 49.11003257521372], - [-1.130263519753087, 49.11003257521372] - ] - }, - "length": 0.17954486915604917, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37041", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06406", - "bus2": "MVBus06407", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130263519753087, 49.11003257521372], - [-1.130263519753087, 49.11003257521372], - [-1.130312465623924, 49.11006387794788], - [-1.13054546862156, 49.11073282681292], - [-1.13054546862156, 49.11073282681292] - ] - }, - "length": 0.08130416864677811, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch35919", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06407", - "bus2": "MVBus06408", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.13054546862156, 49.11073282681292], - [-1.13054546862156, 49.11073282681292], - [-1.130301016864691, 49.111072175210424], - [-1.130185204432873, 49.1112467810317], - [-1.130297515701403, 49.11141072038583], - [-1.130312098223946, 49.111434024604876], - [-1.130312098223946, 49.111434024604876] - ] - }, - "length": 0.08571897747858663, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch43433", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus06408", - "bus2": "MVLV07791", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130312098223946, 49.111434024604876], - [-1.130312098223946, 49.111434024604876], - [-1.130415471902968, 49.11141694422943], - [-1.131393878963113, 49.11113548219991], - [-1.131436779641228, 49.11110213828243], - [-1.131550661778249, 49.11106592736453], - [-1.131558498900107, 49.11105839687375], - [-1.131554927270695, 49.111042571615975], - [-1.13156664528313, 49.11103366943692], - [-1.131584623347782, 49.11103534290007], - [-1.131603387466545, 49.111037092511594], - [-1.1316018628211864, 49.11104375646305] - ] - }, - "length": 0.10667568759828626, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37269", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV07791", - "bus2": "MVBus07055", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1316018628211864, 49.11104375646305], - [-1.131600338175828, 49.11105042041451], - [-1.131583011834839, 49.11104886297554], - [-1.131571323397537, 49.111047816676184], - [-1.13156769317976, 49.11105128574849], - [-1.131573134585954, 49.11106822605716], - [-1.131564525334444, 49.11107649846914], - [-1.131449650031959, 49.1111130170085], - [-1.131406489157682, 49.11114656634528], - [-1.130420703499477, 49.111430158051434], - [-1.130323324546056, 49.11145020371014], - [-1.130323324546056, 49.11145020371014] - ] - }, - "length": 0.10587671624338621, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch45493", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus07055", - "bus2": "MVLV09318", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.130323324546056, 49.11145020371014], - [-1.130323324546056, 49.11145020371014], - [-1.130362726892551, 49.11151437802733], - [-1.130033770527538, 49.11160358041416], - [-1.130076738219629, 49.11186424718036], - [-1.130207850471553, 49.1120718304157], - [-1.130351754043072, 49.112109789655726], - [-1.131419086781041, 49.11194455595076], - [-1.131473689174294, 49.11195379333402], - [-1.131494167471122, 49.11195474676352], - [-1.1315118134130806, 49.1119505611383] - ] - }, - "length": 0.18482834408613613, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40293", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09318", - "bus2": "MVLV14712", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1315118134130806, 49.1119505611383], - [-1.131529459355039, 49.111946375513085], - [-1.131535663569615, 49.11194247206738], - [-1.131547056206928, 49.11194013612598], - [-1.133721598931606, 49.11149465846081], - [-1.134802815074063, 49.1114061258013], - [-1.134948273645958, 49.11145270492194], - [-1.134966729276507, 49.11145861830661], - [-1.134965876166687, 49.111460293504116] - ] - }, - "length": 0.2606729615617879, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch34751", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14712", - "bus2": "MVLV14711", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.134965876166687, 49.111460293504116], - [-1.134965023056867, 49.111461968701626], - [-1.13494486180883, 49.11145941468818], - [-1.134790094903241, 49.111439818546195], - [-1.1336814754295, 49.111548078761565], - [-1.133377745064499, 49.11161669055667], - [-1.133421847341906, 49.11167837117484], - [-1.134253686403172, 49.111709908592964], - [-1.134262068868588, 49.11171760734145], - [-1.134274014403656, 49.111728575568506], - [-1.1342700452937602, 49.11173576018305] - ] - }, - "length": 0.18924834087506856, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch40294", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV14711", - "bus2": "MVLV09319", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1342700452937602, 49.11173576018305], - [-1.134266076183864, 49.1117429447976], - [-1.134246206095352, 49.111746345401], - [-1.134241221782386, 49.11174720053551], - [-1.133378837135625, 49.11171027990816], - [-1.133302762125434, 49.11164235811719], - [-1.130338889868551, 49.11220190343956], - [-1.130341862329378, 49.11234269374271], - [-1.130577053980169, 49.113287916239344], - [-1.13066830803145, 49.113972762222275], - [-1.130691143183134, 49.114074355632155], - [-1.132192717813637, 49.11401554368424], - [-1.132198328779046, 49.11400872530224], - [-1.132242052613226, 49.113967019736364], - [-1.132252108039428, 49.113957428203584], - [-1.132262020484745, 49.11396037425162] - ] - }, - "length": 0.6271520819798866, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch47060", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV09319", - "bus2": "MVBus09049", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132262020484745, 49.11396037425162], - [-1.132271932930062, 49.11396332029966], - [-1.13226381870878, 49.11397569772816], - [-1.13224498118458, 49.11399181282946], - [-1.13224498118458, 49.11399181282946] - ] - }, - "length": 0.0037575964027371745, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch38884", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09049", - "bus2": "MVLV13031", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.13224498118458, 49.11399181282946], - [-1.13224498118458, 49.11399181282946], - [-1.132409183922345, 49.11395850470208], - [-1.132549172885966, 49.11395426614106], - [-1.133569941935581, 49.11390306206766], - [-1.134184236873158, 49.113758902834284], - [-1.135354619179537, 49.11348428888239], - [-1.136012425316793, 49.1134081579428], - [-1.136340945566205, 49.113364723651216], - [-1.136404913064509, 49.11343383149391], - [-1.136418270671658, 49.11344825728706], - [-1.1364339543418398, 49.113451177884166] - ] - }, - "length": 0.31998005680489433, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch46278", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13031", - "bus2": "MVBus09523", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1364339543418398, 49.113451177884166], - [-1.136407694678695, 49.113463125939106], - [-1.136393734834821, 49.11344769228215], - [-1.13633295278543, 49.11338051567912], - [-1.136060190493446, 49.11341389509389], - [-1.135355543949287, 49.1134974116172], - [-1.134104358374749, 49.11378882313603], - [-1.133570357384471, 49.113909031175744], - [-1.133025663563272, 49.113942248938095], - [-1.132228909254047, 49.114009322801685], - [-1.132228909254047, 49.114009322801685] - ] - }, - "length": 0.3199311641698213, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch37843", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVBus09523", - "bus2": "MVLV03410", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.132228909254047, 49.114009322801685], - [-1.132228909254047, 49.114009322801685], - [-1.132230174526184, 49.11404238482505], - [-1.130698573388899, 49.114084195842096], - [-1.130628019938902, 49.114134035511405], - [-1.130625650581823, 49.11419802597629], - [-1.130035675768794, 49.1142329648183], - [-1.129839685614512, 49.11439102264389], - [-1.129670193197206, 49.11441865214423], - [-1.129674075512244, 49.1148650475095], - [-1.129530616934719, 49.11485317559845], - [-1.129523031883221, 49.114920923717094], - [-1.126788881145896, 49.11457345506428], - [-1.126709876767994, 49.114419018195164], - [-1.126706531133983, 49.1144057226948], - [-1.1266887804672565, 49.11440224755239] - ] - }, - "length": 0.4996150453081294, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch41241", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV03410", - "bus2": "MVLV17997", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1266887804672565, 49.11440224755239], - [-1.12667102980053, 49.11439877240999], - [-1.126660475054749, 49.11441032962753], - [-1.126645679026762, 49.11441851086582], - [-1.126641665099044, 49.114461763139104], - [-1.126522164301736, 49.114462622555], - [-1.126403207886791, 49.114492598245675], - [-1.126377640700086, 49.11462049790831], - [-1.126456179197633, 49.11464581901107], - [-1.12648252580882, 49.11466660653692], - [-1.12650779203553, 49.11471027054055], - [-1.126511584580985, 49.114757146364234], - [-1.126446472833783, 49.11497069081174], - [-1.126416956456836, 49.1150004253635], - [-1.126396878152652, 49.1151039717789], - [-1.126407901147935, 49.11512957397138], - [-1.126297403234112, 49.1154595211899], - [-1.126283236490153, 49.11547728093473], - [-1.126263392947615, 49.11549089675552], - [-1.126232532272765, 49.115500622133055], - [-1.126200315450574, 49.115503416265874], - [-1.125998833709996, 49.115475284867934], - [-1.125986291554672, 49.115513971966365], - [-1.125985100433518, 49.115517658067425], - [-1.125978403645698, 49.11553831359176], - [-1.125978403645698, 49.11553831359176] - ] - }, - "length": 0.17161761950768745, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "MVBranch39387", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "MVLV13031", - "bus2": "MVBus10661", - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.1364339543418398, 49.113451177884166], - [-1.136475897675167, 49.11344215042633], - [-1.13647164413238, 49.11342415949396], - [-1.136453452026322, 49.11334731909719], - [-1.136559921855146, 49.113334676725174], - [-1.136898760185647, 49.113297372249555], - [-1.137185045594345, 49.11326278879473], - [-1.137367327527038, 49.113229461470354], - [-1.137465692625822, 49.11320451561277], - [-1.137557190110004, 49.11317199804846], - [-1.137638063405154, 49.11313024600273], - [-1.137872121105293, 49.112986107369444], - [-1.138341833630575, 49.11264047078319], - [-1.138463981635524, 49.112563476121196], - [-1.138583961238423, 49.11261612456228], - [-1.138955841557934, 49.112627412726674], - [-1.139537534275386, 49.11266869828361], - [-1.139933414194787, 49.112646987775065], - [-1.140062912495784, 49.112636973991194], - [-1.140196481500532, 49.11261641742565], - [-1.140338908948239, 49.11258622226776], - [-1.140449363478333, 49.11258556684479], - [-1.14052231612736, 49.11259584988783], - [-1.140598296445898, 49.11261466140601], - [-1.140668357532843, 49.112655204160816], - [-1.140866865039198, 49.11282005619467], - [-1.141032490555135, 49.112874190818054], - [-1.141032490555135, 49.112874190818054] - ] - }, - "length": 0.39186115109558195, - "params_id": "S_AL_150", - "ground": "ground" - } - ], - "loads": [ - { - "id": "MVLV17998_production", - "bus": "MVLV17998", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17998_consumption", - "bus": "MVLV17998", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV03412_production", - "bus": "MVLV03412", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03412_consumption", - "bus": "MVLV03412", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV07034_production", - "bus": "MVLV07034", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07034_consumption", - "bus": "MVLV07034", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV01263_production", - "bus": "MVLV01263", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV01263_consumption", - "bus": "MVLV01263", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV03413_production", - "bus": "MVLV03413", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03413_consumption", - "bus": "MVLV03413", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV03414_production", - "bus": "MVLV03414", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03414_consumption", - "bus": "MVLV03414", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV07791_production", - "bus": "MVLV07791", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV07791_consumption", - "bus": "MVLV07791", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV09318_production", - "bus": "MVLV09318", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09318_consumption", - "bus": "MVLV09318", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV14712_production", - "bus": "MVLV14712", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14712_consumption", - "bus": "MVLV14712", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV14711_production", - "bus": "MVLV14711", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV14711_consumption", - "bus": "MVLV14711", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV09319_production", - "bus": "MVLV09319", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV09319_consumption", - "bus": "MVLV09319", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV13031_production", - "bus": "MVLV13031", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV13031_consumption", - "bus": "MVLV13031", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV03410_production", - "bus": "MVLV03410", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV03410_consumption", - "bus": "MVLV03410", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - }, - { - "id": "MVLV17997_production", - "bus": "MVLV17997", - "phases": "abc", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "MVLV17997_consumption", - "bus": "MVLV17997", - "phases": "abc", - "powers": [ - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814], - [60350.37741408989, 19836.209797556814] - ] - } - ], - "sources": [ - { - "id": "VoltageSource", - "bus": "VoltageSource", - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896255, -10000.0], - [-5773.502691896255, 10000.0] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.19999999999999998, - 0.0, - 0.0 - ], - [ - 0.0, - 0.19999999999999998, - 0.0 - ], - [ - 0.0, - 0.0, - 0.19999999999999998 - ] - ], - [ - [ - 0.1, - 0.0, - 0.0 - ], - [ - 0.0, - 0.1, - 0.0 - ], - [ - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.00014105751014618172, - 0.0, - 0.0 - ], - [ - 0.0, - 0.00014105751014618172, - 0.0 - ], - [ - 0.0, - 0.0, - 0.00014105751014618172 - ] - ] - ] - } - ], - "transformers_params": [] -} diff --git a/doc/Bibliography.bib b/doc/Bibliography.bib new file mode 100644 index 00000000..85fd2b2a --- /dev/null +++ b/doc/Bibliography.bib @@ -0,0 +1,31 @@ +@article{Klimek_2020, + doi = {10.21468/scipostphys.9.4.053}, + url = {https://doi.org/10.21468%2Fscipostphys.9.4.053}, + year = 2020, + month = {oct}, + publisher = {Stichting {SciPost}}, + volume = {9}, + number = {4}, + author = {Matthew Klimek and Maxim Perelstein}, + title = {Neural network-based approach to phase space integration}, + journal = {{SciPost} Physics} +} + +@book{Maxwell_1873, + title = {A Treatise on Electricity and Magnetism}, + author = {Maxwell, J.C.}, + number = {vol.~1}, + lccn = {03015568}, + series = {A Treatise on Electricity and Magnetism}, + url = {https://books.google.fr/books?id=gokfAQAAMAAJ}, + year = {1873}, + publisher = {Clarendon Press} +} + +@misc{wiki:Method_Of_Image_Charges, + author = "Wikipedia", + title = "{Method of image charges} --- {W}ikipedia{,} The Free Encyclopedia", + year = "2023", + url = {http://en.wikipedia.org/w/index.php?title=Method\%20of\%20image\%20charges&oldid=1152888135}, + note = "[Online; accessed 25-August-2023]" +} diff --git a/doc/Changelog.md b/doc/Changelog.md new file mode 100644 index 00000000..d5af9daf --- /dev/null +++ b/doc/Changelog.md @@ -0,0 +1,95 @@ +# Changelog + +## Version 0.5.0 + +- {gh-pr}`121` {gh-issue}`68` Improvements of the `LineParameters` constructor: + - Delete the `LineModel` class + - Simplify the `from_dict` method + - Rename and refactor the method `from_lv_exact` into `from_geometry`. + - Add documentation for the `LineParameters` alternative constructors. + - Rename `InsulationType` into `InsulatorType`. + - Allow the letter "U" for "Underground" line type (only "S" for "Souterrain" in French was accepted). The same + with the letter "O" for "Overhead" line type (only "A" for "Aérien" in French was accepted). + - Remove the field `"model"` from the JSON serialization of `LineParameters`. +- {gh-pr}`120` Fix phases of flexible power results. +- {gh-pr}`119` Add explicit error message for singular jacobian. +- {gh-pr}`118` {gh-issue}`95` + - Add a catalogue of three-phase MV/LV distribution transformers. + - Remove the class method `TransformerParameters.from_name`. +- {gh-pr}`117` Add prettier to pre-commit +- {gh-pr}`116` + - Add a catalogue of networks. + - Add a plotting page to the documentation. +- {gh-pr}`115` + - Reformat the tutorials in the documentation. + - Split the "Advanced" tutorial in several smaller files. + - Remove the Docker installation option. +- {gh-pr}`114` Use Pint >=0.21 to have the percent unit. +- {gh-pr}`113` Raise an error when accessing the results of + disconnected elements. +- {gh-pr}`112` Make the geometry serialization optional. +- {gh-pr}`106` Improvements for non-euclidean projections. +- {gh-pr}`104` Remove `roseau.load_flow.utils.BranchType`. +- {gh-issue}`99` Add `Line.res_series_currents` + and `Line.res_shunt_currents` properties to get the currents in the series and shunt components + of lines. Also added `ElectricalNetwork.res_lines` that contains the series losses and currents + of all the lines in the network. The property `ElectricalNetwork.res_lines_losses` was removed. +- {gh-issue}`100` Fix the `Yz` transformers. +- {gh-pr}`97` Add the model section to the documentation. +- {gh-pr}`96` + - Add single-phase transformer. + - Add center-tapped transformer. + - Remove the `roseau.load_flow.utils.TransformerType` enumeration. +- {gh-pr}`93` Add short-circuit computation. +- {gh-pr}`92` + - Add the changelog in the documentation. + - Use NodeJs 20 in the Dockerfile. + - Correction of a dead link in the README. + +## Version 0.4.0 + +- {gh-pr}`91` Rename `resolution_method` into `solver`. +- {gh-issue}`73` {gh-pr}`85` Rename `precision` into `tolerance` and `final_precision` into `residual`. +- {gh-pr}`82` Add the `"newton_goldstein"` solver. +- {gh-pr}`88` Increase the default `alpha` values for flexible parameters. + +## Version 0.3.0 + +- Every network elements have an `id` which must be unique among the same type of elements. +- The argument `n` (number of ports) have been replaced by a `phase(s)` argument which can be for + instance `an`, `abc`, `abcn`, `ca`, etc. +- The classes `SimplifiedLine` and `ShuntLine` have been merged into a single class `Line` whose + behaviour depends on the provided `LineParameters`. +- The classes `DeltaDeltaTransformer`, `DeltaWyeTransformer`, `DeltaZigzagTransformer`, + `WyeDeltaTransformer`, `WyeWyeTransformer` and `WyeZigzagTransformer` have been replaced by an + unique `Transformer` class whose behaviour depends on the provided `TransformerParameter`. +- The classes `LineCharacteristics` and `TransformerCharacteristics` have been renamed into + `LineParameters` and `TransformerParameters`. +- The classes `AdmittanceLoad` and `DeltaAdmittanceLoad` have been removed. Please use + `ImpedanceLoad` instead, with the desired `phases` argument. +- The classes `DeltaImpedanceLoad` and `DeltaPowerLoad` have been removed. Please use the classes + `ImpedanceLoad` and `PowerLoad` instead with `phases="abc"`. +- The class `FlexibleLoad` have been removed. Please use the new `flexible_params` argument of the + `PowerLoad` class constructor. +- The `VoltageSource` is not anymore a subclass of the class `Bus`. It can now be connected to a bus + just like a load. +- All elements are aware of the network they belong to. It helps the user to avoid mistakes + (connecting elements from different networks). It also allows showing user warnings when accessing + to outdated results. +- All properties retrieving results are now prefixed by `res_`. +- Additional results per elements: `res_potentials`, `res_voltages`, `res_series_losses`, + `res_lie_losses`, etc. +- Pandas Data frame results: now, every result can be retrieved in Pandas Data frame from the + `ElectricalNetwork` instance. These methods are also prefixed by `res_`. +- Every physical input can be given as quantities (magnitude and unit) using the `Q_` class. +- Every result (except Pandas data frame) are quantities (magnitude and unit). +- Elements can all be serialized as JSON. +- Results of an `ElectricalNetwork` can be serialized as JSON and read from a JSON file. +- The documentation has been improved. + + + + + + + diff --git a/doc/Installation.md b/doc/Installation.md index 01ea9006..e8b7fec4 100644 --- a/doc/Installation.md +++ b/doc/Installation.md @@ -1,7 +1,10 @@ -# Using `pip` # +# Installation -`roseau_load_flow` is available on [PyPI](https://pypi.org/project/roseau-load-flow/). It can be +## Using `pip` + +`roseau-load-flow` is available on [PyPI](https://pypi.org/project/roseau-load-flow/). It can be installed using pip with: + ```console $ python -m pip install roseau-load-flow ``` @@ -42,14 +45,16 @@ $ . venv/bin/activate ````` To upgrade to the latest version (recommended), use: + ```console $ python -m pip install --upgrade roseau-load-flow ``` -# Using `conda` # +## Using `conda` -`roseau_load_flow` is also available on [conda-forge](https://anaconda.org/conda-forge/roseau-load-flow). +`roseau-load-flow` is also available on [conda-forge](https://anaconda.org/conda-forge/roseau-load-flow). It can be installed using conda with: + ```console $ conda install -c conda-forge roseau-load-flow ``` @@ -59,90 +64,6 @@ If you use *conda* to manage your project, it is recommended to use the `conda` instead of `pip`. ``` -# Using `docker` # - -`roseau_load_flow` provides a *docker image* with all required dependencies pre-installed, -including *Python*. The image runs a *Jupyter* session that you can access in your browser. To -install and run your docker environment, follow the steps corresponding to your operating system -below. - -````{tab} Windows - -1. Download and install Docker Desktop for Windows, available [here]( - https://www.docker.com/products/docker-desktop/). - - ```{hint} - During the installation, select "WSL **2**" (WSL = Windows Subsystem for Linux). - ``` - -2. Open *Docker Desktop* to start the *Docker Engine* - - ![Docker Desktop](_static/2022_10_20_Installation_2.png) - - ```{note} - During the first start of the software, it may require to install some extra files to update - WSL1 to WSL2. - ``` - -3. Go to the [Package page]( - https://github.com/RoseauTechnologies/Roseau_Load_Flow/pkgs/container/roseau-load-flow) of - Roseau Load Flow on GitHub and copy the Docker command to pull the image. - - ![Package](_static/2022_10_20_Installation_1.png) - -4. Open a Terminal - - ```{image} _static/2022_10_20_Installation_3.png - :alt: Terminal - :width: 15cm - ``` - -5. Paste the command line in your terminal to start downloading the Docker image - - ![Package](_static/2022_10_20_Installation_4.png) - -6. In the "Images" tab of *Docker Desktop*, the image should be visible. You can click on `Run` to - start it. - -7. Fill the advanced options if you want. It allows you to give a name to the created container, - and to link folders of your system to the container. You can for instance link the folder - `Documents` to the directory `/app/Documents/` in the container (as shown below). When done - click on `Run` to start the container. - - ![Advanced options](_static/2022_10_20_Installation_6.png) - -8. The container should start in a few seconds. Open a web browser and navigate to - [http://localhost:8080](http://localhost:8080) to find the JupyterLab page of the container. A - basic python environment is set up with the `roseau_load_flow` package already installed. - -```` - -````{tab} Linux - -1. Install Docker via the [detailed tutorial](https://docs.docker.com/engine/install/#server) - written by the Docker team. Follow instructions specific to your platform like [Ubuntu]( - https://docs.docker.com/engine/install/ubuntu/) or [Debian]( - https://docs.docker.com/engine/install/debian/). - -2. Go to the [Package page]( - https://github.com/RoseauTechnologies/Roseau_Load_Flow/pkgs/container/roseau-load-flow) of - Roseau Load Flow on GitHub and copy the Docker command to pull the image. - - ![Package](_static/2022_10_20_Installation_1.png) - -3. Paste it in your terminal to start downloading the Docker image - -4. Use `docker run` to start a container; for example with version *0.4.0*: - ```console - $ docker run -p 8080:8080 --name rlf-test ghcr.io/roseautechnologies/roseau-load-flow:0.4.0 - ``` - -5. Open a web browser and navigate to [http://localhost:8080](http://localhost:8080) to find the - JupyterLab page of the container. A basic python environment is set up with the - `roseau_load_flow` package already installed. - -```` - diff --git a/doc/Makefile b/doc/Makefile index 3d84847a..43d97de0 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -15,6 +15,9 @@ help: images: @cd images && $(MAKE) +images-%: + @cd images && $(MAKE) $* + .PHONY: help Makefile images # Catch-all target: route all unknown targets to Sphinx using the new diff --git a/doc/Solvers.md b/doc/Solvers.md index 3a28f911..8bd2fb3e 100644 --- a/doc/Solvers.md +++ b/doc/Solvers.md @@ -18,19 +18,20 @@ F(x) = 0 ``` Computationally, this translates to finding a solution $x$ such that: + ```{math} ||F(x)||_{\infty} < \varepsilon ``` -With $\varepsilon$ being a small *tolerance*. + +With $\varepsilon$ being a small _tolerance_. In code, $\varepsilon$ can be set with `en.solve_load_flow(tolerance=...)` (by default `1e-6`). -There are several solvers to solve this kind of problems. In Roseau Load Flow, the following +There are several solvers to solve this kind of problems. In _Roseau Load Flow_, the following solvers are available: - ## Newton-Raphson -This is the classical [*Newton-Raphson* method](https://en.wikipedia.org/wiki/Newton%27s_method). +This is the classical [_Newton-Raphson_ method](https://en.wikipedia.org/wiki/Newton%27s_method). First, an initial solution $x_0$ is chosen by initializing the voltages either by propagating the voltage of the sources or by re-using the results from the last successful run. The choice of @@ -52,39 +53,44 @@ fails. ### Parameters -The *Newton-Raphson* solver doesn't accept any parameter. +The _Newton-Raphson_ solver doesn't accept any parameter. ## Goldstein and Price -This is a variant of the classical *Newton-Raphson* solver with a linear search. +This is a variant of the classical _Newton-Raphson_ solver with a linear search. At each iteration, $x_{k+1}$ is calculated using: + ```{math} :label: linear_search_step x_{k+1} = x_k + t d(x_k) ``` + with $d = -J_F^{-1}F$ -For the classical *Newton-Raphson* solver, $t=1$ is chosen for the next iterate. -The idea of the linear searches, in this case the *Goldstein and Price* variant, is to find a +For the classical _Newton-Raphson_ solver, $t=1$ is chosen for the next iterate. +The idea of the linear searches, in this case the _Goldstein and Price_ variant, is to find a "better" $t$ that improves the convergence of the solver. Let $g$ be a function to be minimized: + ```{math} g &: \mathbb{R}^n \to \mathbb{R} \\ g(x) &:= \frac{1}{2} ||F(x)||_2 ``` Let $q$ be the function $g$ in the direction $d$: + ```{math} q &: \mathbb{R} \to \mathbb{R} \\ q(t) &:= g(x_k + t d(x_k)) ``` A search is made to find $t$ such that: + ```{math} :label: goldstein_and_price -m_2q'(0) \leq \frac{q(t) - q(0)}{t} \leq m_1q'(0) +m_2q'(0) \leqslant \frac{q(t) - q(0)}{t} \leqslant m_1q'(0) ``` ```{image} /_static/Goldstein_And_Price.svg @@ -100,12 +106,13 @@ needed. This is especially true when there are no flexible loads in the network. $t$ is then used to compute $x_{k+1} = x_k + t d(x_k)$ -The *Goldstein and Price* variant is thus as fast as the classical *Newton-Raphson* while being +The _Goldstein and Price_ variant is thus as fast as the classical _Newton-Raphson_ while being more robust. ### Parameters -The *Goldstein and Price* solver accepts the following parameters: -- `"m1"` the first constant of the *Goldstein and Price* variant. By default: `0.1`. -- `"m2"` the second constant of the *Goldstein and Price* variant. By default: `0.9`. +The _Goldstein and Price_ solver accepts the following parameters: + +- `"m1"` the first constant of the _Goldstein and Price_ variant. By default: `0.1`. +- `"m2"` the second constant of the _Goldstein and Price_ variant. By default: `0.9`. Note that the constraint $m_1 < m_2$ must be met. diff --git a/doc/_static/2022_10_20_Installation_1.png b/doc/_static/2022_10_20_Installation_1.png deleted file mode 100644 index ebe1f655..00000000 --- a/doc/_static/2022_10_20_Installation_1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ff504361df1ea0fec0e7e066f19ea959bbe185151b32aff1253599f458977c4 -size 25428 diff --git a/doc/_static/2022_10_20_Installation_2.png b/doc/_static/2022_10_20_Installation_2.png deleted file mode 100644 index 64a935f6..00000000 --- a/doc/_static/2022_10_20_Installation_2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd03d616fc2fbe0c3c54871c656a1369902e6c834e0194d93865f693a15e1e42 -size 74823 diff --git a/doc/_static/2022_10_20_Installation_3.png b/doc/_static/2022_10_20_Installation_3.png deleted file mode 100644 index 1c8875a1..00000000 --- a/doc/_static/2022_10_20_Installation_3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:acf6c0044258c452c25cee615f84874d79bfa61c50f07978d26aea06456b2477 -size 531643 diff --git a/doc/_static/2022_10_20_Installation_4.png b/doc/_static/2022_10_20_Installation_4.png deleted file mode 100644 index ae5ff69f..00000000 --- a/doc/_static/2022_10_20_Installation_4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60573d4153849eb35889b5de1371b30f911a2a958ac288a55254b1e1f401add7 -size 34717 diff --git a/doc/_static/2022_10_20_Installation_5.png b/doc/_static/2022_10_20_Installation_5.png deleted file mode 100644 index db071923..00000000 --- a/doc/_static/2022_10_20_Installation_5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d931882dd612c73bee642c0c7377dd30936a62ca8bfb18b683f09ce8f07118d2 -size 69229 diff --git a/doc/_static/2022_10_20_Installation_6.png b/doc/_static/2022_10_20_Installation_6.png deleted file mode 100644 index db071923..00000000 --- a/doc/_static/2022_10_20_Installation_6.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d931882dd612c73bee642c0c7377dd30936a62ca8bfb18b683f09ce8f07118d2 -size 69229 diff --git a/doc/_static/Bus.svg b/doc/_static/Bus.svg new file mode 100644 index 00000000..e371a286 --- /dev/null +++ b/doc/_static/Bus.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Control_PU_Cons.svg b/doc/_static/Control_PU_Cons.svg index 6d3f6db2..66fc08e4 100644 --- a/doc/_static/Control_PU_Cons.svg +++ b/doc/_static/Control_PU_Cons.svg @@ -65,9 +65,6 @@ - - - @@ -99,87 +96,81 @@ - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -345,20 +336,14 @@ - - - - - - - - + + - + - + @@ -367,19 +352,13 @@ - - - - - - - + - + - + @@ -388,60 +367,60 @@ - + - - - - - - - + + + + + + + - - + + - + - - + + - - + + - - + + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -451,32 +430,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -487,32 +466,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -523,32 +502,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -559,32 +538,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -595,7 +574,7 @@ - + diff --git a/doc/_static/Control_PU_Prod.svg b/doc/_static/Control_PU_Prod.svg index c857f0e1..7add47d3 100644 --- a/doc/_static/Control_PU_Prod.svg +++ b/doc/_static/Control_PU_Prod.svg @@ -65,9 +65,6 @@ - - - @@ -99,87 +96,81 @@ - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -345,20 +336,14 @@ - - - - - - - - + + - + - + @@ -367,19 +352,13 @@ - - - - - - - + - + - + @@ -388,60 +367,60 @@ - + - - - - - - - + + + + + + + - - + + - + - - + + - - + + - - + + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -451,32 +430,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -487,32 +466,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -523,32 +502,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -559,32 +538,32 @@ - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + @@ -595,7 +574,7 @@ - + diff --git a/doc/_static/Control_QU.svg b/doc/_static/Control_QU.svg index 26def865..a994fc19 100644 --- a/doc/_static/Control_QU.svg +++ b/doc/_static/Control_QU.svg @@ -71,9 +71,6 @@ - - - @@ -186,12 +183,6 @@ - - - - - - @@ -386,20 +377,14 @@ - - - - - + + - + - - - - + @@ -408,19 +393,13 @@ - - - - - - - + - + - + @@ -482,7 +461,7 @@ - + @@ -517,7 +496,7 @@ - + @@ -553,7 +532,7 @@ - + @@ -589,7 +568,7 @@ - + @@ -625,7 +604,7 @@ - + diff --git a/doc/_static/Ground.svg b/doc/_static/Ground.svg new file mode 100644 index 00000000..b4b36c64 --- /dev/null +++ b/doc/_static/Ground.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/American_Shunt_Line.svg b/doc/_static/Line/American_Shunt_Line.svg new file mode 100644 index 00000000..932be2d4 --- /dev/null +++ b/doc/_static/Line/American_Shunt_Line.svg @@ -0,0 +1,781 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/American_Simplified_Line.svg b/doc/_static/Line/American_Simplified_Line.svg new file mode 100644 index 00000000..2f36fcd7 --- /dev/null +++ b/doc/_static/Line/American_Simplified_Line.svg @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/European_Shunt_Line.svg b/doc/_static/Line/European_Shunt_Line.svg new file mode 100644 index 00000000..7af77369 --- /dev/null +++ b/doc/_static/Line/European_Shunt_Line.svg @@ -0,0 +1,781 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/European_Simplified_Line.svg b/doc/_static/Line/European_Simplified_Line.svg new file mode 100644 index 00000000..4d91a731 --- /dev/null +++ b/doc/_static/Line/European_Simplified_Line.svg @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Image_Method_Circle.svg b/doc/_static/Line/Image_Method_Circle.svg new file mode 100644 index 00000000..2000a40d --- /dev/null +++ b/doc/_static/Line/Image_Method_Circle.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Image_Method_Plane.svg b/doc/_static/Line/Image_Method_Plane.svg new file mode 100644 index 00000000..5a25fa17 --- /dev/null +++ b/doc/_static/Line/Image_Method_Plane.svg @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Shunt_Line.svg b/doc/_static/Line/Shunt_Line.svg new file mode 100644 index 00000000..8188899d --- /dev/null +++ b/doc/_static/Line/Shunt_Line.svg @@ -0,0 +1,765 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Simplified_Line.svg b/doc/_static/Line/Simplified_Line.svg new file mode 100644 index 00000000..32c79e96 --- /dev/null +++ b/doc/_static/Line/Simplified_Line.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Twisted_Geometry.svg b/doc/_static/Line/Twisted_Geometry.svg new file mode 100644 index 00000000..987a5373 --- /dev/null +++ b/doc/_static/Line/Twisted_Geometry.svg @@ -0,0 +1,35396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Twisted_Geometry_Details.svg b/doc/_static/Line/Twisted_Geometry_Details.svg new file mode 100644 index 00000000..399c9a3c --- /dev/null +++ b/doc/_static/Line/Twisted_Geometry_Details.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Underground_Geometry.svg b/doc/_static/Line/Underground_Geometry.svg new file mode 100644 index 00000000..dd6b0203 --- /dev/null +++ b/doc/_static/Line/Underground_Geometry.svg @@ -0,0 +1,78714 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Line/Underground_Geometry_Details.svg b/doc/_static/Line/Underground_Geometry_Details.svg new file mode 100644 index 00000000..1030c983 --- /dev/null +++ b/doc/_static/Line/Underground_Geometry_Details.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Load/American_Delta_Load.svg b/doc/_static/Load/American_Delta_Load.svg new file mode 100644 index 00000000..72499838 --- /dev/null +++ b/doc/_static/Load/American_Delta_Load.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/American_Star_Load.svg b/doc/_static/Load/American_Star_Load.svg similarity index 65% rename from doc/_static/American_Star_Load.svg rename to doc/_static/Load/American_Star_Load.svg index 32e19f85..3ab4b25e 100644 --- a/doc/_static/American_Star_Load.svg +++ b/doc/_static/Load/American_Star_Load.svg @@ -1,5 +1,5 @@ - + @@ -21,10 +21,10 @@ - + - + @@ -49,165 +49,165 @@ - + - + - + - + - + - + - + - + - + - - - - + + + + - + - + - + - + - + - + - + - + - - - - - + + + + + - + - + - + - + - + - + - + - + - - - - - + + + + + - + - + - + - + - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - + + + - + - + - + - + - + - - - - - + + + + + - + - + - + diff --git a/doc/_static/Load/European_Delta_Load.svg b/doc/_static/Load/European_Delta_Load.svg new file mode 100644 index 00000000..948bf5cf --- /dev/null +++ b/doc/_static/Load/European_Delta_Load.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/European_Star_Load.svg b/doc/_static/Load/European_Star_Load.svg similarity index 65% rename from doc/_static/European_Star_Load.svg rename to doc/_static/Load/European_Star_Load.svg index d75bd982..822e3191 100644 --- a/doc/_static/European_Star_Load.svg +++ b/doc/_static/Load/European_Star_Load.svg @@ -1,5 +1,5 @@ - + @@ -46,150 +46,150 @@ - + - + - + - + - + - + - + - + - + - - - - - + + + + + - + - + - + - + - + - + - - - - - - + + + + + + - + - + - + - + - + - + - - - - - - + + + + + + - + - + - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - + + + - + - + - + - + - + - - - - - + + + + + - + - + - + diff --git a/doc/_static/Network/Catalogue.html b/doc/_static/Network/Catalogue.html new file mode 100644 index 00000000..5a5643f4 --- /dev/null +++ b/doc/_static/Network/Catalogue.html @@ -0,0 +1,40975 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/Catalogue.png b/doc/_static/Network/Catalogue.png new file mode 100644 index 00000000..92318bfc --- /dev/null +++ b/doc/_static/Network/Catalogue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9bbb6e5877e092cadf53bafb8f562191dfdfb211918f15a8e4448270e129f8 +size 442137 diff --git a/doc/_static/Network/LVFeeder00939.html b/doc/_static/Network/LVFeeder00939.html new file mode 100644 index 00000000..927fe142 --- /dev/null +++ b/doc/_static/Network/LVFeeder00939.html @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder02639.html b/doc/_static/Network/LVFeeder02639.html new file mode 100644 index 00000000..0b863be4 --- /dev/null +++ b/doc/_static/Network/LVFeeder02639.html @@ -0,0 +1,579 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder04790.html b/doc/_static/Network/LVFeeder04790.html new file mode 100644 index 00000000..60e53595 --- /dev/null +++ b/doc/_static/Network/LVFeeder04790.html @@ -0,0 +1,490 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder06713.html b/doc/_static/Network/LVFeeder06713.html new file mode 100644 index 00000000..bcf7edc2 --- /dev/null +++ b/doc/_static/Network/LVFeeder06713.html @@ -0,0 +1,423 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder06926.html b/doc/_static/Network/LVFeeder06926.html new file mode 100644 index 00000000..b8116fdc --- /dev/null +++ b/doc/_static/Network/LVFeeder06926.html @@ -0,0 +1,415 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder06975.html b/doc/_static/Network/LVFeeder06975.html new file mode 100644 index 00000000..a2b10617 --- /dev/null +++ b/doc/_static/Network/LVFeeder06975.html @@ -0,0 +1,542 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder18498.html b/doc/_static/Network/LVFeeder18498.html new file mode 100644 index 00000000..423b9693 --- /dev/null +++ b/doc/_static/Network/LVFeeder18498.html @@ -0,0 +1,1033 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder18769.html b/doc/_static/Network/LVFeeder18769.html new file mode 100644 index 00000000..0cbf52b0 --- /dev/null +++ b/doc/_static/Network/LVFeeder18769.html @@ -0,0 +1,561 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder19558.html b/doc/_static/Network/LVFeeder19558.html new file mode 100644 index 00000000..aa35222e --- /dev/null +++ b/doc/_static/Network/LVFeeder19558.html @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder20256.html b/doc/_static/Network/LVFeeder20256.html new file mode 100644 index 00000000..3414457a --- /dev/null +++ b/doc/_static/Network/LVFeeder20256.html @@ -0,0 +1,630 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder23832.html b/doc/_static/Network/LVFeeder23832.html new file mode 100644 index 00000000..eb159355 --- /dev/null +++ b/doc/_static/Network/LVFeeder23832.html @@ -0,0 +1,427 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder24400.html b/doc/_static/Network/LVFeeder24400.html new file mode 100644 index 00000000..8d7b4614 --- /dev/null +++ b/doc/_static/Network/LVFeeder24400.html @@ -0,0 +1,458 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder27429.html b/doc/_static/Network/LVFeeder27429.html new file mode 100644 index 00000000..3c47fd09 --- /dev/null +++ b/doc/_static/Network/LVFeeder27429.html @@ -0,0 +1,736 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder27681.html b/doc/_static/Network/LVFeeder27681.html new file mode 100644 index 00000000..90444f8d --- /dev/null +++ b/doc/_static/Network/LVFeeder27681.html @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder30216.html b/doc/_static/Network/LVFeeder30216.html new file mode 100644 index 00000000..c66a8047 --- /dev/null +++ b/doc/_static/Network/LVFeeder30216.html @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder31441.html b/doc/_static/Network/LVFeeder31441.html new file mode 100644 index 00000000..dd25ba1b --- /dev/null +++ b/doc/_static/Network/LVFeeder31441.html @@ -0,0 +1,471 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder36284.html b/doc/_static/Network/LVFeeder36284.html new file mode 100644 index 00000000..6b48840a --- /dev/null +++ b/doc/_static/Network/LVFeeder36284.html @@ -0,0 +1,496 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder36360.html b/doc/_static/Network/LVFeeder36360.html new file mode 100644 index 00000000..1517f282 --- /dev/null +++ b/doc/_static/Network/LVFeeder36360.html @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder37263.html b/doc/_static/Network/LVFeeder37263.html new file mode 100644 index 00000000..99be9c03 --- /dev/null +++ b/doc/_static/Network/LVFeeder37263.html @@ -0,0 +1,430 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/LVFeeder38211.html b/doc/_static/Network/LVFeeder38211.html new file mode 100644 index 00000000..da1353cd --- /dev/null +++ b/doc/_static/Network/LVFeeder38211.html @@ -0,0 +1,529 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder004.html b/doc/_static/Network/MVFeeder004.html new file mode 100644 index 00000000..400236d5 --- /dev/null +++ b/doc/_static/Network/MVFeeder004.html @@ -0,0 +1,966 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder011.html b/doc/_static/Network/MVFeeder011.html new file mode 100644 index 00000000..03ae08b3 --- /dev/null +++ b/doc/_static/Network/MVFeeder011.html @@ -0,0 +1,2486 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder015.html b/doc/_static/Network/MVFeeder015.html new file mode 100644 index 00000000..89c399fd --- /dev/null +++ b/doc/_static/Network/MVFeeder015.html @@ -0,0 +1,1484 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder032.html b/doc/_static/Network/MVFeeder032.html new file mode 100644 index 00000000..d12176a6 --- /dev/null +++ b/doc/_static/Network/MVFeeder032.html @@ -0,0 +1,2317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder041.html b/doc/_static/Network/MVFeeder041.html new file mode 100644 index 00000000..20a57d08 --- /dev/null +++ b/doc/_static/Network/MVFeeder041.html @@ -0,0 +1,3488 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder063.html b/doc/_static/Network/MVFeeder063.html new file mode 100644 index 00000000..48e053e1 --- /dev/null +++ b/doc/_static/Network/MVFeeder063.html @@ -0,0 +1,1811 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder078.html b/doc/_static/Network/MVFeeder078.html new file mode 100644 index 00000000..9430a4b1 --- /dev/null +++ b/doc/_static/Network/MVFeeder078.html @@ -0,0 +1,3108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder115.html b/doc/_static/Network/MVFeeder115.html new file mode 100644 index 00000000..91e62d71 --- /dev/null +++ b/doc/_static/Network/MVFeeder115.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder128.html b/doc/_static/Network/MVFeeder128.html new file mode 100644 index 00000000..79b8429d --- /dev/null +++ b/doc/_static/Network/MVFeeder128.html @@ -0,0 +1,2684 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder151.html b/doc/_static/Network/MVFeeder151.html new file mode 100644 index 00000000..b2fcfcec --- /dev/null +++ b/doc/_static/Network/MVFeeder151.html @@ -0,0 +1,2418 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder159.html b/doc/_static/Network/MVFeeder159.html new file mode 100644 index 00000000..db9355ff --- /dev/null +++ b/doc/_static/Network/MVFeeder159.html @@ -0,0 +1,618 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder176.html b/doc/_static/Network/MVFeeder176.html new file mode 100644 index 00000000..51caada9 --- /dev/null +++ b/doc/_static/Network/MVFeeder176.html @@ -0,0 +1,1490 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder210.html b/doc/_static/Network/MVFeeder210.html new file mode 100644 index 00000000..b4c0c49e --- /dev/null +++ b/doc/_static/Network/MVFeeder210.html @@ -0,0 +1,5121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder217.html b/doc/_static/Network/MVFeeder217.html new file mode 100644 index 00000000..8b377e54 --- /dev/null +++ b/doc/_static/Network/MVFeeder217.html @@ -0,0 +1,2740 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder232.html b/doc/_static/Network/MVFeeder232.html new file mode 100644 index 00000000..324db58f --- /dev/null +++ b/doc/_static/Network/MVFeeder232.html @@ -0,0 +1,2660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder251.html b/doc/_static/Network/MVFeeder251.html new file mode 100644 index 00000000..236f0bea --- /dev/null +++ b/doc/_static/Network/MVFeeder251.html @@ -0,0 +1,5140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder290.html b/doc/_static/Network/MVFeeder290.html new file mode 100644 index 00000000..b588198c --- /dev/null +++ b/doc/_static/Network/MVFeeder290.html @@ -0,0 +1,818 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder312.html b/doc/_static/Network/MVFeeder312.html new file mode 100644 index 00000000..fad8306a --- /dev/null +++ b/doc/_static/Network/MVFeeder312.html @@ -0,0 +1,890 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder320.html b/doc/_static/Network/MVFeeder320.html new file mode 100644 index 00000000..7f9a1e65 --- /dev/null +++ b/doc/_static/Network/MVFeeder320.html @@ -0,0 +1,1100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/Network/MVFeeder339.html b/doc/_static/Network/MVFeeder339.html new file mode 100644 index 00000000..ebfa050d --- /dev/null +++ b/doc/_static/Network/MVFeeder339.html @@ -0,0 +1,1632 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/doc/_static/PotentialRef.svg b/doc/_static/PotentialRef.svg new file mode 100644 index 00000000..a20f94c1 --- /dev/null +++ b/doc/_static/PotentialRef.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/PotentialRef_With_Ground.svg b/doc/_static/PotentialRef_With_Ground.svg new file mode 100644 index 00000000..e91fdefb --- /dev/null +++ b/doc/_static/PotentialRef_With_Ground.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/European_Delta_Load.svg b/doc/_static/Star_Voltage_Source.svg similarity index 65% rename from doc/_static/European_Delta_Load.svg rename to doc/_static/Star_Voltage_Source.svg index c05b96af..235319ed 100644 --- a/doc/_static/European_Delta_Load.svg +++ b/doc/_static/Star_Voltage_Source.svg @@ -1,5 +1,5 @@ - + @@ -14,16 +14,16 @@ + + + - + - - - @@ -33,14 +33,17 @@ - + + + + - + @@ -49,10 +52,10 @@ - + - + @@ -60,111 +63,71 @@ + + + + + + - + - - - - - - - - - - - - - - - + - - + - + + + + + + + - - - - - - + - - + + - - + + - - - - - + + + + - + - - + + - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - + + + + - + - + + - - - - - - - - - - + @@ -175,28 +138,27 @@ - + - + - - - + + - + - + - + - + - + - + @@ -204,13 +166,30 @@ + - + + + + + + + + + + + + + + + + + - + - + diff --git a/doc/_static/Switch.svg b/doc/_static/Switch.svg new file mode 100644 index 00000000..9e3f2268 --- /dev/null +++ b/doc/_static/Switch.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/2023_03_30_Fiche_Technique_France_Transfo.pdf b/doc/_static/Transformer/2023_03_30_Fiche_Technique_France_Transfo.pdf new file mode 100644 index 00000000..c2e5e9ae Binary files /dev/null and b/doc/_static/Transformer/2023_03_30_Fiche_Technique_France_Transfo.pdf differ diff --git a/doc/_static/Transformer/2023_03_31_Fiche_Technique_Schneider_Electric.pdf b/doc/_static/Transformer/2023_03_31_Fiche_Technique_Schneider_Electric.pdf new file mode 100644 index 00000000..cddf9926 Binary files /dev/null and b/doc/_static/Transformer/2023_03_31_Fiche_Technique_Schneider_Electric.pdf differ diff --git a/doc/_static/Transformer/American_Center_Tapped_Transformer.svg b/doc/_static/Transformer/American_Center_Tapped_Transformer.svg new file mode 100644 index 00000000..b059dcc5 --- /dev/null +++ b/doc/_static/Transformer/American_Center_Tapped_Transformer.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/American_Dyn11.svg b/doc/_static/Transformer/American_Dyn11.svg new file mode 100644 index 00000000..dd8d673f --- /dev/null +++ b/doc/_static/Transformer/American_Dyn11.svg @@ -0,0 +1,567 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/American_Single_Phase_Transformer.svg b/doc/_static/Transformer/American_Single_Phase_Transformer.svg new file mode 100644 index 00000000..3050eb94 --- /dev/null +++ b/doc/_static/Transformer/American_Single_Phase_Transformer.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/American_Three_Phase_Transformer.svg b/doc/_static/Transformer/American_Three_Phase_Transformer.svg new file mode 100644 index 00000000..b3ad6cb3 --- /dev/null +++ b/doc/_static/Transformer/American_Three_Phase_Transformer.svg @@ -0,0 +1,736 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Dyn11.png b/doc/_static/Transformer/Dyn11.png new file mode 100644 index 00000000..30be2f22 --- /dev/null +++ b/doc/_static/Transformer/Dyn11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428887d914bda0c44138eae86beb497288ccbfbf3044cf533fad27b37c0b10ff +size 85928 diff --git a/doc/_static/Transformer/European_Center_Tapped_Transformer.svg b/doc/_static/Transformer/European_Center_Tapped_Transformer.svg new file mode 100644 index 00000000..2e82ed37 --- /dev/null +++ b/doc/_static/Transformer/European_Center_Tapped_Transformer.svg @@ -0,0 +1,273 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/European_Dyn11.svg b/doc/_static/Transformer/European_Dyn11.svg new file mode 100644 index 00000000..5d8a808d --- /dev/null +++ b/doc/_static/Transformer/European_Dyn11.svg @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/European_Single_Phase_Transformer.svg b/doc/_static/Transformer/European_Single_Phase_Transformer.svg new file mode 100644 index 00000000..d35e95f8 --- /dev/null +++ b/doc/_static/Transformer/European_Single_Phase_Transformer.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/European_Three_Phase_Transformer.svg b/doc/_static/Transformer/European_Three_Phase_Transformer.svg new file mode 100644 index 00000000..74c8390b --- /dev/null +++ b/doc/_static/Transformer/European_Three_Phase_Transformer.svg @@ -0,0 +1,685 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings.png b/doc/_static/Transformer/Windings.png new file mode 100644 index 00000000..6ed387fa --- /dev/null +++ b/doc/_static/Transformer/Windings.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bfa41f35928aa384d00bc3d2b092e481e7fb480e3499036be139b404a3f433c +size 232264 diff --git a/doc/_static/Transformer/Windings.svg b/doc/_static/Transformer/Windings.svg new file mode 100644 index 00000000..c53433bb --- /dev/null +++ b/doc/_static/Transformer/Windings.svg @@ -0,0 +1,640 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Dd0.svg b/doc/_static/Transformer/Windings_Dd0.svg new file mode 100644 index 00000000..e4c809d9 --- /dev/null +++ b/doc/_static/Transformer/Windings_Dd0.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Dd6.svg b/doc/_static/Transformer/Windings_Dd6.svg new file mode 100644 index 00000000..34147826 --- /dev/null +++ b/doc/_static/Transformer/Windings_Dd6.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Dy11.svg b/doc/_static/Transformer/Windings_Dy11.svg new file mode 100644 index 00000000..f8b254b9 --- /dev/null +++ b/doc/_static/Transformer/Windings_Dy11.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Dy5.svg b/doc/_static/Transformer/Windings_Dy5.svg new file mode 100644 index 00000000..e6b92be3 --- /dev/null +++ b/doc/_static/Transformer/Windings_Dy5.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Dz0.svg b/doc/_static/Transformer/Windings_Dz0.svg new file mode 100644 index 00000000..f2691566 --- /dev/null +++ b/doc/_static/Transformer/Windings_Dz0.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Dz6.svg b/doc/_static/Transformer/Windings_Dz6.svg new file mode 100644 index 00000000..3e44da0d --- /dev/null +++ b/doc/_static/Transformer/Windings_Dz6.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Yd11.svg b/doc/_static/Transformer/Windings_Yd11.svg new file mode 100644 index 00000000..5f4d1ba7 --- /dev/null +++ b/doc/_static/Transformer/Windings_Yd11.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Yd5.svg b/doc/_static/Transformer/Windings_Yd5.svg new file mode 100644 index 00000000..5fbbf25f --- /dev/null +++ b/doc/_static/Transformer/Windings_Yd5.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Yy0.svg b/doc/_static/Transformer/Windings_Yy0.svg new file mode 100644 index 00000000..7e8b5a0b --- /dev/null +++ b/doc/_static/Transformer/Windings_Yy0.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Yy6.svg b/doc/_static/Transformer/Windings_Yy6.svg new file mode 100644 index 00000000..85158b59 --- /dev/null +++ b/doc/_static/Transformer/Windings_Yy6.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Yz11.svg b/doc/_static/Transformer/Windings_Yz11.svg new file mode 100644 index 00000000..7b6c3a0b --- /dev/null +++ b/doc/_static/Transformer/Windings_Yz11.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/Transformer/Windings_Yz5.svg b/doc/_static/Transformer/Windings_Yz5.svg new file mode 100644 index 00000000..10c105f2 --- /dev/null +++ b/doc/_static/Transformer/Windings_Yz5.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/American_Delta_Load.svg b/doc/_static/VoltageSource/American_Delta_Voltage_Source.svg similarity index 64% rename from doc/_static/American_Delta_Load.svg rename to doc/_static/VoltageSource/American_Delta_Voltage_Source.svg index 402c1840..9eac60d4 100644 --- a/doc/_static/American_Delta_Load.svg +++ b/doc/_static/VoltageSource/American_Delta_Voltage_Source.svg @@ -1,5 +1,5 @@ - + @@ -18,13 +18,13 @@ - + - + - + @@ -43,30 +43,21 @@ - + - + - + - - - - - - - - - - + - + @@ -77,121 +68,95 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - + - + - + - + + - + + - + - + + + + + + + - + - - - + - - + - - - - - + + + + - + - + + + + + + + - + - - + - + - + + - - + + - + - - + + - + + - - - - + - - + + @@ -201,13 +166,11 @@ - - - - - + + + - + @@ -216,13 +179,11 @@ - - - - - + + + - + diff --git a/doc/_static/VoltageSource/American_Star_Voltage_Source.svg b/doc/_static/VoltageSource/American_Star_Voltage_Source.svg new file mode 100644 index 00000000..7839ff16 --- /dev/null +++ b/doc/_static/VoltageSource/American_Star_Voltage_Source.svg @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/VoltageSource/European_Delta_Voltage_Source.svg b/doc/_static/VoltageSource/European_Delta_Voltage_Source.svg new file mode 100644 index 00000000..8f5a474c --- /dev/null +++ b/doc/_static/VoltageSource/European_Delta_Voltage_Source.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/VoltageSource/European_Star_Voltage_Source.svg b/doc/_static/VoltageSource/European_Star_Voltage_Source.svg new file mode 100644 index 00000000..62947c67 --- /dev/null +++ b/doc/_static/VoltageSource/European_Star_Voltage_Source.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/_static/css/custom.css b/doc/_static/css/custom.css index c1be0e36..8a477359 100644 --- a/doc/_static/css/custom.css +++ b/doc/_static/css/custom.css @@ -1,47 +1,53 @@ /* Google fonts */ -@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap'); -@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined'); +@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"); /* Fontawesome */ -@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/fontawesome.min.css'); -@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/solid.min.css'); -@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/brands.min.css'); +@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/fontawesome.min.css"); +@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/solid.min.css"); +@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/brands.min.css"); body { - font-family: 'Raleway', sans-serif; + font-family: "Raleway", sans-serif; } dl dd:not(:last-child) { - margin-bottom: 0.5em; + margin-bottom: 0.5em; } /* Improve inline images: material and actions*/ .material-symbols-outlined.inline-symbol { - font-size: 1.25em; - vertical-align: text-top; - margin: 0 0.2em; + font-size: 1.25em; + vertical-align: text-top; + margin: 0 0.2em; } .material-symbols-outlined.inline-symbol.counter { - color: #FF0000; + color: #ff0000; } .action-icons.inline-icon { - vertical-align: middle; - margin: 0 -0.5em; + vertical-align: middle; + margin: 0 -0.5em; } /* Justify the text */ .content { - text-align: justify; + text-align: justify; } /* Erase the toctree caption in the main text */ -.toctree-wrapper.compound .caption, .toctree-wrapper.compound :not(.caption) > .caption-text { - display: none; +.toctree-wrapper.compound .caption, +.toctree-wrapper.compound :not(.caption) > .caption-text { + display: none; } /* Style of the version display in the left panel */ .sidebar-brand-text { - color: var(--color-foreground-secondary); - font-size: var(--toc-font-size); - text-align: center; + color: var(--color-foreground-secondary); + font-size: var(--toc-font-size); + text-align: center; +} + +/* Align the copy button in the middle of the first line */ +.highlight button.copybtn { + top: 0.25rem; } diff --git a/doc/conf.py b/doc/conf.py index 5955907d..bb13e336 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -17,14 +17,13 @@ # sys.path.insert(0, os.path.abspath("../roseau/")) # -- Project information ----------------------------------------------------- - project = "Roseau Load Flow" copyright = "2022--2023, Roseau Technologies SAS" # author = "Benoît Vinot" # The full version, including alpha/beta/rc tags -version = "0.4" -release = "0.4.0" +version = "0.5" +release = "0.5.0" # -- General configuration --------------------------------------------------- @@ -37,15 +36,16 @@ "sphinx.ext.autodoc", "sphinx.ext.napoleon", "sphinx.ext.intersphinx", - "nbsphinx", + "sphinx.ext.extlinks", "autoapi.extension", "sphinx_copybutton", "sphinx_inline_tabs", + "sphinxcontrib.googleanalytics", + "sphinxcontrib.bibtex", ] myst_enable_extensions = ["deflist", "smartquotes", "replacements", "dollarmath"] add_module_names = False napoleon_numpy_docstring = False -nbsphinx_execute = "never" python_use_unqualified_type_names = True # Add any paths that contain templates here, relative to this directory. @@ -128,4 +128,21 @@ "requests": ("https://requests.readthedocs.io/en/latest/", None), "pint": ("https://pint.readthedocs.io/en/stable/", None), "typing_extensions": ("https://typing-extensions.readthedocs.io/en/stable/", None), + "rich": ("https://rich.readthedocs.io/en/stable/", None), +} + +# -- Options for sphinx_copybutton ------------------------------------------- +copybutton_exclude = ".linenos, .gp, .go" +copybutton_copy_empty_lines = False + +# -- Options for sphinxcontrib.googleanalytics ------------------------------- +googleanalytics_id = "G-Y9QSN78RFV" + +# -- Options for sphinxcontrib.bibtex ---------------------------------------- +bibtex_bibfiles = ["Bibliography.bib"] + +# -- Options for sphinx.ext.extlinks ----------------------------------------- +extlinks = { + "gh-issue": ("https://github.com/RoseauTechnologies/Roseau_Load_Flow/issues/%s", "GH%s"), + "gh-pr": ("https://github.com/RoseauTechnologies/Roseau_Load_Flow/pull/%s", "PR%s"), } diff --git a/doc/images/Bus.tex b/doc/images/Bus.tex new file mode 100644 index 00000000..b84c75ad --- /dev/null +++ b/doc/images/Bus.tex @@ -0,0 +1,50 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\x}{1};% + \pgfmathsetmacro{\xr}{2};% + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\yc}{1};% + \pgfmathsetmacro{\yb}{2};% + \pgfmathsetmacro{\ya}{3};% + + % Début de ligne + \coordinate (vln) at (\x,\yn); + \coordinate (vlc) at (\x,\yc); + \coordinate (vlb) at (\x,\yb); + \coordinate (vla) at (\x,\ya); + + % Tensions + \node[above] at (vla) {$\underline{V_{\arm}}$};% + \node[above] at (vlb) {$\underline{V_{\brm}}$};% + \node[above] at (vlc) {$\underline{V_{\crm}}$};% + \node[above] at (vln) {$\underline{V_{\nrm}}$};% + + \draw (\xl, \yn) to[short, -*] (\x, \yn) -- (\xr, \yn);% + \draw (\xl, \yc) to[short, -*] (\x, \yc) -- (\xr, \yc);% + \draw (\xl, \yb) to[short, -*] (\x, \yb) -- (\xr, \yb);% + \draw (\xl, \ya) to[short, -*] (\x, \ya) -- (\xr, \ya);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Control_PU_Cons.tex b/doc/images/Control_PU_Cons.tex index 98ebf543..d8466032 100644 --- a/doc/images/Control_PU_Cons.tex +++ b/doc/images/Control_PU_Cons.tex @@ -48,7 +48,7 @@ width=0.9\textwidth,% enlarge y limits,% grid=major,% - xlabel={$|V_{\ell,p_1}-V_{\ell,p_2}|$},% + xlabel={$|V_{p_1}-V_{p_2}|$},% xtick={\uminnormvaleur,\umidminnormvaleur,\udownnormvaleur,\unomnormvaleur,\uupnormvaleur,\umidmaxnormvaleur,\umaxnormvaleur},% xticklabels={% $\uminnorm$,,$\udownnorm$,$\unomnorm$,$\uupnorm$,,$\umaxnorm$% diff --git a/doc/images/Control_PU_Prod.tex b/doc/images/Control_PU_Prod.tex index 1452a65d..421ecb4b 100644 --- a/doc/images/Control_PU_Prod.tex +++ b/doc/images/Control_PU_Prod.tex @@ -48,7 +48,7 @@ width=0.9\textwidth,% enlarge y limits,% grid=major,% - xlabel={$|V_{\ell,p_1}-V_{\ell,p_2}|$},% + xlabel={$|V_{p_1}-V_{p_2}|$},% xtick={\uminnormvaleur,\umidminnormvaleur,\udownnormvaleur,\unomnormvaleur,\uupnormvaleur,\umidmaxnormvaleur,\umaxnormvaleur},% xticklabels={% $\uminnorm$,,$\udownnorm$,$\unomnorm$,$\uupnorm$,,$\umaxnorm$% diff --git a/doc/images/Control_QU.tex b/doc/images/Control_QU.tex index a575ba4d..b8947919 100644 --- a/doc/images/Control_QU.tex +++ b/doc/images/Control_QU.tex @@ -50,7 +50,7 @@ width=0.9\textwidth,% enlarge y limits,% grid=major,% - xlabel={$|V_{\ell,p_1}-V_{\ell,p_2}|$},% + xlabel={$|V_{p_1}-V_{p_2}|$},% xtick={\uminnormvaleur,\umidminnormvaleur,\udownnormvaleur,\unomnormvaleur,\uupnormvaleur,\umidmaxnormvaleur,\umaxnormvaleur},% xticklabels={% $\uminnorm$,,$\udownnorm$,$\unomnorm$,$\uupnorm$,,$\umaxnorm$% @@ -68,7 +68,7 @@ xmax=\xmaxnormvaleur,% ymin=\yminnormvaleur,% ymax=\ymaxnormvaleur,% - % ylabel={$\alpha\left(|V_{\ell,p}|\right)$},% + % ylabel={$\alpha\left(|V_{p}|\right)$},% % legend entries={Contrôles non lisses,Contrôles lisses},% legend columns=2,% legend style={% diff --git a/doc/images/Ground.tex b/doc/images/Ground.tex new file mode 100644 index 00000000..a031ac5b --- /dev/null +++ b/doc/images/Ground.tex @@ -0,0 +1,26 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + + \coordinate (g) at (0,0); + \node[ground] at (g) {};% + \node[left] at (g) {$\underline{V_{\grm}}$};% + \draw (0, 1) to[short, i=$\underline{I_{\grm}}$, -*] (g); + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/American_Shunt_Line.tex b/doc/images/Line/American_Shunt_Line.tex new file mode 100644 index 00000000..016bca70 --- /dev/null +++ b/doc/images/Line/American_Shunt_Line.tex @@ -0,0 +1,298 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{american}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\zl}{11.5};% + \pgfmathsetmacro{\xr}{\zl+2.5};% + \pgfmathsetmacro{\xri}{\xr+1.5};% + \pgfmathsetmacro{\zm}{21};% + \pgfmathsetmacro{\xm}{32.5};% + \pgfmathsetmacro{\xli}{2.25};% + \pgfmathsetmacro{\xmi}{\xm-2.25};% + \pgfmathsetmacro{\yt}{0};% + \pgfmathsetmacro{\ytt}{-2};% + \pgfmathsetmacro{\yn}{8};% + \pgfmathsetmacro{\yc}{10};% + \pgfmathsetmacro{\yb}{12};% + \pgfmathsetmacro{\ya}{14};% + + % + % Styles + % + \ctikzset{bipoles/length=0.8cm}% + \tikzset{fleche/.style={<->,{Latex[]}-{Latex[]}}};% + + % + % Coordonnées + % + \coordinate (orig) at (0,0);% + + % Début de ligne + \coordinate (vlt) at (\xl,\yt);% + \coordinate (vln) at (\xl,\yn);% + \coordinate (vlc) at (\xl,\yc);% + \coordinate (vlb) at (\xl,\yb);% + \coordinate (vla) at (\xl,\ya);% + + % Fin de ligne + \coordinate (vmt) at (\xm,\yt);% + \coordinate (vmn) at (\xm,\yn);% + \coordinate (vmc) at (\xm,\yc);% + \coordinate (vmb) at (\xm,\yb);% + \coordinate (vma) at (\xm,\ya);% + + % Début Z ligne + \coordinate (zlt) at (\zl,\yt);% + \coordinate (zln) at (\zl,\yn);% + \coordinate (zlc) at (\zl,\yc);% + \coordinate (zlb) at (\zl,\yb);% + \coordinate (zla) at (\zl,\ya);% + + % Après résistance + \coordinate (xrt) at (\xr,\yt);% + \coordinate (xrn) at (\xr,\yn);% + \coordinate (xrc) at (\xr,\yc);% + \coordinate (xrb) at (\xr,\yb);% + \coordinate (xra) at (\xr,\ya);% + + % Après résistance et courant + \coordinate (xrit) at (\xri,\yt);% + \coordinate (xrin) at (\xri,\yn);% + \coordinate (xric) at (\xri,\yc);% + \coordinate (xrib) at (\xri,\yb);% + \coordinate (xria) at (\xri,\ya);% + + % Fin Z ligne + \coordinate (zmt) at (\zm,\yt);% + \coordinate (zmn) at (\zm,\yn);% + \coordinate (zmc) at (\zm,\yc);% + \coordinate (zmb) at (\zm,\yb);% + \coordinate (zma) at (\zm,\ya);% + + % Première 1/2 admittance + \coordinate (xlit) at (\xli,\yt);% + \coordinate (xlin) at (\xli,\yn);% + \coordinate (xlic) at (\xli,\yc);% + \coordinate (xlib) at (\xli,\yb);% + \coordinate (xlia) at (\xli,\ya);% + + % Seconde 1/2 admittance + \coordinate (xmit) at (\xmi,\yt);% + \coordinate (xmin) at (\xmi,\yn);% + \coordinate (xmic) at (\xmi,\yc);% + \coordinate (xmib) at (\xmi,\yb);% + \coordinate (xmia) at (\xmi,\ya);% + + % Terre + \coordinate (g) at (\zl/2+\zm/2,\yt);% + \coordinate (g2) at (\zl/2+\zm/2,\ytt);% + + % + % Dessin + % + % Tensions amont + \node[left] at (vla) {$\underline{V_{1,\arm}}$};% + \node[left] at (vlb) {$\underline{V_{1,\brm}}$};% + \node[left] at (vlc) {$\underline{V_{1,\crm}}$};% + \node[left] at (vln) {$\underline{V_{1,\nrm}}$};% + + % Tensions aval + \node[right] at (vma) {$\underline{V_{2,\arm}}$};% + \node[right] at (vmb) {$\underline{V_{2,\brm}}$};% + \node[right] at (vmc) {$\underline{V_{2,\crm}}$};% + \node[right] at (vmn) {$\underline{V_{2,\nrm}}$};% + + % Tension terre + \node[ground, \circuitikzbasekey/bipoles/length=2cm] at (g2) {};% + \node[left] at (g2) {$\underline{V_{\grm}}$};% + + % Câbles principaux + % Terre + \draw (xlit) to[short,-*] (g) to (xmit);% + \draw (xlit) to[short,-*] (g) to (xmit);% + \draw (g2) to[short, i=$\underline{I_{\grm}}$, *-] (g);% + % Neutre + \draw (vln) to[short,*-,i=$\underline{I_{1,\nrm}}$] (xlin) % + to[short, -*] (zln)% + to[R,l=$R_{\nrm}$] ($(zln)!0.5!(xrn)$)% + to[L,l=$L_{\nrm}$] (xrn)% + to[short,-] (xrin)% + to [short,-*] (zmn)% + to[short,*-] (xmin)% + to[short,-*,i<=$\underline{I_{2,\nrm}}$] (vmn);% + % C + \draw (vlc) to[short,*-,i=$\underline{I_{1,\crm}}$] (xlic)% + to[short, -*] (zlc)% + to[R,l=$R_{\crm}$] ($(zlc)!0.5!(xrc)$)% + to[L,l=$L_{\crm}$] (xrc)% + to[short,-] (xric)% + to [short,-*] (zmc)% + to[short,*-] (xmic)% + to[short,-*,i<=$\underline{I_{2,\crm}}$] (vmc);% + % B + \draw (vlb) to[short,*-,i=$\underline{I_{1,\brm}}$] (xlib)% + to[short, -*] (zlb)% + to[R,l=$R_{\brm}$] ($(zlb)!0.5!(xrb)$) % + to[L,l=$L_{\brm}$] (xrb)% + to[short,-] (xrib)% + to[short,-*] (zmb)% + to[short,*-] (xmib)% + to[short,-*,i<=$\underline{I_{2,\brm}}$] (vmb);% + % A + \draw (vla) to[short,*-,i=$\underline{I_{1,\arm}}$] (xlia)% + to[short, -*] (zla)% + to[R,l=$R_{\arm}$] ($(zla)!0.5!(xra)$)% + to [L,l=$L_{\arm}$] (xra)% + to[short,-] (xria)% + to [short,-*] (zma)% + to[short,*-] (xmia)% + to[short,-*,i<=$\underline{I_{2,\arm}}$] (vma);% + + % Mutuelles des lignes + \pgfmathsetmacro{\xrm}{\xri+0.0*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[midway, right]{$\underline{M_{\abrm}}$} (\xrm,\yb);% + \draw[fleche] (\xrm,\yb) to[bend left] node[midway, right]{$\underline{M_{\bcrm}}$} (\xrm,\yc);% + \draw[fleche] (\xrm,\yc) to[bend left] node[midway, right]{$\underline{M_{\cnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.25*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[near start, right]{$\underline{M_{\carm}}$} (\xrm,\yc);% + \pgfmathsetmacro{\xrm}{\xri+0.40*(\zm-\xri)};% + \draw[fleche] (\xrm,\yb) to[bend left] node[near end, right]{$\underline{M_{\bnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.75*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[midway, left]{$\underline{M_{\anrm}}$} (\xrm,\yn);% + + + % Première 1/2 admittance + \pgfmathsetmacro{\ylihaut}{\yt+0.95*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliplus}{\xli+0.4};% + \pgfmathsetmacro{\xlimoins}{\xli-0.4};% + \draw (xlia) to[short,*-] (\xli,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\arm}}{2}$] (\xliplus,\ylibas) |- (\xli,\ylibas)% + to[short,-*] (\xli,\yt);% + \draw (\xli,\ylihaut) -| (\xlimoins,\ylihaut) to[C,l_=$\dfrac{C_{\arm}}{2}$] (\xlimoins,\ylibas) |- (\xli,\ylibas);% + + \pgfmathsetmacro{\ylihaut}{\yt+0.75*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliref}{\xli+2};% + \pgfmathsetmacro{\xliplus}{\xliref+0.4};% + \pgfmathsetmacro{\xlimoins}{\xliref-0.4};% + \coordinate (ref) at (\xliref,0);% + \draw (xlib -| ref) to[short,*-] (\xliref,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\brm}}{2}$] (\xliplus,\ylibas) |- (\xliref,\ylibas)% + to[short,-*] (\xliref,\yt);% + \draw (\xliref,\ylihaut) -| (\xlimoins,\ylihaut)% + to[C,l_=$\dfrac{C_{\brm}}{2}$] (\xlimoins,\ylibas) |- (\xliref,\ylibas);% + \draw (xlia -| ref) to[C,l_=$\dfrac{C_{\abrm}}{2}$,*-] (xlib -| ref);% + + \pgfmathsetmacro{\ylihaut}{\yt+0.55*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliref}{\xli+4} + \pgfmathsetmacro{\xliplus}{\xliref+0.4};% + \pgfmathsetmacro{\xlimoins}{\xliref-0.4};% + \coordinate (ref) at (\xliref,0);% + \draw (xlic -| ref) to[short,*-] (\xliref,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\crm}}{2}$] (\xliplus,\ylibas) |- (\xliref,\ylibas)% + to[short,-*] (\xliref,\yt);% + \draw (\xliref,\ylihaut) -| (\xlimoins,\ylihaut) % + to[C,l_=$\dfrac{C_{\crm}}{2}$] (\xlimoins,\ylibas) |- (\xliref,\ylibas);% + \draw (xlib -| ref) to[C,l_=$\dfrac{C_{\bcrm}}{2}$,*-*] (xlic -| ref);% + + \pgfmathsetmacro{\ylihaut}{\yt+0.35*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliref}{\xli+6} + \pgfmathsetmacro{\xliplus}{\xliref+0.4};% + \pgfmathsetmacro{\xlimoins}{\xliref-0.4};% + \coordinate (ref) at (\xliref,0);% + \draw (xlin -| ref) to[short,*-] (\xliref,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\nrm}}{2}$] (\xliplus,\ylibas) |- (\xliref,\ylibas)% + to[short,-*] (\xliref,\yt);% + \draw (\xliref,\ylihaut) -| (\xlimoins,\ylihaut)% + to[C,l_=$\dfrac{C_{\nrm}}{2}$] (\xlimoins,\ylibas) |- (\xliref,\ylibas);% + \draw (xlic -| ref) to[C,l_=$\dfrac{C_{\cnrm}}{2}$,*-*] (xlin -| ref);% + \draw (xlia -| ref) to[C,l_=$\dfrac{C_{\carm}}{2}$,*-] (xlib -| ref) to[short,-*] (xlic -| ref);% + + \pgfmathsetmacro{\xliref}{\xli+8};% + \coordinate (ref) at (\xliref,0);% + \draw (xlib -| ref) to[C,l_=$\dfrac{C_{\bnrm}}{2}$,*-] (xlic -| ref) to[short,-*] (xlin -| ref);% + \pgfmathsetmacro{\xliref}{\xli+8.5};% + \coordinate (ref) at (\xliref,0);% + \draw (xlia -| ref) to[C,l_=$\dfrac{C_{\anrm}}{2}$,*-] (xlib -| ref) to[short,-*] (xlin -| ref);% + + % Seconde 1/2 admittance + \pgfmathsetmacro{\ymihaut}{\yt+0.95*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiplus}{\xmi+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmi-0.4};% + \draw (xmia) to[short,*-] (\xmi,\ymihaut) -| (\xmiplus,\ymihaut) % + to[R,l=$\dfrac{G_{\arm}}{2}$] (\xmiplus,\ymibas) |- (\xmi,\ymibas) % + to[short,-*] (\xmi,\yt);% + \draw (\xmi,\ymihaut) -| (\xmimoins,\ymihaut) to[C,l_=$\dfrac{C_{\arm}}{2}$] (\xmimoins,\ymibas) |- (\xmi,\ymibas);% + + \pgfmathsetmacro{\ymihaut}{\yt+0.75*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiref}{\xmi-2};% + \pgfmathsetmacro{\xmiplus}{\xmiref+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmiref-0.4};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmib -| ref) to[short,*-] (\xmiref,\ymihaut) -| (\xmiplus,\ymihaut)% + to[R,l=$\dfrac{G_{\brm}}{2}$] (\xmiplus,\ymibas) |- (\xmiref,\ymibas)% + to[short,-*] (\xmiref,\yt);% + \draw (\xmiref,\ymihaut) -| (\xmimoins,\ymihaut)% + to[C,l_=$\dfrac{C_{\brm}}{2}$] (\xmimoins,\ymibas) |- (\xmiref,\ymibas);% + \draw (xmia -| ref) to[C,l^=$\dfrac{C_{\abrm}}{2}$,*-] (xmib -| ref);% + + \pgfmathsetmacro{\ymihaut}{\yt+0.55*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiref}{\xmi-4} + \pgfmathsetmacro{\xmiplus}{\xmiref+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmiref-0.4};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmic -| ref) to[short,*-] (\xmiref,\ymihaut) -| (\xmiplus,\ymihaut)% + to[R,l=$\dfrac{G_{\crm}}{2}$] (\xmiplus,\ymibas) |- (\xmiref,\ymibas)% + to[short,-*] (\xmiref,\yt);% + \draw (\xmiref,\ymihaut) -| (\xmimoins,\ymihaut)% + to[C,l_=$\dfrac{C_{\crm}}{2}$] (\xmimoins,\ymibas) |- (\xmiref,\ymibas);% + \draw (xmib -| ref) to[C,l^=$\dfrac{C_{\bcrm}}{2}$,*-*] (xmic -| ref);% + + \pgfmathsetmacro{\ymihaut}{\yt+0.35*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiref}{\xmi-6} + \pgfmathsetmacro{\xmiplus}{\xmiref+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmiref-0.4};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmin -| ref) to[short,*-] (\xmiref,\ymihaut) -| (\xmiplus,\ymihaut)% + to[R,l=$\dfrac{G_{\nrm}}{2}$] (\xmiplus,\ymibas) |- (\xmiref,\ymibas)% + to[short,-*] (\xmiref,\yt);% + \draw (\xmiref,\ymihaut) -| (\xmimoins,\ymihaut)% + to[C,l_=$\dfrac{C_{\nrm}}{2}$] (\xmimoins,\ymibas) |- (\xmiref,\ymibas);% + \draw (xmic -| ref) to[C,l^=$\dfrac{C_{\cnrm}}{2}$,*-*] (xmin -| ref);% + \draw (xmia -| ref) to[C,l^=$\dfrac{C_{\carm}}{2}$,*-] (xmib -| ref) to[short,-*] (xmic -| ref);% + + \pgfmathsetmacro{\xmiref}{\xmi-8};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmib -| ref) to[C,l^=$\dfrac{C_{\bnrm}}{2}$,*-] (xmic -| ref) to[short,-*] (xmin -| ref);% + \pgfmathsetmacro{\xmiref}{\xmi-8.5};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmia -| ref) to[C,l^=$\dfrac{C_{\anrm}}{2}$,*-] (xmib -| ref) to[short,-*] (xmin -| ref);% +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/American_Simplified_Line.tex b/doc/images/Line/American_Simplified_Line.tex new file mode 100644 index 00000000..75fc2d02 --- /dev/null +++ b/doc/images/Line/American_Simplified_Line.tex @@ -0,0 +1,174 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{american}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + \pgfmathsetmacro{\xl}{9};% + \pgfmathsetmacro{\zl}{11.5};% + \pgfmathsetmacro{\xr}{\zl+2.5};% + \pgfmathsetmacro{\xri}{\xr+1.5};% + \pgfmathsetmacro{\zm}{21};% + \pgfmathsetmacro{\xm}{23.5};% + \pgfmathsetmacro{\xli}{2.25};% + \pgfmathsetmacro{\xmi}{\xm-2.25};% + \pgfmathsetmacro{\yt}{0};% + \pgfmathsetmacro{\ytt}{-2};% + \pgfmathsetmacro{\yn}{8};% + \pgfmathsetmacro{\yc}{10};% + \pgfmathsetmacro{\yb}{12};% + \pgfmathsetmacro{\ya}{14};% + + % + % Styles + % + \ctikzset{bipoles/length=0.8cm}% + \tikzset{fleche/.style={<->,{Latex[]}-{Latex[]}}};% + + % + % Coordonnées + % + \coordinate (orig) at (0,0); + + % Début de ligne + \coordinate (vlt) at (\xl,\yt);% + \coordinate (vln) at (\xl,\yn);% + \coordinate (vlc) at (\xl,\yc);% + \coordinate (vlb) at (\xl,\yb);% + \coordinate (vla) at (\xl,\ya);% + + % Fin de ligne + \coordinate (vmt) at (\xm,\yt);% + \coordinate (vmn) at (\xm,\yn);% + \coordinate (vmc) at (\xm,\yc);% + \coordinate (vmb) at (\xm,\yb);% + \coordinate (vma) at (\xm,\ya);% + + % Début Z ligne + \coordinate (zlt) at (\zl,\yt);% + \coordinate (zln) at (\zl,\yn);% + \coordinate (zlc) at (\zl,\yc);% + \coordinate (zlb) at (\zl,\yb);% + \coordinate (zla) at (\zl,\ya);% + + % Après résistance + \coordinate (xrt) at (\xr,\yt);% + \coordinate (xrn) at (\xr,\yn);% + \coordinate (xrc) at (\xr,\yc);% + \coordinate (xrb) at (\xr,\yb);% + \coordinate (xra) at (\xr,\ya);% + + % Après résistance et courant + \coordinate (xrit) at (\xri,\yt);% + \coordinate (xrin) at (\xri,\yn);% + \coordinate (xric) at (\xri,\yc);% + \coordinate (xrib) at (\xri,\yb);% + \coordinate (xria) at (\xri,\ya);% + + % Fin Z ligne + \coordinate (zmt) at (\zm,\yt);% + \coordinate (zmn) at (\zm,\yn);% + \coordinate (zmc) at (\zm,\yc);% + \coordinate (zmb) at (\zm,\yb);% + \coordinate (zma) at (\zm,\ya);% + + % Première 1/2 admittance + \coordinate (xlit) at (\xli,\yt);% + \coordinate (xlin) at (\xli,\yn);% + \coordinate (xlic) at (\xli,\yc);% + \coordinate (xlib) at (\xli,\yb);% + \coordinate (xlia) at (\xli,\ya);% + + % Seconde 1/2 admittance + \coordinate (xmit) at (\xmi,\yt);% + \coordinate (xmin) at (\xmi,\yn);% + \coordinate (xmic) at (\xmi,\yc);% + \coordinate (xmib) at (\xmi,\yb);% + \coordinate (xmia) at (\xmi,\ya);% + + % Terre + \coordinate (g) at (\zl/2+\zm/2,\yt);% + \coordinate (g2) at (\zl/2+\zm/2,\ytt);% + + % + % Dessin + % + % Tensions amont + \node[left] at (vla) {$\underline{V_{1,\arm}}$};% + \node[left] at (vlb) {$\underline{V_{1,\brm}}$};% + \node[left] at (vlc) {$\underline{V_{1,\crm}}$};% + \node[left] at (vln) {$\underline{V_{1,\nrm}}$};% + + % Tensions aval + \node[right] at (vma) {$\underline{V_{2,\arm}}$};% + \node[right] at (vmb) {$\underline{V_{2,\brm}}$};% + \node[right] at (vmc) {$\underline{V_{2,\crm}}$};% + \node[right] at (vmn) {$\underline{V_{2,\nrm}}$};% + + % Câbles principaux + % Neutre + \draw (vln) to[short,*-*,i=$\underline{I_{1,\nrm}}$] (zln) + to[R,l=$R_{\nrm}$] ($(zln)!0.5!(xrn)$) % + to[L,l=$L_{\nrm}$] (xrn)% + to[short,-] (xrin) % + to[short,-*] (zmn)% + to[short,-*,i<=$\underline{I_{2,\nrm}}$] (vmn);% + % C + \draw (vlc) to[short,*-*,i=$\underline{I_{1,\crm}}$] (zlc)% + to[R,l=$R_{\crm}$] ($(zlc)!0.5!(xrc)$) % + to[L,l=$L_{\crm}$] (xrc)% + to[short,-] (xric) % + to [short,-*] (zmc) % + to[short,-*,i<=$\underline{I_{2,\crm}}$] (vmc);% + % B + \draw (vlb) to[short,*-*,i=$\underline{I_{1,\brm}}$] (zlb)% + to[R,l=$R_{\brm}$] ($(zlb)!0.5!(xrb)$) % + to[L,l=$L_{\brm}$] (xrb)% + to[short,-] (xrib) % + to[short,-*] (zmb)% + to[short,-*,i<=$\underline{I_{2,\brm}}$] (vmb);% + % A + \draw (vla) to[short,*-*,i=$\underline{I_{1,\arm}}$] (zla)% + to[R,l=$R_{\arm}$] ($(zla)!0.5!(xra)$)% + to[L,l=$L_{\arm}$] (xra)% + to[short,-] (xria) % + to[short,-*] (zma)% + to[short,-*,i<=$\underline{I_{2,\arm}}$] (vma);% + + % Mutuelles des lignes + \pgfmathsetmacro{\xrm}{\xri+0.0*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) % + to[bend left] node[midway,right]{$\underline{M_{\abrm}}$} (\xrm,\yb);% + \draw[fleche] (\xrm,\yb) % + to[bend left] node[midway, right]{$\underline{M_{\bcrm}}$} (\xrm,\yc);% + \draw[fleche] (\xrm,\yc) % + to[bend left] node[midway,right]{$\underline{M_{\cnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.25*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) % + to[bend left] node[near start,right]{$\underline{M_{\carm}}$} (\xrm,\yc);% + \pgfmathsetmacro{\xrm}{\xri+0.40*(\zm-\xri)};% + \draw[fleche] (\xrm,\yb) % + to[bend left] node[near end,right]{$\underline{M_{\bnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.75*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) % + to[bend left] node[midway,left]{$\underline{M_{\anrm}}$} (\xrm,\yn);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Line/European_Shunt_Line.tex b/doc/images/Line/European_Shunt_Line.tex new file mode 100644 index 00000000..c750da7a --- /dev/null +++ b/doc/images/Line/European_Shunt_Line.tex @@ -0,0 +1,298 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\zl}{11.5};% + \pgfmathsetmacro{\xr}{\zl+2.5};% + \pgfmathsetmacro{\xri}{\xr+1.5};% + \pgfmathsetmacro{\zm}{21};% + \pgfmathsetmacro{\xm}{32.5};% + \pgfmathsetmacro{\xli}{2.25};% + \pgfmathsetmacro{\xmi}{\xm-2.25};% + \pgfmathsetmacro{\yt}{0};% + \pgfmathsetmacro{\ytt}{-2};% + \pgfmathsetmacro{\yn}{8};% + \pgfmathsetmacro{\yc}{10};% + \pgfmathsetmacro{\yb}{12};% + \pgfmathsetmacro{\ya}{14};% + + % + % Styles + % + \ctikzset{bipoles/length=0.8cm}% + \tikzset{fleche/.style={<->,{Latex[]}-{Latex[]}}};% + + % + % Coordonnées + % + \coordinate (orig) at (0,0);% + + % Début de ligne + \coordinate (vlt) at (\xl,\yt);% + \coordinate (vln) at (\xl,\yn);% + \coordinate (vlc) at (\xl,\yc);% + \coordinate (vlb) at (\xl,\yb);% + \coordinate (vla) at (\xl,\ya);% + + % Fin de ligne + \coordinate (vmt) at (\xm,\yt);% + \coordinate (vmn) at (\xm,\yn);% + \coordinate (vmc) at (\xm,\yc);% + \coordinate (vmb) at (\xm,\yb);% + \coordinate (vma) at (\xm,\ya);% + + % Début Z ligne + \coordinate (zlt) at (\zl,\yt);% + \coordinate (zln) at (\zl,\yn);% + \coordinate (zlc) at (\zl,\yc);% + \coordinate (zlb) at (\zl,\yb);% + \coordinate (zla) at (\zl,\ya);% + + % Après résistance + \coordinate (xrt) at (\xr,\yt);% + \coordinate (xrn) at (\xr,\yn);% + \coordinate (xrc) at (\xr,\yc);% + \coordinate (xrb) at (\xr,\yb);% + \coordinate (xra) at (\xr,\ya);% + + % Après résistance et courant + \coordinate (xrit) at (\xri,\yt);% + \coordinate (xrin) at (\xri,\yn);% + \coordinate (xric) at (\xri,\yc);% + \coordinate (xrib) at (\xri,\yb);% + \coordinate (xria) at (\xri,\ya);% + + % Fin Z ligne + \coordinate (zmt) at (\zm,\yt);% + \coordinate (zmn) at (\zm,\yn);% + \coordinate (zmc) at (\zm,\yc);% + \coordinate (zmb) at (\zm,\yb);% + \coordinate (zma) at (\zm,\ya);% + + % Première 1/2 admittance + \coordinate (xlit) at (\xli,\yt);% + \coordinate (xlin) at (\xli,\yn);% + \coordinate (xlic) at (\xli,\yc);% + \coordinate (xlib) at (\xli,\yb);% + \coordinate (xlia) at (\xli,\ya);% + + % Seconde 1/2 admittance + \coordinate (xmit) at (\xmi,\yt);% + \coordinate (xmin) at (\xmi,\yn);% + \coordinate (xmic) at (\xmi,\yc);% + \coordinate (xmib) at (\xmi,\yb);% + \coordinate (xmia) at (\xmi,\ya);% + + % Terre + \coordinate (g) at (\zl/2+\zm/2,\yt);% + \coordinate (g2) at (\zl/2+\zm/2,\ytt);% + + % + % Dessin + % + % Tensions amont + \node[left] at (vla) {$\underline{V_{1,\arm}}$};% + \node[left] at (vlb) {$\underline{V_{1,\brm}}$};% + \node[left] at (vlc) {$\underline{V_{1,\crm}}$};% + \node[left] at (vln) {$\underline{V_{1,\nrm}}$};% + + % Tensions aval + \node[right] at (vma) {$\underline{V_{2,\arm}}$};% + \node[right] at (vmb) {$\underline{V_{2,\brm}}$};% + \node[right] at (vmc) {$\underline{V_{2,\crm}}$};% + \node[right] at (vmn) {$\underline{V_{2,\nrm}}$};% + + % Tension terre + \node[ground, \circuitikzbasekey/bipoles/length=2cm] at (g2) {};% + \node[left] at (g2) {$\underline{V_{\grm}}$};% + + % Câbles principaux + % Terre + \draw (xlit) to[short,-*] (g) to (xmit);% + \draw (xlit) to[short,-*] (g) to (xmit);% + \draw (g2) to[short, i=$\underline{I_{\grm}}$, *-] (g);% + % Neutre + \draw (vln) to[short,*-,i=$\underline{I_{1,\nrm}}$] (xlin) % + to[short, -*] (zln)% + to[R,l=$R_{\nrm}$] ($(zln)!0.5!(xrn)$)% + to[L,l=$L_{\nrm}$] (xrn)% + to[short,-] (xrin)% + to [short,-*] (zmn)% + to[short,*-] (xmin)% + to[short,-*,i<=$\underline{I_{2,\nrm}}$] (vmn);% + % C + \draw (vlc) to[short,*-,i=$\underline{I_{1,\crm}}$] (xlic)% + to[short, -*] (zlc)% + to[R,l=$R_{\crm}$] ($(zlc)!0.5!(xrc)$)% + to[L,l=$L_{\crm}$] (xrc)% + to[short,-] (xric)% + to [short,-*] (zmc)% + to[short,*-] (xmic)% + to[short,-*,i<=$\underline{I_{2,\crm}}$] (vmc);% + % B + \draw (vlb) to[short,*-,i=$\underline{I_{1,\brm}}$] (xlib)% + to[short, -*] (zlb)% + to[R,l=$R_{\brm}$] ($(zlb)!0.5!(xrb)$) % + to[L,l=$L_{\brm}$] (xrb)% + to[short,-] (xrib)% + to[short,-*] (zmb)% + to[short,*-] (xmib)% + to[short,-*,i<=$\underline{I_{2,\brm}}$] (vmb);% + % A + \draw (vla) to[short,*-,i=$\underline{I_{1,\arm}}$] (xlia)% + to[short, -*] (zla)% + to[R,l=$R_{\arm}$] ($(zla)!0.5!(xra)$)% + to [L,l=$L_{\arm}$] (xra)% + to[short,-] (xria)% + to [short,-*] (zma)% + to[short,*-] (xmia)% + to[short,-*,i<=$\underline{I_{2,\arm}}$] (vma);% + + % Mutuelles des lignes + \pgfmathsetmacro{\xrm}{\xri+0.0*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[midway, right]{$\underline{M_{\abrm}}$} (\xrm,\yb);% + \draw[fleche] (\xrm,\yb) to[bend left] node[midway, right]{$\underline{M_{\bcrm}}$} (\xrm,\yc);% + \draw[fleche] (\xrm,\yc) to[bend left] node[midway, right]{$\underline{M_{\cnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.25*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[near start, right]{$\underline{M_{\carm}}$} (\xrm,\yc);% + \pgfmathsetmacro{\xrm}{\xri+0.40*(\zm-\xri)};% + \draw[fleche] (\xrm,\yb) to[bend left] node[near end, right]{$\underline{M_{\bnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.75*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[midway, left]{$\underline{M_{\anrm}}$} (\xrm,\yn);% + + + % Première 1/2 admittance + \pgfmathsetmacro{\ylihaut}{\yt+0.95*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliplus}{\xli+0.4};% + \pgfmathsetmacro{\xlimoins}{\xli-0.4};% + \draw (xlia) to[short,*-] (\xli,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\arm}}{2}$] (\xliplus,\ylibas) |- (\xli,\ylibas)% + to[short,-*] (\xli,\yt);% + \draw (\xli,\ylihaut) -| (\xlimoins,\ylihaut) to[C,l_=$\dfrac{C_{\arm}}{2}$] (\xlimoins,\ylibas) |- (\xli,\ylibas);% + + \pgfmathsetmacro{\ylihaut}{\yt+0.75*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliref}{\xli+2};% + \pgfmathsetmacro{\xliplus}{\xliref+0.4};% + \pgfmathsetmacro{\xlimoins}{\xliref-0.4};% + \coordinate (ref) at (\xliref,0);% + \draw (xlib -| ref) to[short,*-] (\xliref,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\brm}}{2}$] (\xliplus,\ylibas) |- (\xliref,\ylibas)% + to[short,-*] (\xliref,\yt);% + \draw (\xliref,\ylihaut) -| (\xlimoins,\ylihaut)% + to[C,l_=$\dfrac{C_{\brm}}{2}$] (\xlimoins,\ylibas) |- (\xliref,\ylibas);% + \draw (xlia -| ref) to[C,l_=$\dfrac{C_{\abrm}}{2}$,*-] (xlib -| ref);% + + \pgfmathsetmacro{\ylihaut}{\yt+0.55*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliref}{\xli+4} + \pgfmathsetmacro{\xliplus}{\xliref+0.4};% + \pgfmathsetmacro{\xlimoins}{\xliref-0.4};% + \coordinate (ref) at (\xliref,0);% + \draw (xlic -| ref) to[short,*-] (\xliref,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\crm}}{2}$] (\xliplus,\ylibas) |- (\xliref,\ylibas)% + to[short,-*] (\xliref,\yt);% + \draw (\xliref,\ylihaut) -| (\xlimoins,\ylihaut) % + to[C,l_=$\dfrac{C_{\crm}}{2}$] (\xlimoins,\ylibas) |- (\xliref,\ylibas);% + \draw (xlib -| ref) to[C,l_=$\dfrac{C_{\bcrm}}{2}$,*-*] (xlic -| ref);% + + \pgfmathsetmacro{\ylihaut}{\yt+0.35*(\yn-\yt)};% + \pgfmathsetmacro{\ylibas}{\ylihaut-1.2};% + \pgfmathsetmacro{\xliref}{\xli+6} + \pgfmathsetmacro{\xliplus}{\xliref+0.4};% + \pgfmathsetmacro{\xlimoins}{\xliref-0.4};% + \coordinate (ref) at (\xliref,0);% + \draw (xlin -| ref) to[short,*-] (\xliref,\ylihaut) -| (\xliplus,\ylihaut)% + to[R=$\dfrac{G_{\nrm}}{2}$] (\xliplus,\ylibas) |- (\xliref,\ylibas)% + to[short,-*] (\xliref,\yt);% + \draw (\xliref,\ylihaut) -| (\xlimoins,\ylihaut)% + to[C,l_=$\dfrac{C_{\nrm}}{2}$] (\xlimoins,\ylibas) |- (\xliref,\ylibas);% + \draw (xlic -| ref) to[C,l_=$\dfrac{C_{\cnrm}}{2}$,*-*] (xlin -| ref);% + \draw (xlia -| ref) to[C,l_=$\dfrac{C_{\carm}}{2}$,*-] (xlib -| ref) to[short,-*] (xlic -| ref);% + + \pgfmathsetmacro{\xliref}{\xli+8};% + \coordinate (ref) at (\xliref,0);% + \draw (xlib -| ref) to[C,l_=$\dfrac{C_{\bnrm}}{2}$,*-] (xlic -| ref) to[short,-*] (xlin -| ref);% + \pgfmathsetmacro{\xliref}{\xli+8.5};% + \coordinate (ref) at (\xliref,0);% + \draw (xlia -| ref) to[C,l_=$\dfrac{C_{\anrm}}{2}$,*-] (xlib -| ref) to[short,-*] (xlin -| ref);% + + % Seconde 1/2 admittance + \pgfmathsetmacro{\ymihaut}{\yt+0.95*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiplus}{\xmi+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmi-0.4};% + \draw (xmia) to[short,*-] (\xmi,\ymihaut) -| (\xmiplus,\ymihaut) % + to[R,l=$\dfrac{G_{\arm}}{2}$] (\xmiplus,\ymibas) |- (\xmi,\ymibas) % + to[short,-*] (\xmi,\yt);% + \draw (\xmi,\ymihaut) -| (\xmimoins,\ymihaut) to[C,l_=$\dfrac{C_{\arm}}{2}$] (\xmimoins,\ymibas) |- (\xmi,\ymibas);% + + \pgfmathsetmacro{\ymihaut}{\yt+0.75*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiref}{\xmi-2};% + \pgfmathsetmacro{\xmiplus}{\xmiref+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmiref-0.4};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmib -| ref) to[short,*-] (\xmiref,\ymihaut) -| (\xmiplus,\ymihaut)% + to[R,l=$\dfrac{G_{\brm}}{2}$] (\xmiplus,\ymibas) |- (\xmiref,\ymibas)% + to[short,-*] (\xmiref,\yt);% + \draw (\xmiref,\ymihaut) -| (\xmimoins,\ymihaut)% + to[C,l_=$\dfrac{C_{\brm}}{2}$] (\xmimoins,\ymibas) |- (\xmiref,\ymibas);% + \draw (xmia -| ref) to[C,l^=$\dfrac{C_{\abrm}}{2}$,*-] (xmib -| ref);% + + \pgfmathsetmacro{\ymihaut}{\yt+0.55*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiref}{\xmi-4} + \pgfmathsetmacro{\xmiplus}{\xmiref+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmiref-0.4};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmic -| ref) to[short,*-] (\xmiref,\ymihaut) -| (\xmiplus,\ymihaut)% + to[R,l=$\dfrac{G_{\crm}}{2}$] (\xmiplus,\ymibas) |- (\xmiref,\ymibas)% + to[short,-*] (\xmiref,\yt);% + \draw (\xmiref,\ymihaut) -| (\xmimoins,\ymihaut)% + to[C,l_=$\dfrac{C_{\crm}}{2}$] (\xmimoins,\ymibas) |- (\xmiref,\ymibas);% + \draw (xmib -| ref) to[C,l^=$\dfrac{C_{\bcrm}}{2}$,*-*] (xmic -| ref);% + + \pgfmathsetmacro{\ymihaut}{\yt+0.35*(\yn-\yt)};% + \pgfmathsetmacro{\ymibas}{\ymihaut-1.2};% + \pgfmathsetmacro{\xmiref}{\xmi-6} + \pgfmathsetmacro{\xmiplus}{\xmiref+0.4};% + \pgfmathsetmacro{\xmimoins}{\xmiref-0.4};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmin -| ref) to[short,*-] (\xmiref,\ymihaut) -| (\xmiplus,\ymihaut)% + to[R,l=$\dfrac{G_{\nrm}}{2}$] (\xmiplus,\ymibas) |- (\xmiref,\ymibas)% + to[short,-*] (\xmiref,\yt);% + \draw (\xmiref,\ymihaut) -| (\xmimoins,\ymihaut)% + to[C,l_=$\dfrac{C_{\nrm}}{2}$] (\xmimoins,\ymibas) |- (\xmiref,\ymibas);% + \draw (xmic -| ref) to[C,l^=$\dfrac{C_{\cnrm}}{2}$,*-*] (xmin -| ref);% + \draw (xmia -| ref) to[C,l^=$\dfrac{C_{\carm}}{2}$,*-] (xmib -| ref) to[short,-*] (xmic -| ref);% + + \pgfmathsetmacro{\xmiref}{\xmi-8};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmib -| ref) to[C,l^=$\dfrac{C_{\bnrm}}{2}$,*-] (xmic -| ref) to[short,-*] (xmin -| ref);% + \pgfmathsetmacro{\xmiref}{\xmi-8.5};% + \coordinate (ref) at (\xmiref,0);% + \draw (xmia -| ref) to[C,l^=$\dfrac{C_{\anrm}}{2}$,*-] (xmib -| ref) to[short,-*] (xmin -| ref);% +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/European_Simplified_Line.tex b/doc/images/Line/European_Simplified_Line.tex new file mode 100644 index 00000000..a832da5e --- /dev/null +++ b/doc/images/Line/European_Simplified_Line.tex @@ -0,0 +1,168 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + \pgfmathsetmacro{\xl}{9};% + \pgfmathsetmacro{\zl}{11.5};% + \pgfmathsetmacro{\xr}{\zl+2.5};% + \pgfmathsetmacro{\xri}{\xr+1.5};% + \pgfmathsetmacro{\zm}{21};% + \pgfmathsetmacro{\xm}{23.5};% + \pgfmathsetmacro{\xli}{2.25};% + \pgfmathsetmacro{\xmi}{\xm-2.25};% + \pgfmathsetmacro{\yt}{0};% + \pgfmathsetmacro{\ytt}{-2};% + \pgfmathsetmacro{\yn}{8};% + \pgfmathsetmacro{\yc}{10};% + \pgfmathsetmacro{\yb}{12};% + \pgfmathsetmacro{\ya}{14};% + + % + % Styles + % + \ctikzset{bipoles/length=0.8cm}% + \tikzset{fleche/.style={<->,{Latex[]}-{Latex[]}}};% + + % + % Coordonnées + % + \coordinate (orig) at (0,0);% + + % Début de ligne + \coordinate (vlt) at (\xl,\yt);% + \coordinate (vln) at (\xl,\yn);% + \coordinate (vlc) at (\xl,\yc);% + \coordinate (vlb) at (\xl,\yb);% + \coordinate (vla) at (\xl,\ya);% + + % Fin de ligne + \coordinate (vmt) at (\xm,\yt);% + \coordinate (vmn) at (\xm,\yn);% + \coordinate (vmc) at (\xm,\yc);% + \coordinate (vmb) at (\xm,\yb);% + \coordinate (vma) at (\xm,\ya);% + + % Début Z ligne + \coordinate (zlt) at (\zl,\yt);% + \coordinate (zln) at (\zl,\yn);% + \coordinate (zlc) at (\zl,\yc);% + \coordinate (zlb) at (\zl,\yb);% + \coordinate (zla) at (\zl,\ya);% + + % Après résistance + \coordinate (xrt) at (\xr,\yt);% + \coordinate (xrn) at (\xr,\yn);% + \coordinate (xrc) at (\xr,\yc);% + \coordinate (xrb) at (\xr,\yb);% + \coordinate (xra) at (\xr,\ya);% + + % Après résistance et courant + \coordinate (xrit) at (\xri,\yt);% + \coordinate (xrin) at (\xri,\yn);% + \coordinate (xric) at (\xri,\yc);% + \coordinate (xrib) at (\xri,\yb);% + \coordinate (xria) at (\xri,\ya);% + + % Fin Z ligne + \coordinate (zmt) at (\zm,\yt);% + \coordinate (zmn) at (\zm,\yn);% + \coordinate (zmc) at (\zm,\yc);% + \coordinate (zmb) at (\zm,\yb);% + \coordinate (zma) at (\zm,\ya);% + + % Première 1/2 admittance + \coordinate (xlit) at (\xli,\yt);% + \coordinate (xlin) at (\xli,\yn);% + \coordinate (xlic) at (\xli,\yc);% + \coordinate (xlib) at (\xli,\yb);% + \coordinate (xlia) at (\xli,\ya);% + + % Seconde 1/2 admittance + \coordinate (xmit) at (\xmi,\yt);% + \coordinate (xmin) at (\xmi,\yn);% + \coordinate (xmic) at (\xmi,\yc);% + \coordinate (xmib) at (\xmi,\yb);% + \coordinate (xmia) at (\xmi,\ya);% + + % Terre + \coordinate (g) at (\zl/2+\zm/2,\yt);% + \coordinate (g2) at (\zl/2+\zm/2,\ytt);% + + % + % Dessin + % + % Tensions amont + \node[left] at (vla) {$\underline{V_{1,\arm}}$}; + \node[left] at (vlb) {$\underline{V_{1,\brm}}$}; + \node[left] at (vlc) {$\underline{V_{1,\crm}}$}; + \node[left] at (vln) {$\underline{V_{1,\nrm}}$}; + + % Tensions aval + \node[right] at (vma) {$\underline{V_{2,\arm}}$}; + \node[right] at (vmb) {$\underline{V_{2,\brm}}$}; + \node[right] at (vmc) {$\underline{V_{2,\crm}}$}; + \node[right] at (vmn) {$\underline{V_{2,\nrm}}$}; + + % Câbles principaux + % Neutre + \draw (vln) to[short,*-*,i=$\underline{I_{1,\nrm}}$](zln)% + to[R,l=$R_{\nrm}$] ($(zln)!0.5!(xrn)$) % + to[L,l=$L_{\nrm}$] (xrn)% + to[short,-] (xrin)% + to[short,-*] (zmn)% + to[short,-*,i<=$\underline{I_{2,\nrm}}$] (vmn);% + % C + \draw (vlc) to[short,*-*,i=$\underline{I_{1,\crm}}$] (zlc) % + to[R,l=$R_{\crm}$] ($(zlc)!0.5!(xrc)$) % + to[L,l=$L_{\crm}$] (xrc)% + to[short,-] (xric) % + to [short,-*] (zmc)% + to[short,-*,i<=$\underline{I_{2,\crm}}$] (vmc);% + % B + \draw (vlb) to[short,*-*,i=$\underline{I_{1,\brm}}$] (zlb) % + to[R,l=$R_{\brm}$] ($(zlb)!0.5!(xrb)$) % + to[L,l=$L_{\brm}$] (xrb)% + to[short,-] (xrib) % + to[short,-*] (zmb)% + to[short,-*,i<=$\underline{I_{2,\brm}}$] (vmb);% + % A + \draw (vla) to[short,*-*,i=$\underline{I_{1,\arm}}$] (zla)% + to[R,l=$R_{\arm}$] ($(zla)!0.5!(xra)$)% + to[L,l=$L_{\arm}$] (xra)% + to[short,-] (xria) % + to[short,-*] (zma)% + to[short,-*,i<=$\underline{I_{2,\arm}}$] (vma);% + + % Mutuelles des lignes + \pgfmathsetmacro{\xrm}{\xri+0.0*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[midway,right]{$\underline{M_{\abrm}}$} (\xrm,\yb);% + \draw[fleche] (\xrm,\yb) to[bend left] node[midway,right]{$\underline{M_{\bcrm}}$} (\xrm,\yc);% + \draw[fleche] (\xrm,\yc) to[bend left] node[midway,right]{$\underline{M_{\cnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.25*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[near start,right]{$\underline{M_{\carm}}$} (\xrm,\yc);% + \pgfmathsetmacro{\xrm}{\xri+0.40*(\zm-\xri)};% + \draw[fleche] (\xrm,\yb) to[bend left] node[near end,right]{$\underline{M_{\bnrm}}$} (\xrm,\yn);% + \pgfmathsetmacro{\xrm}{\xri+0.75*(\zm-\xri)};% + \draw[fleche] (\xrm,\ya) to[bend left] node[midway,left]{$\underline{M_{\anrm}}$} (\xrm,\yn);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/Image_Method_Circle.tex b/doc/images/Line/Image_Method_Circle.tex new file mode 100644 index 00000000..af5da16a --- /dev/null +++ b/doc/images/Line/Image_Method_Circle.tex @@ -0,0 +1,43 @@ +\input{Preambule}% + +\begin{document} + \ctikzset{european, straight voltages, cute inductors}% + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \tikzset{% + wire/.pic={% + \fill[RoseauBlue, draw=black] (0,0) circle[radius=0.3];% + }% + }% + + % Ground + \draw[thick] (0,0) circle[radius=5] ++(45:5) node[above right] {Ground};% + + % Wires + \path (0:3) coordinate (w1) pic {wire} node[above=0.3] {1};% + \path (120:3) coordinate (w2) pic {wire} node[above=0.3] {2};% + \path (240:3) coordinate (w3) pic {wire} node[above=0.3] {3};% + + % Images + \path (0:7) coordinate (w1p) pic {wire} node[above=0.3] {1'};% + \path (120:7) coordinate (w2p) pic {wire} node[above=0.3] {2'};% + \path (240:7) coordinate (w3p) pic {wire} node[above=0.3] {3'};% + + % Distances + \draw[{Latex[]}-{Latex[]}] (w1) -- (w2) node[midway,above] {$D_{12}$};% + \draw[{Latex[]}-{Latex[]}] (w1) -- (w2p) node[pos=0.4,right] {$D'_{12}$};% + \draw[{Latex[]}-{Latex[]}] (w3) -- (w3p) node[pos=0.4,right] {$D'_{3}$};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/Image_Method_Plane.tex b/doc/images/Line/Image_Method_Plane.tex new file mode 100644 index 00000000..d61e8780 --- /dev/null +++ b/doc/images/Line/Image_Method_Plane.tex @@ -0,0 +1,44 @@ +\input{Preambule}% + +\begin{document} + \ctikzset{european, straight voltages, cute inductors}% + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \tikzset{% + wire/.pic={% + \fill[RoseauBlue, draw=black] (0,0) circle[radius=0.3];% + }% + }% + + % Ground + \draw[thick] (-5,0) -- (5,0) node[right] {Ground};% + + % Wires + \path (-4,5) coordinate (w1) pic {wire} node[above=0.3] {1};% + \path (0,5) coordinate (w2) pic {wire} node[above=0.3] {2};% + \path (4,5) coordinate (w3) pic {wire} node[above=0.3] {3};% + + % Images + \path (-4,-5) coordinate (w1p) pic {wire} node[above=0.3] {1'};% + \path (0,-5) coordinate (w2p) pic {wire} node[above=0.3] {2'};% + \path (4,-5) coordinate (w3p) pic {wire} node[above right=0.3] {3'};% + + % Distances + \draw[{Latex[]}-{Latex[]}] (w1) -- (w1 |- {(0,0)}) node[midway,left] {$h$};% + \draw[{Latex[]}-{Latex[]}] (w1) -- (w2) node[midway,above] {$D_{12}$};% + \draw[{Latex[]}-{Latex[]}] (w1) -- (w2p) node[pos=0.4,right] {$D'_{12}$};% + \draw[{Latex[]}-{Latex[]}] (w3) -- (w3p) node[pos=0.4,right] {$D'_{3}$};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/Twisted_Geometry.tex b/doc/images/Line/Twisted_Geometry.tex new file mode 100644 index 00000000..a709d8e4 --- /dev/null +++ b/doc/images/Line/Twisted_Geometry.tex @@ -0,0 +1,69 @@ +\input{Preambule}% + +\usetikzlibrary{patterns}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \begin{scope}[local bounding box=dessin] + % + % Terre + % + \filldraw[pattern=north west lines] (-5,0) rectangle (5,0.5);% + + % + % Conducteurs + % + % Neutre + \coordinate (n center) at (0,8);% + \path[fill=RoseauGrey, draw=black] (n center) circle[radius=1];% + \draw[pattern=north east lines, pattern color=red, preaction={fill, white}] (n center) circle[radius=0.90];% + \node[shape=circle, draw, fill=white] (n center node) at (n center) {$\nrm$};% + + % Phases + \foreach \x/\y/\z in {a/135/$\arm$,b/45/$\brm$,c/-90/$\crm$} {% + \path (n center) ++(\y:2.5) coordinate (\x\space center);% + \path[fill=RoseauGrey, draw=black] (\x\space center) circle[radius=1.5];% + \draw[pattern=north east lines, pattern color=RoseauGreen, preaction={fill, white}] % + (\x\space center) circle[radius=1.4];% + \node[shape=circle, draw, fill=white] at (\x\space center) {\z};% + }% + \draw[dashed] (n center) circle[radius=4];% + + % Hauteur + \coordinate (top height) at (n center -| {(-4.5,0)});% + \draw[{Latex[]-Latex[]}] (-4.5,0.5) -- (top height) node[midway,right] {$h$}; + \draw[dashed] (top height) -- (n center node);% + \end{scope} + + % Légende + \path let \p1=($(dessin.north)!0.5!(dessin.south)$) in % + coordinate (ancre legende) at (5,\y1);% + \begin{scope} + [shift={(ancre legende)}, local bounding box=legende] + \path[pattern=north east lines, pattern color=red] (0, 2) circle[radius=0.25];% + \node[right] at (0.3, 2) {Neutral conductor};% + \path[pattern=north east lines, pattern color=RoseauGreen] (0, 1) circle[radius=0.25];% + \node[right] at (0.3, 1) {Phase conductor};% + \path[fill=RoseauGrey, draw=black] (0, 0) circle[radius=0.25];% + \node[right] at (0.3, 0) {Insulator};% + \filldraw[pattern=north west lines] (-0.25, -1.25) rectangle +(0.5, 0.5);% + \node[right] at (0.3, -1) {Ground};% + \node[shape=circle, draw, fill=white] at (0, -2) {$\arm$};% + \node[right] at (0.3, -2) {Identifier (phase or neutral)};% + \end{scope} + \draw ($(legende.south west)-(0.25,0.25)$) rectangle ($(legende.north east)+(0.25,0.25)$);% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/Twisted_Geometry_Details.tex b/doc/images/Line/Twisted_Geometry_Details.tex new file mode 100644 index 00000000..094cc709 --- /dev/null +++ b/doc/images/Line/Twisted_Geometry_Details.tex @@ -0,0 +1,69 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \tikzset{% + point/.pic={% + \fill[black] (0,0) circle[radius=0.05];% + }% + }% + + % + % Conducteurs + % + % Neutre + \coordinate (neutral center) at (0,8);% + \draw (neutral center) pic {point} node [below left] {N};% + \draw (neutral center) circle[radius=1];% + \draw (neutral center) circle[radius=0.90];% + + % Phases + \foreach \x/\y/\z/\p in {a/135/A/below,b/45/B/right,c/-90/C/left} {% + \path (neutral center) ++(\y:2.5) coordinate (\x\space center);% + \draw (\x\space center) pic {point} node[\p] {\z};% + \draw (\x\space center) circle[radius=1.5];% + \draw (\x\space center) circle[radius=1.4];% + }% + \draw[dashed] (neutral center) circle[radius=4];% + + % + % Annotations + % + % Exterior diameter + \draw[{Latex[]}-{Latex[]}] (neutral center) ++(5,-4)% + coordinate (bottom dext)% + -- ++(0,8) coordinate(top dext)% + node[midway, right] {$d_{\mathrm{ext}}$};% + \draw[dashed] (neutral center) ++(0,4) -- (top dext);% + \draw[dashed] (neutral center) ++(0,-4) -- (bottom dext);% + + % External diameter divided by 4 + \draw[{Latex[]}-{Latex[]}] (neutral center) -- (b center) % + node [pos=0.6, above] {$\dfrac{d_{\mathrm{ext}}}{4}$};% + + % Arc + \draw[dashed] (neutral center) -- ++(0,-5);% + \draw[dashed] (neutral center) -- ++(135:5) coordinate (start arc);% + \draw[{Latex[]}-{Latex[]}] (start arc) arc[start angle=135, end angle=270, radius=5]% + node [midway, below left] {$\dfrac{2\pi}{3}$};% + + % Radius neutral + \draw[{Latex[]}-{Latex[]}] (neutral center) -- ++(-45:0.9) node[midway, above right] {$R_{\nrm}$};% + + % Radius phase + \draw[{Latex[]}-{Latex[]}] (a center) -- ++(-135:1.4) node[midway, above left] {$R_{\arm}$};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/Underground_Geometry.tex b/doc/images/Line/Underground_Geometry.tex new file mode 100644 index 00000000..3d347539 --- /dev/null +++ b/doc/images/Line/Underground_Geometry.tex @@ -0,0 +1,79 @@ +\input{Preambule}% + +\usetikzlibrary{patterns}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \tikzset{% + point/.pic={% + \fill[black] (0,0) circle[radius=0.05];% + }% + }% + + \begin{scope}[local bounding box=dessin] + % + % Terre + % + \filldraw[pattern=north west lines] (-5,-5) rectangle (5,5);% + \filldraw[fill=white,draw=black] (0, 0) circle[radius=4.5];% + + % + % Conducteurs + % + \coordinate (wire center) at (0,-1);% + \path[fill=RoseauGrey, draw=black] (wire center) pic {point} circle[radius=3.5];% + + % Neutre + \path (wire center) ++(135:1.75) coordinate (n center);% + \draw[pattern=north east lines, pattern color=red, preaction={fill, white}]% + (n center) circle[radius=0.90];% + \node[shape=circle, draw, fill=white] (n center node) at (n center) {$\nrm$};% + + + % Phases + \foreach \x/\y/\z in {a/-135/$\arm$,b/-45/$\brm$,c/45/$\crm$} {% + \path (wire center) ++(\y:1.75) coordinate (\x\space center);% + \draw[pattern=north east lines, pattern color=RoseauGreen, preaction={fill, white}] % + (\x\space center) circle[radius=1.1];% + \node[shape=circle, draw, fill=white] at (\x\space center) {\z};% + }% + + % Hauteur + \coordinate (top height) at (5.5, 5);% + \draw[{Latex[]-Latex[]}] (wire center -| top height) -- (top height) node[midway, right] {$h$}; + \draw[dashed] (5, 5) -- (top height);% + \draw[dashed] (wire center) -- (wire center -| top height);% + \end{scope} + + % Légende + \path let \p1=($(dessin.north)!0.5!(dessin.south)$) in % + coordinate (ancre legende) at (7,\y1);% + \begin{scope} + [shift={(ancre legende)}, local bounding box=legende] + \path[pattern=north east lines, pattern color=red] (0, 2) circle[radius=0.25];% + \node[right] at (0.3, 2) {Neutral conductor};% + \path[pattern=north east lines, pattern color=RoseauGreen] (0, 1) circle[radius=0.25];% + \node[right] at (0.3, 1) {Phase conductor};% + \path[fill=RoseauGrey, draw=black] (0, 0) circle[radius=0.25];% + \node[right] at (0.3, 0) {Insulator};% + \filldraw[pattern=north west lines] (-0.25, -1.25) rectangle +(0.5, 0.5);% + \node[right] at (0.3, -1) {Ground};% + \node[shape=circle, draw, fill=white] at (0, -2) {$\arm$};% + \node[right] at (0.3, -2) {Identifier (phase or neutral)};% + \end{scope} + \draw ($(legende.south west)-(0.25,0.25)$) rectangle ($(legende.north east)+(0.25,0.25)$);% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Line/Underground_Geometry_Details.tex b/doc/images/Line/Underground_Geometry_Details.tex new file mode 100644 index 00000000..fab83ccb --- /dev/null +++ b/doc/images/Line/Underground_Geometry_Details.tex @@ -0,0 +1,70 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \tikzset{% + point/.pic={% + \fill[black] (0,0) circle[radius=0.05];% + }% + }% + + % + % Conducteurs + % + \coordinate (wire center) at (0,-1);% + \path[draw=black] (wire center) pic {point} circle[radius=3.5];% + + % Neutre + \path (wire center) ++(135:1.75) coordinate (n center);% + \draw (n center) circle[radius=0.90];% + \path (n center) pic {point} node[below right] {N};% + + % Phases + \foreach \x/\y/\z/\p in {a/-135/A/above right,b/-45/B/below,c/45/C/above} {% + \path (wire center) ++(\y:1.75) coordinate (\x\space center);% + \draw (\x\space center) circle[radius=1.1];% + \path (\x\space center) pic {point} node[\p] {\z};% + }% + + % + % Annotations + % + % Exterior diameter + \draw[{Latex[]}-{Latex[]}] (wire center) ++(-4,-3.5)% + coordinate (bottom dext)% + -- ++(0,7) coordinate(top dext)% + node[midway, left] {$d_{\mathrm{ext}}$};% + \draw[dashed] (wire center) ++(0,3.5) -- (top dext);% + \draw[dashed] (wire center) ++(0,-3.5) -- (bottom dext);% + + % External diameter divided by 4 + \draw[{Latex[]}-{Latex[]}] (wire center) -- ++(180:1.75) % + node [pos=1, left] {$\dfrac{d_{\mathrm{ext}}}{4}$};% + \draw[dashed] (wire center) circle[radius=1.75];% + + % Arc + \draw[dashed] (wire center) -- ++(45:4);% + \draw[dashed] (wire center) -- ++(-45:4) coordinate (start arc);% + \draw[{Latex[]}-{Latex[]}] (start arc) arc[start angle=-45, end angle=45, radius=4]% + node [midway, right] {$\dfrac{\pi}{2}$};% + + % Radius neutral + \draw[{Latex[]}-{Latex[]}] (n center) -- ++(135:0.9) node[midway, above right] {$R_{\nrm}$};% + + % Radius phase + \draw[{Latex[]}-{Latex[]}] (a center) -- ++(-135:1.1) node[midway, above left] {$R_{\arm}$};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Load/American_Delta_Load.tex b/doc/images/Load/American_Delta_Load.tex new file mode 100644 index 00000000..c237e28f --- /dev/null +++ b/doc/images/Load/American_Delta_Load.tex @@ -0,0 +1,47 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{american}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \def\radius{2.3}% + \def\Radius{3}% + \ctikzset{bipoles/open/voltage/distance from node/.initial=0.1}% + + % Coordonnées + \coordinate (A) at (90:\Radius);% + \coordinate (B) at (210:\Radius);% + \coordinate (C) at (330:\Radius);% + \coordinate (A2) at ($(-\Radius,\Radius)-(1,0)$);% + \coordinate (C2) at (A2 |- B);% + \coordinate (B2) at (A2 |- B); %x of A2 and y of B + \coordinate (C2) at ($(B2)-(0,1.25)$);% + \coordinate (C3) at ($(C)-(0,1.25)$);% + + % Nœuds + \node[above] at (A) {A};% + \node[below] at (B) {B};% + \node[right] at (C) {C};% + + % Lignes + \draw (A) to[generic, v>=$\underline{V_{\arm}}-\underline{V_{\brm}}$, i=$\underline{I_{\abrm}}$, *-*] (B) % + to[generic, v>=$\underline{V_{\brm}}-\underline{V_{\crm}}$, i=$\underline{I_{\bcrm}}$, *-*] (C) % + to[generic, v>=$\underline{V_{\crm}}-\underline{V_{\arm}}$, i=$\underline{I_{\carm}}$, *-*] (A);% + \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% + \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-] (B);% + \draw (C) -- (C3);% + \draw (C2) to[short,i=$\underline{I_{\crm}}$,*-] (C3);% +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/American_Star_Load.tex b/doc/images/Load/American_Star_Load.tex similarity index 84% rename from doc/images/American_Star_Load.tex rename to doc/images/Load/American_Star_Load.tex index 5b3e31d7..a901ce9c 100644 --- a/doc/images/American_Star_Load.tex +++ b/doc/images/Load/American_Star_Load.tex @@ -34,9 +34,9 @@ \node[above right] at (N) {N};% % Lines - \draw (A) to[short,*-] (A1) to[resistor, v<=$\underline{V_{\arm}}-\underline{V_{\nrm}}$, -*] (N);% - \draw (B) to[short,*-] (B1) to[resistor, v<=$\underline{V_{\brm}}-\underline{V_{\nrm}}$, -*] (N);% - \draw (C) to[short,*-] (C1) to[resistor, v<=$\underline{V_{\crm}}-\underline{V_{\nrm}}$, -*] (N);% + \draw (A) to[short,*-] (A1) to[generic, v>=$\underline{V_{\arm}}-\underline{V_{\nrm}}$, -*] (N);% + \draw (B) to[short,*-] (B1) to[generic, v>=$\underline{V_{\brm}}-\underline{V_{\nrm}}$, -*] (N);% + \draw (C) to[short,*-] (C1) to[generic, v>=$\underline{V_{\crm}}-\underline{V_{\nrm}}$, -*] (N);% \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-*] (B);% \draw (C2) to[short,i=$\underline{I_{\crm}}$,*-] (C3);% diff --git a/doc/images/Load/European_Delta_Load.tex b/doc/images/Load/European_Delta_Load.tex new file mode 100644 index 00000000..1a0d096d --- /dev/null +++ b/doc/images/Load/European_Delta_Load.tex @@ -0,0 +1,47 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \def\radius{2.3}% + \def\Radius{3}% + \ctikzset{bipoles/open/voltage/distance from node/.initial=0.1}% + + % Coordonnées + \coordinate (A) at (90:\Radius);% + \coordinate (B) at (210:\Radius);% + \coordinate (C) at (330:\Radius);% + \coordinate (A2) at ($(-\Radius,\Radius)-(1,0)$);% + \coordinate (C2) at (A2 |- B);% + \coordinate (B2) at (A2 |- B); %x of A2 and y of B + \coordinate (C2) at ($(B2)-(0,1.25)$);% + \coordinate (C3) at ($(C)-(0,1.25)$);% + + % Nœuds + \node[above] at (A) {A};% + \node[below] at (B) {B};% + \node[right] at (C) {C};% + + % Lignes + \draw (A) to[generic, v<=$\underline{V_{\arm}}-\underline{V_{\brm}}$, i=$\underline{I_{\abrm}}$, *-*] (B) % + to[generic, v<=$\underline{V_{\brm}}-\underline{V_{\crm}}$, i=$\underline{I_{\bcrm}}$, *-*] (C) % + to[generic, v<=$\underline{V_{\crm}}-\underline{V_{\arm}}$, i=$\underline{I_{\carm}}$, *-*] (A);% + \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% + \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-] (B);% + \draw (C) -- (C3);% + \draw (C2) to[short,i=$\underline{I_{\crm}}$,*-] (C3);% +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/European_Star_Load.tex b/doc/images/Load/European_Star_Load.tex similarity index 81% rename from doc/images/European_Star_Load.tex rename to doc/images/Load/European_Star_Load.tex index 3f1b001f..6fc9ad35 100644 --- a/doc/images/European_Star_Load.tex +++ b/doc/images/Load/European_Star_Load.tex @@ -1,7 +1,7 @@ \input{Preambule}% \begin{document} -\ctikzset{european,straight voltages}% +\ctikzset{european, straight voltages, cute inductors}% \begin{tikzpicture}[% show background rectangle,% tight background,% @@ -34,9 +34,9 @@ \node[above right] at (N) {N};% % Lines - \draw (A) to[short,*-] (A1) to[resistor, v<=$\underline{V_{\arm}}-\underline{V_{\nrm}}$, -*] (N);% - \draw (B) to[short,*-] (B1) to[resistor, v<=$\underline{V_{\brm}}-\underline{V_{\nrm}}$, -*] (N);% - \draw (C) to[short,*-] (C1) to[resistor, v<=$\underline{V_{\crm}}-\underline{V_{\nrm}}$, -*] (N);% + \draw (A) to[short,*-] (A1) to[generic, v<=$\underline{V_{\arm}}-\underline{V_{\nrm}}$, -*] (N);% + \draw (B) to[short,*-] (B1) to[generic, v<=$\underline{V_{\brm}}-\underline{V_{\nrm}}$, -*] (N);% + \draw (C) to[short,*-] (C1) to[generic, v<=$\underline{V_{\crm}}-\underline{V_{\nrm}}$, -*] (N);% \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-*] (B);% \draw (C2) to[short,i=$\underline{I_{\crm}}$,*-] (C3);% diff --git a/doc/images/Makefile b/doc/images/Makefile index 512567d8..382627c3 100644 --- a/doc/images/Makefile +++ b/doc/images/Makefile @@ -9,25 +9,31 @@ PDF2SVG:=$(shell which pdf2svg) OUTPUT_FOLDER:=$(shell realpath ../_static/) # Files -TEX_FILES:=$(filter-out Preambule.tex, $(wildcard *.tex)) +TEX_FILES:=$(filter-out Preambule.tex, $(wildcard *.tex) $(wildcard **/*.tex)) PDF_FILES:=$(TEX_FILES:%.tex=%.pdf) -AUX_FILES:=$(TEX_FILES:%.tex=$(OUTPUT_FOLDER)/%.aux) -LOG_FILES:=$(TEX_FILES:%.tex=$(OUTPUT_FOLDER)/%.log) SVG_FILES:=$(TEX_FILES:%.tex=$(OUTPUT_FOLDER)/%.svg) +AUX_FILES:=$(TEX_FILES:%.tex=%.aux) $(wildcard $(OUTPUT_FOLDER)/*.aux) $(wildcard $(OUTPUT_FOLDER)/**/*.aux) +LOG_FILES:=$(TEX_FILES:%.tex=%.log) $(wildcard $(OUTPUT_FOLDER)/*.log) $(wildcard $(OUTPUT_FOLDER)/**/*.log) # Rules -all: | checks $(SVG_FILES) clean +all: | checks $(SVG_FILES) .PHONY: clean cleanall checks $(OUTPUT_FOLDER)/Domain_%.svg: Domain_%.tex Domain_Common.tikz Preambule.tex @$(LUALATEX) --jobname=$(basename $<) --file-line-error --interaction=nonstopmode \ --shell-escape --output-directory=$(OUTPUT_FOLDER) $< +$(OUTPUT_FOLDER)/Transformer/Winding%.svg: Transformer/Winding%.tex Transformer/Windings_Common.tikz Preambule.tex + @$(LUALATEX) --jobname=$(basename $<) --file-line-error --interaction=nonstopmode \ + --shell-escape --output-directory=$(OUTPUT_FOLDER) $< + $(OUTPUT_FOLDER)/%.svg: %.tex Preambule.tex @$(LUALATEX) --jobname=$(basename $<) --file-line-error --interaction=nonstopmode \ --shell-escape --output-directory=$(OUTPUT_FOLDER) $< + + clean: @rm -f $(AUX_FILES) $(LOG_FILES) $(PDF_FILES) *~ @$(LATEXMK) -c -output-directory=$(OUTPUT_FOLDER) diff --git a/doc/images/PotentialRef.tex b/doc/images/PotentialRef.tex new file mode 100644 index 00000000..8cca2c46 --- /dev/null +++ b/doc/images/PotentialRef.tex @@ -0,0 +1,25 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + + \coordinate (g) at (0,0); + \node[left] at (g) {$\underline{V} = 0$};% + \draw (g) to[short,*-] (0, 0.5); + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/PotentialRef_With_Ground.tex b/doc/images/PotentialRef_With_Ground.tex new file mode 100644 index 00000000..6f1ec88d --- /dev/null +++ b/doc/images/PotentialRef_With_Ground.tex @@ -0,0 +1,26 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + + \coordinate (g) at (0,0); + \node[ground] at (g) {};% + \node[left] at (g) {$\underline{V_{\grm}} = 0$};% + \draw (g) to[short,*-] (0, 0.5); + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Preambule.tex b/doc/images/Preambule.tex index 3f5acb5f..fdee4d0a 100644 --- a/doc/images/Preambule.tex +++ b/doc/images/Preambule.tex @@ -30,7 +30,14 @@ \usepackage{mathtools}% \usepackage{siunitx}% \usepackage[siunitx]{circuitikz}% -\usetikzlibrary{calc,backgrounds,arrows.meta,patterns}% +\usetikzlibrary{calc,backgrounds,arrows.meta,patterns,positioning}% +\ctikzset{bipoles/length=1.2cm}% + +% Colors +\usepackage{xcolor}% +\definecolor{RoseauGreen}{HTML}{cad40e}% +\definecolor{RoseauGrey}{HTML}{adb9cb}% +\definecolor{RoseauBlue}{HTML}{234e83}% \DeclareMathOperator{\sign}{sign}% @@ -49,20 +56,32 @@ \newcommand{\brm}{\ensuremath{\mathrm{b}}}% \newcommand{\crm}{\ensuremath{\mathrm{c}}}% \newcommand{\nrm}{\ensuremath{\mathrm{n}}}% -\newcommand{\trm}{\ensuremath{\mathrm{t}}}% +\newcommand{\grm}{\ensuremath{\mathrm{g}}}% \newcommand{\abrm}{\ensuremath{\mathrm{ab}}}% \newcommand{\bcrm}{\ensuremath{\mathrm{bc}}}% \newcommand{\carm}{\ensuremath{\mathrm{ca}}}% \newcommand{\anrm}{\ensuremath{\mathrm{an}}}% \newcommand{\bnrm}{\ensuremath{\mathrm{bn}}}% \newcommand{\cnrm}{\ensuremath{\mathrm{cn}}}% -\newcommand{\atrm}{\ensuremath{\mathrm{at}}}% -\newcommand{\btrm}{\ensuremath{\mathrm{bt}}}% -\newcommand{\ctrm}{\ensuremath{\mathrm{ct}}}% -\newcommand{\ntrm}{\ensuremath{\mathrm{nt}}}% +\newcommand{\agrm}{\ensuremath{\mathrm{ag}}}% +\newcommand{\bgrm}{\ensuremath{\mathrm{bg}}}% +\newcommand{\cgrm}{\ensuremath{\mathrm{cg}}}% +\newcommand{\ngrm}{\ensuremath{\mathrm{ng}}}% \newcommand{\abcrm}{\ensuremath{\mathrm{abc}}}% \newcommand{\abcnrm}{\ensuremath{\mathrm{abcn}}}% +% Transformer +\newcommand{\Xrm}{\ensuremath{\mathrm{X}}}% +\newcommand{\Yrm}{\ensuremath{\mathrm{Y}}}% +\newcommand{\Zrm}{\ensuremath{\mathrm{Z}}}% +\newcommand{\xrm}{\ensuremath{\mathrm{x}}}% +\newcommand{\yrm}{\ensuremath{\mathrm{y}}}% +\newcommand{\zrm}{\ensuremath{\mathrm{z}}}% +\newcommand{\Arm}{\ensuremath{\mathrm{A}}}% +\newcommand{\Brm}{\ensuremath{\mathrm{B}}}% +\newcommand{\Crm}{\ensuremath{\mathrm{C}}}% +\newcommand{\Nrm}{\ensuremath{\mathrm{N}}}% + % Indices ou exposants \newcommand{\cons}{\ensuremath{\mathrm{cons.}}}% \renewcommand{\prod}{\ensuremath{\mathrm{prod.}}}% diff --git a/doc/images/Switch.tex b/doc/images/Switch.tex new file mode 100644 index 00000000..6d06b349 --- /dev/null +++ b/doc/images/Switch.tex @@ -0,0 +1,69 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\xlc}{1};% + \pgfmathsetmacro{\xrc}{3};% + \pgfmathsetmacro{\xr}{4};% + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\yc}{1};% + \pgfmathsetmacro{\yb}{2};% + \pgfmathsetmacro{\ya}{3};% + + % Début de ligne + \coordinate (vln) at (\xl,\yn); + \coordinate (vlc) at (\xl,\yc); + \coordinate (vlb) at (\xl,\yb); + \coordinate (vla) at (\xl,\ya); + + % Fin de ligne + \coordinate (vrn) at (\xr,\yn); + \coordinate (vrc) at (\xr,\yc); + \coordinate (vrb) at (\xr,\yb); + \coordinate (vra) at (\xr,\ya); + + % Tensions amont + \node[left] at (vla) {$\underline{V_{1,\arm}}$}; + \node[left] at (vlb) {$\underline{V_{1,\brm}}$}; + \node[left] at (vlc) {$\underline{V_{1,\crm}}$}; + \node[left] at (vln) {$\underline{V_{1,\nrm}}$}; + + % Tensions aval + \node[right] at (vra) {$\underline{V_{2,\arm}}$}; + \node[right] at (vrb) {$\underline{V_{2,\brm}}$}; + \node[right] at (vrc) {$\underline{V_{2,\crm}}$}; + \node[right] at (vrn) {$\underline{V_{2,\nrm}}$}; + + % Câbles + \draw (vla) to[short, i=$\underline{I_{1,\arm}}$, *-] (\xlc, \ya) -- (\xrc, \ya); + \draw (vlb) to[short, i=$\underline{I_{1,\brm}}$, *-] (\xlc, \yb) -- (\xrc, \yb); + \draw (vlc) to[short, i=$\underline{I_{1,\crm}}$, *-] (\xlc, \yc) -- (\xrc, \yc); + \draw (vln) to[short, i=$\underline{I_{1,\nrm}}$, *-] (\xlc, \yn) -- (\xrc, \yn); + + \draw (vra) to[short, i_=$\underline{I_{2,\arm}}$, *-] (\xrc, \ya); + \draw (vrb) to[short, i_=$\underline{I_{2,\brm}}$, *-] (\xrc, \yb); + \draw (vrc) to[short, i_=$\underline{I_{2,\crm}}$, *-] (\xrc, \yc); + \draw (vrn) to[short, i_=$\underline{I_{2,\nrm}}$, *-] (\xrc, \yn); + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/Transformer/American_Center_Tapped_Transformer.tex b/doc/images/Transformer/American_Center_Tapped_Transformer.tex new file mode 100644 index 00000000..e860695f --- /dev/null +++ b/doc/images/Transformer/American_Center_Tapped_Transformer.tex @@ -0,0 +1,92 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{american, bipoles/length=1cm}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\xy}{1.75};% + \pgfmathsetmacro{\xlt}{2.5};% + \pgfmathsetmacro{\xrt}{4.5};% + \pgfmathsetmacro{\xz}{6.5};% + \pgfmathsetmacro{\xm}{8};% + \pgfmathsetmacro{\xt}{0.5*(\xlt+\xrt)};% + + \pgfmathsetmacro{\yb}{0};% + \pgfmathsetmacro{\yn}{2};% + \pgfmathsetmacro{\ya}{4};% + \pgfmathsetmacro{\transformerheight}{\ya-\yb};% + \ctikzset{quadpoles/transformer/height=\transformerheight};% + \pgfmathsetmacro{\yt}{0.5*(\ya+\yb)};% + + % + % Dessin + % + % Transformer + \draw (\xt,\yt) node[transformer] (T) {}; + \node[above] at ($(T.base)-(0,0.2)$) {$k$};% + \draw (T.inner dot A1) node[circ] {}; % + \draw (T.inner dot B1) node[circ] {}; % + + % Tensions amont + \node[left] at (\xl,\ya) {$\underline{V_{1,\arm}}$}; + \node[left] at (\xl,\yb) {$\underline{V_{1,\brm}}$}; + + % Tensions aval + \node[right] at (\xm,\ya) {$\underline{V_{2,\arm}}$}; + \node[right] at (\xm,\yb) {$\underline{V_{2,\brm}}$}; + \node[right] at (\xm,\yn) {$\underline{V_{2,\nrm}}$}; + + % Câbles principaux + % A + \draw (\xl,\ya) to[short,*-*,i=$\underline{I_{1,\arm}}$] + (\xy,\ya) to[short] (T.A1);% + \draw (T.B1) -- (\xrt,\ya) to [generic, l=$\dfrac{\underline{Z_2}}{2}$, label distance=6pt, -] + (\xz,\ya) to[short,-*,i<=$\underline{I_{2,\arm}}$] (\xm,\ya);% + + % B + \draw (\xl,\yb) to[short,*-*,i=$\underline{I_{1,\brm}}$] + (\xy,\yb) to[short] (T.A2);% + \draw (T.B2) -- (\xrt,\yb) to [generic, l_=$\dfrac{\underline{Z_2}}{2}$, -] + (\xz,\yb) to[short,-*,i<=$\underline{I_{2,\brm}}$] (\xm,\yb);% + + + % Neutre + \draw (T-L2.midtap) -- (\xz,\yn) to[short,-*,i<=$\underline{I_{2,\nrm}}$] (\xm,\yn);% + + % Ym + \draw (\xy,\ya) to [generic, l=$\underline{Y_{\mathrm{m}}}$, v>=$\underline{U_{1,\abrm}}$, -] (\xy,\yb);% + + % Tensions + \draw (\xz,\ya) to [open, v^>=$\underline{U_{2,\arm}}$] (\xz,\yn);% + \draw (\xz,\yb) to [open, v>=$\underline{U_{2,\brm}}$] (\xz,\yn);% + \pgfmathsetmacro{\xr}{\xrt + 0.25};% + \draw (\xr,\ya) to [open, v^>=$\underline{U_{2,\arm}^0}$] (\xr,\yn);% + \draw (\xr,\yb) to [open, v>=$\underline{U_{2,\brm}^0}$] (\xr,\yn);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "francais" +% coding: utf-8 +% TeX-master: "../../Manuscrit.tex" +% LaTeX-indent-level: 4 +% compile-command: "make -k -C ../../" +% End: diff --git a/doc/images/Transformer/American_Dyn11.tex b/doc/images/Transformer/American_Dyn11.tex new file mode 100644 index 00000000..18132503 --- /dev/null +++ b/doc/images/Transformer/American_Dyn11.tex @@ -0,0 +1,210 @@ +\input{Preambule}% + +\begin{document} + \ctikzset{american, bipoles/length=1cm}% + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xzero}{0};% + \pgfmathsetmacro{\xone}{1};% + \pgfmathsetmacro{\xtwo}{3};% + \pgfmathsetmacro{\xthree}{5};% + \pgfmathsetmacro{\xym}{7};% + \pgfmathsetmacro{\xtransformer}{10};% + \pgfmathsetmacro{\xtransformerm}{\xtransformer-1};% + \pgfmathsetmacro{\xtransformerp}{\xtransformer+1};% + \pgfmathsetmacro{\xztwom}{11.5};% + \pgfmathsetmacro{\xztwop}{13.5};% + \pgfmathsetmacro{\xfour}{15};% + \pgfmathsetmacro{\xfive}{17};% + \pgfmathsetmacro{\xsix}{19};% + \pgfmathsetmacro{\xseven}{20};% + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\yc}{2.5};% + \pgfmathsetmacro{\yb}{5};% + \pgfmathsetmacro{\ya}{7.5};% + \pgfmathsetmacro{\yxp}{\ya};% + \pgfmathsetmacro{\yxm}{\yb+0.6};% + \pgfmathsetmacro{\yyp}{\yb};% + \pgfmathsetmacro{\yym}{\yc+0.6};% + \pgfmathsetmacro{\yzp}{\yc};% + \pgfmathsetmacro{\yzm}{\yn+0.6};% + \pgfmathsetmacro{\yzero}{\yn-1};% + \pgfmathsetmacro{\yone}{\ya+1};% + \pgfmathsetmacro{\transformerheight}{\yxp-\yxm};% + \ctikzset{quadpoles/transformer/height=\transformerheight};% + + % Rectangles + \pgfmathsetmacro{\xtmp}{\xone+0.75*(\xtwo-\xone)};% + \draw[blue,dashed] (\xzero, \yzero) rectangle (\xtmp, \yone);% + \draw[blue] (\xtwo, \yzero) rectangle (\xthree, \yone);% + \draw[blue] (\xfour, \yzero) rectangle (\xfive, \yone);% + \pgfmathsetmacro{\xtmp}{\xsix-0.75*(\xsix-\xfive)};% + \draw[blue,dashed] (\xtmp, \yzero) rectangle (\xseven, \yone);% + + \pgfmathsetmacro{\xtmpleft}{\xthree+0.5};% + \pgfmathsetmacro{\xtmpright}{\xfour-0.5};% + \draw[blue,dashed] (\xtmpleft, \yzero) rectangle (\xtmpright,\yone);% + + % ABCN + \node at (3.5,\yb) [jump crossing,rotate=90](Y jump) {};% + \node at (3.5,\yc) [jump crossing,rotate=90](Z jump) {};% + \draw (\xone,\ya) node[left] {$\underline{V_{1,\arm}}$}% + to[short,-,i=$\underline{I_{1,\arm}}$] (\xtwo,\ya)% + to[short,-] (\xthree,\ya)% + to[short,-,i=$\underline{I_{\Xrm}}$] (\xym, \ya)% + to[short,-] (\xtransformerm, \ya);% + \draw (\xone,\yb) node[left] {$\underline{V_{1,\brm}}$}% + to[short,-,i=$\underline{I_{1,\brm}}$] (\xtwo,\yb)% + to[short, -] (Y jump.north)% + (Y jump.south)% + to[short,-] (\xthree,\yb)% + to[short,-,i=$\underline{I_{\Yrm}}$] (\xym, \yb)% + to[short,-] (\xtransformerm,\yb);% + \draw (\xone,\yc) node[left] {$\underline{V_{1,\crm}}$}% + to[short,-,i=$\underline{I_{1,\crm}}$] (\xtwo,\yc)% + to[short, -] (Z jump.north)% + (Z jump.south)% + to[short,-] (\xthree,\yc)% + to[short,-,i=$\underline{I_{\Zrm}}$] (\xym, \yc)% + to[short,-] (\xtransformerm,\yc);% + + % XYZ + % First winding (X) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \node[transformer] (TX) at (\xtransformer,\ytmp) {}; + \draw (\xtransformerm, \yxp)% + to[short] (TX.A1);% + \draw (4.5,\yb) to [short, *-] (4.5,\yxm)% + to[short, -] (\xym,\yxm)% + to[short] (\xtransformerm,\yxm)% + to[short] (TX.A2);% + \draw (\xym,\yxp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\arm}}$,% + l=$\underline{Y_{\mathrm{m},\arm}}$,% + v>=$\underline{U_{\Xrm}}$% + ] (\xym,\yxm);% + \node[above] at ($(TX.base)-(0,0.2)$) {$k$};% + \draw (TX.inner dot A1) node[circ] {}; % + \draw (TX.inner dot B1) node[circ] {}; % + + % First winding (Y) + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \node[transformer] (TY) at (\xtransformer,\ytmp) {};% + \draw (\xtransformerm,\yyp)% + to[short] (TY.A1);% + \draw (4.5,\yc) to [short, *-] (4.5,\yym)% + to[short,-] (\xym,\yym)% + to[short] (\xtransformerm,\yym)% + to[short] (TY.A2);% + \draw (\xym,\yyp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\brm}}$,% + l=$\underline{Y_{\mathrm{m},\brm}}$,% + v>=$\underline{U_{\Yrm}}$% + ] (\xym,\yym);% + \node[above] at ($(TY.base)-(0,0.2)$) {$k$};% + \draw (TY.inner dot A1) node[circ] {}; % + \draw (TY.inner dot B1) node[circ] {}; % + + % First winding (Z) + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \node[transformer] (TZ) at (\xtransformer,\ytmp) {};% + \draw (\xtransformerm,\yzp)% + to[short] (TZ.A1);% + \draw (3.5,\ya) to[short,*-] (Y jump.east)% + (Y jump.west)% + to[short, -] (Z jump.east)% + (Z jump.west)% + to[short,-] (3.5,\yzm)% + to[short] (\xym,\yzm)% + to[short] (\xtransformerm,\yzm)% + to[short] (TZ.A2);% + \draw (\xym,\yzp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\crm}}$,% + l=$\underline{Y_{\mathrm{m},\crm}}$,% + v>=$\underline{U_{\Zrm}}$% + ] (\xym,\yzm);% + \node[above] at ($(TZ.base)-(0,0.2)$) {$k$};% + \draw (TZ.inner dot A1) node[circ] {}; % + \draw (TZ.inner dot B1) node[circ] {}; % + + % xyz + % Second winding (x) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \draw (\xsix,\ya) node[right] {$\underline{V_{2,\arm}}$}% + to[short,-,i_=$\underline{I_{2,\arm}}$] (\xfive,\ya) % + to[short, -] (\xfour,\ya)% + to[short,-,i>_=$\underline{I_{\xrm}}$] (\xztwop, \ya)% + to[generic,l=$\underline{Z_{2,\arm}}$] (\xztwom, \ya)% + to[short] (\xtransformerp,\ya) % + to[short] (TX.B1);% + \draw (\xztwop, \yxm) to[open,v<=$\underline{U_{\xrm}}$] (\xztwop, \yxp);% + \draw (\xztwom, \yxm) to[open,v<=$\underline{U_{0,\xrm}}$] (\xztwom, \yxp);% + + % Second winding (y) + \node at (16,\yb) [jump crossing,rotate=90](y jump) {};% + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \draw (\xsix,\yb) node[right] {$\underline{V_{2,\brm}}$}% + to[short,-,i_=$\underline{I_{2,\brm}}$] (\xfive,\yb)% + to[short, -] (y jump.south)% + (y jump.north)% + to[short, -] (\xfour,\yb)% + to[short,-,i>_=$\underline{I_{\yrm}}$] (\xztwop, \yb)% + to[generic,l=$\underline{Z_{2,\brm}}$] (\xztwom, \yb)% + to[short] (\xtransformerp,\yb)% + to[short] (TY.B1);% + \draw (16,\yym) to[short,*-] (\xtransformerp,\yym) to[short] (TY.B2);% + \draw (\xztwop, \yym) to[open,v<=$\underline{U_{\yrm}}$] (\xztwop, \yb);% + \draw (\xztwom, \yym) to[open,v<=$\underline{U_{0,\yrm}}$] (\xztwom, \yb);% + + % Second winding (z) + \node at (16,\yc) [jump crossing,rotate=90](z jump) {};% + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \draw (\xsix,\yc) node[right] {$\underline{V_{2,\crm}}$}% + to[short,-,i_=$\underline{I_{2,\crm}}$] (\xfive,\yc)% + to[short, -] (z jump.south)% + (z jump.north)% + to [short,-] (\xfour,\yc)% + to[short,-,i>_=$\underline{I_{\zrm}}$] (\xztwop, \yc)% + to[generic,l=$\underline{Z_{2,\crm}}$] (\xztwom, \yc)% + to[short] (\xtransformerp,\yc)% + to[short] (TZ.B1);% + \draw (16,\yzm) to[short,*-] (\xtransformerp,\yzm) to[short] (TZ.B2);% + \draw (\xztwop, \yzm) to[open,v<=$\underline{U_{\zrm}}$] (\xztwop, \yc);% + \draw (\xztwom, \yzm) to[open,v<=$\underline{U_{0,\zrm}}$] (\xztwom, \yc);% + + % Close the yn + \draw (\xsix,\yn) node[right] {$\underline{V_{2,\nrm}}$}% + to[short,-,i_=$\underline{I_{2,\nrm}}$] (\xfive,\yn)% + to[short,-] (16,\yn)% + to[short,-] (16,\yzm)% + to[short,-] (z jump.west)% + (z jump.east)% + to[short,-] (16,\yym)% + to[short,-] (y jump.west)% + (y jump.east)% + to[short,-] (16,\yxm)%% + to[short,-] (\xtransformerp,\yxm)% + to[short] (TX.B2);% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Transformer/American_Single_Phase_Transformer.tex b/doc/images/Transformer/American_Single_Phase_Transformer.tex new file mode 100644 index 00000000..132553fb --- /dev/null +++ b/doc/images/Transformer/American_Single_Phase_Transformer.tex @@ -0,0 +1,79 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{american, bipoles/length=1cm}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\xy}{1.75};% + \pgfmathsetmacro{\xlt}{2.5};% + \pgfmathsetmacro{\xrt}{4.5};% + \pgfmathsetmacro{\xz}{6};% + \pgfmathsetmacro{\xm}{7.5};% + \pgfmathsetmacro{\xt}{0.5*(\xlt+\xrt)};% + + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\ya}{2};% + \pgfmathsetmacro{\transformerheight}{\ya-\yn};% + \ctikzset{quadpoles/transformer/height=\transformerheight};% + \pgfmathsetmacro{\yt}{0.5*(\ya+\yn)};% + + % + % Dessin + % + % Transformer + \draw (\xt,\yt) node[transformer] (T) {}; + \node[above] at ($(T.base)-(0,0.2)$) {$k$};% + \draw (T.inner dot A1) node[circ] {}; % + \draw (T.inner dot B1) node[circ] {}; % + + % Tensions amont + \node[left] at (\xl,\ya) {$\underline{V_{1,\arm}}$}; + \node[left] at (\xl,\yn) {$\underline{V_{1,\nrm}}$}; + + % Tensions aval + \node[right] at (\xm,\ya) {$\underline{V_{2,\arm}}$}; + \node[right] at (\xm,\yn) {$\underline{V_{2,\nrm}}$}; + + % Câbles principaux + % A + \draw (\xl,\ya) to[short,*-*,i=$\underline{I_{1,\arm}}$] + (\xy,\ya) to[short,-] (T.A1); + \draw (T.B1) -- (\xrt,\ya) to [generic, l=$\underline{Z_2}$, -] + (\xz,\ya) to[short,-*,i<=$\underline{I_{2,\arm}}$] (\xm,\ya);% + + % Neutre + \draw (\xl,\yn) to[short,*-*,i=$\underline{I_{1,\nrm}}$] + (\xy,\yn) to[short,-] (T.A2); + \draw (T.B2) to[short, -] (\xz,\yn) to[short,-*,i<=$\underline{I_{2,\nrm}}$] (\xm,\yn);% + + % Ym + \draw (\xy,\ya) to [generic, l=$\underline{Y_{\mathrm{m}}}$, v>=$\underline{U_{1,\arm}}$, -] (\xy,\yn);% + \draw (\xz,\ya) to [open, v>=$\underline{U_{2,\arm}}$] (\xz,\yn);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "francais" +% coding: utf-8 +% TeX-master: "../../Manuscrit.tex" +% LaTeX-indent-level: 4 +% compile-command: "make -k -C ../../" +% End: diff --git a/doc/images/Transformer/American_Three_Phase_Transformer.tex b/doc/images/Transformer/American_Three_Phase_Transformer.tex new file mode 100644 index 00000000..94e727ca --- /dev/null +++ b/doc/images/Transformer/American_Three_Phase_Transformer.tex @@ -0,0 +1,178 @@ +\input{Preambule}% + +\begin{document} + \ctikzset{american, bipoles/length=1cm}% + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xzero}{0};% + \pgfmathsetmacro{\xone}{1};% + \pgfmathsetmacro{\xtwo}{3};% + \pgfmathsetmacro{\xthree}{5};% + \pgfmathsetmacro{\xym}{7};% + \pgfmathsetmacro{\xtransformer}{10};% + \pgfmathsetmacro{\xtransformerm}{\xtransformer-1};% + \pgfmathsetmacro{\xtransformerp}{\xtransformer+1};% + \pgfmathsetmacro{\xztwom}{11.5};% + \pgfmathsetmacro{\xztwop}{13.5};% + \pgfmathsetmacro{\xfour}{15};% + \pgfmathsetmacro{\xfive}{17};% + \pgfmathsetmacro{\xsix}{19};% + \pgfmathsetmacro{\xseven}{20};% + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\yc}{2.5};% + \pgfmathsetmacro{\yb}{5};% + \pgfmathsetmacro{\ya}{7.5};% + \pgfmathsetmacro{\yxp}{\ya+0.25};% + \pgfmathsetmacro{\yxm}{\yxp-2};% + \pgfmathsetmacro{\yyp}{\yxm-1};% + \pgfmathsetmacro{\yym}{\yyp-2};% + \pgfmathsetmacro{\yzp}{\yym-1};% + \pgfmathsetmacro{\yzm}{\yzp-2};% + \pgfmathsetmacro{\yzero}{\yn-1};% + \pgfmathsetmacro{\yone}{\ya+1};% + \pgfmathsetmacro{\transformerheight}{\yxp-\yxm};% + \ctikzset{quadpoles/transformer/height=\transformerheight};% + + % Rectangles + \pgfmathsetmacro{\xtmp}{\xone+0.75*(\xtwo-\xone)};% + \draw[blue,dashed] (\xzero, \yzero) rectangle (\xtmp,\yone);% + \draw[blue] (\xtwo,\yzero) rectangle (\xthree,\yone);% + \draw[blue] (\xfour, \yzero) rectangle (\xfive,\yone);% + \pgfmathsetmacro{\xtmp}{\xsix-0.75*(\xsix-\xfive)};% + \draw[blue,dashed] (\xtmp, \yzero) rectangle (\xseven,\yone);% + + \pgfmathsetmacro{\xtmpleft}{\xthree+0.5};% + \pgfmathsetmacro{\xtmpright}{\xfour-0.5};% + \draw[blue,dashed] (\xtmpleft, \yzero) rectangle (\xtmpright,\yone);% + + % ABCN + \draw (\xone,\ya) node[left] {$\underline{V_{1,\arm}}$}% + to[short,-*,i=$\underline{I_{1,\arm}}$] (\xtwo,\ya) node[right] {$\Arm$};% + \draw (\xone,\yb) node[left] {$\underline{V_{1,\brm}}$}% + to[short,-*,i=$\underline{I_{1,\brm}}$] (\xtwo,\yb) node[right] {$\Brm$};% + \draw (\xone,\yc) node[left] {$\underline{V_{1,\crm}}$}% + to[short,-*,i=$\underline{I_{1,\crm}}$] (\xtwo,\yc) node[right] {$\Crm$};% + \draw (\xone,\yn) node[left] {$\underline{V_{1,\nrm}}$}% + to[short,-*,i=$\underline{I_{1,\nrm}}$] (\xtwo,\yn) node[right] {$\Nrm$};% + + % XYZ + % First winding (X) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \node[transformer] (TX) at (\xtransformer,\ytmp) {}; + \draw (\xthree,\yxp) node[left] {$\Xrm^+$}% + to[short,*-,i=$\underline{I_{\Xrm}}$] (\xym,\yxp)% + to[short] (TX.A1);% + \draw (\xthree,\yxm) node[left] {$\Xrm^-$}% + to[short,*-] (\xym,\yxm)% + to[short] (TX.A2);% + \draw (\xym,\yxp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\arm}}$,% + l=$\underline{Y_{\mathrm{m},\arm}}$,% + v>=$\underline{U_{\Xrm}}$% + ] (\xym,\yxm);% + \node[above] at ($(TX.base)-(0,0.2)$) {$k$};% + \draw (TX.inner dot A1) node[circ] {}; % + \draw (TX.inner dot B1) node[circ] {}; % + + % First winding (Y) + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \node[transformer] (TY) at (\xtransformer,\ytmp) {};% + \draw (\xthree,\yyp) node[left] {$\Yrm^+$}% + to[short,*-,i=$\underline{I_{\Yrm}}$] (\xym,\yyp)% + to[short] (TY.A1);% + \draw (\xthree,\yym) node[left] {$\Yrm^-$}% + to[short,*-] (\xym,\yym)% + to[short] (TY.A2);% + \draw (\xym,\yyp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\brm}}$,% + l=$\underline{Y_{\mathrm{m},\brm}}$,% + v>=$\underline{U_{\Yrm}}$% + ] (\xym,\yym);% + \node[above] at ($(TY.base)-(0,0.2)$) {$k$};% + \draw (TY.inner dot A1) node[circ] {}; % + \draw (TY.inner dot B1) node[circ] {}; % + + % First winding (Z) + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \node[transformer] (TZ) at (\xtransformer,\ytmp) {};% + \draw (\xthree,\yzp) node[left] {$\Zrm^+$}% + to[short,*-,i=$\underline{I_{\Zrm}}$] (\xym,\yzp)% + to[short] (TZ.A1);% + \draw (\xthree,\yzm) node[left] {$\Zrm^-$}% + to[short,*-] (\xym,\yzm)% + to[short] (TZ.A2);% + \draw (\xym,\yzp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\crm}}$,% + l=$\underline{Y_{\mathrm{m},\crm}}$,% + v>=$\underline{U_{\Zrm}}$% + ] (\xym,\yzm);% + \node[above] at ($(TZ.base)-(0,0.2)$) {$k$};% + \draw (TZ.inner dot A1) node[circ] {}; % + \draw (TZ.inner dot B1) node[circ] {}; % + + % xyz + % Second winding (x) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \draw (\xfour,\yxp) node[right] {$\xrm^+$}% + to[short,*-,i>_=$\underline{I_{\xrm}}$] (\xztwop, \yxp) + to[generic,l=$\underline{Z_{2,\arm}}$] (\xztwom, \yxp) + to[short] (TX.B1);% + \draw (\xfour,\yxm) node[right] {$\xrm^-$}% + to[short,*-] (TX.B2);% + \draw (\xztwop, \yxm) to[open,v<=$\underline{U_{\xrm}}$] (\xztwop, \yxp);% + \draw (\xztwom, \yxm) to[open,v<=$\underline{U_{0,\xrm}}$] (\xztwom, \yxp);% + + % Second winding (y) + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \draw (\xfour,\yyp) node[right] {$\yrm^+$}% + to[short,*-,i>_=$\underline{I_{\yrm}}$] (\xztwop, \yyp)% + to[generic,l=$\underline{Z_{2,\brm}}$] (\xztwom, \yyp)% + to[short] (TY.B1);% + \draw (\xfour,\yym) node[right] {$\yrm^-$}% + to[short,*-] (TY.B2);% + \draw (\xztwop, \yym) to[open,v<=$\underline{U_{\yrm}}$] (\xztwop, \yyp);% + \draw (\xztwom, \yym) to[open,v<=$\underline{U_{0,\yrm}}$] (\xztwom, \yyp);% + + % Second winding (z) + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \draw (\xfour,\yzp) node[right] {$\zrm^+$}% + to[short,*-,i>_=$\underline{I_{\zrm}}$] (\xztwop, \yzp)% + to[generic,l=$\underline{Z_{2,\crm}}$] (\xztwom, \yzp)% + to[short] (TZ.B1);% + \draw (\xfour,\yzm) node[right] {$\zrm^-$}% + to[short,*-] (TZ.B2);% + \draw (\xztwop, \yzm) to[open,v<=$\underline{U_{\zrm}}$] (\xztwop, \yzp);% + \draw (\xztwom, \yzm) to[open,v<=$\underline{U_{0,\zrm}}$] (\xztwom, \yzp);% + + % abcn + \draw (\xsix,\ya) node[right] {$\underline{V_{2,\arm}}$}% + to[short,-*,i_=$\underline{I_{2,\arm}}$] (\xfive,\ya) node[left] {$\arm$};% + \draw (\xsix,\yb) node[right] {$\underline{V_{2,\brm}}$}% + to[short,-*,i_=$\underline{I_{2,\brm}}$] (\xfive,\yb) node[left] {$\brm$};% + \draw (\xsix,\yc) node[right] {$\underline{V_{2,\crm}}$}% + to[short,-*,i_=$\underline{I_{2,\crm}}$] (\xfive,\yc) node[left] {$\crm$};% + \draw (\xsix,\yn) node[right] {$\underline{V_{2,\nrm}}$}% + to[short,-*,i_=$\underline{I_{2,\nrm}}$] (\xfive,\yn) node[left] {$\nrm$};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Transformer/European_Center_Tapped_Transformer.tex b/doc/images/Transformer/European_Center_Tapped_Transformer.tex new file mode 100644 index 00000000..7685f67d --- /dev/null +++ b/doc/images/Transformer/European_Center_Tapped_Transformer.tex @@ -0,0 +1,92 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors, bipoles/length=1cm}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\xy}{1.75};% + \pgfmathsetmacro{\xlt}{2.5};% + \pgfmathsetmacro{\xrt}{4.5};% + \pgfmathsetmacro{\xz}{6.5};% + \pgfmathsetmacro{\xm}{8};% + \pgfmathsetmacro{\xtransformer}{0.5*(\xlt+\xrt)};% + \pgfmathsetmacro{\xtransformerm}{\xtransformer-1};% + \pgfmathsetmacro{\xtransformerp}{\xtransformer+1};% + + \pgfmathsetmacro{\yb}{0};% + \pgfmathsetmacro{\yn}{2};% + \pgfmathsetmacro{\ya}{4};% + \pgfmathsetmacro{\yt}{0.5*(\ya+\yb)};% + + % + % Dessin + % + % Transformer + \pic[local bounding box=T] at (\xtransformer,\yt) {transformer};% + \node[above=0.25cm] at (T.north) {$k$};% + + % Tensions amont + \node[left] at (\xl,\ya) {$\underline{V_{1,\arm}}$}; + \node[left] at (\xl,\yb) {$\underline{V_{1,\brm}}$}; + + % Tensions aval + \node[right] at (\xm,\ya) {$\underline{V_{2,\arm}}$}; + \node[right] at (\xm,\yb) {$\underline{V_{2,\brm}}$}; + \node[right] at (\xm,\yn) {$\underline{V_{2,\nrm}}$}; + + % Câbles principaux + % A + \draw (\xl,\ya) to[short,*-*,i=$\underline{I_{1,\arm}}$] + (\xy,\ya) to[short] (\xtransformerm,\ya) to[short] node[near start,above=0.25cm,circ] {} (T);% + \draw (\xtransformerp,\ya) to[short] node[near start,above=0.25cm,circ] {} (T);% + \draw (\xtransformerp,\ya) -- (\xrt,\ya) to [generic, l=$\dfrac{\underline{Z_2}}{2}$, label distance=6pt, -] + (\xz,\ya) to[short,-*,i<=$\underline{I_{2,\arm}}$] (\xm,\ya);% + + % B + \draw (\xl,\yb) to[short,*-*,i=$\underline{I_{1,\brm}}$] + (\xy,\yb) to[short] (\xtransformerm,\yb) to[short] (T);% + \draw (\xtransformerp,\yb) to[short] (T);% + \draw (\xtransformerp,\yb) -- (\xrt,\yb) to [generic, l_=$\dfrac{\underline{Z_2}}{2}$, -] + (\xz,\yb) to[short,-*,i<=$\underline{I_{2,\brm}}$] (\xm,\yb);% + + + % Neutre + \draw (T.east) to[short] (\xtransformerp,\yn) -- (\xz,\yn) to[short,-*,i<=$\underline{I_{2,\nrm}}$] (\xm,\yn);% + + % Ym + \draw (\xy,\ya) to [generic, l=$\underline{Y_{\mathrm{m}}}$, v<=$\underline{U_{1,\abrm}}$, -] (\xy,\yb);% + + % Tensions + \draw (\xz,\ya) to [open, v^<=$\underline{U_{2,\arm}}$] (\xz,\yn);% + \draw (\xz,\yb) to [open, v<=$\underline{U_{2,\brm}}$] (\xz,\yn);% + \pgfmathsetmacro{\xr}{\xrt + 0.25};% + \draw (\xr,\ya) to [open, v^<=$\underline{U_{2,\arm}^0}$] (\xr,\yn);% + \draw (\xr,\yb) to [open, v<=$\underline{U_{2,\brm}^0}$] (\xr,\yn);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "francais" +% coding: utf-8 +% TeX-master: "../../Manuscrit.tex" +% LaTeX-indent-level: 4 +% compile-command: "make -k -C ../../" +% End: diff --git a/doc/images/Transformer/European_Dyn11.tex b/doc/images/Transformer/European_Dyn11.tex new file mode 100644 index 00000000..a6cfa628 --- /dev/null +++ b/doc/images/Transformer/European_Dyn11.tex @@ -0,0 +1,202 @@ +\input{Preambule}% + +\begin{document} + \ctikzset{european, straight voltages, cute inductors, bipoles/length=1cm}% + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xzero}{0};% + \pgfmathsetmacro{\xone}{1};% + \pgfmathsetmacro{\xtwo}{3};% + \pgfmathsetmacro{\xthree}{5};% + \pgfmathsetmacro{\xym}{7};% + \pgfmathsetmacro{\xtransformer}{10};% + \pgfmathsetmacro{\xtransformerm}{\xtransformer-1};% + \pgfmathsetmacro{\xtransformerp}{\xtransformer+1};% + \pgfmathsetmacro{\xztwom}{11.5};% + \pgfmathsetmacro{\xztwop}{13.5};% + \pgfmathsetmacro{\xfour}{15};% + \pgfmathsetmacro{\xfive}{17};% + \pgfmathsetmacro{\xsix}{19};% + \pgfmathsetmacro{\xseven}{20};% + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\yc}{2.5};% + \pgfmathsetmacro{\yb}{5};% + \pgfmathsetmacro{\ya}{7.5};% + \pgfmathsetmacro{\yxp}{\ya};% + \pgfmathsetmacro{\yxm}{\yb+0.6};% + \pgfmathsetmacro{\yyp}{\yb};% + \pgfmathsetmacro{\yym}{\yc+0.6};% + \pgfmathsetmacro{\yzp}{\yc};% + \pgfmathsetmacro{\yzm}{\yn+0.6};% + \pgfmathsetmacro{\yzero}{\yn-1};% + \pgfmathsetmacro{\yone}{\ya+1};% + + % Rectangles + \pgfmathsetmacro{\xtmp}{\xone+0.75*(\xtwo-\xone)};% + \draw[blue,dashed] (\xzero, \yzero) rectangle (\xtmp, \yone);% + \draw[blue] (\xtwo, \yzero) rectangle (\xthree, \yone);% + \draw[blue] (\xfour, \yzero) rectangle (\xfive, \yone);% + \pgfmathsetmacro{\xtmp}{\xsix-0.75*(\xsix-\xfive)};% + \draw[blue,dashed] (\xtmp, \yzero) rectangle (\xseven, \yone);% + + \pgfmathsetmacro{\xtmpleft}{\xthree+0.5};% + \pgfmathsetmacro{\xtmpright}{\xfour-0.5};% + \draw[blue,dashed] (\xtmpleft, \yzero) rectangle (\xtmpright,\yone);% + + % ABCN + \node at (3.5,\yb) [jump crossing,rotate=90](Y jump) {};% + \node at (3.5,\yc) [jump crossing,rotate=90](Z jump) {};% + \draw (\xone,\ya) node[left] {$\underline{V_{1,\arm}}$}% + to[short,-,i=$\underline{I_{1,\arm}}$] (\xtwo,\ya)% + to[short,-] (\xthree,\ya)% + to[short,-,i=$\underline{I_{\Xrm}}$] (\xym, \ya)% + to[short,-] (\xtransformerm, \ya);% + \draw (\xone,\yb) node[left] {$\underline{V_{1,\brm}}$}% + to[short,-,i=$\underline{I_{1,\brm}}$] (\xtwo,\yb)% + to[short, -] (Y jump.north)% + (Y jump.south)% + to[short,-] (\xthree,\yb)% + to[short,-,i=$\underline{I_{\Yrm}}$] (\xym, \yb)% + to[short,-] (\xtransformerm,\yb);% + \draw (\xone,\yc) node[left] {$\underline{V_{1,\crm}}$}% + to[short,-,i=$\underline{I_{1,\crm}}$] (\xtwo,\yc)% + to[short, -] (Z jump.north)% + (Z jump.south)% + to[short,-] (\xthree,\yc)% + to[short,-,i=$\underline{I_{\Zrm}}$] (\xym, \yc)% + to[short,-] (\xtransformerm,\yc);% + + % XYZ + % First winding (X) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \pic[local bounding box=TX] at (\xtransformer,\ytmp) {transformer};% + \draw (\xtransformerm, \yxp)% + to[short] node[near start,above=0.25cm,circ] {} (TX);% + \draw (4.5,\yb) to [short, *-] (4.5,\yxm)% + to[short, -] (\xym,\yxm)% + to[short] (\xtransformerm,\yxm)% + to[short] (TX);% + \draw (\xym,\yxp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\arm}}$,% + l=$\underline{Y_{\mathrm{m},\arm}}$,% + v<=$\underline{U_{\Xrm}}$% + ] (\xym,\yxm);% + \node[above] at (TX.north) {$k$};% + + % First winding (Y) + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \pic[local bounding box=TY] at (\xtransformer,\ytmp) {transformer};% + \draw (\xtransformerm,\yyp)% + to[short] node[near start,above=0.25cm,circ] {} (TY);% + \draw (4.5,\yc) to [short, *-] (4.5,\yym)% + to[short,-] (\xym,\yym)% + to[short] (\xtransformerm,\yym)% + to[short] (TY);% + \draw (\xym,\yyp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\brm}}$,% + l=$\underline{Y_{\mathrm{m},\brm}}$,% + v<=$\underline{U_{\Yrm}}$% + ] (\xym,\yym);% + \node[above] at (TY.north) {$k$};% + + % First winding (Z) + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \pic[local bounding box=TZ] at (\xtransformer,\ytmp) {transformer};% + \draw (\xtransformerm,\yzp)% + to[short] node[near start,above=0.25cm,circ] {} (TZ);% + \draw (3.5,\ya) to[short,*-] (Y jump.east)% + (Y jump.west)% + to[short, -] (Z jump.east)% + (Z jump.west)% + to[short,-] (3.5,\yzm)% + to[short] (\xym,\yzm)% + to[short] (\xtransformerm,\yzm)% + to[short] (TZ);% + \draw (\xym,\yzp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\crm}}$,% + l=$\underline{Y_{\mathrm{m},\crm}}$,% + v<=$\underline{U_{\Zrm}}$% + ] (\xym,\yzm);% + \node[above] at (TZ.north) {$k$};% + + % xyz + % Second winding (x) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \draw (\xsix,\ya) node[right] {$\underline{V_{2,\arm}}$}% + to[short,-,i_=$\underline{I_{2,\arm}}$] (\xfive,\ya) % + to[short, -] (\xfour,\ya)% + to[short,-,i>_=$\underline{I_{\xrm}}$] (\xztwop, \ya)% + to[generic,l=$\underline{Z_{2,\arm}}$] (\xztwom, \ya)% + to[short] (\xtransformerp,\ya) % + to[short] node[near start,above=0.25cm,circ] {} (TX);% + \draw (\xztwop, \yxm) to[open,v=$\underline{U_{\xrm}}$] (\xztwop, \yxp);% + \draw (\xztwom, \yxm) to[open,v=$\underline{U_{0,\xrm}}$] (\xztwom, \yxp);% + + % Second winding (y) + \node at (16,\yb) [jump crossing,rotate=90](y jump) {};% + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \draw (\xsix,\yb) node[right] {$\underline{V_{2,\brm}}$}% + to[short,-,i_=$\underline{I_{2,\brm}}$] (\xfive,\yb)% + to[short, -] (y jump.south)% + (y jump.north)% + to[short, -] (\xfour,\yb)% + to[short,-,i>_=$\underline{I_{\yrm}}$] (\xztwop, \yb)% + to[generic,l=$\underline{Z_{2,\brm}}$] (\xztwom, \yb)% + to[short] (\xtransformerp,\yb)% + to[short] node[near start,above=0.25cm,circ] {} (TY);% + \draw (16,\yym) to[short,*-] (\xtransformerp,\yym) to[short] (TY);% + \draw (\xztwop, \yym) to[open,v=$\underline{U_{\yrm}}$] (\xztwop, \yb);% + \draw (\xztwom, \yym) to[open,v=$\underline{U_{0,\yrm}}$] (\xztwom, \yb);% + + % Second winding (z) + \node at (16,\yc) [jump crossing,rotate=90](z jump) {};% + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \draw (\xsix,\yc) node[right] {$\underline{V_{2,\crm}}$}% + to[short,-,i_=$\underline{I_{2,\crm}}$] (\xfive,\yc)% + to[short, -] (z jump.south)% + (z jump.north)% + to [short,-] (\xfour,\yc)% + to[short,-,i>_=$\underline{I_{\zrm}}$] (\xztwop, \yc)% + to[generic,l=$\underline{Z_{2,\crm}}$] (\xztwom, \yc)% + to[short] (\xtransformerp,\yc)% + to[short] node[near start,above=0.25cm,circ] {} (TZ);% + \draw (16,\yzm) to[short,*-] (\xtransformerp,\yzm) to[short] (TZ);% + \draw (\xztwop, \yzm) to[open,v=$\underline{U_{\zrm}}$] (\xztwop, \yc);% + \draw (\xztwom, \yzm) to[open,v=$\underline{U_{0,\zrm}}$] (\xztwom, \yc);% + + % Close the yn + \draw (\xsix,\yn) node[right] {$\underline{V_{2,\nrm}}$}% + to[short,-,i_=$\underline{I_{2,\nrm}}$] (\xfive,\yn)% + to[short,-] (16,\yn)% + to[short,-] (16,\yzm)% + to[short,-] (z jump.west)% + (z jump.east)% + to[short,-] (16,\yym)% + to[short,-] (y jump.west)% + (y jump.east)% + to[short,-] (16,\yxm)%% + to[short,-] (\xtransformerp,\yxm)% + to[short] (TX);% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Transformer/European_Single_Phase_Transformer.tex b/doc/images/Transformer/European_Single_Phase_Transformer.tex new file mode 100644 index 00000000..352622ac --- /dev/null +++ b/doc/images/Transformer/European_Single_Phase_Transformer.tex @@ -0,0 +1,79 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors, bipoles/length=1cm}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % Version multifilaire + + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xl}{0};% + \pgfmathsetmacro{\xy}{1.75};% + \pgfmathsetmacro{\xlt}{2.5};% + \pgfmathsetmacro{\xrt}{4.5};% + \pgfmathsetmacro{\xz}{6};% + \pgfmathsetmacro{\xm}{7.5};% + \pgfmathsetmacro{\xtransformer}{0.5*(\xlt+\xrt)};% + \pgfmathsetmacro{\xtransformerm}{\xtransformer-1};% + \pgfmathsetmacro{\xtransformerp}{\xtransformer+1};% + + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\ya}{2};% + \pgfmathsetmacro{\yt}{0.5*(\ya+\yn)};% + + % + % Dessin + % + % Transformer + \pic[local bounding box=T] at (\xtransformer,\yt) {transformer};% + \node[above] at (T.north) {$k$};% + + % Tensions amont + \node[left] at (\xl,\ya) {$\underline{V_{1,\arm}}$}; + \node[left] at (\xl,\yn) {$\underline{V_{1,\nrm}}$}; + + % Tensions aval + \node[right] at (\xm,\ya) {$\underline{V_{2,\arm}}$}; + \node[right] at (\xm,\yn) {$\underline{V_{2,\nrm}}$}; + + % Câbles principaux + % A + \draw (\xl,\ya) to[short,*-*,i=$\underline{I_{1,\arm}}$] + (\xy,\ya) to[short] (\xtransformerm,\ya) to[short] node[near start,above=0.25cm,circ] {} (T);% + \draw (\xtransformerp,\ya) to[short] node[near start,above=0.25cm,circ] {} (T);% + \draw (\xtransformerp,\ya) -- (\xrt,\ya) to [generic, l=$\underline{Z_2}$, -] + (\xz,\ya) to[short,-*,i<=$\underline{I_{2,\arm}}$] (\xm,\ya);% + + % Neutre + \draw (\xl,\yn) to[short,*-*,i=$\underline{I_{1,\nrm}}$] + (\xy,\yn) to[short] (\xtransformerm,\yn) to[short] (T);% + \draw (\xtransformerp,\yn) to[short] (T);% + \draw (\xtransformerp,\yn) -- (\xz,\yn) to[short,-*,i<=$\underline{I_{2,\nrm}}$] (\xm,\yn);% + + % Ym + \draw (\xy,\ya) to [generic, l=$\underline{Y_{\mathrm{m}}}$, v<=$\underline{U_{1,\arm}}$, -] (\xy,\yn);% + \draw (\xz,\ya) to [open, v<=$\underline{U_{2,\arm}}$] (\xz,\yn);% + +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "francais" +% coding: utf-8 +% TeX-master: "../../Manuscrit.tex" +% LaTeX-indent-level: 4 +% compile-command: "make -k -C ../../" +% End: diff --git a/doc/images/Transformer/European_Three_Phase_Transformer.tex b/doc/images/Transformer/European_Three_Phase_Transformer.tex new file mode 100644 index 00000000..c293d3e5 --- /dev/null +++ b/doc/images/Transformer/European_Three_Phase_Transformer.tex @@ -0,0 +1,179 @@ +\input{Preambule}% + +\begin{document} + \ctikzset{european, straight voltages, cute inductors, bipoles/length=1cm}% + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + % + % Définitions + % + % No European transformer in circuitikz [BV, 17/07/2023] + \tikzset{ + transformer/.pic={ + \draw (-0.2,0) circle[radius=0.4] (0.2,0) circle[radius=0.4]; + }, + } + \pgfmathsetmacro{\xzero}{0};% + \pgfmathsetmacro{\xone}{1};% + \pgfmathsetmacro{\xtwo}{3};% + \pgfmathsetmacro{\xthree}{5};% + \pgfmathsetmacro{\xym}{7};% + \pgfmathsetmacro{\xtransformer}{10};% + \pgfmathsetmacro{\xtransformerm}{\xtransformer-1};% + \pgfmathsetmacro{\xtransformerp}{\xtransformer+1};% + \pgfmathsetmacro{\xztwom}{11.5};% + \pgfmathsetmacro{\xztwop}{13.5};% + \pgfmathsetmacro{\xfour}{15};% + \pgfmathsetmacro{\xfive}{17};% + \pgfmathsetmacro{\xsix}{19};% + \pgfmathsetmacro{\xseven}{20};% + \pgfmathsetmacro{\yn}{0};% + \pgfmathsetmacro{\yc}{2.5};% + \pgfmathsetmacro{\yb}{5};% + \pgfmathsetmacro{\ya}{7.5};% + \pgfmathsetmacro{\yxp}{\ya+0.25};% + \pgfmathsetmacro{\yxm}{\yxp-2};% + \pgfmathsetmacro{\yyp}{\yxm-1};% + \pgfmathsetmacro{\yym}{\yyp-2};% + \pgfmathsetmacro{\yzp}{\yym-1};% + \pgfmathsetmacro{\yzm}{\yzp-2};% + \pgfmathsetmacro{\yzero}{\yn-1};% + \pgfmathsetmacro{\yone}{\ya+1};% + + % Rectangles + \pgfmathsetmacro{\xtmp}{\xone+0.75*(\xtwo-\xone)};% + \draw[blue,dashed] (\xzero, \yzero) rectangle (\xtmp,\yone);% + \draw[blue] (\xtwo,\yzero) rectangle (\xthree,\yone);% + \draw[blue] (\xfour, \yzero) rectangle (\xfive,\yone);% + \pgfmathsetmacro{\xtmp}{\xsix-0.75*(\xsix-\xfive)};% + \draw[blue,dashed] (\xtmp, \yzero) rectangle (\xseven,\yone);% + + \pgfmathsetmacro{\xtmpleft}{\xthree+0.5};% + \pgfmathsetmacro{\xtmpright}{\xfour-0.5};% + \draw[blue,dashed] (\xtmpleft, \yzero) rectangle (\xtmpright,\yone);% + + % ABCN + \draw (\xone,\ya) node[left] {$\underline{V_{1,\arm}}$}% + to[short,-*,i=$\underline{I_{1,\arm}}$] (\xtwo,\ya) node[right] {$\Arm$};% + \draw (\xone,\yb) node[left] {$\underline{V_{1,\brm}}$}% + to[short,-*,i=$\underline{I_{1,\brm}}$] (\xtwo,\yb) node[right] {$\Brm$};% + \draw (\xone,\yc) node[left] {$\underline{V_{1,\crm}}$}% + to[short,-*,i=$\underline{I_{1,\crm}}$] (\xtwo,\yc) node[right] {$\Crm$};% + \draw (\xone,\yn) node[left] {$\underline{V_{1,\nrm}}$}% + to[short,-*,i=$\underline{I_{1,\nrm}}$] (\xtwo,\yn) node[right] {$\Nrm$};% + + % XYZ + % First winding (X) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \pic[local bounding box=TX] at (\xtransformer,\ytmp) {transformer};% + \draw (\xthree,\yxp) node[left] {$\Xrm^+$}% + to[short,*-,i=$\underline{I_{\Xrm}}$] (\xym,\yxp)% + to[short] (\xtransformerm,\yxp)% + to[short] node[near start,above=0.25cm,circ] {} (TX);% + \draw (\xthree,\yxm) node[left] {$\Xrm^-$}% + to[short,*-] (\xym,\yxm)% + to[short] (\xtransformerm,\yxm)% + to[short] (TX);% + \draw (\xym,\yxp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\arm}}$,% + l=$\underline{Y_{\mathrm{m},\arm}}$,% + v<=$\underline{U_{\Xrm}}$% + ] (\xym,\yxm);% + \node[above] at (TX.north) {$k$};% + + % First winding (Y) + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \pic[local bounding box=TY] at (\xtransformer,\ytmp) {transformer};% + \draw (\xthree,\yyp) node[left] {$\Yrm^+$}% + to[short,*-,i=$\underline{I_{\Yrm}}$] (\xym,\yyp)% + to[short] (\xtransformerm,\yyp)% + to[short] node[near start,above=0.25cm,circ] {} (TY);% + \draw (\xthree,\yym) node[left] {$\Yrm^-$}% + to[short,*-] (\xym,\yym)% + to[short] (\xtransformerm,\yym)% + to[short] (TY);% + \draw (\xym,\yyp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\brm}}$,% + l=$\underline{Y_{\mathrm{m},\brm}}$,% + v<=$\underline{U_{\Yrm}}$% + ] (\xym,\yym);% + \node[above] at (TY.north) {$k$};% + + % First winding (Z) + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \pic[local bounding box=TZ] at (\xtransformer,\ytmp) {transformer};% + \draw (\xthree,\yzp) node[left] {$\Zrm^+$}% + to[short,*-,i=$\underline{I_{\Zrm}}$] (\xym,\yzp)% + to[short] (\xtransformerm,\yzp)% + to[short] node[near start,above=0.25cm,circ] {} (TZ);% + \draw (\xthree,\yzm) node[left] {$\Zrm^-$}% + to[short,*-] (\xym,\yzm)% + to[short] (\xtransformerm,\yzm)% + to[short] (TZ);% + \draw (\xym,\yzp) to[generic,% + i>^=$\underline{I_{\mathrm{m},\crm}}$,% + l=$\underline{Y_{\mathrm{m},\crm}}$,% + v<=$\underline{U_{\Zrm}}$% + ] (\xym,\yzm);% + \node[above] at (TZ.north) {$k$};% + + % xyz + % Second winding (x) + \pgfmathsetmacro{\ytmp}{0.5*(\yxp+\yxm)};% + \draw (\xfour,\yxp) node[right] {$\xrm^+$}% + to[short,*-,i>_=$\underline{I_{\xrm}}$] (\xztwop, \yxp)% + to[generic,l=$\underline{Z_{2,\arm}}$] (\xztwom, \yxp)% + to[short] (\xtransformerp,\yxp) % + to[short] node[near start,above=0.25cm,circ] {} (TX);% + \draw (\xfour,\yxm) node[right] {$\xrm^-$}% + to[short,*-] (\xtransformerp,\yxm) to[short] (TX);% + \draw (\xztwop, \yxm) to[open,v=$\underline{U_{\xrm}}$] (\xztwop, \yxp);% + \draw (\xztwom, \yxm) to[open,v=$\underline{U_{0,\xrm}}$] (\xztwom, \yxp);% + + % Second winding (y) + \pgfmathsetmacro{\ytmp}{0.5*(\yyp+\yym)};% + \draw (\xfour,\yyp) node[right] {$\yrm^+$}% + to[short,*-,i>_=$\underline{I_{\yrm}}$] (\xztwop, \yyp)% + to[generic,l=$\underline{Z_{2,\brm}}$] (\xztwom, \yyp)% + to[short] (\xtransformerp,\yyp)% + to[short] node[near start,above=0.25cm,circ] {} (TY);% + \draw (\xfour,\yym) node[right] {$\yrm^-$}% + to[short,*-] (\xtransformerp,\yym) to[short] (TY);% + \draw (\xztwop, \yym) to[open,v=$\underline{U_{\yrm}}$] (\xztwop, \yyp);% + \draw (\xztwom, \yym) to[open,v=$\underline{U_{0,\yrm}}$] (\xztwom, \yyp);% + + % Second winding (z) + \pgfmathsetmacro{\ytmp}{0.5*(\yzp+\yzm)};% + \draw (\xfour,\yzp) node[right] {$\zrm^+$}% + to[short,*-,i>_=$\underline{I_{\zrm}}$] (\xztwop, \yzp)% + to[generic,l=$\underline{Z_{2,\crm}}$] (\xztwom, \yzp)% + to[short] (\xtransformerp,\yzp)% + to[short] node[near start,above=0.25cm,circ] {} (TZ);% + \draw (\xfour,\yzm) node[right] {$\zrm^-$}% + to[short,*-] (\xtransformerp,\yzm) to[short] (TZ);% + \draw (\xztwop, \yzm) to[open,v=$\underline{U_{\zrm}}$] (\xztwop, \yzp);% + \draw (\xztwom, \yzm) to[open,v=$\underline{U_{0,\zrm}}$] (\xztwom, \yzp);% + + % abcn + \draw (\xsix,\ya) node[right] {$\underline{V_{2,\arm}}$}% + to[short,-*,i_=$\underline{I_{2,\arm}}$] (\xfive,\ya) node[left] {$\arm$};% + \draw (\xsix,\yb) node[right] {$\underline{V_{2,\brm}}$}% + to[short,-*,i_=$\underline{I_{2,\brm}}$] (\xfive,\yb) node[left] {$\brm$};% + \draw (\xsix,\yc) node[right] {$\underline{V_{2,\crm}}$}% + to[short,-*,i_=$\underline{I_{2,\crm}}$] (\xfive,\yc) node[left] {$\crm$};% + \draw (\xsix,\yn) node[right] {$\underline{V_{2,\nrm}}$}% + to[short,-*,i_=$\underline{I_{2,\nrm}}$] (\xfive,\yn) node[left] {$\nrm$};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Transformer/Windings.tex b/doc/images/Transformer/Windings.tex new file mode 100644 index 00000000..df7cb96d --- /dev/null +++ b/doc/images/Transformer/Windings.tex @@ -0,0 +1,99 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + % Phase displacement = 0 + \begin{scope}[local bounding box=Dd0] + \pic at (0,0) {left d};% + \pic at (5,0) {right d};% + \end{scope} + \node[left=0.1 of Dd0] {\textcolor{red}{Dd}0};% + \begin{scope} + [local bounding box=Yy0, shift={(11,0)}] + \pic at (0,0) {left y};% + \pic at (5,0) {right y};% + \end{scope} + \node[left=0.1 of Yy0] {\textcolor{RoseauBlue}{Yy}0};% + \begin{scope} + [local bounding box=Dz0, shift={(22,0)}] + \pic at (0,0) {left d};% + \pic at (5,0) {right z0};% + \end{scope} + \node[left=0.1 of Dz0] {\textcolor{red}{D}\textcolor{RoseauGreen}{z}0};% + + % Phase displacement = 6 + \begin{scope} + [local bounding box=Dd6, shift={(0,-5)}] + \pic at (0,0) {left d};% + \pic at (5,0) {right d6};% + \end{scope} + \node[left=0.1 of Dd6] {\textcolor{red}{Dd}6};% + \begin{scope} + [local bounding box=Yy6, shift={(11,-5)}] + \pic at (0,0) {left y};% + \pic at (5,0) {right y reverse};% + \end{scope} + \node[left=0.1 of Yy6] {\textcolor{RoseauBlue}{Yy}6};% + \begin{scope} + [local bounding box=Dz6, shift={(22,-5)}] + \pic at (0,0) {left d};% + \pic at (5,0) {right z6};% + \end{scope} + \node[left=0.1 of Dz6] {\textcolor{red}{D}\textcolor{RoseauGreen}{z}6};% + + % Phase displacement = 11 + \begin{scope} + [local bounding box=Dy11, shift={(0,-10)}] + \pic at (0,0) {left d};% + \pic at (5,0) {right y};% + \end{scope} + \node[left=0.1 of Dy11] {\textcolor{red}{D}\textcolor{RoseauBlue}{y}11};% + \begin{scope} + [local bounding box=Yd11, shift={(11,-10)}] + \pic at (0,0) {left y};% + \pic at (5,0) {right d11};% + \end{scope} + \node[left=0.1 of Yd11] {\textcolor{RoseauBlue}{Y}\textcolor{red}{d}11};% + \begin{scope} + [local bounding box=Yz11, shift={(22,-10)}] + \pic at (0,0) {left y};% + \pic at (5,0) {right z11};% + \end{scope} + \node[left=0.1 of Yz11] {\textcolor{RoseauBlue}{Y}\textcolor{RoseauGreen}{z}11};% + + % Phase displacement = 5 + \begin{scope} + [local bounding box=Dy5, shift={(0,-15)}] + \pic at (0,0) {left d};% + \pic at (5,0) {right y reverse};% + \end{scope} + \node[left=0.1 of Dy5] {\textcolor{red}{D}\textcolor{RoseauBlue}{y}5};% + \begin{scope} + [local bounding box=Yd5, shift={(11,-15)}] + \pic at (0,0) {left y};% + \pic at (5,0) {right d5};% + \end{scope} + \node[left=0.1 of Yd5] {\textcolor{RoseauBlue}{Y}\textcolor{red}{d}5};% + \begin{scope} + [local bounding box=Yz5, shift={(22,-15)}] + \pic at (0,0) {left y};% + \pic at (5,0) {right z5};% + \end{scope} + \node[left=0.1 of Yz5] {\textcolor{RoseauBlue}{Y}\textcolor{RoseauGreen}{z}5};% + \end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 100 +% End: diff --git a/doc/images/Transformer/Windings_Common.tikz b/doc/images/Transformer/Windings_Common.tikz new file mode 100644 index 00000000..229ac631 --- /dev/null +++ b/doc/images/Transformer/Windings_Common.tikz @@ -0,0 +1,303 @@ +% +% Definitions of windings +% +\pgfmathsetmacro{\yzero}{0}% +\pgfmathsetmacro{\yone}{-0.5}% +\pgfmathsetmacro{\ytwo}{-1}% +\pgfmathsetmacro{\ythree}{-1.5}% +\pgfmathsetmacro{\yfour}{-2}% +\pgfmathsetmacro{\yfive}{-2.5}% +\pgfmathsetmacro{\ysix}{-3}% +\pgfmathsetmacro{\yseven}{-3.5}% +\pgfmathsetmacro{\yeight}{-4}% + + +\pgfmathsetmacro{\xstep}{0.5}% +\pgfmathsetmacro{\xzero}{0}% +\pgfmathsetmacro{\xone}{0.25}% +\pgfmathsetmacro{\xtwo}{1.8}% +\pgfmathsetmacro{\xthree}{2}% +\pgfmathsetmacro{\xfour}{2.2}% +\pgfmathsetmacro{\xfive}{3.75}% +\pgfmathsetmacro{\xsix}{4}% + +\ctikzset{european, straight voltages, bipoles/length=1.2cm, cute inductors}% + +\tikzset{ + left d/.pic={ + \draw[red,text=black] (\xzero, \yzero) to[short, -] (\xsix, \yzero)% + to[short, -] (\xsix, \yone) node[right] {A}% + to[short, -] (\xfive, \yone)% + to[L, mirror, name=X] (\xstep, \yone)% + to[short] (\xsix, \yfour) node[right] {B} % + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=Y] (\xstep, \yfour) % + to[short] (\xsix, \yseven) node[right] {C} % + to[short, -] (\xfive, \yseven)% + to[L, mirror, name=Z] (\xstep, \yseven) % + to[short,-] (\xzero, \yseven) to[short,-] (\xzero, \yzero);% + \path[fill=red,draw=red] (X.ul dot) node[circ]{}% + (Y.ul dot) node[circ]{}% + (Z.ul dot) node[circ]{};% + }, + right d/.pic={ + \draw[red,text=black] (\xzero,0) to[short, -] (\xsix, \yzero)% + to[short, -] (\xsix, \yseven)% + to[short, -] (\xfive, \yseven)% + to[L, mirror, name=z] (\xstep, \yseven)% + to[short, -] (\xzero, \yseven) % + to[short] (\xzero, \yseven) node[left] {c} % + to[short, -] (\xfive, \yfour) % + to[L, mirror, name=y] (\xstep, \yfour)% + to[short, -] (\xzero, \yfour) node[left] {b} % + to[short, -] (\xfive, \yone)% + to[L, mirror, name=x] (\xstep, \yone) % + to[short, -] (\xzero, \yone) node[left] {a} % + to[short, -] (\xzero, \yzero);% + \path[fill=red,draw=red] (x.ur dot) node[circ]{}% + (y.ur dot) node[circ]{}% + (z.ur dot) node[circ]{};% + }, + right d6/.pic={ + \draw[red, text=black] (\xzero, \yone) node [left] {a}% + to[short, -] (\xzero, \yzero)% + to[short, -] (\xfive, \yzero) % + to[short, -] (\xfive, \yone)% + to[L, mirror, name=x] (\xstep, \yone)% + to[short, -] (\xfive, \ythree)% + to[short, -] (\xzero, \ythree)% + to[short, -] (\xzero, \yfour) node[left] {b};% + \draw[red, text=black] (\xfive, \ythree)% + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=y] (\xstep, \yfour)% + to[short, -] (\xfive, \ysix)% + to[short, -] (\xzero, \ysix)% + to[short, -] (\xzero, \yseven) node[left] {c};% + \draw[red, text=black] (\xfive, \ysix)% + to[short, -] (\xfive, \yseven)% + to[L, mirror, name=z] (\xstep, \yseven)% + to[short, -] (\xstep, \yeight)% + to[short, -] (\xsix, \yeight)% + to[short, -] (\xsix, \yone) + to[short, -] (\xfive, \yone);% + \path[fill=red,draw=red] (x.ur dot) node[circ]{}% + (y.ur dot) node[circ]{}% + (z.ur dot) node[circ]{};% + }, + right d11/.pic={ + \draw[red, text=black] (\xzero, \yone) node [left] {a}% + to[L, name=x] (\xfive, \yone)% + to[short, -] (\xsix, \yone)% + to[short, -] (\xsix, \yeight)% + to[short, -] (\xzero, \yeight)% + to[short, -] (\xzero, \yseven) node[left] {c}% + to[L, name=z] (\xfive, \yseven)% + to[short, -] (\xzero, \yfour) node[left] {b}% + to[L, name=y] (\xfive, \yfour)% + to[short, -] (\xzero, \yone);% + \path[fill=red,draw=red] (x.ul dot) node[circ]{}% + (y.ul dot) node[circ]{}% + (z.ul dot) node[circ]{};% + }, + right d5/.pic={ + \draw[red, text=black] (\xzero, \yone) node [left] {a}% + to[short, -] (\xzero, \ytwo)% + to[short, -] (\xfive, \ytwo)% + to[short, -] (\xfive, \yone)% + to[L, mirror, name=x] (\xstep, \yone)% + to[short, -] (\xstep, \yzero)% + to[short, -] (\xsix, \yzero)% + to[short, -] (\xsix, \yseven)% + to[short, -] (\xfive, \yseven);% + \draw[red, text=black] (\xzero, \yfour) node [left] {b}% + to[short, -] (\xzero, \yfive)% + to[short, -] (\xfive, \yfive)% + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=y] (\xstep, \yfour)% + to[short, -] (\xfive, \ytwo);% + \draw[red, text=black] (\xzero, \yseven) node [left] {c}% + to[short, -] (\xzero, \yeight)% + to[short, -] (\xfive, \yeight)% + to[short, -] (\xfive, \yseven)% + to[L, mirror, name=z] (\xstep, \yseven)% + to[short, -] (\xfive, \yfive);% + \path[fill=red,draw=red] (x.ur dot) node[circ]{}% + (y.ur dot) node[circ]{}% + (z.ur dot) node[circ]{};% + }, + left y/.pic={ + \draw[RoseauBlue, text=black] (\xzero, \yone) to[short, -] (\xstep, \yone)% + to[L, -, name=X] (\xfive, \yone) node[right] {A}% + (\xzero,\yfour) to[short, -] (\xstep, \yfour)% + to[L, -, name=Y] (\xfive, \yfour) node[right] {B}% + (\xzero,\yseven) to[short, -] (\xstep, \yseven)% + to[L, -, name=Z] (\xfive, \yseven) node[right] {C}% + (\xzero,\yone) to[short, -] (\xzero,\yseven);% + \path[fill=RoseauBlue,draw=RoseauBlue] (X.ur dot) node[circ]{}% + (Y.ur dot) node[circ]{}% + (Z.ur dot) node[circ]{};% + }, + right y/.pic={ + \draw[RoseauBlue,text=black] (\xsix, \yone) to[short, -] (\xfive, \yone)% + to[L, -, mirror, name=x] (\xzero, \yone) node[left] {a}% + (\xsix, \yfour) to[short, -] (\xfive, \yfour)% + to[L, -, mirror, name=y] (\xzero,\yfour) node[left] {b}% + (\xsix, \yseven) to[short, -] (\xfive, \yseven)% + to[L, -, mirror, name=z] (\xzero,\yseven) node[left] {c} + (\xsix,\yone) to[short, -] (\xsix,\yseven);% + \path[fill=RoseauBlue,draw=RoseauBlue] (x.ur dot) node[circ]{}% + (y.ur dot) node[circ]{}% + (z.ur dot) node[circ]{};% + }, + right y reverse/.pic={ + \draw[RoseauBlue, text=black] (\xzero, \yone) node[left] {a} % + to[short, -] (\xzero, \ytwo)% + to[short, -] (\xsix, \ytwo)% + to[short, -] (\xsix, \yone)% + to[short, -] (\xfive, \yone)% + to[L, -, mirror, name=x] (\xstep,\yone);% + \draw[RoseauBlue, text=black] (\xzero, \yfour) node[left] {b} % + to[short, -] (\xzero, \yfive)% + to[short, -] (\xsix, \yfive)% + to[short, -] (\xsix, \yfour)% + to[short, -] (\xfive, \yfour)% + to[L, -, mirror, name=y] (\xstep,\yfour);% + \draw[RoseauBlue, text=black] (\xzero, \yseven) node[left] {c} % + to[short, -] (\xzero, \yeight)% + to[short, -] (\xsix, \yeight)% + to[short, -] (\xsix, \yseven)% + to[short, -] (\xfive, \yseven)% + to[L, -, mirror, name=z] (\xstep,\yseven);% + \draw[RoseauBlue] (\xstep, \yone) to[crossing] (\xstep, \ythree)% + to[short, -] (\xstep, \yfour)% + to[crossing] (\xstep, \ysix)% + to[short, -] (\xstep, \yseven);% + \path[fill=RoseauBlue,draw=RoseauBlue] (x.ur dot) node[circ]{}% + (y.ur dot) node[circ]{}% + (z.ur dot) node[circ]{};% + }, + right z0/.pic={ + \draw[RoseauGreen, text=black] (\xzero, \yone) node[left] {a} % + to[L, name=x1] (\xtwo, \yone)% + to[short, -] (\xtwo,0)% + to[short, -] (\xsix,0)% + to[short, -] (\xsix,\yseven)% + to[short, -] (\xfive,\yseven)% + to[L, mirror, name=z2] (\xfour, \yseven);% + \draw[RoseauGreen, text=black] (\xzero, \yfour) node[left] {b} % + to[L, name=y1] (\xtwo, \yfour)% + to[short, -] (\xfive, \yone)% + to[L, mirror, name=x2] (\xfour, \yone);% + \draw[RoseauGreen, text=black] (\xzero, \yseven) node[left] {c} % + to[L, name=z1] (\xtwo, \yseven)% + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=y2] (\xfour, \yfour);% + \draw[RoseauGreen, text=black] (\xfour, \yseven) to[short, -] (\xfour, \yfour) to[short, -] (\xfour, \yone); + \path[fill=RoseauGreen,draw=RoseauGreen] (x1.ul dot) node[circ]{}% + (x2.ur dot) node[circ]{}% + (y1.ul dot) node[circ]{}% + (y2.ur dot) node[circ]{}% + (z1.ul dot) node[circ]{}% + (z2.ur dot) node[circ]{};% + }, + right z6/.pic={ + \draw[RoseauGreen, text=black] (\xzero, \yone) node[left] {a} % + to[short, -] (\xzero,\ytwo)% + to[short, -] (\xfive, \ytwo)% + to[short, -] (\xfive, \yone)% + to[L, mirror, name=x2] (\xfour, \yone)% + to[short, -](\xfour, 0)% + to[short, -] (\xfive, 0)% + to[short, -] (\xsix, 0)% + to[short, -] (\xsix, \yseven-0.25)% + to[short, -] (\xone, \yseven-0.25)% + to[short, -] (\xone, \yseven)% + to[L, name=z1] (\xtwo, \yseven);% + \draw[RoseauGreen, text=black] (\xzero, \yfour) node[left] {b} % + to[short, -] (\xzero,\yfive)% + to[short, -] (\xfive, \yfive)% + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=y2] (\xfour, \yfour)% + to[short, -] (\xone, \yone)% + to[L, name=x1] (\xtwo, \yone);% + \draw[RoseauGreen, text=black] (\xzero, \yseven) node[left] {c} % + to[short, -] (\xzero,\yeight)% + to[short, -] (\xfive, \yeight)% + to[crossing] (\xfive, \yseven)% + to[L, mirror, name=z2] (\xfour, \yseven)% + to[short, -] (\xone, \yfour)% + to[L, name=y1] (\xtwo, \yfour);% + \draw[RoseauGreen] (\xtwo, \yone) to[crossing] (\xtwo, \ythree)% + to[short, -] (\xtwo, \yfour)% + to[crossing] (\xtwo, \ysix) + to[short, -] (\xtwo, \yseven);% + \path[fill=RoseauGreen,draw=RoseauGreen] (x1.ul dot) node[circ]{}% + (x2.ur dot) node[circ]{}% + (y1.ul dot) node[circ]{}% + (y2.ur dot) node[circ]{}% + (z1.ul dot) node[circ]{}% + (z2.ur dot) node[circ]{};% + }, + right z11/.pic={ + \draw[RoseauGreen, text=black] (\xzero, \yone) node[left] {a} % + to[L, name=x1] (\xtwo, \yone)% + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=y2] (\xfour, \yfour);% + \draw[RoseauGreen, text=black] (\xzero, \yfour) node[left] {b} % + to[L, name=y1] (\xtwo, \yfour)% + to[short, -] (\xfive, \yseven)% + to[L, mirror, name=z2] (\xfour, \yseven);% + \draw[RoseauGreen, text=black] (\xzero, \yseven) node[left] {c} % + to[L, name=z1] (\xtwo, \yseven)% + to[short, -] (\xtwo, \yeight)% + to[short, -] (\xsix, \yeight)% + to[short, -] (\xsix, \yone)% + to[L, mirror, name=x2] (\xfour, \yone);% + \draw[RoseauGreen] (\xfour, \yone) to[short] (\xfour, \yfour) to[short] (\xfour, \yseven);% + \path[fill=RoseauGreen,draw=RoseauGreen] (x1.ul dot) node[circ]{}% + (x2.ur dot) node[circ]{}% + (y1.ul dot) node[circ]{}% + (y2.ur dot) node[circ]{}% + (z1.ul dot) node[circ]{}% + (z2.ur dot) node[circ]{};% + }, + right z5/.pic={ + \draw[RoseauGreen, text=black] (\xzero, \yone) node[left] {a} % + to[short, -] (\xzero, \ytwo)% + to[short, -] (\xfive, \ytwo)% + to[short, -] (\xfive, \yone)% + to[L, mirror, name=x2] (\xfour, \yone)% + to[short, -] (\xone, \yfour+0.25)% + to[short, -] (\xone, \yfour)% + to[L, name=y1] (\xtwo, \yfour);% + \draw[RoseauGreen, text=black] (\xzero, \yfour) node[left] {b} % + to[short, -] (\xzero, \yfive)% + to[short, -] (\xfive, \yfive)% + to[short, -] (\xfive, \yfour)% + to[L, mirror, name=y2] (\xfour, \yfour)% + to[short, -] (\xone, \yseven+0.25)% + to[short, -] (\xone, \yseven)% + to[L, name=z1] (\xtwo, \yseven);% + \draw[RoseauGreen, text=black] (\xzero, \yseven) node[left] {c} % + to[short, -] (\xzero, \yseven-0.25)% + to[short, -] (\xfive, \yseven-0.25)% + to[short, -] (\xfive, \yseven)% + to[L, mirror, name=z2] (\xfour, \yseven)% + to[crossing] (\xfour, \yeight)% + to[short, -] (\xsix, \yeight)% + to[short, -] (\xsix, 0)% + to[short, -] (\xone, 0) + to[short, -] (\xone, \yone)% + to[L, name=x1] (\xtwo, \yone);% + \draw[RoseauGreen] (\xtwo, \yone) to[crossing] (\xtwo, \ythree)% + to[short, -] (\xtwo, \yfour)% + to[crossing] (\xtwo, \ysix)% + to[short, -] (\xtwo, \yseven);% + \path[fill=RoseauGreen,draw=RoseauGreen] (x1.ul dot) node[circ]{}% + (x2.ur dot) node[circ]{}% + (y1.ul dot) node[circ]{}% + (y2.ur dot) node[circ]{}% + (z1.ul dot) node[circ]{}% + (z2.ur dot) node[circ]{};% + } +} diff --git a/doc/images/Transformer/Windings_Dd0.tex b/doc/images/Transformer/Windings_Dd0.tex new file mode 100644 index 00000000..71e2605f --- /dev/null +++ b/doc/images/Transformer/Windings_Dd0.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Dd0] + \pic at (0,0) {left d};% + \pic at (5,0) {right d};% + \end{scope} + \node[left=0.1 of Dd0] {\textcolor{red}{Dd}0};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Dd6.tex b/doc/images/Transformer/Windings_Dd6.tex new file mode 100644 index 00000000..a2fae0b1 --- /dev/null +++ b/doc/images/Transformer/Windings_Dd6.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Dd6] + \pic at (0,0) {left d};% + \pic at (5,0) {right d6};% + \end{scope} + \node[left=0.1 of Dd6] {\textcolor{red}{Dd}6};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Dy11.tex b/doc/images/Transformer/Windings_Dy11.tex new file mode 100644 index 00000000..19d56644 --- /dev/null +++ b/doc/images/Transformer/Windings_Dy11.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Dy11] + \pic at (0,0) {left d};% + \pic at (5,0) {right y};% + \end{scope} + \node[left=0.1 of Dy11] {\textcolor{red}{D}\textcolor{RoseauBlue}{y}11};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Dy5.tex b/doc/images/Transformer/Windings_Dy5.tex new file mode 100644 index 00000000..7a81c91d --- /dev/null +++ b/doc/images/Transformer/Windings_Dy5.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Dy5] + \pic at (0,0) {left d};% + \pic at (5,0) {right y reverse};% + \end{scope} + \node[left=0.1 of Dy5] {\textcolor{red}{D}\textcolor{RoseauBlue}{y}5};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Dz0.tex b/doc/images/Transformer/Windings_Dz0.tex new file mode 100644 index 00000000..630b867c --- /dev/null +++ b/doc/images/Transformer/Windings_Dz0.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Dz0] + \pic at (0,0) {left d};% + \pic at (5,0) {right z0};% + \end{scope} + \node[left=0.1 of Dz0] {\textcolor{red}{D}\textcolor{RoseauGreen}{z}0};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Dz6.tex b/doc/images/Transformer/Windings_Dz6.tex new file mode 100644 index 00000000..254eda80 --- /dev/null +++ b/doc/images/Transformer/Windings_Dz6.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Dz6] + \pic at (0,0) {left d};% + \pic at (5,0) {right z6};% + \end{scope} + \node[left=0.1 of Dz6] {\textcolor{red}{D}\textcolor{RoseauGreen}{z}6};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Yd11.tex b/doc/images/Transformer/Windings_Yd11.tex new file mode 100644 index 00000000..e544c8ad --- /dev/null +++ b/doc/images/Transformer/Windings_Yd11.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Yd11] + \pic at (0,0) {left y};% + \pic at (5,0) {right d11};% + \end{scope} + \node[left=0.1 of Yd11] {\textcolor{RoseauBlue}{Y}\textcolor{red}{d}11};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Yd5.tex b/doc/images/Transformer/Windings_Yd5.tex new file mode 100644 index 00000000..52aa9472 --- /dev/null +++ b/doc/images/Transformer/Windings_Yd5.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Yd5] + \pic at (0,0) {left y};% + \pic at (5,0) {right d5};% + \end{scope} + \node[left=0.1 of Yd5] {\textcolor{RoseauBlue}{Y}\textcolor{red}{d}5};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Yy0.tex b/doc/images/Transformer/Windings_Yy0.tex new file mode 100644 index 00000000..c4312c0a --- /dev/null +++ b/doc/images/Transformer/Windings_Yy0.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Yy0] + \pic at (0,0) {left y};% + \pic at (5,0) {right y};% + \end{scope} + \node[left=0.1 of Yy0] {\textcolor{RoseauBlue}{Yy}0};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Yy6.tex b/doc/images/Transformer/Windings_Yy6.tex new file mode 100644 index 00000000..80df1dbb --- /dev/null +++ b/doc/images/Transformer/Windings_Yy6.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Yy6] + \pic at (0,0) {left y};% + \pic at (5,0) {right y reverse};% + \end{scope} + \node[left=0.1 of Yy6] {\textcolor{RoseauBlue}{Yy}6};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Yz11.tex b/doc/images/Transformer/Windings_Yz11.tex new file mode 100644 index 00000000..ff371ea2 --- /dev/null +++ b/doc/images/Transformer/Windings_Yz11.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Yz11] + \pic at (0,0) {left y};% + \pic at (5,0) {right z11};% + \end{scope} + \node[left=0.1 of Yz11] {\textcolor{RoseauBlue}{Y}\textcolor{RoseauGreen}{z}11};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/Transformer/Windings_Yz5.tex b/doc/images/Transformer/Windings_Yz5.tex new file mode 100644 index 00000000..f5b456ff --- /dev/null +++ b/doc/images/Transformer/Windings_Yz5.tex @@ -0,0 +1,17 @@ +\input{Preambule}% + +\begin{document} + \begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \input{Transformer/Windings_Common.tikz}% + + \begin{scope}[local bounding box=Yz5] + \pic at (0,0) {left y};% + \pic at (5,0) {right z5};% + \end{scope} + \node[left=0.1 of Yz5] {\textcolor{RoseauBlue}{Y}\textcolor{RoseauGreen}{z}5};% + \end{tikzpicture} +\end{document} diff --git a/doc/images/American_Delta_Load.tex b/doc/images/VoltageSource/American_Delta_Voltage_Source.tex similarity index 77% rename from doc/images/American_Delta_Load.tex rename to doc/images/VoltageSource/American_Delta_Voltage_Source.tex index cdab5cfa..31cf6eb4 100644 --- a/doc/images/American_Delta_Load.tex +++ b/doc/images/VoltageSource/American_Delta_Voltage_Source.tex @@ -26,9 +26,9 @@ \node[above right] at (C) {C};% % Lignes - \draw (A) to[resistor, v<=$\underline{V_{\arm}}-\underline{V_{\brm}}$, i=$\underline{I_{\abrm}}$, *-*] (B) % - to[resistor, v<=$\underline{V_{\brm}}-\underline{V_{\crm}}$, i=$\underline{I_{\bcrm}}$, *-*] (C) % - to[resistor, v<=$\underline{V_{\crm}}-\underline{V_{\arm}}$, i=$\underline{I_{\carm}}$, *-*] (A);% + \draw (A) to[vsourcesin, v_=$\underline{U_{\arm\brm}}$, i^>=$\underline{I_{\abrm}}$, *-*] (B) % + to[vsourcesin, v_=$\underline{U_{\brm\crm}}$, i^>=$\underline{I_{\bcrm}}$, *-*] (C) % + to[vsourcesin, v_=$\underline{U_{\crm\arm}}$, i^>=$\underline{I_{\carm}}$, *-*] (A);% \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% \draw (B) -- (B3);% \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-] (B3);% @@ -42,5 +42,5 @@ % ispell-local-dictionary: "british" % coding: utf-8 % LaTeX-indent-level: 4 -% fill-column: 120 +% fill-column: 100 % End: diff --git a/doc/images/VoltageSource/American_Star_Voltage_Source.tex b/doc/images/VoltageSource/American_Star_Voltage_Source.tex new file mode 100644 index 00000000..fca10b41 --- /dev/null +++ b/doc/images/VoltageSource/American_Star_Voltage_Source.tex @@ -0,0 +1,55 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{american}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \def\Radius{3}% + + \ctikzset{bipoles/open/voltage/distance from node/.initial=0.1} + % \ctikzset{bipoles/generic/voltage/european label distance=0.8} + + % Coordinates + \coordinate (A) at (90:\Radius);% + \coordinate (B) at (210:\Radius);% + \coordinate (C) at (330:\Radius);% + \coordinate (N) at (0,0);% + \coordinate (A2) at ($(\Radius,\Radius)+(1,0)$);% + \coordinate (C2) at (A2 |- B); %x of A2 and y of B + \coordinate (B2) at ($(C2)-(0,1)$);% + \coordinate (B3) at ($(B)-(0,1)$);% + \coordinate (N2) at (A2 |- N);% + + % Nodes + \node[above] at (A) {A};% + \node[left] at (B) {B};% + \node[below] at (C) {C};% + \node[above left] at (N) {N};% + + % Lines + \draw (A) to[vsourcesin, v>=$\underline{U_{\anrm}}$, -*] (N);% + \draw (B) to[vsourcesin, v>=$\underline{U_{\bnrm}}$, -*] (N);% + \draw (C) to[vsourcesin, v>=$\underline{U_{\cnrm}}$, -*] (N);% + \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% + \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-] (B3);% + \draw (C2) to[short,i=$\underline{I_{\crm}}$,*-*] (C);% + \draw (B3) -- (B); \draw (N2) to[short, i=$\underline{I_{\nrm}}$, *-] (N);% + + % Line-to-line voltage + % \draw (A) to[open, v=$V_{m,\abrm}$] (B) + % to[open, v=$V_{\bcrm}$] (C) + % to[open, v=$V_{\carm}$] (A); +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/images/European_Delta_Load.tex b/doc/images/VoltageSource/European_Delta_Voltage_Source.tex similarity index 75% rename from doc/images/European_Delta_Load.tex rename to doc/images/VoltageSource/European_Delta_Voltage_Source.tex index 2affcde5..7cde4c4a 100644 --- a/doc/images/European_Delta_Load.tex +++ b/doc/images/VoltageSource/European_Delta_Voltage_Source.tex @@ -1,7 +1,7 @@ \input{Preambule}% \begin{document} -\ctikzset{european,straight voltages}% +\ctikzset{european, straight voltages, cute inductors}% \begin{tikzpicture}[% show background rectangle,% tight background,% @@ -26,9 +26,9 @@ \node[above right] at (C) {C};% % Lignes - \draw (A) to[resistor, v<=$\underline{V_{\arm}}-\underline{V_{\brm}}$, i=$\underline{I_{\abrm}}$, *-*] (B) % - to[resistor, v<=$\underline{V_{\brm}}-\underline{V_{\crm}}$, i=$\underline{I_{\bcrm}}$, *-*] (C) % - to[resistor, v<=$\underline{V_{\crm}}-\underline{V_{\arm}}$, i=$\underline{I_{\carm}}$, *-*] (A);% + \draw (A) to[vsourcesin, v_<=$\underline{U_{\arm\brm}}$, i=$\underline{I_{\abrm}}$, *-*] (B) % + to[vsourcesin, v_<=$\underline{U_{\brm\crm}}$, i=$\underline{I_{\bcrm}}$, *-*] (C) % + to[vsourcesin, v_<=$\underline{U_{\crm\arm}}$, i=$\underline{I_{\carm}}$, *-*] (A);% \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% \draw (B) -- (B3);% \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-] (B3);% diff --git a/doc/images/VoltageSource/European_Star_Voltage_Source.tex b/doc/images/VoltageSource/European_Star_Voltage_Source.tex new file mode 100644 index 00000000..9a60f662 --- /dev/null +++ b/doc/images/VoltageSource/European_Star_Voltage_Source.tex @@ -0,0 +1,55 @@ +\input{Preambule}% + +\begin{document} +\ctikzset{european, straight voltages, cute inductors}% +\begin{tikzpicture}[% + show background rectangle,% + tight background,% + background rectangle/.style={fill=white}% + ] + \def\Radius{3}% + + \ctikzset{bipoles/open/voltage/distance from node/.initial=0.1} + % \ctikzset{bipoles/generic/voltage/european label distance=0.8} + + % Coordinates + \coordinate (A) at (90:\Radius);% + \coordinate (B) at (210:\Radius);% + \coordinate (C) at (330:\Radius);% + \coordinate (N) at (0,0);% + \coordinate (A2) at ($(\Radius,\Radius)+(1,0)$);% + \coordinate (C2) at (A2 |- B); %x of A2 and y of B + \coordinate (B2) at ($(C2)-(0,1)$);% + \coordinate (B3) at ($(B)-(0,1)$);% + \coordinate (N2) at (A2 |- N);% + + % Nodes + \node[above] at (A) {A};% + \node[left] at (B) {B};% + \node[below] at (C) {C};% + \node[above left] at (N) {N};% + + % Lines + \draw (A) to[vsourcesin, v<=$\underline{U_{\anrm}}$, -*] (N);% + \draw (B) to[vsourcesin, v<=$\underline{U_{\bnrm}}$, -*] (N);% + \draw (C) to[vsourcesin, v<=$\underline{U_{\cnrm}}$, -*] (N);% + \draw (A2) to[short,i=$\underline{I_{\arm}}$,*-*] (A);% + \draw (B2) to[short,i=$\underline{I_{\brm}}$,*-] (B3);% + \draw (C2) to[short,i=$\underline{I_{\crm}}$,*-*] (C);% + \draw (B3) -- (B); \draw (N2) to[short, i=$\underline{I_{\nrm}}$, *-] (N);% + + % Line-to-line voltage + % \draw (A) to[open, v=$V_{m,\abrm}$] (B) + % to[open, v=$V_{\bcrm}$] (C) + % to[open, v=$V_{\carm}$] (A); +\end{tikzpicture} +\end{document} +% Local Variables: +% mode: latex +% TeX-engine: luatex +% TeX-source-correlate-method-active: synctex +% ispell-local-dictionary: "british" +% coding: utf-8 +% LaTeX-indent-level: 4 +% fill-column: 120 +% End: diff --git a/doc/index.md b/doc/index.md index bc1c560a..046142d1 100644 --- a/doc/index.md +++ b/doc/index.md @@ -1,18 +1,28 @@ # Roseau Load Flow -`Roseau Load Flow` is a load flow solver capable of modeling 3-phases unbalanced power systems with +`Roseau Load Flow` is a load flow solver capable of modeling 3-phase unbalanced power systems with a wide variety of models for lines, transformers, loads, and sources. This software is developed by [Roseau Technologies](https://www.roseautechnologies.com/en). +With this library, there is a sample of 20 low-voltage and 20 medium-voltage feeders included for an easy +start! Each network is given with its summer and winter load point. At _Roseau Technologies_, we are able to provide +the major part of the French medium and low voltage networks. For more information, please contact us at +[contact@roseautechnologies.com](mailto:contact@roseautechnologies.com). + + + +More details are given in the [Catalogues page](catalogues-networks). + ## Installation -`roseau_load_flow` is compatible with Python 3.9 and above. It can be installed with: +`roseau-load-flow` is the python interface to the solver. It is compatible with Python version 3.9 +and newer and can be installed with: ```{toctree} --- -maxdepth: 3 +maxdepth: 2 caption: Installation --- Installation @@ -25,10 +35,21 @@ The following tutorials are available to help you get started: ```{toctree} --- maxdepth: 2 -caption: Tutorials +caption: Usage +--- +usage/index +``` + +## Models + +A description of the electrical models used for each component is available: + +```{toctree} +--- +maxdepth: 2 +caption: Models --- -notebooks/Getting_Started -notebooks/Advanced +models/index ``` ## Solvers @@ -43,7 +64,17 @@ caption: Solvers Solvers ``` -## API +## Changelog + +```{toctree} +--- +maxdepth: 2 +caption: Changelog +--- +Changelog +``` + +## API Reference If you want the full documentation of all the classes and functions, you can refer to the following references: @@ -51,7 +82,7 @@ references: ```{toctree} --- maxdepth: 3 -caption: API +caption: API Reference --- autoapi/roseau/load_flow/index ``` diff --git a/doc/models/Bus.md b/doc/models/Bus.md new file mode 100644 index 00000000..de3be57a --- /dev/null +++ b/doc/models/Bus.md @@ -0,0 +1,103 @@ +# Bus + +## Definition + +It represents a multiphase node in the network that other elements (loads, lines, transformers, +voltage sources...) can connect to. A bus is a placeholder point where we want the voltage to be +computed during the load flow. + +```{image} /_static/Bus.svg +:alt: Bus diagram +:width: 100px +:align: center +``` + +No equation is added for a bus. + +## Usage + +A bus is identified by its unique id and must define the phases it is connected to. A bus must +have all the phases of the elements connected to it. + +```python +from roseau.load_flow import Bus, PowerLoad + +bus1 = Bus(id="bus1", phases="abcn") # A three-phase bus with a neutral +bus2 = Bus(id="bus2", phases="abc") # A three-phase bus without a neutral +bus3 = Bus(id="bus3", phases="an") # A single-phase bus + +PowerLoad(id="load1", bus=bus1, powers=[100, 0, 50j], phases="abcn") # OK +PowerLoad(id="load2", bus=bus1, powers=[100, 0, 50j], phases="abc") # OK +PowerLoad(id="load3", bus=bus2, powers=[100], phases="ab") # OK +PowerLoad( + id="load4", bus=bus3, powers=[100], phases="ab" +) # Error: bus3 does not have phase "b" +``` + +Since a bus represents a point in the network, it is possible to define the coordinates of this +point: + +```python +from shapely import Point +from roseau.load_flow import Bus + +bus = Bus(id="bus", phases="abc", geometry=Point(1.0, -2.5)) +``` + +This information is not used by the load flow solver but could be used to generate geographical +plots of the results. + +## Short-circuit + +The bus element can also be used to create a short-circuit in the network to perform +[short-circuit analysis](../usage/Short_Circuit.md). + +Here is an example of a simple short-circuit between two phases: + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Line, + LineParameters, + PotentialRef, + Q_, + VoltageSource, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# A line +lp = LineParameters(id="lp", z_line=Q_((0.3 + 0.35j) * np.eye(4), "ohm/km")) +line = Line(id="line", bus1=bus1, bus2=bus2, parameters=lp, length=Q_(1, "km")) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# The neutral of the voltage source is fixed at potential 0 +pref = PotentialRef(id="pref", element=bus1, phase="n") + +# Create a short-circuit on bus2 between phases "a" and "b" +bus2.add_short_circuit("a", "b") + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# Get the currents flowing to the line from bus1 +# Notice the extremely high currents in phases "a" and "b" +en.res_branches[["current1"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:--------------|---------------------------:|------------------------:| +# | ('line', 'a') | 433.861 | -19.3987 | +# | ('line', 'b') | 433.861 | 160.601 | +# | ('line', 'c') | 0 | 0 | +# | ('line', 'n') | 0 | 0 | +``` diff --git a/doc/models/Ground.md b/doc/models/Ground.md new file mode 100644 index 00000000..c4f6a10c --- /dev/null +++ b/doc/models/Ground.md @@ -0,0 +1,149 @@ +# Ground + +## Definition + +The ground element represents an earth connection where the earth is represented as an ideal +conductor. A ground can be used to connect several elements. A ground is mandatory in a line +model with shunt elements. The symbol of a ground element is: + +```{image} /_static/Ground.svg +:alt: A diagram of a ground element +:width: 100px +:align: center +``` + +This element adds the equation $\underline{I_{\mathrm{g}}} = 0$, where $\underline{I_{\mathrm{g}}}$ +is the sum of the currents of all elements connected to the ground. + +```{warning} +In electrical engineering, it is common to also add the equation $\underline{V_{\mathrm{g}}}=0$ when +defining a ground element. If you want to do so, you must add a `PotentialRef` element as defined in +[](PotentialRef.md). +``` + +## Usage + +In _Roseau Load Flow_, several grounds can be defined leading to ground elements with a non-zero +potential. Here is an example with two ground elements `g1` and `g2`. + +After solving this load flow, the following assertions will be verified: + +- The potential of the ground `g1` will be 0V as defined by the potential reference `pref`. +- There is no reason for the potential of `g2` to be zero too. +- The sum of currents flowing through the shunt admittances of the second line will be zero as they + are all connected to the ground `g2` and no other elements are connected to this ground. +- The sum of currents flowing through the shunt admittances of the first line will be equal to the + sum of the currents of the elements connected to phase "a" of the first bus. + + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Q_, + Bus, + ElectricalNetwork, + Ground, + Line, + LineParameters, + PotentialRef, + PowerLoad, + VoltageSource, +) + +# Define two grounds elements +g1 = Ground(id="g1") +g2 = Ground(id="g2") + +# Define three buses +bus1 = Bus(id="bus1", phases="abc") +bus2 = Bus(id="bus2", phases="abc") +bus3 = Bus(id="bus3", phases="abc") + +# Define a voltage source on the first bus +un = 400 +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# Define the impedance and admittance parameters of the lines (can be reused) +parameters = LineParameters( + id="parameters", + z_line=Q_((0.12 + 0.1j) * np.eye(3), "ohm/km"), + y_shunt=Q_(2e-4j * np.eye(3), "S/km"), +) + +# Define a line between bus1 and bus2 (using g1 for the shunt connections) +line1 = Line( + id="line1", + bus1=bus1, + bus2=bus2, + parameters=parameters, + length=Q_(2, "km"), + ground=g1, +) + +# Define a line between bus2 and bus3 (using g2 for the shunt connections) +line2 = Line( + id="line2", + bus1=bus2, + bus2=bus3, + parameters=parameters, + length=Q_(2.5, "km"), + ground=g2, +) + +# Add a load on bus3 +load = PowerLoad( + id="load", + bus=bus3, + powers=Q_(np.array([5.0, 2.5, 0]) * (1 - 0.3j), "kVA"), +) + +# Set the phase "a" of the first bus to the ground g1 +g1.connect(bus=bus1, phase="a") + +# Set the potential of the ground element g1 to 0V +pref = PotentialRef(id="pref", element=g1) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# Get the ground potentials +# The potential of g1 is 0 as defined by the potential reference element +# The potential of g2 has no reason to be zero +en.res_grounds.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | ground_id | ('potential', 'absolute') | ('potential', 'angle') | +# |:------------|----------------------------:|-------------------------:| +# | g1 | 0 | 0 | +# | g2 | 230.949 | 149.997 | + +# As requested, the potential of the phase "a" of bus1 is zero +en.res_buses.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('potential', 'absolute') | ('potential', 'angle') | +# |:--------------|----------------------------:|-------------------------:| +# | ('bus1', 'a') | 0 | 0 | +# | ('bus1', 'b') | 400 | -180 | +# | ('bus1', 'c') | 400 | 120 | +# | ('bus2', 'a') | 4.19152 | -126.007 | +# | ('bus2', 'b') | 398.525 | 179.238 | +# | ('bus2', 'c') | 397.913 | 120.016 | +# | ('bus3', 'a') | 9.41474 | -126.102 | +# | ('bus3', 'b') | 396.739 | 178.283 | +# | ('bus3', 'c') | 395.28 | 120.043 | + +# The requested voltages of the voltage sources are respected +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'ab') | 400 | 6.31922e-19 | +# | ('bus1', 'bc') | 400 | -120 | +# | ('bus1', 'ca') | 400 | 120 | +# | ('bus2', 'ab') | 396.121 | -1.25675 | +# | ('bus2', 'bc') | 393.528 | -120.45 | +# | ('bus2', 'ca') | 399.634 | 119.467 | +# | ('bus3', 'ab') | 391.499 | -2.85404 | +# | ('bus3', 'bc') | 385.429 | -121.026 | +# | ('bus3', 'ca') | 399.18 | 118.807 | +``` diff --git a/doc/models/Line/Parameters.md b/doc/models/Line/Parameters.md new file mode 100644 index 00000000..fa3496b0 --- /dev/null +++ b/doc/models/Line/Parameters.md @@ -0,0 +1,551 @@ +(models-line_parameters-alternative_constructors)= + +# Parameters + +The line parameters are briefly described [here](models-line_parameters). In this page, the alternative constructors +of `LineParameters` objects are detailed. + +(models-line_parameters-alternative_constructors-symmetric)= + +## Symmetric model + +### Definition + +The `LineParameters` class has a class method called `from_sym` which converts zero and direct sequences of +impedance and admittance into a line parameters instance. This method requires the following data: + +- The zero sequence of the impedance (in $\Omega$/km), noted $\underline{Z_0}$ and `z0` in the code. +- The direct sequence of the impedance (in $\Omega$/km), noted $\underline{Z_1}$ and `z1` in the code. +- The zero sequence of the admittance (in S/km), noted $\underline{Y_0}$ and `y0` in the code. +- The direct sequence of the admittance (in S/km), noted $\underline{Y_1}$ and `y1` in the code. + +Then, it combines them in order to build the series impedance matrix $\underline{Z}$ and the shunt admittance matrix +$\underline{Y}$ using the following equations: + +```{math} +\begin{aligned} + \underline{Z} &= \begin{pmatrix} + \underline{Z_{\mathrm{s}}} & \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{m}}} \\ + \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{s}}} & \underline{Z_{\mathrm{m}}} \\ + \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{s}}} \\ + \end{pmatrix}\\ + \underline{Y} &= + \begin{pmatrix} + \underline{Y_{\mathrm{s}}} & \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{m}}} \\ + \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{s}}} & \underline{Y_{\mathrm{m}}} \\ + \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{s}}} \\ + \end{pmatrix} +\end{aligned} +``` + +with $\underline{Z_{\mathrm{s}}}$ the series impedance, $\underline{Z_{\mathrm{m}}}$ the mutual impedance, +$\underline{Y_{\mathrm{s}}}$ the series shunt admittance and $\underline{Y_{\mathrm{m}}}$ the mutual shunt admittance +defined as: + +```{math} +\begin{aligned} + \underline{Z_{\mathrm{s}}} &= \dfrac{\underline{Z_0} + 2\underline{Z_1}}{3} \\ + \underline{Z_{\mathrm{m}}} &= \dfrac{\underline{Z_0} - \underline{Z_1}}{3} \\ + \underline{Y_{\mathrm{s}}} &= \dfrac{\underline{Y_0} + 2\underline{Y_1}}{3} \\ + \underline{Y_{\mathrm{m}}} &= \dfrac{\underline{Y_0} - \underline{Y_1}}{3} \\ +\end{aligned} +``` + +This class method also takes optional parameters which are used to add a neutral wire to the previously seen +three-phase matrices. These optional parameters are: + +- The neutral impedance (in $\Omega$/km), noted $\underline{Z_{\mathrm{n}}}$ and `zn` in the code. +- The phase-to-neutral reactance (in $\Omega$/km), noted $\left(\underline{X_{p\mathrm{n}}}\right)_{p\in\{\mathrm{a}, + \mathrm{b},\mathrm{c}\}}$. As these are supposed to be the same, this unique value is noted `xpn` in + the code. +- The neutral susceptance (in S/km), noted $\underline{B_{\mathrm{n}}}$ and `bn` in the code. +- The phase-to-neutral susceptance (in S/km), noted $\left(\underline{B_{p\mathrm{n}}}\right)_{p\in\{\mathrm{a}, + \mathrm{b},\mathrm{c}\}}$. As these are supposed to be the same, this unique value is noted `bpn` in the code. + +```{note} +If any of those parameters is omitted, the neutral wire is omitted and a 3 phase line parameters is built. +If $\underline{Z_{\mathrm{n}}}$ and $\underline{X_{p\mathrm{n}}}$ are zeros, the same happens. +``` + +In this case, the following matrices are built: + +```{math} +\begin{aligned} + \underline{Z} &= \begin{pmatrix} + \underline{Z_{\mathrm{s}}} & \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{an}}}\\ + \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{s}}} & \underline{Z_{\mathrm{m}}} & \underline{Z_{p\mathrm{bn}}}\\ + \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{m}}} & \underline{Z_{\mathrm{s}}} & \underline{Z_{\mathrm{cn}}}\\ + \underline{Z_{\mathrm{an}}} & \underline{Z_{\mathrm{bn}}} & \underline{Z_{\mathrm{cn}}} & \underline{Z_{\mathrm{n}}}\\ + \end{pmatrix}\\ + \underline{Y} &= + \begin{pmatrix} + \underline{Y_{\mathrm{s}}} & \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{an}}} \\ + \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{s}}} & \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{bn}}} \\ + \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{m}}} & \underline{Y_{\mathrm{s}}} & \underline{Y_{\mathrm{cn}}} \\ + \underline{Y_{\mathrm{an}}} & \underline{Y_{\mathrm{bn}}} & \underline{Y_{\mathrm{cn}}} & \underline{Y_{\mathrm{n}}} \\ + \end{pmatrix} +\end{aligned} +``` + +with the same $\underline{Z_{\mathrm{s}}}$, $\underline{Z_{\mathrm{m}}}$, $\underline{Y_{\mathrm{s}}}$ and +$\underline{Y_{\mathrm{m}}}$ as before and: + +```{math} +\begin{aligned} + \underline{Z_{p\mathrm{n}}} &= j\underline{X_{p\mathrm{n}}} \\ + \underline{Y_{\mathrm{n}}} &= j\underline{B_{\mathrm{n}}} \\ + \underline{Y_{p\mathrm{n}}} &= j\underline{B_{p\mathrm{n}}} +\end{aligned} +``` + +respectively the phase-to-neutral series impedance (in $\Omega$/km), the neutral shunt admittance (in S/km) and +the phase-to-neutral shunt admittance (in S/km). + +````{note} +The computed impedance matrix may be non-invertible. In this case, the `from_sym` class method builds impedance and +shunt admittance matrices using the following definitions: + +```{math} +\begin{aligned} + \underline{Z_{\mathrm{s}}} &= \underline{Z_1} \\ + \underline{Z_{\mathrm{m}}} &= 0 \\ + \underline{Y_{\mathrm{s}}} &= \underline{Y_1} \\ + \underline{Y_{\mathrm{m}}} &= 0 \\ +\end{aligned} +``` +It means that we try to define $\underline{Z_0}=\underline{Z_1}$ and $\underline{Y_0}=\underline{Y_1}$. If this +"degraded" model also leads to a non-invertible impedance matrix, an error is raised. +```` + +### Examples + +```pycon +>>> import numpy as np +... from roseau.load_flow import LineParameters, Q_ + +>>> # A basic example when z0=z1 +... line_parameters = LineParameters.from_sym( +... "sym_line_example", z0=0.2 + 0.1j, z1=0.2 + 0.1j, y0=0.00014106j, y1=0.00014106j +... ) + +>>> line_parameters.z_line +array( + [[ 0.2+0.1j, 0. +0.j , 0. +0.j ], + [ 0. +0.j , 0.2+0.1j, 0. +0.j ], + [ 0. +0.j , 0. +0.j , 0.2+0.1j ]] +) + +>>> line_parameters.y_shunt +array( + [[ 0.+0.00014106j, 0.+0.j , 0.+0.j ], + [ 0.+0.j , 0.+0.00014106j, 0.+0.j ], + [ 0.+0.j , 0.+0.j , 0.+0.00014106j ]] +) + + +>>> # Simple example in "downgraded" model +... line_parameters = LineParameters.from_sym( +... "NKBA NOR 25.00 kV", z0=0.0j, z1=1.0 + 1.0j, y0=0.0j, y1=1e-06j +... ) +The symmetric model data provided for line type 'NKBA NOR 25.00 kV' produces invalid line impedance matrix... It is +often the case with line models coming from PowerFactory. Trying to handle the data in a 'degraded' line model. + +>>> line_parameters.z_line +array( + [[1.+1.j, 0.+0.j, 0.+0.j], + [0.+0.j, 1.+1.j, 0.+0.j], + [0.+0.j, 0.+0.j, 1.+1.j]] +) + +>>> line_parameters.y_shunt +array( + [[0.+1.e-06j, 0.+0.e+00j, 0.+0.e+00j], + [0.+0.e+00j, 0.+1.e-06j, 0.+0.e+00j], + [0.+0.e+00j, 0.+0.e+00j, 0.+1.e-06j]] +) + + +>>> # 4x4 matrix +... line_parameters = LineParameters.from_sym( +... "sym_neutral_underground_line_example", +... z0=0.188 + 0.8224j, +... z1=0.188 + 0.0812j, +... zn=0.4029 + 0.3522j, +... xpn=0.2471, +... y0=0.000010462 + 0.000063134j, +... y1=0.000010462 + 0.00022999j, +... bn=0.00011407, +... bpn=-0.000031502, +... ) + +>>> line_parameters.z_line +array( + [[0.188 +0.32826667j, 0. +0.24706667j, 0. +0.24706667j, 0. +0.2471j ], + [0. +0.24706667j, 0.188 +0.32826667j, 0. +0.24706667j, 0. +0.2471j ], + [0. +0.24706667j, 0. +0.24706667j, 0.188 +0.32826667j, 0. +0.2471j ], + [0. +0.2471j , 0. +0.2471j , 0. +0.2471j , 0.4029+0.3522j ]] +) + +>>> line_parameters.y_shunt +array( + [[ 1.0462e-05+1.74371333e-04j, 0.0000e+00-5.56186667e-05j, 0.0000e+00-5.56186667e-05j, -0.0000e+00-3.15020000e-05j], + [ 0.0000e+00-5.56186667e-05j, 1.0462e-05+1.74371333e-04j, 0.0000e+00-5.56186667e-05j, -0.0000e+00-3.15020000e-05j], + [ 0.0000e+00-5.56186667e-05j, 0.0000e+00-5.56186667e-05j, 1.0462e-05+1.74371333e-04j, -0.0000e+00-3.15020000e-05j], + [-0.0000e+00-3.15020000e-05j, -0.0000e+00-3.15020000e-05j, -0.0000e+00-3.15020000e-05j, 0.0000e+00+1.14070000e-04j]] +) +``` + +## Geometric model + +### Definition + +The `LineParameters` class has a class method called `from_geometry` which builds impedance and shunt admittance +matrices from dimensions and materials used for the insulator and the conductors. Two geometric configurations are +proposed: the first one is for a twisted line and the second is for an underground line. Both of them include a +neutral wire. + +This class methods accepts the following arguments: + +- the line type to choose between the twisted and the underground options. +- the conductor type which defines the material of the conductors. +- the insulator type which is the material used as insulator. +- the section of the phase wires (in mm²). The sections of the wires of the three phases are considered equal. +- the section of the neutral wire (in mm²). +- the height of the line above or below the ground (in meters). +- the external diameter of the wire (in meters). + +#### Resistance + +The resistances of the conductors are computed using the following formula: + +```{math} +R_{p}=\frac{\rho}{S_{p}}\quad\forall p\in\{\mathrm{a},\mathrm{b},\mathrm{c},\mathrm{n}\} \qquad(\text{in } +\Omega\text{/km}) +``` + +where: + +- $\left(S_p\right)_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}$ are the (equal) sections of the phase conductors; +- $S_{\mathrm{n}}$ the section of the neutral conductor; +- $\rho$ the resistivity of the conductor material (the same for the phases and for the neutral). + +The following resistivities are used by _Roseau Load Flow_: + +| Material | Resistivity ($\Omega$m) | +| :------------ | :---------------------- | +| Copper | $1.72\times10^{-8}$ | +| Aluminium | $2.82\times10^{-8}$ | +| Almélec | $3.26\times10^{-8}$ | +| Alu-Acier | $4.0587\times10^{-8}$ | +| Almélec-Acier | $3.26\times10^{-8}$ | + +These values are defined in the `utils` module: [](#roseau.load_flow.utils.constants.RHO). + +#### Inductance + +The inductance matrix in Henry/km is computed using the following formula: + +```{math} +L= +\begin{pmatrix} + L_{\mathrm{a}} & M_{\mathrm{ab}} & M_{\mathrm{ac}} & M_{\mathrm{an}}\\ + M_{\mathrm{ba}} & L_{\mathrm{b}} & M_{\mathrm{bc}} & M_{\mathrm{bn}}\\ + M_{\mathrm{ca}} & M_{\mathrm{cb}} & L_{\mathrm{c}} & M_{\mathrm{cn}}\\ + M_{\mathrm{na}} & M_{\mathrm{nb}} & M_{\mathrm{nc}} & L_{\mathrm{n}}\\ +\end{pmatrix} +``` + +where for $(i,j)\in \{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{n}\}^2$ + +```{math} +\begin{aligned} + L_i&=\dfrac{\mu_0}{2\pi} \ln\left(\frac{D_0}{GMR_{i}}\right) \\ + M_{ij}&=\dfrac{\mu_0}{2\pi} \ln\left(\frac{D_0}{D_{ij}}\right) \\ +\end{aligned} +``` + +where: + +- $\mu_0$ is the vacuum magnetic permeability (H/m); +- $D_0$ an arbitrary distance taken equal to 1 meter; +- $D_{ij}$ the distances between the center of the conductor $i$ and the center of the conductor $j$ +- $GMR_i$ the _geometric mean radius_ of the conductor $i$. + +The vacuum magnetic permeability is defined in the `utils` module [](#roseau.load_flow.utils.constants.MU_0). + +The geometric mean radius is defined for all $i\in \{\mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{n}\}$ as + +```{math} +GMR_i=R_i\exp\left(-\dfrac{1}{4}\right)\quad \text{(in m)} +``` + +```{note} +When the geometric mean radius is computed, the radius must be taken in meters! +``` + +#### Capacitance + +In order to compute the capacitances of the line, the $(\lambda_{ij})_{(i,j)\in\{\mathrm{a},\mathrm{b},\mathrm{c}, +\mathrm{n}\}^2}$ matrix of potential coefficients is built. Those coefficients were first introduced by Maxwell in 1873 +({cite:p}`Maxwell_1873` page 89). + +```{math} +\begin{aligned} + \lambda_{ij}&= \dfrac{1}{2\pi\varepsilon}\ln\left(\dfrac{D'_{ij}}{D_{ij}}\right) \quad\text{if } i\neq j\\ + \lambda_{ii}&= \dfrac{1}{2\pi\varepsilon}\ln\left(\dfrac{D'_{i}}{R_i}\right) \quad\text{otherwise}\\ +\end{aligned} +``` + +where: + +- $\varepsilon$ is the permittivity of the insulator in F/m; +- $D_{ij}$ the distance between the center of the conductor $i$ and the conductor $j$; +- $R_i$ the radius of the conductor $i$; +- $D'_i$ the distance between the conductor $i$ and its image with respect to the ground; +- $D'_{ij}$ the distance between the conductor $i$ and the image of the conductor $j$ with respect to the ground. + +The method of images ({cite:p}`wiki:Method_Of_Image_Charges`) is depicted in the following figure. It indicates how +to compute the distances based on the position of wires. + +````{tab} Planar ground +```{image} /_static/Line/Image_Method_Plane.svg +:alt: Image method for a planar ground +:width: 400px +:align: center +``` +```` + +````{tab} Circular ground +```{image} /_static/Line/Image_Method_Circle.svg +:alt: Image method for a circular ground +:width: 400px +:align: center +``` +```` + +The permittivity of the insulator $\varepsilon$ (in F/m) is defined as $\varepsilon_0\varepsilon_{\mathrm{r}}$ with +$\varepsilon_0$ the permittivity of the vacuum (in F/m) and $\varepsilon_{\mathrm{r}}$ the relative +permittivity of the insulator (no unit). These values are defined in the `utils` module +[](#roseau.load_flow.utils.constants.EPSILON_0) and [](#roseau.load_flow.utils.constants.EPSILON_R). + +The capacitance matrix $C$ is then defined by: + +```{math} +C= +\begin{pmatrix} + C_{\mathrm{a}} & C_{\mathrm{ab}} & C_{\mathrm{ac}} & C_{\mathrm{an}}\\ + C_{\mathrm{ab}} & C_{\mathrm{b}} & C_{\mathrm{bc}} & C_{\mathrm{bn}}\\ + C_{\mathrm{ac}} & C_{\mathrm{bc}} & C_{\mathrm{c}} & C_{\mathrm{cn}}\\ + C_{\mathrm{an}} & C_{\mathrm{bn}} & C_{\mathrm{cn}} & C_{\mathrm{n}} +\end{pmatrix} +=\lambda^{-1} \quad\text{in F/km} +``` + +#### Conductance + +The conductance matrix $G$ (in S/km) is defined by: + +```{math} +G= +\begin{pmatrix} + G_{\mathrm{a}} & 0 & 0 & 0\\ + 0 & G_{\mathrm{b}} & 0 & 0\\ + 0 & 0 & G_{\mathrm{c}} & 0\\ + 0 & 0 & 0 & G_{\mathrm{n}} +\end{pmatrix} +``` + +where $G_i=C_i\omega\tan\delta$ for all $i\in\{\mathrm{a},\mathrm{b},\mathrm{c},\mathrm{n}\}$. + +$\tan\delta$ is the loss tangent and is taken from this table: + +| Insulator | Loss tangent $\tan\delta$ | +| :------------------------------- | :------------------------ | +| PolyVinyl Chloride (PVC) | $600\times10^{-4}$ | +| High-Density PolyEthylene (HDPE) | $6\times10^{-4}$ | +| Low-Density PolyEthylene (LDPE) | $6\times10^{-4}$ | +| Cross-linked polyethylene (PEX) | $30\times10^{-4}$ | +| Ethylene-Propylene Rubber (EPR) | $125\times10^{-4}$ | + +These values are defined in the `utils` module: [](#roseau.load_flow.utils.constants.TAN_D). + +Finally, the impedance matrix and the admittance matrix can be computed. + +```{math} +\begin{aligned} + \underline{Z} &= R + j\omega L \\ + \underline{y} &= G + j\omega C \\ +\end{aligned} +``` + +```{warning} +The admittance matrix $\underline{y}$ shouldn't be confused with the shunt admittance matrix +$\underline{Y}$ defined [here](models-line-shunt-admittance-matrix). +``` + +```{note} +The frequency used to compute $\omega$ is 50 Hz. +``` + +### Twisted line + +The following configuration of the wires is supposed: + +```{image} /_static/Line/Twisted_Geometry.svg +:alt: Twisted model geometry +:width: 600px +:align: center +``` + +Here is the details of the parameters used: + +```{image} /_static/Line/Twisted_Geometry_Details.svg +:alt: Twisted model geometry details +:width: 600px +:align: center +``` + +In this configuration, the phase conductors are around the neutral conductor, separated by $\dfrac{2\pi}{3}$ angles +and located at the distance $\dfrac{d_{\mathrm{ext}}}{4}$ from the center of the neutral conductor. Phases and +neutral are separated by the insulator and air. The height distance $h$ is the distance between the center of the +neutral conductor and the ground. + +From these figures, the following geometric positions can be deduced: + +```{math} +\begin{aligned} + (x_{\mathrm{a}}, y_{\mathrm{a}}) &= \left(\dfrac{-\sqrt{3}}{8}\cdot d_{\mathrm{ext}},h+\dfrac{d_{\mathrm{ext}}}{8}\right)\\ + (x_{\mathrm{b}}, y_{\mathrm{b}}) &= \left(\dfrac{\sqrt{3}}{8}\cdot d_{\mathrm{ext}},h+\dfrac{d_{\mathrm{ext}}}{8}\right)\\ + (x_{\mathrm{c}}, y_{\mathrm{c}}) &= \left(0,h-\dfrac{d_{\mathrm{ext}}}{4}\right)\\ + (x_{\mathrm{n}}, y_{\mathrm{n}}) &= (0, h)\\ + (x_{\mathrm{a}}', y_{\mathrm{a}}') &= (x_{\mathrm{a}}, -y_{\mathrm{a}})\\ + (x_{\mathrm{b}}', y_{\mathrm{b}}') &= (x_{\mathrm{b}}, -y_{\mathrm{b}})\\ + (x_{\mathrm{c}}', y_{\mathrm{c}}') &= (x_{\mathrm{c}}, -y_{\mathrm{c}})\\ + (x_{\mathrm{n}}', y_{\mathrm{n}}') &= (x_{\mathrm{n}}, -y_{\mathrm{n}})\\ +\end{aligned} +``` + +The position $(x_{\mathrm{a}}, y_{\mathrm{a}})$ are the position of the point $A$, $(x_{\mathrm{b}}, y_{\mathrm{b}})$ +the point $B$, etc. The prime positions are the positions of the images of the conductor with respect to the ground. + +The formulas of the previous sections are used to get the impedance and shunt admittances matrices. + +```pycon +>>> from roseau.load_flow import LineParameters, Q_, LineType, ConductorType, InsulatorType + +>>> # A twisted line example +... line_parameters = LineParameters.from_geometry( +... "twisted_example", +... line_type=LineType.TWISTED, +... conductor_type=ConductorType.AL, +... insulator_type=InsulatorType.PEX, +... section=150, # mm² +... section_neutral=70, # mm² +... height=10, # m +... external_diameter=Q_(4, "cm"), +... ) + +>>> line_parameters.z_line +array( + [[0.188 +0.32828403j, 0. +0.25483745j, 0. +0.25483745j, 0. +0.28935138j], + [0. +0.25483745j, 0.188 +0.32828403j, 0. +0.25483745j, 0. +0.28935138j], + [0. +0.25483745j, 0. +0.25483745j, 0.188 +0.32828403j, 0. +0.28935138j], + [0. +0.28935138j, 0. +0.28935138j, 0. +0.28935138j, 0.40285714+0.35222736j]] +) + +>>> line_parameters.y_shunt.to("uS/km") +array( + [[0.09883654 +48.82465468j, 0. -1.92652134j, 0. -1.92555213j, 0. -12.02706891j], + [0. -1.92652134j, 0.09883654 +48.82465468j, 0. -1.92555213j, 0. -12.02706891j], + [0. -1.92555213j, 0. -1.92555213j, 0.09884227 +48.82653968j, 0. -12.02801059j], + [0. -12.02706891j, 0. -12.02706891j, 0. -12.02801059j, 0.21303236+107.09293474j]] +) ) +``` + +### Underground line + +The following configuration of the wires is supposed: + +```{image} /_static/Line/Underground_Geometry.svg +:alt: Underground model geometry +:width: 600px +:align: center +``` + +Here is the details of the parameters used: + +```{image} /_static/Line/Underground_Geometry_Details.svg +:alt: Underground model geometry details +:width: 600px +:align: center +``` + +In this configuration, the conductors are separated by $\dfrac{\pi}{2}$ angles +and located at the distance $\dfrac{d_{\mathrm{ext}}}{4}$ from the center of the wire. Phases and +neutral are separated by the insulator. The height distance $h$ is the distance between the center of the +wire and the ground. + +From these figures, the following geometric positions can be deduced: + +```{math} +\begin{aligned} + (x_{\mathrm{a}}, y_{\mathrm{a}}) &= \left(-\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}},h-\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}}\right)\\ + (x_{\mathrm{b}}, y_{\mathrm{b}}) &= \left(\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}},h-\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}}\right)\\ + (x_{\mathrm{c}}, y_{\mathrm{c}}) &= \left(\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}},h+\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}}\right)\\ + (x_{\mathrm{n}}, y_{\mathrm{n}}) &= \left(-\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}},h+\dfrac{\sqrt{2}}{8}d_{\mathrm{ext}}\right)\\ + (x_{\mathrm{a}}', y_{\mathrm{a}}') &= \left(-\dfrac{3\sqrt{2}}{8}d_{\mathrm{ext}},h-\dfrac{3\sqrt{2}}{8} d_{\mathrm{ext}}\right)\\ + (x_{\mathrm{b}}', y_{\mathrm{b}}') &= \left(\dfrac{3\sqrt{2}}{8}d_{\mathrm{ext}},h-\dfrac{3\sqrt{2}}{8}d_ + {\mathrm{ext}}\right)\\ + (x_{\mathrm{c}}', y_{\mathrm{c}}') &= \left(\dfrac{3\sqrt{2}}{8} d_{\mathrm{ext}},h+\dfrac{3\sqrt{2}}{8} d_ + {\mathrm{ext}}\right)\\ + (x_{\mathrm{n}}', y_{\mathrm{n}}') &= \left(-\dfrac{3\sqrt{2}}{8} d_{\mathrm{ext}},h+\dfrac{3\sqrt{2}}{8} d_ + {\mathrm{ext}}\right)\\ +\end{aligned} +``` + +The position $(x_{\mathrm{a}}, y_{\mathrm{a}})$ are the position of the point $A$, $(x_{\mathrm{b}}, y_{\mathrm{b}})$ +the point $B$, etc. The prime positions are the positions of the images of the conductor with respect to the ground. + +The formulas of the previous sections are used to get the impedance and shunt admittances matrices. + +```{note} +Please note that for underground lines, the provided height $h$ must be negative as shown in the example below. +``` + +```pycon +>>> from roseau.load_flow import LineParameters, Q_, LineType, ConductorType, InsulatorType + +>>> # An underground line example +... line_parameters = LineParameters.from_geometry( +... "underground_example", +... line_type=LineType.UNDERGROUND, +... conductor_type=ConductorType.AL, +... insulator_type=InsulatorType.PVC, +... section=150, #mm² +... section_neutral=70, #mm² +... height=-1.5, # m # Underground so negative! +... external_diameter=0.049, #m +... ) + +>>> line_parameters.z_line +array( + [[0.188 +0.32828403j, 0. +0.25482437j, 0. +0.23304851j, 0. +0.25482437j], + [0. +0.25482437j, 0.188 +0.32828403j, 0. +0.25482437j, 0. +0.23304851j], + [0. +0.23304851j, 0. +0.25482437j, 0.188 +0.32828403j, 0. +0.25482437j], + [0. +0.25482437j, 0. +0.23304851j, 0. +0.25482437j, 0.40285714+0.35222736j]] +) + +>>> line_parameters.y_shunt.to("uS/km") +array( + [[19.06271927+458.27618628j, 0. -74.71708551j, 0. -20.98651877j, 0. -44.86059415j], + [ 0. -74.71708551j, 20.61057729+499.04239152j, 0. -74.71708551j, 0. -6.09859898j], + [ 0. -20.98651877j, 0. -74.71708551j, 19.06271927+458.27618628j, 0. -44.86059415j], + [ 0. -44.86059415j, 0. -6.09859898j, 0. -44.86059415j, 12.66715195+306.9389864j ]] +) +``` + +## Bibliography + +```{bibliography} +:filter: docname in docnames +``` diff --git a/doc/models/Line/ShuntLine.md b/doc/models/Line/ShuntLine.md new file mode 100644 index 00000000..d0342b5a --- /dev/null +++ b/doc/models/Line/ShuntLine.md @@ -0,0 +1,183 @@ +# Shunt line + +The first model of line which can be used is a PI model with series impedance and shunt admittance. The +corresponding diagram is: + +````{tab} European standards +```{image} /_static/Line/European_Shunt_Line.svg +:alt: Shunt line diagram +:width: 1000px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Line/American_Shunt_Line.svg +:alt: Shunt line diagram +:width: 1000px +:align: center +``` +```` + +## Equations + +The corresponding equations are: + +```{math} +\left\{ + \begin{aligned} + \underline{V_1} &= \underline{a} \cdot \underline{V_2} - \underline{b} \cdot \underline{I_2} + \underline{g} + \cdot \underline{V_{\mathrm{g}}} \\ + \underline{I_1} &= \underline{c} \cdot \underline{V_2} - \underline{d} \cdot \underline{I_2} + \underline{h} + \cdot \underline{V_{\mathrm{g}}} \\ + \underline{I_{\mathrm{g}}} &= \underline{f}^\top \cdot \left(\underline{V_1} + \underline{V_2} - 2\cdot + \underline{V_{\mathrm{g}}}\right) + \end{aligned} +\right. +``` + +where + +```{math} +\left\{ + \begin{aligned} + \underline{a} &= \mathcal{I}_4 + \dfrac{1}{2} \cdot \underline{Z} \cdot \underline{Y} \\ + \underline{b} &= \underline{Z} \\ + \underline{c} &= \underline{Y} + \dfrac{1}{4}\cdot \underline{Y} \cdot \underline{Z} \cdot \underline{Y} \\ + \underline{d} &= \mathcal{I}_4 + \dfrac{1}{2} \cdot \underline{Y} \cdot \underline{Z} \\ + \underline{f} &= -\dfrac{1}{2} \cdot \begin{pmatrix} \underline{y_{\mathrm{ag}}} & \underline{y_{\mathrm{bg}} + } & \underline{y_{\mathrm{cg}}} & \underline{y_{\mathrm{ng}}} \end{pmatrix} ^\top \\ + \underline{g} &= \underline{Z} \cdot \underline{f} \\ + \underline{h} &= 2 \cdot \underline{f} + \frac{1}{2}\cdot \underline{Y} \cdot \underline{Z} \cdot \underline{f} \\ + \end{aligned} +\right. +``` + +with $\underline{Z}$ the series impedance matrix and $\underline{Y}$ the shunt admittance matrix. + +## Usage + +To create a shunt line, create an instance of `LineParameter` with the `y_shunt` argument. The +`ground` argument of the `Line` constructor is mandatory for shunt lines. Here is a line that +connects a constant power load to a voltage source. + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Line, + LineParameters, + PotentialRef, + PowerLoad, + Q_, + VoltageSource, + Ground, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# Create a ground element and set its potential to zero +ground = Ground(id="ground") +pref = PotentialRef(id="pref", element=ground) + +# A shunt line +z_line = Q_( + np.array( + [ + [0.3 + 0.35j, 0.25j, 0.25j, 0.25j], + [0.25j, 0.3 + 0.35j, 0.25j, 0.25j], + [0.25j, 0.25j, 0.3 + 0.35j, 0.25j], + [0.25j, 0.25j, 0.25j, 0.3 + 0.35j], + ] + ), + "ohm/km", +) +y_shunt = Q_( + np.array( + [ + [20 + 475j, -68j, -10j, -68j], + [-68j, 20 + 475j, -68j, -10j], + [-10j, -68j, 20 + 475j, -68j], + [-68j, -10j, -68j, 20 + 475j], + ] + ), + "uS/km", # micro Siemens per kilometer +) +line_parameters = LineParameters(id="line_parameters", z_line=z_line, y_shunt=y_shunt) +line = Line( + id="line", + bus1=bus1, + bus2=bus2, + parameters=line_parameters, + length=Q_(1, "km"), + ground=ground, +) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + + +# A power load on the second bus +load = PowerLoad( + id="load", bus=bus2, powers=Q_(np.array([5.0, 2.5, 0]) * (1 - 0.3j), "kVA") +) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# The current "entering" into the line from the bus1 +en.res_branches[["current1"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:--------------|---------------------------:|------------------------:| +# | ('line', 'a') | 23.9459 | 15.6886 | +# | ('line', 'b') | 11.2926 | -104.492 | +# | ('line', 'c') | 0.119763 | -157.68 | +# | ('line', 'n') | 20.6151 | 167.381 | + +# The current "entering" into the line from the bus2 +en.res_branches[["current2"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current2', 'absolute') | ('current2', 'angle') | +# |:--------------|---------------------------:|------------------------:| +# | ('line', 'a') | 23.9202 | -164.585 | +# | ('line', 'b') | 11.2551 | 74.9044 | +# | ('line', 'c') | 5.68434e-14 | 0 | +# | ('line', 'n') | 20.6273 | -12.625 | + +# The currents in the series components of the line +en.res_lines[["series_current"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('series_current', 'absolute') | ('series_current', 'angle') | +# |:--------------|---------------------------------:|------------------------------:| +# | ('line', 'a') | 23.9333 | 15.5496 | +# | ('line', 'b') | 11.2737 | -104.796 | +# | ('line', 'c') | 0.0598601 | -157.579 | +# | ('line', 'n') | 20.6215 | 167.376 | + +# The losses of the series components of line can also be accessed +en.res_lines[["series_losses"]].transform([np.real, np.imag]) +# | | ('series_losses', 'real') | ('series_losses', 'imag') | +# |:--------------|----------------------------:|----------------------------:| +# | ('line', 'a') | 171.841 | 57.2802 | +# | ('line', 'b') | 38.1291 | 12.7097 | +# | ('line', 'c') | 0.00107497 | 0.000358324 | +# | ('line', 'n') | 127.574 | 42.5246 | + +# The shunt losses can be computed. Notice that the shunt losses are not null for the shunt line. +res_lines = en.res_lines +total_losses = res_lines["power1"] + res_lines["power2"] # total = series + shunt +shunt_losses = total_losses - res_lines["series_losses"] +shunt_losses.to_frame("shunt_losses").transform([np.real, np.imag]) +# | | ('shunt_losses', 'real') | ('shunt_losses', 'imag') | +# |:--------------|---------------------------:|---------------------------:| +# | ('line', 'a') | -1.59017 | -26.6385 | +# | ('line', 'b') | 1.01834 | -28.5657 | +# | ('line', 'c') | 3.69511 | -27.4104 | +# | ('line', 'n') | 0.0351686 | 0.0139828 | +``` diff --git a/doc/models/Line/SimplifiedLine.md b/doc/models/Line/SimplifiedLine.md new file mode 100644 index 00000000..45869da1 --- /dev/null +++ b/doc/models/Line/SimplifiedLine.md @@ -0,0 +1,126 @@ +# Simplified line + +If the line is modeled with only series impedance, the model is simplified as there is no coupling +with the ground. This is a common model of short lines, typically in distribution networks. + +The corresponding diagram is: + +````{tab} European standards +```{image} /_static/Line/European_Simplified_Line.svg +:alt: Simplified line diagram +:width: 600px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Line/American_Simplified_Line.svg +:alt: Simplified line diagram +:width: 600px +:align: center +``` +```` + +## Equations + +With $\underline{Y} = 0$, the equations become: + +```{math} +\left\{ + \begin{aligned} + \underline{V_1} - \underline{V_2} &= \underline{Z} \cdot \underline{I_1} \\ + \underline{I_2} &= -\underline{I_1} + \end{aligned} +\right. +``` + +## Usage + +To create a simplified line, create an instance of `LineParameter` without providing `y_shunt`. +Here is a simplified line connecting a constant power load to a voltage source. + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Line, + LineParameters, + PotentialRef, + PowerLoad, + Q_, + VoltageSource, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# A line +lp = LineParameters(id="lp", z_line=Q_(0.35 * np.eye(4), "ohm/km")) +line = Line(id="line", bus1=bus1, bus2=bus2, parameters=lp, length=Q_(1, "km")) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# The neutral of the voltage source is fixed at potential 0 +pref = PotentialRef(id="pref", element=bus1, phase="n") + +# A power load on the second bus +load = PowerLoad( + id="load", bus=bus2, powers=Q_(np.array([5.0, 2.5, 0]) * (1 - 0.3j), "kVA") +) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# The current flowing into the line from bus1 +en.res_branches[["current1"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:--------------|---------------------------:|------------------------:| +# | ('line', 'a') | 24.1958 | 16.4456 | +# | ('line', 'b') | 11.3722 | -105.263 | +# | ('line', 'c') | 0 | 0 | +# | ('line', 'n') | 20.628 | 168.476 | + +# The current flowing into the line from bus2 +en.res_branches[["current2"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current2', 'absolute') | ('current2', 'angle') | +# |:--------------|---------------------------:|------------------------:| +# | ('line', 'a') | 24.1958 | -163.554 | +# | ('line', 'b') | 11.3722 | 74.7366 | +# | ('line', 'c') | 0 | 0 | +# | ('line', 'n') | 20.628 | -11.5242 | + +# The currents in the series components of the line +en.res_lines[["series_current"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('series_current', 'absolute') | ('series_current', 'angle') | +# |:--------------|---------------------------------:|------------------------------:| +# | ('line', 'a') | 24.1958 | 16.4456 | +# | ('line', 'b') | 11.3722 | -105.263 | +# | ('line', 'c') | 0 | 0 | +# | ('line', 'n') | 20.628 | 168.476 | + +# All currents are equal in magnitude for a simplified lines as no current escapes to the ground. +# The current from bus 2 has an opposite direction to the current from bus 1 as expected. + +# The losses of the line can also be accessed. One can remark that there are no shunt losses +en.res_lines[["series_losses"]].transform([np.real, np.imag]) +# | | ('series_losses', 'real') | ('series_losses', 'imag') | +# |:--------------|----------------------------:|----------------------------:| +# | ('line', 'a') | 204.904 | -2.66329e-15 | +# | ('line', 'b') | 45.2646 | -8.96306e-16 | +# | ('line', 'c') | 0 | 0 | +# | ('line', 'n') | 148.93 | 7.62657e-16 | + +# With a simplified model, all the losses are caused by the series impedance of the line +res_lines = en.res_lines +total_losses = res_lines["power1"] + res_lines["power2"] # total = series + shunt +np.allclose(total_losses, res_lines["series_losses"]) +# True +``` diff --git a/doc/models/Line/index.md b/doc/models/Line/index.md new file mode 100644 index 00000000..dc2cad5e --- /dev/null +++ b/doc/models/Line/index.md @@ -0,0 +1,177 @@ +# Lines + +## Definition + +Lines are modeled using passive components lumped in a PI section. The lumped parameters are +defined using the series impedance matrix $\underline{Z}$ and the shunt admittance matrix +$\underline{Y}$. + +## Matrices definition + +Before diving into the different line models, lets define the series impedance matrix $Z$, and the +shunt admittance matrix $Y$ used to model the lines. + +### Series impedance matrix + +The series impedance matrix $\underline{Z}$, in $\Omega$, consists of the series resistance of the +conductors ($R\in{\mathbb{R}^+}^4$), the self-inductances ($L\in\mathbb{R}^4$) and the mutual +inductances ($M\in\mathbb{R}^{12}$). + +```{math} +\begin{aligned} + \underline{Z} &= R + j \cdot X \\ + \underline{Z} &= \begin{pmatrix} + \underline{Z_{\mathrm{aa}}} & \underline{Z_{\mathrm{ab}}} & \underline{Z_{\mathrm{ac}}} & \underline{Z_{\mathrm{an}}}\\ + \underline{Z_{\mathrm{ba}}} & \underline{Z_{\mathrm{bb}}} & \underline{Z_{\mathrm{bc}}} & \underline{Z_{\mathrm{bn}}}\\ + \underline{Z_{\mathrm{ca}}} & \underline{Z_{\mathrm{cb}}} & \underline{Z_{\mathrm{cc}}} & \underline{Z_{\mathrm{cn}}}\\ + \underline{Z_{\mathrm{na}}} & \underline{Z_{\mathrm{nb}}} & \underline{Z_{\mathrm{nc}}} & \underline{Z_{\mathrm{nn}}}\\ + \end{pmatrix}\\ + \underline{Z} &= \underbrace{ + \begin{pmatrix} + R_{\mathrm{a}} & 0 & 0 & 0\\ + 0 & R_{\mathrm{b}} & 0 & 0\\ + 0 & 0 & R_{\mathrm{c}} & 0\\ + 0 & 0 & 0 & R_{\mathrm{n}}\\ + \end{pmatrix} + }_{R} + j \cdot \underbrace{ + \omega \cdot + \begin{pmatrix} + L_{\mathrm{a}} & M_{\mathrm{ab}} & M_{\mathrm{ac}} & M_{\mathrm{an}}\\ + M_{\mathrm{ba}} & L_{\mathrm{b}} & M_{\mathrm{bc}} & M_{\mathrm{bn}}\\ + M_{\mathrm{ca}} & M_{\mathrm{cb}} & L_{\mathrm{c}} & M_{\mathrm{cn}}\\ + M_{\mathrm{na}} & M_{\mathrm{nb}} & M_{\mathrm{nc}} & L_{\mathrm{n}}\\ + \end{pmatrix} + }_{X} +\end{aligned} +``` + +### Admittance matrix + +```{warning} +The admittance matrix $\underline{y}$ shouldn't be confused with the shunt admittance matrix +$\underline{Y}$ defined below. +``` + +$\underline{y}$ represents the admittances between each node, while $\underline{Y}$ is used to +compute the currents and voltages. + +```{math} +\begin{aligned} + \underline{y} &= G + j \cdot B \\ + \underline{y} &= \begin{pmatrix} + \underline{y_{\mathrm{ag}}} & \underline{y_{\mathrm{ab}}} & \underline{y_{\mathrm{ac}}} & \underline{y_{\mathrm{an}}}\\ + \underline{y_{\mathrm{ab}}} & \underline{y_{\mathrm{bg}}} & \underline{y_{\mathrm{bc}}} & \underline{y_{\mathrm{bn}}}\\ + \underline{y_{\mathrm{ac}}} & \underline{y_{\mathrm{bc}}} & \underline{y_{\mathrm{cg}}} & \underline{y_{\mathrm{cn}}}\\ + \underline{y_{\mathrm{an}}} & \underline{y_{\mathrm{bn}}} & \underline{y_{\mathrm{cn}}} & \underline{y_{\mathrm{ng}}} + \end{pmatrix}\\ + \underline{y} &= \underbrace{ + \begin{pmatrix} + G_{\mathrm{a}} & 0 & 0 & 0\\ + 0 & G_{\mathrm{b}} & 0 & 0\\ + 0 & 0 & G_{\mathrm{c}} & 0\\ + 0 & 0 & 0 & G_{\mathrm{n}} + \end{pmatrix} + }_{G} + j \cdot \underbrace{ + \omega \cdot + \begin{pmatrix} + C_{\mathrm{a}} & C_{\mathrm{ab}} & C_{\mathrm{ac}} & C_{\mathrm{an}}\\ + C_{\mathrm{ab}} & C_{\mathrm{b}} & C_{\mathrm{bc}} & C_{\mathrm{bn}}\\ + C_{\mathrm{ac}} & C_{\mathrm{bc}} & C_{\mathrm{c}} & C_{\mathrm{cn}}\\ + C_{\mathrm{an}} & C_{\mathrm{bn}} & C_{\mathrm{cn}} & C_{\mathrm{n}} + \end{pmatrix} + }_{B} +\end{aligned} +``` + +with $G\in\mathbb{R}^4$ the conductance of the line, $B\in\mathbb{R}^4$ the susceptance of the line and +$C\in\mathbb{R}^{16}$ the transverse susceptances of the line. + +(models-line-shunt-admittance-matrix)= + +### Shunt admittance matrix + +The shunt admittance matrix $\underline{Y}$ is defined from the admittance matrix $\underline{y}$ as: + +```{math} +\underline{Y} = +\begin{pmatrix} + \underline{Y_{\mathrm{aa}}} & \underline{Y_{\mathrm{ab}}} & \underline{Y_{\mathrm{ac}}} & \underline{Y_{\mathrm{an}}}\\ + \underline{Y_{\mathrm{ba}}} & \underline{Y_{\mathrm{bb}}} & \underline{Y_{\mathrm{bc}}} & \underline{Y_{\mathrm{bn}}}\\ + \underline{Y_{\mathrm{ca}}} & \underline{Y_{\mathrm{cb}}} & \underline{Y_{\mathrm{cc}}} & \underline{Y_{\mathrm{cn}}}\\ + \underline{Y_{\mathrm{na}}} & \underline{Y_{\mathrm{nb}}} & \underline{Y_{\mathrm{nc}}} & \underline{Y_{\mathrm{nn}}}\\ +\end{pmatrix} +\quad \text{with} \quad +\left\{ + \begin{aligned} + \underline{Y_{ii}} &= \sum_{k\in\{\mathrm{a},\mathrm{b},\mathrm{c},\mathrm{n},\mathrm{g}\}}{\underline{y_{ik}}}\\ + \underline{Y_{ij}} &= -\underline{y_{ij}}\\ + \end{aligned} +\right.\text{, }\forall(i,j)\in\{\mathrm{a},\mathrm{b},\mathrm{c},\mathrm{n}\}^2 +``` + +(models-line_parameters)= + +## Line parameters + +The parameters of the lines are defined using the `LineParameters` class. It takes the series +impedance matrix $\underline{Z}$ and optionally, the shunt admittance matrix $\underline{Y}$. The +first one must be given in $\Omega$/km (or an equivalent unit) and the second must be given in +$S/km$ (or an equivalent unit). + +```python +import numpy as np + +from roseau.load_flow import LineParameters, Q_ + +# An impedance matrix +z_line = Q_( + np.array( + [ + [0.3 + 0.35j, 0.25j, 0.25j, 0.25j], + [0.25j, 0.3 + 0.35j, 0.25j, 0.25j], + [0.25j, 0.25j, 0.3 + 0.35j, 0.25j], + [0.25j, 0.25j, 0.25j, 0.3 + 0.35j], + ] + ), + "ohm/km", +) + +# A shunt admittance matrix +y_shunt = Q_( + np.array( + [ + [20 + 475j, -68j, -10j, -68j], + [-68j, 20 + 475j, -68j, -10j], + [-10j, -68j, 20 + 475j, -68j], + [-68j, -10j, -68j, 20 + 475j], + ] + ), + "uS/km", # micro Siemens per kilometer +) + +# The line parameter for a simple line (no shunt) +simple_line_parameters = LineParameters(id="simple_line_parameters", z_line=z_line) + +# The line parameter for a line with a shunt +shunt_line_parameters = LineParameters( + id="shunt_line_parameters", z_line=z_line, y_shunt=y_shunt +) +``` + +There are several alternative constructors for `LineParameters` objects. The description of them can be found in the +dedicated [Line parameters page](Parameters.md). + +## Available models + +The following line models are available in _Roseau Load Flow_. Please also have a look at the parameters page to +define the parameters of lines. + +```{toctree} +--- +maxdepth: 2 +caption: Lines +--- +Parameters +ShuntLine +SimplifiedLine +``` diff --git a/doc/models/Load/CurrentLoad.md b/doc/models/Load/CurrentLoad.md new file mode 100644 index 00000000..4953642e --- /dev/null +++ b/doc/models/Load/CurrentLoad.md @@ -0,0 +1,111 @@ +# Current loads (I) + +They represent loads for which the current is considered constant, i.e. the power is proportional +to the voltage. + +_ZIP_ equation: $S = 0 \times V^0 + i \times V^1 + 0 \times V^2 \implies S \propto V$ + +## Equations + +The equations are the following (star loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{abc}}} &= \mathrm{constant} \\ + \underline{I_{\mathrm{n}}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}\underline{I_{p}} + \end{aligned} +\right. +``` + +And the following (delta loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{ab}}} &= \mathrm{constant} \\ + \underline{I_{\mathrm{bc}}} &= \mathrm{constant} \\ + \underline{I_{\mathrm{ca}}} &= \mathrm{constant} + \end{aligned} +\right. +``` + +## Example + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Line, + LineParameters, + PotentialRef, + CurrentLoad, + Q_, + VoltageSource, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# A line +lp = LineParameters(id="lp", z_line=Q_(0.35 * np.eye(4), "ohm/km")) +line = Line(id="line", bus1=bus1, bus2=bus2, parameters=lp, length=Q_(1, "km")) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# The neutral of the voltage source is fixed at potential 0 +pref = PotentialRef(id="pref", element=bus1, phase="n") + +# A current load on the second bus +load = CurrentLoad( + id="load", + bus=bus2, + currents=Q_(5 * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "A"), +) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# Get the current of the load (equal to the one provided) +en.res_loads["current"].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | absolute | angle | +# |:--------------|------------:|--------:| +# | ('load', 'a') | 5 | 0 | +# | ('load', 'b') | 5 | -120 | +# | ('load', 'c') | 5 | 120 | +# | ('load', 'n') | 1.77636e-15 | 180 | + +# Get the voltages of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | 0 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 229.19 | 0 | +# | ('bus2', 'bn') | 229.19 | -120 | +# | ('bus2', 'cn') | 229.19 | 120 | + +# Modify the load value to create an unbalanced load +load.currents = Q_( + np.array([5.0, 2.5, 0]) * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "A" +) +en.solve_load_flow(auth=auth) + +# Get the currents of the loads of the network +en.res_loads["current"].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | absolute | angle | +# |:--------------|-----------:|--------:| +# | ('load', 'a') | 5 | 0 | +# | ('load', 'b') | 2.5 | -120 | +# | ('load', 'c') | 0 | 180 | +# | ('load', 'n') | 4.33013 | 150 | +``` diff --git a/doc/models/Load/FlexibleLoad.md b/doc/models/Load/FlexibleLoad.md new file mode 100644 index 00000000..c25ceaf7 --- /dev/null +++ b/doc/models/Load/FlexibleLoad.md @@ -0,0 +1,430 @@ +# Flexible loads + +They are a special case of power loads: instead of being constant, the power will depend on the +voltage measured at the load and the control applied to the load. + +## Equations + +The equations are the following (star loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{abc}}} &= \left(\frac{ + \underline{S_{\mathrm{abc}}}(\underline{V_{\mathrm{abc}}}-\underline{V_{\mathrm{n}}}) + }{\underline{V_{\mathrm{abc}}}-\underline{V_{\mathrm{n}}}}\right)^{\star} \\ + \underline{I_{\mathrm{n}}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}\underline{I_{p}} + \end{aligned} +\right. +``` + +And the following (delta loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{ab}}} &= \left(\frac{\underline{S_{\mathrm{ab}}}(\underline{V_{\mathrm{a}}}-\underline + {V_{\mathrm{b}}})}{\underline{V_{\mathrm{a}}}-\underline{V_{\mathrm{b}}}}\right)^{\star} \\ + \underline{I_{\mathrm{bc}}} &= \left(\frac{\underline{S_{\mathrm{bc}}}(\underline{V_{\mathrm{b}}}-\underline + {V_{\mathrm{c}}})}{\underline{V_{\mathrm{b}}}-\underline{V_{\mathrm{c}}}}\right)^{\star} \\ + \underline{I_{\mathrm{ca}}} &= \left(\frac{\underline{S_{\mathrm{ca}}}(\underline{V_{\mathrm{c}}}-\underline + {V_{\mathrm{a}}})}{\underline{V_{\mathrm{c}}}-\underline{V_{\mathrm{a}}}}\right)^{\star} + \end{aligned} +\right. +``` + +The expression $\underline{S}(U)$ depends on four parameters: + +- The theoretical power $\underline{S^{\mathrm{th.}}}$ that the load would have if no control is applied. +- The maximal power $S^{\max}$ that can be injected/consumed by the load. For a PV installation, this is + usually the rated power of the inverter. +- The type of control (see below). +- The type of projection (see below). + +(models-flexible_load-controls)= + +## Controls + +There are four available types of control. + +### Constant control + +No control is applied, this is equivalent to a classical power load. The constant control can be +built like this: + +```python +from roseau.load_flow import Control + +# Use the constructor. Note that the voltages are not important in this case. +control = Control(type="constant", u_min=0.0, u_down=0.0, u_up=0.0, u_max=0.0) + +# Or prefer using the shortcut +control = Control.constant() +``` + +(models-flexible_load-p_u_control)= + +### P(U) control + +Control the maximum active power of a load (often a PV inverter) based on the voltage $P^{\max}(U)$. + +```{note} +The functions $s_{\alpha}$ used for the P(U) controls are derived from the *soft clipping function* of +{cite:p}`Klimek_2020`. +``` + +#### Production + +With this control, the following soft clipping family of functions $s_{\alpha}(U)$ is used. The +default value of `alpha` is 1000. + +```{image} /_static/Control_PU_Prod.svg +:alt: P(U) production control +:width: 600 +:align: center +``` + +The final $P$ is then $P(U) = \max(s_{\alpha}(U) \times S^{\max}, P^{\mathrm{th.}})$ + +```python +from roseau.load_flow import Control, Q_ + +# Use the constructor. Note that u_min and u_down are useless with the production control +production_control = Control( + type="p_max_u_production", u_min=0, u_down=0, u_up=Q_(240, "V"), u_max=Q_(250, "V") +) + +# Or prefer the shortcut +production_control = Control.p_max_u_production(u_up=Q_(240, "V"), u_max=Q_(250, "V")) +``` + +#### Consumption + +With this control, the following soft clipping family of functions $s_{\alpha}(U)$ is used. The +default value of `alpha` is 1000. + +```{image} /_static/Control_PU_Cons.svg +:alt: P(U) consumption control +:width: 600 +:align: center +``` + +The final $P$ is then $P(U) = \min(s_{\alpha}(U) \times S^{\max}, P^{\mathrm{th.}})$ + +```python +from roseau.load_flow import Control, Q_ + +# Use the constructor. Note that u_max and u_up are useless with the consumption control +consumption_control = Control( + type="p_max_u_consumption", u_min=Q_(210, "V"), u_down=Q_(220, "V"), u_up=0, u_max=0 +) + +# Or prefer the shortcut +consumption_control = Control.p_max_u_consumption(u_min=Q_(210, "V"), u_down=Q_(220, "V")) +``` + +(models-flexible_load-q_u_control)= + +### Q(U) control + +Control the reactive power based on the voltage $Q(U)$. With this control, the following soft +clipping family of functions $s_{\alpha}(U)$ is used. The default value of `alpha` is 1000. + +```{image} /_static/Control_QU.svg +:alt: Q(U) control +:width: 600 +:align: center +``` + +The final $Q$ is then $Q(U) = s_{\alpha}(U) \times S^{\max}$ + +```{note} +The function $s_{\alpha}$ used for the Q(U) control is derived from the *soft clipping function* of +{cite:p}`Klimek_2020`. +``` + +```python +from roseau.load_flow import Control, Q_ + +# Use the constructor. Note that all the voltages are important. +control = Control( + type="q_u", + u_min=Q_(210, "V"), + u_down=Q_(220, "V"), + u_up=Q_(240, "V"), + u_max=Q_(250, "V"), +) + +# Or prefer the shortcut +control = Control.q_u( + u_min=Q_(210, "V"), u_down=Q_(220, "V"), u_up=Q_(240, "V"), u_max=Q_(250, "V") +) +``` + +(models-flexible_load-projection)= + +## Projection + +The different controls may produce values for $P$ and $Q$ that are not feasible. The feasibility +domain in the $(P, Q)$ space is a part of the circle of radius $S^{\max}$. In these cases, the +solution found by the control algorithm has to be projected on the feasible domain. That's why we +need to define how the projection is done. There are three available projection types: the +_Euclidean_ projection, the projection at _Constant $P$_ and the projection at _Constant $Q$_. + +The projection accepts two approximation parameters: `alpha` and `epsilon`. + +- `alpha` is used to compute soft sign function and soft projection function. The higher `alpha` + is, the better the approximations are. +- `epsilon` is used to approximate a smooth square root function: + ```{math} + \sqrt{S} = \sqrt{\varepsilon \times \exp\left(\frac{-{|S|}^2}{\varepsilon}\right) + {|S|}^2} + ``` + The lower `epsilon` is, the better the approximations are. + +### Euclidean projection + +A Euclidean projection on the feasible domain. This is the default value for projections when it is +not specified. + +```{image} /_static/Euclidean_Projection.svg +:width: 300 +:align: center +``` + +```python +from roseau.load_flow import Projection + +projection = Projection(type="euclidean") # alpha and epsilon can be provided +``` + +### Constant $P$ + +Keep the value of $P$ computed by the control and project $Q$ on the feasible domain. + +```{image} /_static/Constant_P_Projection.svg +:width: 300 +:align: center +``` + +```python +from roseau.load_flow import Projection + +projection = Projection(type="keep_p") # alpha and epsilon can be provided +``` + +### Constant $Q$ + +Keep the value of $Q$ computed by the control and project $P$ on the feasible domain. + +```{image} /_static/Constant_Q_Projection.svg +:width: 300 +:align: center +``` + +```python +from roseau.load_flow import Projection + +projection = Projection(type="keep_q") # alpha and epsilon can be provided +``` + +(models-flexible_load-flexible_parameters)= + +## Flexible parameters + +A flexible parameter is a combination of a control on the active power, a control on the reactive +power, a projection and a maximal apparent power for one phase. + +### Example + +Here, we define a flexible parameter with: + +- a constant control on $P$ (meaning, no control), +- a control $Q(U)$ on $Q$, +- a projection which keeps $P$ constant, +- an $S^{\max}$ of 5 kVA. + +```python +from roseau.load_flow import FlexibleParameter, Control, Projection, Q_ + +fp = FlexibleParameter( + control_p=Control.constant(), + control_q=Control.q_u( + u_min=Q_(210, "V"), u_down=Q_(220, "V"), u_up=Q_(240, "V"), u_max=Q_(250, "V") + ), + projection=Projection(type="keep_p"), + s_max=Q_(5, "kVA"), +) +``` + +### Usage + +To create a flexible load, create a `PowerLoad` passing it a list of `FlexibleParameter` objects +using the `flexible_params` parameter, one for each phase of the load. + +#### Scenario 1: Same $Q(U)$ control on all phases + +In this scenario, we apply the same $Q(U)$ control on the three phases of a load. We define a +flexible parameter with constant $P$ control and use it three times in the load constructor. + +```python +import numpy as np + +from roseau.load_flow import FlexibleParameter, Control, Projection, Q_, PowerLoad, Bus + +bus = Bus(id="bus", phases="abcn") + +# Create a flexible parameter object +fp = FlexibleParameter( + control_p=Control.constant(), + control_q=Control.q_u( + u_min=Q_(210, "V"), u_down=Q_(220, "V"), u_up=Q_(240, "V"), u_max=Q_(250, "V") + ), + projection=Projection(type="keep_p"), + s_max=Q_(5, "kVA"), +) + +# Use it for the three phases of the load +load = PowerLoad( + id="load", + bus=bus, + powers=Q_(np.array([1000, 1000, 1000]) * (1 - 0.3j), "VA"), + flexible_params=[fp, fp, fp], # <- this makes the load "flexible" +) +``` + +The created load is a three-phase star-connected load as the phases inherited from the bus include +`"n"`. The `powers` parameter of the `PowerLoad` constructor represents the theoretical powers of +the three phases of the load. The load is flexible on its three phases with the same flexible +parameters. + +#### Scenario 2: Different controls on different phases + +In this scenario, we create a load with only two phases and a neutral connected to a three-phase +bus with a neutral. Two different controls are applied by the load on the two phases. + +```python +import numpy as np + +from roseau.load_flow import FlexibleParameter, Control, Projection, Q_, PowerLoad, Bus + +bus = Bus(id="bus", phases="abcn") + +# Create a first flexible parameter (Q(U) control) +fp1 = FlexibleParameter( + control_p=Control.constant(), + control_q=Control.q_u( + u_min=Q_(210, "V"), u_down=Q_(220, "V"), u_up=Q_(240, "V"), u_max=Q_(250, "V") + ), + projection=Projection(type="keep_p"), + s_max=Q_(5, "kVA"), +) + +# Create a second flexible parameter (P(U) control) +fp2 = FlexibleParameter( + control_p=Control.p_max_u_consumption(u_min=Q_(210, "V"), u_down=Q_(220, "V")), + control_q=Control.constant(), + projection=Projection(type="euclidean"), + s_max=Q_(3, "kVA"), +) + +# Use them in a load +load = PowerLoad( + id="load", + bus=bus, + phases="abn", + powers=Q_(np.array([1000, 1000]) * (1 - 0.3j), "VA"), + flexible_params=[fp1, fp2], +) +``` + +The first element of the load is connected between phase "a" and "n" of the bus. Its control is a +$Q(U)$ control with a projection at constant $P$ and an $S^{\max}$ of 5 kVA. + +The second element of the load is connected between phase "b" and "n" of the bus. Its control is a +$P(U)$ control with an Euclidean projection and an $S^{\max}$ of 3 kVA. + +#### Scenario 3: PQ(U) control + +Finally, it is possible to combine $P(U)$ and $Q(U)$ controls, for example by first using all +available reactive power before reducing the active power in order to limit the impact for the +client. + +```python +import numpy as np + +from roseau.load_flow import FlexibleParameter, Control, Projection, Q_, PowerLoad, Bus + +bus = Bus(id="bus", phases="abc") + +# Create a flexible parameter +fp = FlexibleParameter( + control_p=Control.p_max_u_production(u_up=Q_(245, "V"), u_max=Q_(250, "V")), + control_q=Control.q_u( + u_min=Q_(210, "V"), u_down=Q_(220, "V"), u_up=Q_(240, "V"), u_max=Q_(245, "V") + ), + projection=Projection(type="euclidean"), + s_max=Q_(5, "kVA"), +) + +# Or using the shortcut +fp = FlexibleParameter.pq_u_production( + up_up=Q_(245, "V"), + up_max=Q_(250, "V"), + uq_min=Q_(210, "V"), + uq_down=Q_(220, "V"), + uq_up=Q_(240, "V"), + uq_max=Q_(245, "V"), + s_max=Q_(5, "kVA"), +) + +# Use it in a load +load = PowerLoad( + id="load", + bus=bus, + powers=Q_(-np.array([1000, 1000, 1000]), "VA"), + flexible_params=[fp, fp, fp], +) +``` + +In this example, the same flexible parameter is used to control all phases of the three-phase +delta-connected load. In the flexible parameter, one can remark that the $Q(U)$ control on high +voltages triggers at 240 V (production) and reaches its maximum at 245 V. The $P(U)$ control +however triggers at 245 V and is maxed out at 250 V. + +Using this configuration, a _sequential PQ(U) control_ has been created for this load. A +_simultaneous PQ(U) control_ could have been defined by using the same voltage thresholds for both +controls. + +## Feasible domains + +Depending on the mix of controls and projection used through this class, the feasible domains in +the $(P, Q)$ space changes. Here is an illustration with a theoretical production power +($P^{\mathrm{th.}} < 0$). + +```{list-table} +:class: borderless +:header-rows: 1 +:widths: 20 20 20 20 20 + +* - + - $Q^{\mathrm{const.}}$ + - $Q(U)$ with an Euclidean projection + - $Q(U)$ with a constant P projection + - $Q(U)$ with a constant Q projection +* - $P^{\mathrm{const.}}$ + - ![image](/_static/Domain_Pconst_Qconst.svg) + - ![image](/_static/Domain_Pconst_QU_Eucl.svg) + - ![image](/_static/Domain_Pconst_QU_P.svg) + - ![image](/_static/Domain_Pconst_QU_Q.svg) +* - $P^{\max}(U)$ + - ![image](/_static/Domain_PmaxU_Qconst.svg) + - ![image](/_static/Domain_PmaxU_QU.svg) + - ![image](/_static/Domain_PmaxU_QU.svg) + - ![image](/_static/Domain_PmaxU_QU.svg) +``` + +## Bibliography + +```{bibliography} +:filter: docname in docnames +``` diff --git a/doc/models/Load/ImpedanceLoad.md b/doc/models/Load/ImpedanceLoad.md new file mode 100644 index 00000000..43481aca --- /dev/null +++ b/doc/models/Load/ImpedanceLoad.md @@ -0,0 +1,109 @@ +# Impedance loads (Z) + +They represent loads for which the impedance is considered constant, i.e. the power is proportional +to the square of the voltage. + +_ZIP_ equation: $S = 0 \times V^0 + 0 \times V^1 + z \times V^2 \implies S \propto V^2$ + +## Equations + +The equations are the following (star loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{abc}}} &= \frac{\underline{V_{\mathrm{abc}}}-\underline{V_{\mathrm{n}}}}{ + \underline{Z_{\mathrm{abc}}}} \\ + \underline{I_{\mathrm{n}}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}\underline{I_{p}} + \end{aligned} +\right. +``` + +And the following (delta loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{ab}}} &= \frac{\underline{V_{\mathrm{a}}}-\underline{V_{\mathrm{b}}}}{\underline{Z_{\mathrm{ab}}}} \\ + \underline{I_{\mathrm{bc}}} &= \frac{\underline{V_{\mathrm{b}}}-\underline{V_{\mathrm{c}}}}{\underline{Z_{\mathrm{bc}}}} \\ + \underline{I_{\mathrm{ca}}} &= \frac{\underline{V_{\mathrm{c}}}-\underline{V_{\mathrm{a}}}}{\underline{Z_{\mathrm{ca}}}} + \end{aligned} +\right. +``` + +## Example + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Line, + LineParameters, + PotentialRef, + ImpedanceLoad, + Q_, + VoltageSource, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# A line +lp = LineParameters(id="lp", z_line=Q_(0.35 * np.eye(4), "ohm/km")) +line = Line(id="line", bus1=bus1, bus2=bus2, parameters=lp, length=Q_(1, "km")) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# The neutral of the voltage source is fixed at potential 0 +pref = PotentialRef(id="pref", element=bus1, phase="n") + +# A power load on the second bus +load = ImpedanceLoad( + id="load", bus=bus2, impedances=Q_(np.array([40 + 3j, 40 + 3j, 40 + 3j]), "ohm") +) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# Get the impedances of the load (the result is equal to the provided impedance +load.res_voltages / load.res_currents[:3] +# array([40.+3.j, 40.+3.j, 40.+3.j]) + +# Get the voltages of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | -6.40192e-19 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 228.948 | 0.0370675 | +# | ('bus2', 'bn') | 228.948 | -119.963 | +# | ('bus2', 'cn') | 228.948 | 120.037 | + +# Modify the load value to create an unbalanced load +load.impedances = Q_(np.array([40 + 4j, 20 + 2j, 10 + 1j]), "ohm") +en.solve_load_flow(auth=auth) + +# Get the impedance of the load +load.res_voltages / load.res_currents[:3] +# array([40.+4.j, 20.+2.j, 10.+1.j]) + +# Get the voltages of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | 0 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 232.313 | -0.792296 | +# | ('bus2', 'bn') | 228.33 | -118.76 | +# | ('bus2', 'cn') | 218.703 | 119.891 | +``` diff --git a/doc/models/Load/PowerLoad.md b/doc/models/Load/PowerLoad.md new file mode 100644 index 00000000..72564734 --- /dev/null +++ b/doc/models/Load/PowerLoad.md @@ -0,0 +1,120 @@ +# Power loads (P) + +They represent loads for which the power is considered constant, i.e. it is independent of the +voltage. + +_ZIP_ equation: $S = s \times V^0 + 0 \times V^1 + 0 \times V^2 \implies S = \mathrm{constant}$ + +## Equations + +The equations are the following (star loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{abc}}} &= \left(\frac{\underline{S_{\mathrm{abc}}}}{\underline{V_{\mathrm{abc}}} + -\underline{V_{\mathrm{n}}}}\right)^{\star} \\ + \underline{I_{\mathrm{n}}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}\underline{I_{p}} + \end{aligned} +\right. +``` + +And the following (delta loads): + +```{math} +\left\{ + \begin{aligned} + \underline{I_{\mathrm{ab}}} &= \left(\frac{\underline{S_{\mathrm{ab}}}}{\underline{V_{\mathrm{a}}}-\underline + {V_{\mathrm{b}}}}\right)^{\star} \\ + \underline{I_{\mathrm{bc}}} &= \left(\frac{\underline{S_{\mathrm{bc}}}}{\underline{V_{\mathrm{b}}}-\underline + {V_{\mathrm{c}}}}\right)^{\star} \\ + \underline{I_{\mathrm{ca}}} &= \left(\frac{\underline{S_{\mathrm{ca}}}}{\underline{V_{\mathrm{c}}}-\underline + {V_{\mathrm{a}}}}\right)^{\star} + \end{aligned} +\right. +``` + +## Example + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Line, + LineParameters, + PotentialRef, + PowerLoad, + Q_, + VoltageSource, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# A line +lp = LineParameters(id="lp", z_line=Q_(0.35 * np.eye(4), "ohm/km")) +line = Line(id="line", bus1=bus1, bus2=bus2, parameters=lp, length=Q_(1, "km")) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = Q_(un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]), "V") +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# The neutral of the voltage source is fixed at potential 0 +pref = PotentialRef(id="pref", element=bus1, phase="n") + +# A power load on the second bus +load = PowerLoad(id="load", bus=bus2, powers=Q_((1000 - 300j) * np.ones(3), "VA")) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# Get the powers of the loads in the network +en.res_loads["power"] +# | | power | +# |:--------------|---------------------------:| +# | ('load', 'a') | 1000-300j | +# | ('load', 'b') | 1000-300j | +# | ('load', 'c') | 1000-300j | +# | ('load', 'n') | -5.57569e-31+ 2.25385e-32j | + +# Get the voltages of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | 9.69325e-22 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 229.414 | -0.113552 | +# | ('bus2', 'bn') | 229.414 | -120.114 | +# | ('bus2', 'cn') | 229.414 | 119.886 | + +# Modify the load value to create an unbalanced load +load.powers = Q_(np.array([5.0, 2.5, 0]) * (1 - 0.3j), "kVA") +en.solve_load_flow(auth=auth) + +# Get the powers of the loads in the network +en.res_loads["power"] +# | | power | +# |:--------------|-----------------------:| +# | ('load', 'a') | 5154.28 - 1581.93j | +# | ('load', 'b') | 2494.65 - 668.07j | +# | ('load', 'c') | 0 | +# | ('load', 'n') | -148.93 + 3.78664e-14j | + +# Get the voltages of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | 4.05321e-24 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 215.746 | -0.253646 | +# | ('bus2', 'bn') | 229.513 | -121.963 | +# | ('bus2', 'cn') | 235.788 | 121.314 | +``` diff --git a/doc/models/Load/index.md b/doc/models/Load/index.md new file mode 100644 index 00000000..fe8ce74b --- /dev/null +++ b/doc/models/Load/index.md @@ -0,0 +1,78 @@ +# Loads + +## Definition + +The load element can be used to model consumption loads (with positive active power) as well as +generation loads (with negative active power). + +## Connections + +A load can be either star-connected or delta-connected depending on whether its phases include a +neutral or not. + +### Star (wye) connection + +Here is the diagram of a star-connected three-phase load: + +````{tab} European standards +```{image} /_static/Load/European_Star_Load.svg +:alt: Star load diagram +:width: 300px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Load/American_Star_Load.svg +:alt: Star load diagram +:width: 300px +:align: center +``` +```` + +In _Roseau Load Flow_, the `phases` argument of the constructor must contain `"n"` for star loads. + +### Delta connection + +Here is the diagram of a delta-connected three-phase load: + +````{tab} European standards +```{image} /_static/Load/European_Delta_Load.svg +:alt: Delta load diagram +:width: 300px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Load/American_Delta_Load.svg +:alt: Delta load diagram +:width: 300px +:align: center +``` +```` + +In _Roseau Load Flow_, the `phases` argument of the constructor must **not** contain `"n"` for delta +loads. + +## Available models + +The _ZIP_ model is commonly used to represent electric loads in static grid analysis. This model +considers the voltage dependency of loads. ZIP stands for the three load types: + +- Z = constant impedance load +- I = constant current load +- P = constant power load + +The following load models are available in _Roseau Load Flow_: + +```{toctree} +--- +maxdepth: 2 +caption: Loads +--- +ImpedanceLoad +CurrentLoad +PowerLoad +FlexibleLoad +``` diff --git a/doc/models/PotentialRef.md b/doc/models/PotentialRef.md new file mode 100644 index 00000000..44b9965e --- /dev/null +++ b/doc/models/PotentialRef.md @@ -0,0 +1,49 @@ +# Potential Reference + +## Definition + +As the electrical potentials of the elements of the network are defined as a difference from a +reference point, we need to define this reference point. The potential reference element sets the +potential of the point where it is connected to $0$ Volt. The symbol of a potential reference is: + +```{image} /_static/PotentialRef.svg +:alt: A diagram of a potential reference element +:width: 100px +:align: center +``` + +```{note} +One and only one potential reference per galvanically isolated section of the network can be set. +``` + +## Usage + +It is common to consider the earth as the reference of potentials $0V$. In _Roseau Load Flow_, the +ground element which represents an earth connection does not add any potential reference equation, +i.e. its potential is not fixed at $0V$. If you want to set its potential to $0V$, you must attach +a potential reference element explicitly: + +```python +from roseau.load_flow.models import Ground, PotentialRef + +g = Ground(id="ground") +p_ref = PotentialRef(id="pref", element=g) +``` + +With this code snippet, you have defined the following element: + +```{image} /_static/PotentialRef_With_Ground.svg +:alt: A diagram of a potential reference connected to a ground element +:width: 100px +:align: center +``` + +It is also possible to set the reference of potentials to any phase of any bus in the network. +For example, to fix the potential of phase "a" of some bus to $0V$: + +```python +from roseau.load_flow.models import Bus, PotentialRef + +bus = Bus(id="bus", phases="abcn") +p_ref = PotentialRef(id="pref", element=bus, phase="a") +``` diff --git a/doc/models/Switch.md b/doc/models/Switch.md new file mode 100644 index 00000000..476474a1 --- /dev/null +++ b/doc/models/Switch.md @@ -0,0 +1,96 @@ +# Switch + +## Definition + +It represents an ideal switch, a lossless element that connects two buses. + +```{image} /_static/Switch.svg +:alt: Switch diagram +:width: 300px +:align: center +``` + +## Equations + +The associated equations are: + +```{math} +\left\{ + \begin{aligned} + \underline{I_1} &= - \underline{I_2}\\ + \underline{V_1} &= \underline{V_2}\\ + \end{aligned} +\right. +``` + +## Example + +Here is a switch connecting a constant power load to a voltage source. + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Q_, + Bus, + ElectricalNetwork, + PotentialRef, + PowerLoad, + Switch, + VoltageSource, +) + +# Two buses +bus1 = Bus(id="bus1", phases="abcn") +bus2 = Bus(id="bus2", phases="abcn") + +# A line +switch = Switch(id="switch", bus1=bus1, bus2=bus2) + +# A voltage source on the first bus +un = 400 / np.sqrt(3) +voltages = un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]) +vs = VoltageSource(id="source", bus=bus1, voltages=voltages) + +# The neutral of the voltage source is fixed at potential 0 +pref = PotentialRef(id="pref", element=bus1, phase="n") + +# A power load on the second bus +load = PowerLoad(id="load", bus=bus2, powers=[5000 + 1600j, 2500 + 800j, 0]) + +# Create a network and solve a load flow +en = ElectricalNetwork.from_element(bus1) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# The current flowing into the line from bus1 +en.res_branches[["current1"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:----------------|---------------------------:|------------------------:| +# | ('switch', 'a') | 22.7321 | -17.7447 | +# | ('switch', 'b') | 11.3661 | -137.745 | +# | ('switch', 'c') | 0 | 0 | +# | ('switch', 'n') | 19.6866 | 132.255 | + +# The current flowing into the line from bus2 +en.res_branches[["current2"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current2', 'absolute') | ('current2', 'angle') | +# |:----------------|---------------------------:|------------------------:| +# | ('switch', 'a') | 22.7321 | 162.255 | +# | ('switch', 'b') | 11.3661 | 42.2553 | +# | ('switch', 'c') | 0 | 0 | +# | ('switch', 'n') | 19.6866 | -47.7447 | + +# The two currents are equal in magnitude and opposite in phase, as expected + +# The two buses have the same voltages +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | 0 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 230.94 | 0 | +# | ('bus2', 'bn') | 230.94 | -120 | +# | ('bus2', 'cn') | 230.94 | 120 | +``` diff --git a/doc/models/Transformer/Center_Tapped_Transformer.md b/doc/models/Transformer/Center_Tapped_Transformer.md new file mode 100644 index 00000000..d8092f11 --- /dev/null +++ b/doc/models/Transformer/Center_Tapped_Transformer.md @@ -0,0 +1,159 @@ +# Center-tapped transformer + +Center-tapped transformers allow to convert two phases primary connection into a split-phase +secondary connection, with the neutral at the center secondary winding. It is modelled as follows: + +````{tab} European standards +```{image} /_static/Transformer/European_Center_Tapped_Transformer.svg +:alt: Center-tapped transformer diagram +:width: 500px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Transformer/American_Center_Tapped_Transformer.svg +:alt: Center-tapped transformer diagram +:width: 500px +:align: center +``` +```` + +Non-ideal models are used in _Roseau Load Flow_. The series impedances $\underline{Z_2}$ and the +magnetizing admittances $\underline{Y_{\mathrm{m}}}$ are included in the model. + +```{note} +Figures and equations on this page are related to a transformer connected between the phases $\mathrm{a}$ and $\mathrm +{b}$. Nevertheless, center-tapped transformers can be connected between any two phases **as long as the center phase +at the secondary is always $\mathrm{n}$**. +``` + +## Equations + +The following equations are used: + +```{math} +\begin{equation} + \left\{ + \begin{aligned} + \underline{U_{2,\mathrm{a}}^0} &= -\underline{U_{2,\mathrm{b}}^0} \\ + k \cdot \underline{U_{1,\mathrm{ab}}} &= \underline{U_{2,\mathrm{a}}^0} - \underline{U_{2,\mathrm + {b}}^0} \\ + \underline{I_{1,\mathrm{a}}} - Y_{\mathrm{m}} \cdot \underline{U_{1,\mathrm{ab}}} &= + -k \cdot \frac{\underline{I_{2,\mathrm{a}}} + \underline{I_{2,\mathrm{b}}}}{2} \\ + \underline{I_{1,\mathrm{a}}} &= -\underline{I_{1,\mathrm{n}}} \\ + \underline{I_{2,\mathrm{a}}} + \underline{I_{2,\mathrm{b}}} + \underline{I_{2,\mathrm{n}}} &= 0 \\ + \end{aligned} + \right. +\end{equation} +``` + +Where $\underline{Z_2}$ is the series impedance, $\underline{Y_{\mathrm{m}}}$ is the magnetizing +admittance of the transformer, $k$ the transformation ratio, and: + +```{math} +\begin{equation} + \left\{ + \begin{aligned} + \underline{U_{2,\mathrm{a}}^0} &= \underline{U_{2,\mathrm{a}}} - \frac{Z_2}{2} \underline{I_{2,\mathrm{a}}} \\ + \underline{U_{2,\mathrm{b}}^0} &= \underline{U_{2,\mathrm{b}}} - \frac{Z_2}{2} \underline{I_{2,\mathrm{b}}} + \end{aligned} + \right. +\end{equation} +``` + +## Example + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Ground, + Line, + LineParameters, + PotentialRef, + PowerLoad, + Transformer, + TransformerParameters, + VoltageSource, +) + +# Create a ground and set it as the reference potential +ground = Ground("ground") +pref = PotentialRef("pref", ground) + +# Create a source bus and voltage source (MV) +source_bus = Bus("source_bus", phases="abcn") +ground.connect(source_bus) +voltages = 20e3 / np.sqrt(3) * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]) +vs = VoltageSource(id="vs", bus=source_bus, voltages=voltages) + +# Create a load bus and a load (MV) +load_bus = Bus(id="load_bus", phases="abc") +mv_load = PowerLoad("mv_load", load_bus, powers=[10000, 10000, 10000]) + +# Connect the two MV buses with a line +lp = LineParameters.from_name_mv("U_AL_150") # Underground, ALuminium, 150mm² +line = Line("line", source_bus, load_bus, parameters=lp, length=1.0, ground=ground) + +# Create a low-voltage bus and a load +lv_bus = Bus(id="lv_bus", phases="abn") +ground.connect(lv_bus) +lv_load = PowerLoad("lv_load", lv_bus, powers=[-2000, 0]) + +# Create a transformer +tp = TransformerParameters( + "t", + "center", # <--- Center-tapped transformer + sn=630e3, + uhv=20000.0, + ulv=230.0, + i0=0.018, + p0=1300.0, + psc=6500.0, + vsc=0.04, +) +transformer = Transformer("transfo", load_bus, lv_bus, parameters=tp) + +# Create the network and solve the load flow +en = ElectricalNetwork.from_element(source_bus) +en.solve_load_flow() + +# The current flowing into the the line and transformer from the source side +en.res_branches[["current1"]].dropna().transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:-----------------|---------------------------:|------------------------:| +# | ('line', 'a') | 1.58451 | 45.1554 | +# | ('line', 'b') | 1.28415 | -55.5618 | +# | ('line', 'c') | 1.84471 | -178 | +# | ('transfo', 'a') | 0.564366 | -63.5557 | +# | ('transfo', 'b') | 0.564366 | 116.444 | + +# The current flowing into the line and transformer from the load side +en.res_branches[["current2"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current2', 'absolute') | ('current2', 'angle') | +# |:-----------------|---------------------------:|------------------------:| +# | ('line', 'a') | 1.22632 | 155.665 | +# | ('line', 'b') | 0.726784 | 19.6741 | +# | ('line', 'c') | 0.866034 | -60.0009 | +# | ('transfo', 'a') | 17.3904 | 30.0135 | +# | ('transfo', 'b') | 0 | 0 | +# | ('transfo', 'n') | 17.3904 | -149.987 | +# We can see the secondary phase "b" of the transformer does not carry any current as +# the load has 0VA on this phase. + +# The voltages at the buses of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------------|--------------------------:|-----------------------:| +# | ('source_bus', 'an') | 11547 | 9.20565e-25 | +# | ('source_bus', 'bn') | 11547 | -120 | +# | ('source_bus', 'cn') | 11547 | 120 | +# | ('load_bus', 'ab') | 19999.8 | 29.9994 | +# | ('load_bus', 'bc') | 19999.9 | -90.0009 | +# | ('load_bus', 'ca') | 19999.7 | 149.999 | +# | ('lv_bus', 'an') | 115.006 | 30.0135 | +# | ('lv_bus', 'bn') | 114.999 | -150.001 | +``` diff --git a/doc/models/Transformer/Single_Phase_Transformer.md b/doc/models/Transformer/Single_Phase_Transformer.md new file mode 100644 index 00000000..e6eda96f --- /dev/null +++ b/doc/models/Transformer/Single_Phase_Transformer.md @@ -0,0 +1,136 @@ +# Single-phase transformer + +Single-phase transformers are modelled as follows: + +````{tab} European standards +```{image} /_static/Transformer/European_Single_Phase_Transformer.svg +:alt: Single-phase transformer diagram +:width: 500px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Transformer/American_Single_Phase_Transformer.svg +:alt: Single-phase transformer diagram +:width: 500px +:align: center +``` +```` + +Non-ideal transformer models are used in _Roseau Load Flow_. The series impedances $\underline{Z_2}$ +and the magnetizing admittances $\underline{Y_{\mathrm{m}}}$ are included in the model. + +```{note} +Figures and equations on this page are related to a transformer connected between the phases $\mathrm{a}$ and $\mathrm +{n}$. Nevertheless, single-phase transformers can be connected between any two phases. +``` + +## Equations + +The following equations are used: + +```{math} +\begin{equation} + \left\{ + \begin{aligned} + k \cdot \underline{U_{1,\mathrm{a}}} &= \underline{U_{2,\mathrm{a}}} - \underline{Z_2} \cdot \underline{I_{2, + \mathrm{a}}} \\ + \underline{I_{1,\mathrm{a}}} - \underline{Y_{\mathrm{m}}} \cdot \underline{U_{1,\mathrm{a}}} &= -k \cdot + \underline{I_{2,\mathrm{a}}} \\ + \underline{I_{1,\mathrm{a}}} &= -\underline{I_{1,\mathrm{n}}} \\ + \underline{I_{2,\mathrm{a}}} &= -\underline{I_{2,\mathrm{n}}} \\ + \end{aligned} + \right. +\end{equation} +``` + +Where $\underline{Z_2}$ is the series impedance, $\underline{Y_{\mathrm{m}}}$ is the magnetizing +admittance of the transformer, and $k$ the transformation ratio. + +## Example + +The following examples shows a single-phase load connected via an isolating single-phase transformer +to a three-phase voltage source. + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + PotentialRef, + PowerLoad, + Transformer, + TransformerParameters, + VoltageSource, +) + +# Create the source bus and the voltage source +bus1 = Bus(id="bus1", phases="abcn") +pref1 = PotentialRef(id="pref1", element=bus1) + +voltages = 400 / np.sqrt(3) * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]) +vs = VoltageSource(id="vs", bus=bus1, voltages=voltages) + +# Create the load bus and the load +bus2 = Bus(id="bus2", phases="an") +pref2 = PotentialRef(id="pref2", element=bus2) + +load = PowerLoad(id="load", bus=bus2, powers=[100], phases="an") + +# Create the transformer +tp = TransformerParameters( + id="Example_TP", + type="single", # <--- Single-phase transformer + sn=800, + uhv=400, + ulv=400, + i0=0.022, + p0=17, + psc=25, + vsc=0.032, +) +transformer = Transformer( + id="transfo", + bus1=bus1, + bus2=bus2, + phases1="an", + phases2="an", + parameters=tp, +) + +# Create the network and solve the load flow +en = ElectricalNetwork.from_element(bus1) +en.solve_load_flow() + +# The current flowing into the transformer from the source side +en.res_branches[["current1"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:-----------------|---------------------------:|------------------------:| +# | ('transfo', 'a') | 0.462811 | -0.956008 | +# | ('transfo', 'n') | 0.462811 | 179.044 | + +# The current flowing into the transformer from the load side +en.res_branches[["current2"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current2', 'absolute') | ('current2', 'angle') | +# |:-----------------|---------------------------:|------------------------:| +# | ('transfo', 'a') | 0.438211 | 179.85 | +# | ('transfo', 'n') | 0.438211 | -0.149761 | + +# The power flow in the transformer +en.res_branches[["power1", "power2"]].abs() +# | | power1 | power2 | +# |:-----------------|---------:|---------:| +# | ('transfo', 'a') | 106.882 | 100 | +# | ('transfo', 'n') | 0 | 0 | + +# The voltages at the buses of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:---------------|--------------------------:|-----------------------:| +# | ('bus1', 'an') | 230.94 | 0 | +# | ('bus1', 'bn') | 230.94 | -120 | +# | ('bus1', 'cn') | 230.94 | 120 | +# | ('bus2', 'an') | 228.2 | -0.149761 | +``` diff --git a/doc/models/Transformer/Three_Phase_Transformer.md b/doc/models/Transformer/Three_Phase_Transformer.md new file mode 100644 index 00000000..03309d26 --- /dev/null +++ b/doc/models/Transformer/Three_Phase_Transformer.md @@ -0,0 +1,679 @@ +(three-phase-transformer)= + +# Three-phase transformer + +Three-phase transformers are modeled with three separate single-phase non-ideal transformers. The +windings of the individual transformers are connected with different configurations to the primary +side (generally the high voltage side) and to the secondary side (generally the low voltage side). +The non-ideal transformer losses are represented by $\underline{Z_2}$ the series impedances and +$\underline{Y_{\mathrm{m}}}$ the magnetizing admittances. + +````{tab} European standards +```{image} /_static/Transformer/European_Three_Phase_Transformer.svg +:alt: Three-phase transformer diagram +:width: 700px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Transformer/American_Three_Phase_Transformer.svg +:alt: Three-phase transformer diagram +:width: 700px +:align: center +``` +```` + +For example, the windings with a $Dyn11$ configuration are represented by the following diagram: + +````{tab} European standards +```{image} /_static/Transformer/European_Dyn11.svg +:alt: Dyn11 windings diagram +:width: 700px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/Transformer/American_Dyn11.svg +:alt: Dyn11 windings diagram +:width: 700px +:align: center +``` +```` + +## Windings + +There are several ways to connect the windings of the individual internal transformers in _Roseau Load +Flow_. They are represented in the following windings diagrams: + +### Wye secondary + +```{list-table} +:class: borderless +:widths: 400 400 + +* - ![image](/_static/Transformer/Windings_Dy11.svg) + - ![image](/_static/Transformer/Windings_Yy0.svg) +* - ![image](/_static/Transformer/Windings_Dy5.svg) + - ![image](/_static/Transformer/Windings_Yy6.svg) +``` + +### Delta secondary + +```{list-table} +:class: borderless +:widths: 400 400 + +* - ![image](/_static/Transformer/Windings_Dd0.svg) + - ![image](/_static/Transformer/Windings_Yd11.svg) +* - ![image](/_static/Transformer/Windings_Dd6.svg) + - ![image](/_static/Transformer/Windings_Yd5.svg) +``` + +### Zigzag secondary + +```{list-table} +:class: borderless +:widths: 400 400 + +* - ![image](/_static/Transformer/Windings_Dz0.svg) + - ![image](/_static/Transformer/Windings_Yz11.svg) +* - ![image](/_static/Transformer/Windings_Dz6.svg) + - ![image](/_static/Transformer/Windings_Yz5.svg) +``` + +## Equations + +The following equations are used to model 3-phase transformers: + +```{math} +\begin{equation} + \left\{ + \begin{aligned} + K_{\mathrm{UXYZ}} \cdot \underline{U_{\mathrm{XYZ}}} + &= K_{\mathrm{VABC}} \cdot \underline{V_{\mathrm{ABC}}} - K_{\mathrm{N}} \cdot \underline{V_{\mathrm{N}}} \\ + K_{\mathrm{Uxyz}} \cdot \left( M_{\mathrm{TV}}\cdot \underline{U_{\mathrm{XYZ}}} + \underline{Z_2} \cdot + \underline{I_{\mathrm{xyz}}} \right) + &= K_{\mathrm{Vabc}} \cdot \underline{V_{\mathrm{abc}}} - K_{\mathrm{n}} \cdot \underline{V_{\mathrm{n}}} \\ + K_{\mathrm{IABC}} \cdot \underline{I_{\mathrm{ABC}}} &= K_{\mathrm{IXYZ}} \cdot + \left( \underline{Y_{\mathrm{m}}} \cdot \underline{U_{\mathrm{XYZ}}} + M_{\mathrm{TI}} \cdot + \underline{I_{\mathrm{xyz}}} \right)\\ + K_{\mathrm{Iabc}} \cdot \underline{I_{\mathrm{abc}}} &= K_{\mathrm{Ixyz}} \cdot \underline{I_{\mathrm{xyz}}} \\ + \underline{I_{\mathrm{N}}} &= - K_{\mathrm{N}}^\top \cdot \underline{I_{\mathrm{ABC}}} \\ + \underline{I_{\mathrm{n}}} &= - K_{\mathrm{n}}^\top \cdot \underline{I_{\mathrm{abc}}} + \end{aligned} + \right. +\end{equation} +``` + +Where $\underline{Z_2}$ is the series impedance and $\underline{Y_{\mathrm{m}}}$ is the magnetizing +admittance of the transformer. The other quantities are the matrices defined below. + +## Matrices + +The following matrices are used to model the windings configurations described above: + +### Transformation matrices + +```{list-table} +:class: borderless +:header-rows: 1 +:stub-columns: 1 +:align: center + +* - Winding + - $M_{\mathrm{TV}}$ + - $M_{\mathrm{TI}}$ + +* - Dd, Yy, Dy and Yd + - $k\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $k\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + +* - Yz + - $k\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $k\begin{pmatrix} + -1 & 0 & 1\\ + 1 & -1 & 0\\ + 0 & 1 & -1 + \end{pmatrix}$ + +* - Dz + - $k\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $k\begin{pmatrix} + -1 & 1 & 0\\ + 0 & -1 & 1\\ + 1 & 0 & -1 + \end{pmatrix}$ +``` + +Where $k$ is the transformation ratio of the internal transformers defined as: + +```{list-table} +:class: borderless +:header-rows: 1 +:stub-columns: 1 +:align: center + +* - Winding + - $k$ +* - Dy + - $\dfrac{U_{\mathrm{LV}}}{\sqrt{3} \cdot U_{\mathrm{HV}}}$ +* - Yy + - $\dfrac{U_{\mathrm{LV}}}{U_{\mathrm{HV}}}$ +* - Dd + - $\dfrac{U_{\mathrm{LV}}}{U_{\mathrm{HV}}}$ +* - Yd + - $\dfrac{\sqrt{3} \cdot U_{\mathrm{LV}}}{U_{\mathrm{HV}}}$ +* - Dz + - $\dfrac{U_{\mathrm{LV}}}{3 \cdot U_{\mathrm{HV}}}$ +* - Yz + - $\dfrac{U_{\mathrm{LV}}}{\sqrt{3} \cdot U_{\mathrm{HV}}}$ +``` + +### Primary winding matrices + +```{list-table} +:class: borderless +:header-rows: 1 +:stub-columns: 1 +:align: center + +* - Winding + - $K_{\mathrm{VABC}}$ + - $K_{\mathrm{UXYZ}}$ + - $K_{\mathrm{IABC}}$ + - $K_{\mathrm{IXYZ}}$ + - $K_{\mathrm{N}}$ + +* - Dx + - $\begin{pmatrix} + 1 & -1 & 0\\ + 0 & 1 & -1\\ + -1 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & -1\\ + -1 & 1 & 0\\ + 0 & -1 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 0\\ + 0\\ + 0 + \end{pmatrix}$ + +* - Yx + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ + +* - Zx + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & -1\\ + -1 & 1 & 0\\ + 0 & -1 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ +``` + +### Secondary windings matrices + +#### Direct + +```{list-table} +:class: borderless +:header-rows: 1 +:stub-columns: 1 +:align: center + +* - Winding + - $K_{\mathrm{Vabc}}$ + - $K_{\mathrm{Uxyz}}$ + - $K_{\mathrm{Iabc}}$ + - $K_{\mathrm{Ixyz}}$ + - $K_{\mathrm{n}}$ +* - Dd0 + - $\begin{pmatrix} + 1 & -1 & 0\\ + 0 & 1 & -1\\ + -1 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & -1\\ + -1 & 1 & 0\\ + 0 & -1 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 0\\ + 0\\ + 0 + \end{pmatrix}$ + +* - Yd11 + - $\begin{pmatrix} + 1 & 0 & -1\\ + -1 & 1 & 0\\ + 0 & -1 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & -1 & 0\\ + 0 & 1 & -1\\ + -1 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 0\\ + 0\\ + 0 + \end{pmatrix}$ + +* - Yy0 and Dy11 + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ + +* - Dz0 + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & -1\\ + -1 & 1 & 0\\ + 0 & -1 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ + +* - Yz11 + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & -1 & 0\\ + 0 & 1 & -1\\ + -1 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ +``` + +#### Inverse + +```{list-table} +:class: borderless +:header-rows: 1 +:stub-columns: 1 +:align: center + +* - Winding + - $K_{\mathrm{Vabc}}$ + - $K_{\mathrm{Uxyz}}$ + - $K_{\mathrm{Iabc}}$ + - $K_{\mathrm{Ixyz}}$ + - $K_{\mathrm{n}}$ +* - Dd6 + - $\begin{pmatrix} + 1 & -1 & 0\\ + 0 & 1 & -1\\ + -1 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 1\\ + 1 & -1 & 0\\ + 0 & 1 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 0\\ + 0\\ + 0 + \end{pmatrix}$ + +* - Yd5 + - $\begin{pmatrix} + 1 & 0 & -1\\ + -1 & 1 & 0\\ + 0 & -1 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 1 & 0\\ + 0 & -1 & 1\\ + 1 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 0\\ + 0\\ + 0 + \end{pmatrix}$ + +* - Yy6 and Dy5 + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ + +* - Dz6 + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 1\\ + 1 & -1 & 0\\ + 0 & 1 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ + +* - Yz5 + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 1 & 0\\ + 0 & -1 & 1\\ + 1 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1 & 0 & 0\\ + 0 & 1 & 0\\ + 0 & 0 & 1 + \end{pmatrix}$ + - $\begin{pmatrix} + -1 & 0 & 0\\ + 0 & -1 & 0\\ + 0 & 0 & -1 + \end{pmatrix}$ + - $\begin{pmatrix} + 1\\ + 1\\ + 1 + \end{pmatrix}$ +``` + +## Example + +The following example shows a 160kVA MV/LV transformer with a $Dyn11$ configuration that +connects a voltage source on the MV network to a load on the LV network. + +```python +import functools as ft +import numpy as np +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Ground, + PotentialRef, + PowerLoad, + Transformer, + TransformerParameters, + VoltageSource, +) + +# Create a MV bus +bus_mv = Bus(id="bus_mv", phases="abc") + +# Create a LV bus +bus_lv = Bus(id="bus_lv", phases="abcn") + +# Set the potential references of the MV and LV networks +pref_mv = PotentialRef(id="pref_mv", element=bus_mv) +pref_lv = PotentialRef(id="pref_lv", element=bus_lv, phase="n") + +# Create a voltage source and connect it to the MV bus +voltages = 20e3 * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]) +vs = VoltageSource(id="vs", bus=bus_mv, voltages=voltages) + +# Create a MV/LV transformer +tp = TransformerParameters( + id="SE_Minera_A0Ak_100_kVA", + type="Dyn11", + sn=100.0 * 1e3, + uhv=20e3, + ulv=400.0, + i0=0.5 / 100, + p0=145.0, + psc=1250.0, + vsc=4.0 / 100, +) +transformer = Transformer( + id="transfo", + bus1=bus_mv, + bus2=bus_lv, + phases1="abc", + phases2="abcn", + parameters=tp, + tap=1.025, +) + +# Create a LV load +load = PowerLoad(id="load", bus=bus_lv, phases="abcn", powers=[3e3, 3e3, 3e3]) + +# Create the network and solve the load flow +en = ElectricalNetwork.from_element(bus_mv) +auth = ("username", "password") +en.solve_load_flow(auth=auth) + +# The current flowing into the transformer from the MV bus +en.res_branches[["current1"]].dropna().transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current1', 'absolute') | ('current1', 'angle') | +# |:-----------------|---------------------------:|------------------------:| +# | ('transfo', 'a') | 0.275904 | -38.8165 | +# | ('transfo', 'b') | 0.275904 | -158.817 | +# | ('transfo', 'c') | 0.275904 | 81.1835 | + +# The current flowing into the transformer from the LV bus +en.res_branches[["current2"]].transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('current2', 'absolute') | ('current2', 'angle') | +# |:-----------------|---------------------------:|------------------------:| +# | ('transfo', 'a') | 12.6872 | 179.813 | +# | ('transfo', 'b') | 12.6872 | 59.8133 | +# | ('transfo', 'c') | 12.6872 | -60.1867 | +# | ('transfo', 'n') | 2.25156e-13 | -80.4634 | + +# The voltages at the buses of the network +en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +# | | ('voltage', 'absolute') | ('voltage', 'angle') | +# |:-----------------|--------------------------:|-----------------------:| +# | ('bus_mv', 'ab') | 20000 | 0 | +# | ('bus_mv', 'bc') | 20000 | -120 | +# | ('bus_mv', 'ca') | 20000 | 120 | +# | ('bus_lv', 'an') | 236.459 | -0.186695 | +# | ('bus_lv', 'bn') | 236.459 | -120.187 | +# | ('bus_lv', 'cn') | 236.459 | 119.813 | +``` diff --git a/doc/models/Transformer/index.md b/doc/models/Transformer/index.md new file mode 100644 index 00000000..e8d8d955 --- /dev/null +++ b/doc/models/Transformer/index.md @@ -0,0 +1,156 @@ +# Transformers + +## Definition + +_Roseau Load Flow_ can model single-phase, center-tapped and three-phase transformers. + +(models-transformer_parameters)= + +## Transformer parameters + +Transformers are modeled with the following parameters: + +- $U_{1,\mathrm{nom.}}$: the phase-to-phase nominal voltage of the high voltages side (in V). This + parameter is called `uhv` in the code. +- $U_{2,\mathrm{nom.}}$: the phase-to-phase nominal voltage of the low voltages side (in V). This + parameter is called `ulv` in the code. +- $S_{\mathrm{nom.}}$: the nominal power of the transformer (in VA). This parameter is called `sn` + in the code. +- $i_0$: the current during off-load test (in %). This parameter is called `i0` in the code. +- $P_0$: the losses during off-load test (in W). This parameter is called `p0` in the code. +- $P_{\mathrm{sc}}$: the losses during short-circuit test (in W). This parameter is called `psc` + in the code. +- $V_{\mathrm{sc}}$: the voltage on LV side during short-circuit test (in %). This parameter is + called `vsc` in the code. + +For three-phase transformers, the windings configuration is also required. See the dedicated page +of [three-phase transformers](Three_Phase_Transformer.md) for more details. + +These parameters come from off-load and short-circuit tests. Internally, these parameters are +converted into a series impedance $\underline{Z_2}$ and the magnetizing admittance +$\underline{Y_{\mathrm{m}}}$. + +First, we define the following quantities: + +- $i_{1,\mathrm{nom.}}=\dfrac{S_{\mathrm{nom.}}}{U_{1,\mathrm{nom.}}}$: the nominal current of the + winding on the primary side of the transformer +- $i_{2,\mathrm{nom.}}=\dfrac{S_{\mathrm{nom.}}}{U_{2,\mathrm{nom.}}}$: the nominal current of the + winding on the secondary side of the transformer. + +### Off-load test + +We note $P_0$ the losses and $i_1^0$ the current in the primary winding of the transformer during +this test. The following values can be computed: + +```{math} +\begin{aligned} + i_0&=100\cdot \frac{i_1^0}{i_{1,\mathrm{nom.}}} \qquad \text{(in %)} \\ + S_0 &= U_0\cdot i_1^0 = U_{1,\mathrm{nom.}}\cdot (i_0\cdot i_{1,\mathrm{nom.}}) = i_0\cdot S_{\mathrm{nom.}} + \qquad \text{(in VA)}\\ + R_{\mathrm{iron}} &= \dfrac{U_{1,\mathrm{nom.}}^2}{P_0} \qquad \text{(in Ohm)}\\ + L_{\mathrm{m}} &= \dfrac{U_{1,\mathrm{nom.}}}{\omega\sqrt{S_0^2-P_0^2}} \text{(in H)} +\end{aligned} +``` + +Then, $\underline{Y_{\mathrm{m}}}$ can be deduced: + +```{math} +\underline{Y_{\mathrm{m}}} = \left\{ + \begin{aligned} + \frac{1}{R_{\mathrm{iron}}+j\omega L_{\mathrm{m}}} & \qquad \text{if } i_0\cdot S_{\mathrm{nom.}} > P_0 \\ + \frac{1}{R_{\mathrm{iron}}} & \qquad \text{otherwise} + \end{aligned} +\right. +``` + +### Short-circuit test + +We note $P_{\mathrm{sc}}$ the losses, $U_{2,\mathrm{sc}}$ the voltage on LV side during this test. The following +values can be computed: + +```{math} +\begin{aligned} + V_{\mathrm{sc}}&= 100\cdot \frac{U_{2,\mathrm{sc}}}{U_{2,\mathrm{nom.}}} \qquad \text{(in %)} \\ + Z_2&=\frac{U_{2,\mathrm{sc}}}{i_{2,\mathrm{nom.}}}=U_{2,\mathrm{sc}}\cdot\frac{U_{2,\mathrm{nom.}}}{ + S_{\mathrm{nom.}}} =V_{\mathrm{sc}}\cdot\frac{U_{2,\mathrm{nom.}}^2}{S_{\mathrm{nom.}}} \qquad \text{(in Ohm)}\\ + R_2&=\frac{P_{\mathrm{sc}}}{i_{2,\mathrm{nom.}}^2} = \frac{P_{\mathrm{sc}}\cdot U_{2,\mathrm{nom.}}^2}{ + S_{\mathrm{nom.}}^2} \qquad \text{(in Ohm)} \\ + X_2&= L_2\cdot\omega = \sqrt{Z_2^2-R_2^2} \qquad \text{(in Ohm)} +\end{aligned} +``` + +Then, $\underline{Z_2}$ can be deduced: + +```{math} +\underline{Z_2} = R_2+j\cdot X_2 +``` + +## Usage + +To define the parameters of the transformers, use the `TransformerParameters` class. It takes as +arguments the elements described in the previous section and converts them into the series +impedance and the magnetizing admittance. The `type` argument of the constructor can take the +following values: + +- `"single"` to model a single-phase transformer +- `"center"` to model a center-tapped transformer +- Any windings (`"Dd0"`, `"Dz6"`, etc.) to model a three-phase transformer. + +```python +from roseau.load_flow import TransformerParameters, Q_ + +# The transformer parameters for a single-phase transformer +single_phase_transformer_parameters = TransformerParameters( + id="single_phase_transformer_parameters", + type="single", # <--- single-phase transformer + uhv=Q_(20, "kV"), + ulv=Q_(400, "V"), + sn=Q_(160, "kVA"), + p0=Q_(300, "W"), + i0=Q_(1.4, "%"), + psc=Q_(2000, "W"), + vsc=Q_(4, "%"), +) + +# The transformer parameters for a three-phase transformer +three_phase_transformer_parameters = TransformerParameters( + id="three_phase_transformer_parameters", + type="Dyn11", # <--- three-phase transformer with delta primary and wye secondary + uhv=Q_(20, "kV"), + ulv=Q_(400, "V"), + sn=Q_(160, "kVA"), + p0=Q_(300, "W"), + i0=Q_(1.4, "%"), + psc=Q_(2000, "W"), + vsc=Q_(4, "%"), +) + +# The transformer parameters for a center-tapped transformer +center_tapped_transformer_parameters = TransformerParameters( + id="center_tapped_transformer_parameters", + type="center", # <--- center-tapped transformer + uhv=Q_(20, "kV"), + ulv=Q_(400, "V"), + sn=Q_(160, "kVA"), + p0=Q_(300, "W"), + i0=Q_(1.4, "%"), + psc=Q_(2000, "W"), + vsc=Q_(4, "%"), +) +``` + +A catalogue of transformer parameters is available. More details [here](catalogues-transformers). + +## Available models + +The following transformer models are available in _Roseau Load Flow_: + +```{toctree} +--- +maxdepth: 2 +caption: Transformers +--- +Single_Phase_Transformer +Three_Phase_Transformer +Center_Tapped_Transformer +``` diff --git a/doc/models/VoltageSource.md b/doc/models/VoltageSource.md new file mode 100644 index 00000000..7647d4d5 --- /dev/null +++ b/doc/models/VoltageSource.md @@ -0,0 +1,113 @@ +# Voltage source + +## Definition + +It represents an ideal voltage source that maintains a fixed voltage independently of the load +resistance or the output current. + +## Connections + +A voltage source can be either star-connected or delta-connected depending on whether its phases +include a neutral or not. + +### Star (wye) connection + +The diagram of the star voltage source is: + +````{tab} European standards +```{image} /_static/VoltageSource/European_Star_Voltage_Source.svg +:alt: Star voltage source diagram +:width: 400px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/VoltageSource/American_Star_Voltage_Source.svg +:alt: Star voltage source diagram +:width: 400px +:align: center +``` +```` + +The equations that model a star voltage source are: + +```{math} +\left\{ + \begin{split} + \underline{V_{\mathrm{a}}}-\underline{V_{\mathrm{n}}} &= \underline{U_{\mathrm{an}}} \\ + \underline{V_{\mathrm{b}}}-\underline{V_{\mathrm{n}}} &= \underline{U_{\mathrm{bn}}} \\ + \underline{V_{\mathrm{c}}}-\underline{V_{\mathrm{n}}} &= \underline{U_{\mathrm{cn}}} + \end{split} +\right. +``` + +Where $\underline{U}\in\mathbb{C}^3$ is the voltage vector (user defined parameter) and +$\underline{V}\in\mathbb{C}^4$ is the node potentials vector (variable). + +### Delta connection + +The diagram of the delta voltage source is: + +````{tab} European standards +```{image} /_static/VoltageSource/European_Delta_Voltage_Source.svg +:alt: Delta voltage source diagram +:width: 400px +:align: center +``` +```` + +````{tab} American standards +```{image} /_static/VoltageSource/American_Delta_Voltage_Source.svg +:alt: Delta voltage source diagram +:width: 400px +:align: center +``` +```` + +The equations that model a delta voltage source are: + +```{math} +\left\{ + \begin{split} + \underline{V_{\mathrm{a}}}-\underline{V_{\mathrm{b}}} &= \underline{U_{\mathrm{ab}}} \\ + \underline{V_{\mathrm{b}}}-\underline{V_{\mathrm{c}}} &= \underline{U_{\mathrm{bc}}} \\ + \underline{V_{\mathrm{c}}}-\underline{V_{\mathrm{a}}} &= \underline{U_{\mathrm{ca}}} + \end{split} +\right. +``` + +Where $\underline{U}\in\mathbb{C}^3$ is the voltage vector (user defined parameter) and +$\underline{V}\in\mathbb{C}^3$ is the node potentials vector (variable). + +## Usage + +A voltage source defined with a neutral phase is a star voltage source, otherwise it is a delta +voltage source. The voltage vector must have the same size as the number of the phase-to-phase +or phase-to-neutral connections of the source. + +```python +import numpy as np +from roseau.load_flow import Bus, VoltageSource + +bus = Bus(id="bus", phases="abcn") + +# Star connection +un = 400 / np.sqrt(3) # 400V phase-to-phase -> 230V phase-to-neutral +voltages = un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]) +VoltageSource( + id="vs", bus=bus, phases="abcn", voltages=voltages +) # Voltages are considered phase-to-neutral because phases="abcn" + +# Delta connection +un = 400 # 400V phase-to-phase +voltages = un * np.exp([0, -2j * np.pi / 3, 2j * np.pi / 3]) +VoltageSource( + id="vs", bus=bus, phases="abc", voltages=voltages +) # Voltages are considered phase-to-phase because phases="abc" + +# Incorrect voltage vector +un = 400 +voltages = un * np.exp([0, -2j * np.pi / 3]) # Only two elements!! +VoltageSource(id="vs", bus=bus, phases="abc", voltages=voltages) # Error +``` diff --git a/doc/models/index.md b/doc/models/index.md new file mode 100644 index 00000000..e35cbe98 --- /dev/null +++ b/doc/models/index.md @@ -0,0 +1,18 @@ +# Models + +A description of the electrical models used for each component is available: + +```{toctree} +--- +maxdepth: 2 +caption: Models +--- +PotentialRef +Ground +Bus +VoltageSource +Load/index +Line/index +Switch +Transformer/index +``` diff --git a/doc/notebooks/Advanced.ipynb b/doc/notebooks/Advanced.ipynb deleted file mode 100644 index d7cc993e..00000000 --- a/doc/notebooks/Advanced.ipynb +++ /dev/null @@ -1,599 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Advanced usages\n", - "\n", - "Make sure you have followed the [getting started guide](Getting_Started.ipynb) first.\n", - "\n", - "Let's create a network with MV and LV elements connected via a transformer." - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:25:41.033848322Z", - "start_time": "2023-06-04T15:25:39.300450976Z" - } - }, - "outputs": [], - "source": [ - "import getpass\n", - "\n", - "import numpy as np\n", - "\n", - "from roseau.load_flow import *" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Creation of the network\n", - "\n", - "This network contains a voltage source with a constant balanced voltage of 20 kV (phase-to-phase),\n", - "a Delta-Wye transformer and a small LV network.\n", - "\n", - "![Advanced Network](../_static/Advanced_Tutorial.svg)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:25:47.157546957Z", - "start_time": "2023-06-04T15:25:47.074574935Z" - } - }, - "outputs": [], - "source": [ - "# Create a MV bus with a voltage source\n", - "bus0_mv = Bus(id=\"bus0_mv\", phases=\"abc\")\n", - "un = 20e3 # V\n", - "source_voltages = [un, un * np.exp(-2j * np.pi / 3), un * np.exp(2j * np.pi / 3)]\n", - "vs = VoltageSource(id=\"vs\", bus=bus0_mv, phases=\"abc\", voltages=source_voltages)\n", - "pref_mv = PotentialRef(id=\"pref_mv\", element=bus0_mv) # Set the MV potential reference\n", - "\n", - "# Create a LV bus and connect its neutral to the ground\n", - "bus0_lv = Bus(id=\"bus0_lv\", phases=\"abcn\")\n", - "ground = Ground(id=\"gnd\")\n", - "pref_lv = PotentialRef(id=\"pref_lv\", element=ground) # Set the ground potential to 0V\n", - "ground.connect(bus0_lv) # Connect the ground to the neutral of the LV bus\n", - "\n", - "# Add a MV/LV transformer\n", - "tp = TransformerParameters(\n", - " \"160_kVA\", \"Dyn11\", sn=160.0 * 1e3, uhv=20e3, ulv=400.0, i0=2.3 / 100, p0=460.0, psc=2350.0, vsc=4.0 / 100\n", - ")\n", - "transformer = Transformer(\n", - " id=\"transfo\", bus1=bus0_mv, bus2=bus0_lv, phases1=\"abc\", phases2=\"abcn\", parameters=tp, tap=1.025\n", - ")\n", - "\n", - "# Add the LV network elements\n", - "lp = LineParameters.from_name_lv(\"S_AL_150\")\n", - "bus1 = Bus(id=\"bus1\", phases=\"abcn\")\n", - "bus2 = Bus(id=\"bus2\", phases=\"abcn\")\n", - "load_bus1 = Bus(id=\"load_bus1\", phases=\"abcn\")\n", - "load_bus2 = Bus(id=\"load_bus2\", phases=\"abcn\")\n", - "load_bus3 = Bus(id=\"load_bus3\", phases=\"abcn\")\n", - "line1 = Line(id=\"line1\", bus1=bus0_lv, bus2=bus1, phases=\"abcn\", ground=ground, parameters=lp, length=0.5) # km\n", - "line2 = Line(id=\"line2\", bus1=bus1, bus2=bus2, phases=\"abcn\", ground=ground, parameters=lp, length=0.4)\n", - "line3 = Line(id=\"line3\", bus1=bus1, bus2=load_bus1, phases=\"abcn\", ground=ground, parameters=lp, length=0.3)\n", - "line4 = Line(id=\"line4\", bus1=bus2, bus2=load_bus2, phases=\"abcn\", ground=ground, parameters=lp, length=0.3)\n", - "line5 = Line(id=\"line5\", bus1=load_bus2, bus2=load_bus3, phases=\"abcn\", ground=ground, parameters=lp, length=0.4)\n", - "si = -3e3 # VA, negative as it is production\n", - "load1 = PowerLoad(id=\"load1\", bus=load_bus1, phases=\"abcn\", powers=[si, si, si])\n", - "load2 = PowerLoad(id=\"load2\", bus=load_bus2, phases=\"abcn\", powers=[si, si, si])\n", - "load3 = PowerLoad(id=\"load3\", bus=load_bus3, phases=\"abcn\", powers=[si, 0, 0])\n", - "\n", - "# Create the network\n", - "en = ElectricalNetwork.from_element(bus0_mv)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:25:57.993969161Z", - "start_time": "2023-06-04T15:25:50.238551806Z" - } - }, - "outputs": [], - "source": [ - "# Authentication\n", - "auth = (input(\"Please enter your username:\"), getpass.getpass(\"Please enter your password:\"))" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Then, the load flow can be solved and the results can be retrieved." - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:00.226504464Z", - "start_time": "2023-06-04T15:25:59.677393450Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([243.66463933, 232.20612714, 233.55093129]) ", - "text/html": "
Magnitude
[243.66463933130166 232.2061271436693 233.5509312888294]
Unitsvolt
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{volt}$" - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.solve_load_flow(auth=auth)\n", - "abs(load_bus3.res_voltages)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Usage of the flexible loads\n", - "\n", - "The flexible loads are loads that implement some basic controls such as $P(U)$, $Q(U)$ or $PQ(U)$.\n", - "\n", - "### $P(U)$ control\n", - "\n", - "Let's remove `load3` from the network and add a flexible load as a replacement. A flexible load\n", - "is a normal `PowerLoad` with a `flexible_params` argument that takes a list of`FlexibleParameter`.\n", - "\n", - "We first create a `FlexibleParameter` using its class method `p_max_u_production`. It returns a\n", - "flexible parameter instance that reduces the active production when the voltage is higher than\n", - "`u_up` volts and stops the production when the voltage reaches `u_max`. The `s_max` argument\n", - "defines the maximum allowed apparent power of the production plant. In the example below,\n", - "`u_up=240 V`, `u_max=250 V` and `s_max=4 kVA`.\n", - "\n", - "After that, a flexible load representing a PV plant is created. Its apparent power is fixed at\n", - "`[si, 0, 0]` VA with `si` a negative value (negative because it is production). Theses apparent\n", - "powers define the maximum power this load can produce. The `flexible_params` argument takes a\n", - "list of `FlexibleParameter` instances, one per phase. For the first phase, the $P(U)$ control is\n", - "used. For the two other phases, there is no control at all thus the `constant` class method is\n", - "used.\n", - "\n", - "As a consequence, the provided apparent power for phase `'a'` is the maximum that can be produced\n", - "(potentially modified by the $P(U)$ control) and the provided apparent power for phases `'b'` and\n", - "`'c'` is the desired production as the flexible parameter is defined as `constant`." - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:04.664969773Z", - "start_time": "2023-06-04T15:26:04.640614689Z" - } - }, - "outputs": [], - "source": [ - "# Let's make the load 3 flexible with a p(u) control to reduce the voltages constraints\n", - "en.loads[\"load3\"].disconnect()\n", - "fp = FlexibleParameter.p_max_u_production(u_up=240, u_max=250, s_max=4000) # V and VA\n", - "flexible_load = PowerLoad(\n", - " id=\"load3\",\n", - " bus=load_bus3,\n", - " phases=\"abcn\",\n", - " powers=[si, 0, 0], # W\n", - " flexible_params=[fp, FlexibleParameter.constant(), FlexibleParameter.constant()],\n", - ")" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The load flow can now be run again. You can see that the voltage magnitude has changed. Note that\n", - "the voltage magnitude for phase `'a'` was 240 V above without the $P(U)$ control, thus the control\n", - "has been activated in this run." - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:07.189134843Z", - "start_time": "2023-06-04T15:26:06.667246422Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([243.08225748, 232.46046866, 233.62854073]) ", - "text/html": "
Magnitude
[243.08225748385007 232.46046865587596 233.62854072949668]
Unitsvolt
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{volt}$" - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.solve_load_flow(auth=auth)\n", - "abs(load_bus3.res_voltages)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The actually produced power of the flexible load is a result of the computation and can be\n", - "accessed using the `res_flexible_powers` property of the load. Here, one can note that:\n", - "\n", - "* The active power for the phase `'a'` is negative meaning production;\n", - "* The actual value of this active power is lower that the one requested as the control was activated;\n", - "* The power for phases `'b'` and `'c'` is 0 VA as expected." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:08.852165562Z", - "start_time": "2023-06-04T15:26:08.842546486Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([-2757.8035271+0.j, 0. +0.j, 0. +0.j]) ", - "text/html": "
Magnitude
[-2757.8035271+0.j     0.       +0.j     0.       +0.j]
Unitsvolt_ampere
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{volt\\_ampere}$" - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "flexible_load.res_flexible_powers" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### $PQ(U)$ control\n", - "\n", - "Now, let's remove the flexible load that we have added in the previous section and add a new\n", - "flexible load implementing a $PQ(U)$ control instead.\n", - "\n", - "As before, we first create a `FlexibleParameter` but this time, we will use the\n", - "`pq_u_production` class method. It requires several arguments:\n", - "\n", - "* `up_up` and `up_max`: the voltages defining the interval of the `P(U)` control activation.\n", - " Below `up_up`, no control is applied and above `u_max`, the production is totally shut down.\n", - "* `uq_min`, `uq_down`, `uq_up` and `uq_max` which are the voltages defining the `Q(U)` control\n", - " activation.\n", - " * Below `uq_min`, the power plant produces the maximum possible reactive power.\n", - " * Between `uq_down` and `uq_up`, there is no `Q(U)` control.\n", - " * Above `uq_max`, the power plant consumes the maximum possible reactive power.\n", - "\n", - "In the example below, as the new load is a production load, only the `up_up`, `up_max`, `uq_up`\n", - "and `uq_max` are of interests. The $Q(U)$ control starts its action at 235 V and is fully\n", - "exhausted at 240 V. After that, the $P(U)$ is activated and is exhausted at 250 V where the\n", - "production is totally shut down." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:11.748616750Z", - "start_time": "2023-06-04T15:26:11.701985284Z" - } - }, - "outputs": [], - "source": [ - "# Let's try with pq(u) control, by injecting reactive power before reducing active power\n", - "en.loads[\"load3\"].disconnect()\n", - "fp = FlexibleParameter.pq_u_production(\n", - " up_up=240, up_max=250, uq_min=200, uq_down=210, uq_up=235, uq_max=240, s_max=4000 # V and VA\n", - ")\n", - "flexible_load = PowerLoad(\n", - " id=\"load3\",\n", - " bus=load_bus3,\n", - " phases=\"abcn\",\n", - " powers=[si, 0, 0],\n", - " flexible_params=[fp, FlexibleParameter.constant(), FlexibleParameter.constant()],\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The load flow can be solved again." - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:14.445934387Z", - "start_time": "2023-06-04T15:26:13.789043220Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([239.5133208 , 230.2108052 , 237.59184615]) ", - "text/html": "
Magnitude
[239.51332079629023 230.21080520340482 237.59184615484196]
Unitsvolt
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{volt}$" - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.solve_load_flow(auth=auth)\n", - "abs(load_bus3.res_voltages)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "One can note that this time, the phase `'a'` consumes reactive power to limit the voltage rise in\n", - "the network. Moreover, the magnitude of the power on phase `'a'` is approximately $4 kVA$ which is\n", - "the maximum allowed apparent power for `load3`. In order to maintain this maximum, a\n", - "[Euclidean projection][api-projection] has been used.\n", - "\n", - "[api-projection]: https://roseautechnologies.github.io/Roseau_Load_Flow/autoapi/roseau/load_flow/index.html#roseau.load_flow.Projection" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:16.350896465Z", - "start_time": "2023-06-04T15:26:16.326483018Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([-2566.23768012+3068.29336425j, 0. +0.j ,\n 0. +0.j ]) ", - "text/html": "
Magnitude
[-2566.23768012+3068.29336425j     0.           +0.j
0. +0.j ]
Unitsvolt_ampere
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{volt\\_ampere}$" - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "flexible_load.res_flexible_powers" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:17.955855403Z", - "start_time": "2023-06-04T15:26:17.936828707Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([4000., 0., 0.]) ", - "text/html": "
Magnitude
[4000.0 0.0 0.0]
Unitsvolt_ampere
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{volt\\_ampere}$" - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "abs(flexible_load.res_flexible_powers)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Adding elements to the network\n", - "\n", - "In the previous section we saw how to replace a simple element in the network such as a load.\n", - "This is done by simply calling the load's `disconnect` method then creating a new load on the\n", - "same bus and with the same ID.\n", - "\n", - "It is possible also to add new elements like buses, lines, etc to an existing network by simply\n", - "creating the elements and linking them to an element already in the network. For example, the\n", - "code below adds a new line and a single-phase constant power load connected to a new bus." - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:20.196349137Z", - "start_time": "2023-06-04T15:26:20.106259569Z" - } - }, - "outputs": [], - "source": [ - "# Connect a new bus to the network\n", - "new_bus = Bus(id=\"new_bus\", phases=\"abcn\")\n", - "new_load = PowerLoad(id=\"new_load\", bus=new_bus, phases=\"an\", powers=[6e3])\n", - "lp_S_AL_240 = LineParameters.from_name_lv(\"S_AL_240\")\n", - "new_line = Line(\n", - " id=\"new_line\",\n", - " bus1=bus2,\n", - " bus2=new_bus,\n", - " phases=\"abcn\",\n", - " ground=ground,\n", - " parameters=lp_S_AL_240,\n", - " length=0.5,\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you look at the network elements, you can see the new bus, line and load are added." - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:21.934877733Z", - "start_time": "2023-06-04T15:26:21.895852299Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "Bus(id='new_bus', phases='abcn')" - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.buses[\"new_bus\"]" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:23.228212959Z", - "start_time": "2023-06-04T15:26:23.210196445Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "PowerLoad(id='new_load', phases='an', bus='new_bus')" - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.loads[\"new_load\"]" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:24.282002290Z", - "start_time": "2023-06-04T15:26:24.230930205Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "Line(id='new_line', phases1='abcn', phases2='abcn', bus1='bus2', bus2='new_bus')" - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.branches[\"new_line\"]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And now if you run the load flow, you can see that the new elements are taken into account." - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:26:26.441462980Z", - "start_time": "2023-06-04T15:26:25.887843676Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([227.43645429]) ", - "text/html": "
Magnitude
[227.43645429483067]
Unitsvolt
", - "text/latex": "$\\begin{pmatrix}\\end{pmatrix}\\ \\mathrm{volt}$" - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.solve_load_flow(auth=auth)\n", - "abs(new_load.res_voltages)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.9" - }, - "vscode": { - "interpreter": { - "hash": "99cbd331128cf218793744ba240286bb402c67078e32af81afdf76a86262575b" - } - } - }, - "nbformat": 4, - "nbformat_minor": 1 -} diff --git a/doc/notebooks/Getting_Started.ipynb b/doc/notebooks/Getting_Started.ipynb deleted file mode 100644 index e7a61c50..00000000 --- a/doc/notebooks/Getting_Started.ipynb +++ /dev/null @@ -1,864 +0,0 @@ -{ - "cells": [ - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Getting started\n", - "\n", - "*Make sure you have followed the* [installation instructions][installation].\n", - "\n", - "In this tutorial you will learn how to:\n", - "\n", - "1. Create a simple electrical network with one source and one load;\n", - "2. Run a load flow simulation;\n", - "3. Get the results of the load flow;\n", - "4. Update the elements of the network;\n", - "5. Save the network and the results to the disk for later analysis;\n", - "6. Load the saved network and the results from the disk.\n", - "\n", - "Let's start by importing everything we will need.\n", - "\n", - "[installation]: https://roseautechnologies.github.io/Roseau_Load_Flow/installation" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:20:06.257971401Z", - "start_time": "2023-06-04T15:20:04.269823916Z" - } - }, - "outputs": [], - "source": [ - "import getpass\n", - "\n", - "import numpy as np\n", - "\n", - "from roseau.load_flow import *" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Creating a network\n", - "\n", - "An electrical network can be built by assembling basic elements provided in\n", - "[roseau.load_flow.models][api-models]. The following is a summary of the available elements:\n", - "\n", - "* Buses:\n", - " * `Bus`: An electrical bus.\n", - "\n", - "* Branches:\n", - " * `Line`: A line connects two buses. The parameters of the line are defined by a `LineParameters` object.\n", - " * `LineParameters`: This object defines the parameters of a line (model, impedance, etc.)\n", - " * `Switch`: A basic switch element.\n", - " * `Transformer`: A generic transformer. The parameters of the transformer are defined by a `TransformerParameters` object.\n", - " * `TransformerParameters`: This object defines the parameters of a transformer (model, windings, etc.)\n", - "* Loads:\n", - " The ZIP load model is available via the following classes:\n", - " * `ImpedanceLoad`: A constant impedance (Z) load: $S = |V|^2 \\times \\overline{Z}$, $|S|$ is proportional to $|V|^2$.\n", - " * `CurrentLoad` A constant impedance (I) load: $S = V \\times \\overline{I}$, $|S|$ is proportional to $|V|^1$.\n", - " * `PowerLoad`: A constant power (P) load: $S = \\mathrm{constant}$, $|S|$ is proportional to $|V|^0$.\n", - "\n", - " A power load can be made flexible (controllable) by using the following class:\n", - " * `FlexibleParameter`: This object defines the parameters of the flexible load's control (Maximum power, projection, type, etc.)\n", - "* Sources:\n", - " * `VoltageSource`: A voltage source has a constant voltage and an infinite power source.\n", - "* Others:\n", - " * `Ground`: A ground acts as a perfect conductor. If two elements are connected to the ground, the potentials at the connection points are always equal.\n", - " * `PotentialRef`: A potential reference sets the reference of potentials in the network. It can be connected to buses or grounds.\n", - "\n", - "For a more detailed description of the elements, please refer to the [API reference][api-models].\n", - "\n", - "Let's use some of these elements to build the following network with a voltage source, a simple\n", - "line and a constant power load. This network is a low voltage network (three-phase + neutral wire).\n", - "\n", - "![Network](../_static/Getting_Started_Tutorial.svg)\n", - "\n", - "[api-models]: https://roseautechnologies.github.io/Roseau_Load_Flow/autoapi/roseau/load_flow/models\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:20:26.270991387Z", - "start_time": "2023-06-04T15:20:26.258903978Z" - } - }, - "outputs": [], - "source": [ - "# Create two buses\n", - "source_bus = Bus(id=\"sb\", phases=\"abcn\")\n", - "load_bus = Bus(id=\"lb\", phases=\"abcn\")\n", - "\n", - "# Define the reference of potentials to be the neutral of the source bus\n", - "ground = Ground(id=\"gnd\")\n", - "pref = PotentialRef(id=\"pref\", element=ground) # Fix the potential of the ground at 0 V\n", - "ground.connect(source_bus, phase=\"n\")\n", - "\n", - "# Create a LV source at the first bus\n", - "un = 400 / np.sqrt(3) # Volts (phase-to-neutral because the source is connected to the neutral)\n", - "source_voltages = [un, un * np.exp(-2j * np.pi / 3), un * np.exp(2j * np.pi / 3)]\n", - "vs = VoltageSource(id=\"vs\", bus=source_bus, phases=\"abcn\", voltages=source_voltages)\n", - "\n", - "# Add a load at the second bus\n", - "load = PowerLoad(id=\"load\", bus=load_bus, phases=\"abcn\", powers=[10e3 + 0j, 10e3, 10e3]) # VA\n", - "\n", - "# Add a LV line between the source bus and the load bus\n", - "lp = LineParameters(\"lp\", z_line=(0.1 + 0.0j) * np.eye(4, dtype=complex)) # R = 0.1 Ohm/km, X = 0\n", - "line = Line(id=\"line\", bus1=source_bus, bus2=load_bus, phases=\"abcn\", parameters=lp, length=2.0)" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "At this point, all the basic elements of the network have been defined and connected. Now,\n", - "everything can be encapsulated in an `ElectricalNetwork` object, but first, some important\n", - "notes on the `Ground` and `PotentialRef` elements:\n", - "\n", - "
\n", - "\n", - "**Important:**\n", - "\n", - "The `Ground` element does not have a fixed potential as one would expect from a real ground\n", - "connection. The potential reference (0 Volts) is defined by the `PotentialRef` element that\n", - "itself can be connected to any bus or ground in the network. This is to give more flexibility\n", - "for the user to define the potential reference of their network.\n", - "\n", - "A `PotentialRef` defines the potential reference for the network. It is a mandatory reference\n", - "for the load flow resolution to be well defined. A network MUST have one and only one potential\n", - "reference per a galvanically isolated section.\n", - "
\n", - "\n", - "
\n", - "\n", - "**Note:**\n", - "\n", - "The `Ground` element is not required in this simple network as it is connected to a single\n", - "element. No current will flow through the ground and no two points in the network will be forced\n", - "to have the same potential. In this scenario you are allowed to define the potential reference\n", - "directly on the bus element: `pref = PotentialRef(id=\"pref\", element=source_bus, phase=\"n\")` and\n", - "not bother with creating the ground element at all.\n", - "
\n", - "\n", - "An `ElectricalNetwork` object can now be created using the `from_element` constructor. The source\n", - "bus `source_bus` is given to this constructor. All the elements connected to this bus are\n", - "automatically included into the network." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:20:54.005100948Z", - "start_time": "2023-06-04T15:20:53.949886888Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "" - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Create the electrical network\n", - "en = ElectricalNetwork.from_element(source_bus)\n", - "en" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Solving a load flow\n", - "\n", - "An authentication is required. Please contact us at contact@roseautechnologies.com to get the necessary credentials.\n", - "\n", - "
\n", - "\n", - "**Warning:**\n", - "\n", - "`input` should never be used to read passwords and secret credentials as the terminal might save the password in\n", - "plain text in its history. Use `getpass.getpass` that provides the necessary protections instead.\n", - "
\n" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:21:06.223037298Z", - "start_time": "2023-06-04T15:20:58.566756395Z" - } - }, - "outputs": [], - "source": [ - "# Authentication\n", - "auth = (input(\"Please enter your username:\"), getpass.getpass(\"Please enter your password:\"))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Then, the load flow can be solved by requesting our server (requires Internet access).\n", - "\n", - "
\n", - "\n", - "**Note:**\n", - "\n", - "The server takes some time to warm up the first time it is requested. Subsequent requests will\n", - "execute faster.\n", - "
\n" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:21:12.833165541Z", - "start_time": "2023-06-04T15:21:10.556895359Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "2" - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Solve the load flow\n", - "en.solve_load_flow(auth=auth)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It returns the number of iterations performed by the *Newton-Raphson* solver. Here, 2. To have some additional results\n", - "regarding the convergence, the field `res_info` is available in the network." - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:21:29.344376674Z", - "start_time": "2023-06-04T15:21:29.315606636Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "{'solver': 'newton_goldstein',\n 'solver_params': {'m1': 0.1, 'm2': 0.9},\n 'tolerance': 1e-06,\n 'max_iterations': 20,\n 'warm_start': True,\n 'status': 'success',\n 'iterations': 2,\n 'residual': 1.8595619621919468e-07}" - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_info" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The available values are:\n", - "\n", - "* `solver`: it can be `\"newton\"` for the *Newton* solver or `\"newton_goldstein\"` for the *Newton* solver using the\n", - "*Goldstein and Price* linear search;\n", - "* `solver_params`: the parameters used by the solver;\n", - "* `tolerance`: the requested tolerance for the solver. $10^{-6}$ is the default;\n", - "* `max_iterations`: the requested maximum number of iterations for the solver. 20 is the default;\n", - "* `warm_start`: if `True`, the results (potentials of each bus) from the last valid run are used\n", - " as a starting point for the solver. For large networks, using a warm start can lead to performance gains as the\n", - " solver will converge faster. `True` is the default;\n", - "* `status`: the convergence of the load flow. Two possibilities: *success* or *failure*;\n", - "* `iterations`: the number of iterations made by the solver.\n", - "* `residual`: the precision which was reached by the solver (lower than the tolerance if successful solve)." - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n", - "## Getting the results\n", - "\n", - "The results are now available for every element of the network. Results can be accessed through\n", - "special properties prefixed with `res_` on each element object. For instance, the potentials\n", - "of the `load_bus` can be accessed using the property `load_bus.res_potentials`. It contains 4\n", - "values which are the potentials of its phases `a`, `b`, `c` and `n` (neutral). The potentials\n", - "are returned as complex numbers. Calling `abs(load_bus.res_potentials)` gives you the magnitude\n", - "of the load's potentials (in Volts) and `np.angle(load_bus.res_potentials)` gives their angle\n", - "(phase shift) in radians.\n", - "\n", - "
\n", - "\n", - "**Note:**\n", - "\n", - "Roseau Load Flow uses the [Pint](https://pint.readthedocs.io/en/stable/) `Quantity` objects to\n", - "present the data in unit-agnostic way for the user. All input data (load powers, source voltages,\n", - "etc.) are expected to be either given in SI units or using the pint Quantity interface for non-SI\n", - "units (example below). The `length` parameter of the `Line` class that is an exception where the\n", - "default unit is Kilometers.\n", - "\n", - "Example, create a load with powers expressed in kVA:\n", - "```python\n", - "from roseau.load_flow import Q_\n", - "\n", - "load = PowerLoad(id=\"load\", bus=load_bus, phases=\"abcn\", powers=Q_([10, 10, 10], \"kVA\"))\n", - "```\n", - "
\n", - "\n", - "The results returned by the `res_` properties are also `Quantity` objects.\n", - "\n", - "### Available results\n", - "\n", - "The available results depend on the type of element. The following table summarizes the available\n", - "results for each element type:\n", - "\n", - "| Element type | Available results |\n", - "|--------------|-------------------|\n", - "| `Bus` | `res_potentials`, `res_voltages` |\n", - "| `Line` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages`, `res_series_power_losses`, `res_shunt_power_losses`, `res_power_losses` |\n", - "| `Transformer`, `Switch` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages` |\n", - "| `ImpedanceLoad`, `CurrentLoad`, `PowerLoad` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages`, `res_flexible_powers`[^**] |\n", - "| `VoltageSource` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages` |\n", - "| `Ground` | `res_potential` |\n", - "| `PotentialRef` | `res_current` *(Always zero for a successful load flow)* |\n", - "\n", - "[^**]: `res_flexible_powers` is only available for flexible loads (`PowerLoad`s with\n", - "`flexible_params`). You'll see an example on the usage of flexible loads in the *Advanced Usages*\n", - "section.\n", - "\n", - "\n", - "### Getting results per object\n", - "\n", - "In order to get the potentials or voltages of a bus, use the `res_potentials` or `res_voltages`\n", - "properties of buses as follows:" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:20.683888618Z", - "start_time": "2023-06-04T15:22:20.626071159Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([ 2.21928183e+02-2.23031066e-21j, -1.10964092e+02-1.92195445e+02j,\n -1.10964092e+02+1.92195445e+02j, 2.35402704e-15-5.99225499e-20j]) ", - "text/html": "
Magnitude
[ 2.21928183e+02-2.23031066e-21j -1.10964092e+02-1.92195445e+02j
-1.10964092e+02+1.92195445e+02j 2.35402704e-15-5.99225499e-20j]
Unitsvolt
", - "text/latex": "$\\begin{pmatrix} & & & \\end{pmatrix}\\ \\mathrm{volt}$" - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "load_bus.res_potentials" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "As the results are *pint quantities*, they can be converted to different units. Here, the magnitudes\n", - "of the voltages of the same bus are are displayed in kilovolts." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:28.802015913Z", - "start_time": "2023-06-04T15:22:28.757212974Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([0.22192818, 0.22192818, 0.22192818]) ", - "text/html": "
Magnitude
[0.221928183361166 0.22192818336116596 0.22192818336116596]
Unitskilovolt
", - "text/latex": "$\\begin{pmatrix} & & \\end{pmatrix}\\ \\mathrm{kilovolt}$" - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "abs(load_bus.res_voltages).to(\"kV\")" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "
\n", - "\n", - "**Important:**\n", - "\n", - "Everywhere in `roseau_load_flow`, the `voltages` of an element depend on the element's `phases`.\n", - "Voltages of elements connected in a *Star (wye)* configuration (elements that have a neutral connection indicated by the presence of the `'n'` char in their `phases` attribute) are the\n", - "**phase-to-neutral** voltages. Voltages of elements connected in a *Delta* configuration (elements\n", - "that do not have a neutral connection indicated by the absence of the `'n'` char from their\n", - "`phases` attribute) are the **phase-to-phase** voltages. This is true for *input* voltages, such\n", - "as the `voltages` parameter to a `VoltageSource`, as well as for the results such as the `res_voltages` property of a `Bus`.\n", - "\n", - "
\n", - "\n", - "The currents of the line are available using the `res_currents` property of the `line` object.\n", - "It contains two arrays:\n", - "\n", - "* the first is the current flowing from the first bus of the line to the second bus of the line.\n", - " It contains 4 values: one per phase and the neutral current.\n", - "* the second is the current flowing from the second bus of the line to the first bus of the line.\n", - "\n", - "Here, the sum of these currents is 0 as we have chosen a simple line model, i.e, a line with only\n", - "series impedance elements without shunt components. If shunt components were modelled, the sum\n", - "would have been non-zero." - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:33.594442628Z", - "start_time": "2023-06-04T15:22:33.556836534Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "(array([ 4.50596216e+01+1.11515533e-20j, -2.25298108e+01-3.90227770e+01j,\n -2.25298108e+01+3.90227770e+01j, -1.17701352e-14+2.99612750e-19j]) ,\n array([-4.50596216e+01-1.11515533e-20j, 2.25298108e+01+3.90227770e+01j,\n 2.25298108e+01-3.90227770e+01j, 1.17701352e-14-2.99612750e-19j]) )" - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "line.res_currents" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Dataframe network results\n", - "\n", - "The results can also be retrieved for the entire network using `res_` properties of the\n", - "`ElectricalNetwork` instance as [pandas DataFrames](https://pandas.pydata.org/docs/).\n", - "\n", - "Available results for the network are:\n", - "\n", - "* `res_buses`: Buses potentials indexed by *(bus id, phase)*\n", - "* `res_buses_voltages`: Buses voltages indexed by *(bus id, voltage phase)*\n", - "* `res_branches`: Branches currents, powers, and potentials indexed by *(branch id, phase)*\n", - "* `res_lines_losses`: Lines series, shunt, and total losses indexed by *(line id, phase)*\n", - "* `res_loads`: Loads currents, powers, and potentials indexed by *(load id, phase)*\n", - "* `res_loads_voltages`: Loads voltages indexed by *(load id, voltage phase)*\n", - "* `res_loads_flexible_powers`: Loads flexible powers (only for flexible loads) indexed by\n", - " *(load id, phase)*\n", - "* `res_sources`: Sources currents, powers, and potentials indexed by *(source id, phase)*\n", - "* `res_grounds`: Grounds potentials indexed by *ground id*\n", - "* `res_potential_refs`: Potential references currents indexed by *potential ref id* (always zero\n", - " for a successful load flow)\n", - "\n", - "All the results are complex numbers. You can always access the magnitude of the results using\n", - "the `abs` function and the angle in radians using the `np.angle` function. For instance,\n", - "`abs(network.res_loads)` gives you the magnitude of the loads' results in SI units.\n", - "\n", - "Below are the results of the load flow for `en`:" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:37.590905667Z", - "start_time": "2023-06-04T15:22:37.532431012Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " potential\nbus_id phase \nsb a 2.309401e+02+1.540744e-34j\n b -1.154701e+02-2.000000e+02j\n c -1.154701e+02+2.000000e+02j\n n 0.000000e+00+0.000000e+00j\nlb a 2.219282e+02-2.230311e-21j\n b -1.109641e+02-1.921954e+02j\n c -1.109641e+02+1.921954e+02j\n n 2.354027e-15-5.992255e-20j", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
potential
bus_idphase
sba2.309401e+02+1.540744e-34j
b-1.154701e+02-2.000000e+02j
c-1.154701e+02+2.000000e+02j
n0.000000e+00+0.000000e+00j
lba2.219282e+02-2.230311e-21j
b-1.109641e+02-1.921954e+02j
c-1.109641e+02+1.921954e+02j
n2.354027e-15-5.992255e-20j
\n
" - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_buses" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:40.355808214Z", - "start_time": "2023-06-04T15:22:40.344651075Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " voltage\nbus_id phase \nsb an 230.9401008+0.0000000j\n bn -115.470054-200.000000j\n cn -115.470054+200.000000j\nlb an 221.9281803+0.0000000j\n bn -110.964092-192.195445j\n cn -110.964092+192.195445j", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
voltage
bus_idphase
sban230.9401008+0.0000000j
bn-115.470054-200.000000j
cn-115.470054+200.000000j
lban221.9281803+0.0000000j
bn-110.964092-192.195445j
cn-110.964092+192.195445j
\n
" - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_buses_voltages" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:42.485553108Z", - "start_time": "2023-06-04T15:22:42.479966858Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " current1 current2 \\\nbranch_id phase \nline a 4.505962e+01+1.115155e-20j -4.505962e+01-1.115155e-20j \n b -2.252981e+01-3.902278e+01j 2.252981e+01+3.902278e+01j \n c -2.252981e+01+3.902278e+01j 2.252981e+01-3.902278e+01j \n n -1.177014e-14+2.996127e-19j 1.177014e-14-2.996127e-19j \n\n power1 power2 \\\nbranch_id phase \nline a 10406.073858-0.000000j -1.000000e+04+2.575341e-18j \n b 10406.073858+0.000000j -1.000000e+04-4.547474e-12j \n c 10406.073858-0.000000j -1.000000e+04+4.547474e-12j \n n 0.00000000+0.00000000j 2.770722e-29+8.552847e-50j \n\n potential1 potential2 \nbranch_id phase \nline a 230.9401008+0.0000000j 2.219282e+02-2.230311e-21j \n b -115.470054-200.000000j -1.109641e+02-1.921954e+02j \n c -115.470054+200.000000j -1.109641e+02+1.921954e+02j \n n 0.00000000+0.00000000j 2.354027e-15-5.992255e-20j ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
current1current2power1power2potential1potential2
branch_idphase
linea4.505962e+01+1.115155e-20j-4.505962e+01-1.115155e-20j10406.073858-0.000000j-1.000000e+04+2.575341e-18j230.9401008+0.0000000j2.219282e+02-2.230311e-21j
b-2.252981e+01-3.902278e+01j2.252981e+01+3.902278e+01j10406.073858+0.000000j-1.000000e+04-4.547474e-12j-115.470054-200.000000j-1.109641e+02-1.921954e+02j
c-2.252981e+01+3.902278e+01j2.252981e+01-3.902278e+01j10406.073858-0.000000j-1.000000e+04+4.547474e-12j-115.470054+200.000000j-1.109641e+02+1.921954e+02j
n-1.177014e-14+2.996127e-19j1.177014e-14-2.996127e-19j0.00000000+0.00000000j2.770722e-29+8.552847e-50j0.00000000+0.00000000j2.354027e-15-5.992255e-20j
\n
" - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_branches" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:44.238680831Z", - "start_time": "2023-06-04T15:22:44.216829208Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " series_losses shunt_losses \\\nline_id phase \nline a 4.060739e+02+0.000000e+00j 0.0+0.0j \n b 4.060739e+02+0.000000e+00j 0.0+0.0j \n c 4.060739e+02+0.000000e+00j 0.0+0.0j \n n 2.770722e-29+8.552847e-50j 0.0+0.0j \n\n total_losses \nline_id phase \nline a 4.060739e+02+0.000000e+00j \n b 4.060739e+02+0.000000e+00j \n c 4.060739e+02+0.000000e+00j \n n 2.770722e-29+8.552847e-50j ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
series_lossesshunt_lossestotal_losses
line_idphase
linea4.060739e+02+0.000000e+00j0.0+0.0j4.060739e+02+0.000000e+00j
b4.060739e+02+0.000000e+00j0.0+0.0j4.060739e+02+0.000000e+00j
c4.060739e+02+0.000000e+00j0.0+0.0j4.060739e+02+0.000000e+00j
n2.770722e-29+8.552847e-50j0.0+0.0j2.770722e-29+8.552847e-50j
\n
" - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_lines_losses" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:45.955996362Z", - "start_time": "2023-06-04T15:22:45.918937164Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " current power \\\nload_id phase \nload a 4.505962e+01+1.171366e-20j 1.000000e+04-2.700087e-18j \n b -2.252981e+01-3.902278e+01j 1.000000e+04-9.094947e-13j \n c -2.252981e+01+3.902278e+01j 1.000000e+04+9.094947e-13j \n n -2.131628e-14+0.000000e+00j -5.017910e-29+1.277326e-33j \n\n potential \nload_id phase \nload a 2.219282e+02-2.230311e-21j \n b -1.109641e+02-1.921954e+02j \n c -1.109641e+02+1.921954e+02j \n n 2.354027e-15-5.992255e-20j ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
currentpowerpotential
load_idphase
loada4.505962e+01+1.171366e-20j1.000000e+04-2.700087e-18j2.219282e+02-2.230311e-21j
b-2.252981e+01-3.902278e+01j1.000000e+04-9.094947e-13j-1.109641e+02-1.921954e+02j
c-2.252981e+01+3.902278e+01j1.000000e+04+9.094947e-13j-1.109641e+02+1.921954e+02j
n-2.131628e-14+0.000000e+00j-5.017910e-29+1.277326e-33j2.354027e-15-5.992255e-20j
\n
" - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_loads" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:47.649900821Z", - "start_time": "2023-06-04T15:22:47.636316468Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " voltage\nload_id phase \nload an 221.9281803+0.0000000j\n bn -110.964092-192.195445j\n cn -110.964092+192.195445j", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
voltage
load_idphase
loadan221.9281803+0.0000000j
bn-110.964092-192.195445j
cn-110.964092+192.195445j
\n
" - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_loads_voltages" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:49.287285855Z", - "start_time": "2023-06-04T15:22:49.259569111Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " current power \\\nsource_id phase \nvs a -4.505962e+01+0.000000e+00j -10406.073858-0.000000j \n b 2.252981e+01+3.902278e+01j -10406.073858+0.000000j \n c 2.252981e+01-3.902278e+01j -10406.073858+0.000000j \n n 1.177357e-14-3.097125e-18j 0.00000000+0.00000000j \n\n potential \nsource_id phase \nvs a 230.9401008+0.0000000j \n b -115.470054-200.000000j \n c -115.470054+200.000000j \n n 0.00000000+0.00000000j ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
currentpowerpotential
source_idphase
vsa-4.505962e+01+0.000000e+00j-10406.073858-0.000000j230.9401008+0.0000000j
b2.252981e+01+3.902278e+01j-10406.073858+0.000000j-115.470054-200.000000j
c2.252981e+01-3.902278e+01j-10406.073858+0.000000j-115.470054+200.000000j
n1.177357e-14-3.097125e-18j0.00000000+0.00000000j0.00000000+0.00000000j
\n
" - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_sources" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:51.143839304Z", - "start_time": "2023-06-04T15:22:51.124189697Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " potential\nground_id \ngnd 0.0+0.0j", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
potential
ground_id
gnd0.0+0.0j
\n
" - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_grounds" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:52.847139819Z", - "start_time": "2023-06-04T15:22:52.830495361Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " current\npotential_ref_id \npref 3.433019e-18-2.797513e-18j", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
current
potential_ref_id
pref3.433019e-18-2.797513e-18j
\n
" - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_potential_refs" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using the `transform` method of data frames, the results can easily be converted from complex values\n", - "to magnitude and angle values." - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:54.977788264Z", - "start_time": "2023-06-04T15:22:54.952159431Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " voltage \n absolute angle\nbus_id phase \nsb an 230.940108 6.671617e-37\n bn 230.940108 -2.094395e+00\n cn 230.940108 2.094395e+00\nlb an 221.928183 2.599590e-22\n bn 221.928183 -2.094395e+00\n cn 221.928183 2.094395e+00", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
voltage
absoluteangle
bus_idphase
sban230.9401086.671617e-37
bn230.940108-2.094395e+00
cn230.9401082.094395e+00
lban221.9281832.599590e-22
bn221.928183-2.094395e+00
cn221.9281832.094395e+00
\n
" - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "en.res_buses_voltages.transform([np.abs, np.angle])" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Updating elements of the network\n", - "\n", - "Network elements can be updated. Here, the load's power values are changed to create an\n", - "unbalanced situation." - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": { - "ExecuteTime": { - "end_time": "2023-06-04T15:22:59.724819640Z", - "start_time": "2023-06-04T15:22:57.874498137Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "array([ 216.02252269 +0.j, -115.47005384-200.j, -115.47005384+200.j,\n 14.91758499 +0.j]) ", - "text/html": "
Magnitude
[ 216.02252269  +0.j -115.47005384-200.j -115.47005384+200.j
14.91758499 +0.j]
Unitsvolt
", - "text/latex": "$\\begin{pmatrix} & & & \\end{pmatrix}\\ \\mathrm{volt}$" - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Change the load to an unbalanced one then rerun the load flow\n", - "load.powers = Q_([15, 0, 0], \"kVA\")\n", - "en.solve_load_flow(auth=auth)\n", - "load_bus.res_potentials" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "One can notice that the neutral's potential of the bus is no longer close to 0 V.\n", - "\n", - "## Saving the network to a file\n", - "\n", - "The network can be saved to a JSON file using the `en.to_json` method. Note that this method\n", - "does not save the results of the load flow. It only saves the network elements.\n", - "\n", - "To save the results of the load flow, use the `en.results_to_json` method.\n", - "\n", - "```python\n", - "en.to_json(\"my_network.json\")\n", - "en.results_to_json(\"my_network_results.json\")\n", - "```\n", - "\n", - "
\n", - "\n", - "**Warning:**\n", - "\n", - "The `to_json` and `results_to_json` methods will overwrite the file if it already exists.\n", - "
\n", - "\n", - "## Loading a network from a file\n", - "\n", - "A saved network can be loaded using the `ElectricalNetwork.from_json` method. The results of\n", - "the load flow can then be loaded using the `ElectricalNetwork.results_from_json` method.\n", - "\n", - "```python\n", - "en = ElectricalNetwork.from_json(\"my_network.json\")\n", - "en.results_from_json(\"my_network_results.json\")\n", - "```" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.9" - }, - "vscode": { - "interpreter": { - "hash": "99cbd331128cf218793744ba240286bb402c67078e32af81afdf76a86262575b" - } - } - }, - "nbformat": 4, - "nbformat_minor": 1 -} diff --git a/doc/notebooks/data b/doc/notebooks/data deleted file mode 120000 index b8fb52e7..00000000 --- a/doc/notebooks/data +++ /dev/null @@ -1 +0,0 @@ -../../data/ \ No newline at end of file diff --git a/doc/usage/Catalogues.md b/doc/usage/Catalogues.md new file mode 100644 index 00000000..976ee42f --- /dev/null +++ b/doc/usage/Catalogues.md @@ -0,0 +1,415 @@ +# Catalogues + +In _Roseau Load Flow_, some classes are provided with a catalogue. This page describes how to use them. + +(catalogues-networks)= + +## Networks + +_Roseau Load Flow_ is provided with a small catalogue of MV and LV networks. These networks are available through +the class `ElectricalNetwork`. + +Here is an interactive plot to explore them. See the [Plotting page](./Plotting.md) to learn how to get such +interactive map. + + + +### Source of data + +All these networks are built from open data available in France. The entire France can be provided on demand. Please +email us at [contact@roseautechnologies.com](mailto:contact@roseautechnologies.com). + +### Printing the catalogue + +This catalogue can be printed to the terminal: + +```pycon +>>> from roseau.load_flow import ElectricalNetwork +>>> ElectricalNetwork.print_catalogue() +``` + +| Name | Nb buses | Nb branches | Nb loads | Nb sources | Nb grounds | Nb potential refs | Available load points | +| :-------------------------------------------------------------------------------- | -------: | ----------: | -------: | ---------: | ---------: | ----------------: | --------------------: | +| LVFeeder00939 | 8 | 7 | 12 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder02639 | 7 | 6 | 10 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder04790 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder06713 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder06926 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder06975 | 6 | 5 | 8 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder18498 | 18 | 17 | 32 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder18769 | 7 | 6 | 10 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder19558 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder20256 | 9 | 8 | 14 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder23832 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder24400 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder27429 | 11 | 10 | 18 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder27681 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder30216 | 9 | 8 | 14 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder31441 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder36284 | 5 | 4 | 6 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder36360 | 9 | 8 | 14 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder37263 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder38211 | 6 | 5 | 8 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder004 | 17 | 16 | 10 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder011 | 50 | 49 | 68 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder015 | 30 | 29 | 20 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder032 | 53 | 52 | 40 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder041 | 88 | 87 | 62 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder063 | 39 | 38 | 38 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder078 | 69 | 68 | 46 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder115 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder128 | 49 | 48 | 32 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder151 | 59 | 58 | 44 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder159 | 8 | 7 | 0 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder176 | 33 | 32 | 20 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder210 | 128 | 127 | 82 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder217 | 44 | 43 | 44 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder232 | 66 | 65 | 38 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder251 | 125 | 124 | 106 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder290 | 12 | 11 | 16 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder312 | 11 | 10 | 8 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder320 | 20 | 19 | 12 | 1 | 1 | 1 | 'Summer', 'Winter' | +| MVFeeder339 | 33 | 32 | 28 | 1 | 1 | 1 | 'Summer', 'Winter' | + +The table is printed using the [Rich Python library](https://rich.readthedocs.io/en/stable/index.html). Links to the +map of each network have been added in the documentation. + +There are MV networks whose names start with "MVFeeder" and LV networks whose names with "LVFeeder". For each +network, there are two available load points: + +- "Winter": it contains power loads without production. +- "Summer": it contains power loads with production and 20% of the "Winter" load. + +The arguments of the method `print_catalogue` can be used to filter the output. If you want to print the LV networks +only, you can call: + +```pycon +>>> ElectricalNetwork.print_catalogue(name="LVFeeder") +``` + +| Name | Nb buses | Nb branches | Nb loads | Nb sources | Nb grounds | Nb potential refs | Available load points | +| :------------ | -------: | ----------: | -------: | ---------: | ---------: | ----------------: | --------------------: | +| LVFeeder00939 | 8 | 7 | 12 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder02639 | 7 | 6 | 10 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder04790 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder06713 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder06926 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder06975 | 6 | 5 | 8 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder18498 | 18 | 17 | 32 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder18769 | 7 | 6 | 10 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder19558 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder20256 | 9 | 8 | 14 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder23832 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder24400 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder27429 | 11 | 10 | 18 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder27681 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder30216 | 9 | 8 | 14 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder31441 | 4 | 3 | 4 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder36284 | 5 | 4 | 6 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder36360 | 9 | 8 | 14 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder37263 | 3 | 2 | 2 | 1 | 1 | 1 | 'Summer', 'Winter' | +| LVFeeder38211 | 6 | 5 | 8 | 1 | 1 | 1 | 'Summer', 'Winter' | + +A regular expression can also be used: + +```pycon +>>> ElectricalNetwork.print_catalogue(name=r"LVFeeder38[0-9]+") +``` + +| Name | Nb buses | Nb branches | Nb loads | Nb sources | Nb grounds | Nb potential refs | Available load points | +| :------------ | -------: | ----------: | -------: | ---------: | ---------: | ----------------: | --------------------: | +| LVFeeder38211 | 6 | 5 | 8 | 1 | 1 | 1 | 'Summer', 'Winter' | + +### Getting an instance + +To build a network from the catalogue, the class method `from_catalogue` can be used. The name of the network and +the name of the load point must be provided: + +```pycon +>>> en = ElectricalNetwork.from_catalogue(name="LVFeeder38211", load_point_name="Summer") + +``` + +In case of mistakes, an error is raised: + +```pycon +>>> ElectricalNetwork.from_catalogue(name="LVFeeder38211", load_point_name="Unknown") +RoseauLoadFlowException: No load point matching the name 'Unknown' has been found for the network 'LVFeeder38211'. +Please look at the catalogue using the `print_catalogue` class method. [catalogue_not_found] +``` + +(catalogues-transformers)= + +## Transformers + +_Roseau Load Flow_ is provided with a catalogue of transformer parameters. These parameters are available +through the class `TransformerParameters`. + +```{note} +Currently, only three phase MV/LV transformers are in the catalogue. +``` + +### Source of data + +The available transformers data come from the following data sheets: + +- For Schneider-Electric: [here](../_static/Transformer/2023_03_31_Fiche_Technique_Schneider_Electric.pdf) on page + 19, 21 and 22. +- For France Transfo: [here](../_static/Transformer/2023_03_30_Fiche_Technique_France_Transfo.pdf). + +Pull requests to add some other sources are welcome! + +### Printing the catalogue + +This catalogue can be printed to the terminal: + +```pycon +>>> from roseau.load_flow import TransformerParameters +>>> TransformerParameters.print_catalogue() +``` + +| Id | Manufacturer | Product range | Efficiency | Type | Nominal power (kVA) | High voltage (kV) | Low voltage (kV) | +| :------------------------------------- | :----------- | :------------ | :------------------- | :---- | ------------------: | ----------------: | ---------------: | +| FT_Standard_Standard_100kVA | FT | Standard | Standard | Dyn11 | 100.0 | 20.0 | 0.4 | +| FT_Standard_Standard_160kVA | FT | Standard | Standard | Dyn11 | 160.0 | 20.0 | 0.4 | +| FT_Standard_Standard_250kVA | FT | Standard | Standard | Dyn11 | 250.0 | 20.0 | 0.4 | +| FT_Standard_Standard_315kVA | FT | Standard | Standard | Dyn11 | 315.0 | 20.0 | 0.4 | +| FT_Standard_Standard_400kVA | FT | Standard | Standard | Dyn11 | 400.0 | 20.0 | 0.4 | +| FT_Standard_Standard_500kVA | FT | Standard | Standard | Dyn11 | 500.0 | 20.0 | 0.4 | +| FT_Standard_Standard_630kVA | FT | Standard | Standard | Dyn11 | 630.0 | 20.0 | 0.4 | +| FT_Standard_Standard_800kVA | FT | Standard | Standard | Dyn11 | 800.0 | 20.0 | 0.4 | +| FT_Standard_Standard_1000kVA | FT | Standard | Standard | Dyn11 | 1000.0 | 20.0 | 0.4 | +| FT_Standard_Standard_1250kVA | FT | Standard | Standard | Dyn11 | 1250.0 | 20.0 | 0.4 | +| FT_Standard_Standard_1600kVA | FT | Standard | Standard | Dyn11 | 1600.0 | 20.0 | 0.4 | +| FT_Standard_Standard_2000kVA | FT | Standard | Standard | Dyn11 | 2000.0 | 20.0 | 0.4 | +| FT_Standard_Standard_2500kVA | FT | Standard | Standard | Dyn11 | 2500.0 | 20.0 | 0.4 | +| FT_Standard_Standard_3150kVA | FT | Standard | Standard | Dyn11 | 3150.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_50kVA | SE | Minera | A0Ak | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_100kVA | SE | Minera | A0Ak | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_160kVA | SE | Minera | A0Ak | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_250kVA | SE | Minera | A0Ak | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_315kVA | SE | Minera | A0Ak | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_400kVA | SE | Minera | A0Ak | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_500kVA | SE | Minera | A0Ak | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_630kVA | SE | Minera | A0Ak | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_800kVA | SE | Minera | A0Ak | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_1000kVA | SE | Minera | A0Ak | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_1250kVA | SE | Minera | A0Ak | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_1600kVA | SE | Minera | A0Ak | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_2000kVA | SE | Minera | A0Ak | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_2500kVA | SE | Minera | A0Ak | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_50kVA | SE | Minera | B0Bk | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_100kVA | SE | Minera | B0Bk | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_160kVA | SE | Minera | B0Bk | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_250kVA | SE | Minera | B0Bk | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_315kVA | SE | Minera | B0Bk | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_400kVA | SE | Minera | B0Bk | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_500kVA | SE | Minera | B0Bk | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_630kVA | SE | Minera | B0Bk | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_800kVA | SE | Minera | B0Bk | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_1000kVA | SE | Minera | B0Bk | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_1250kVA | SE | Minera | B0Bk | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_1600kVA | SE | Minera | B0Bk | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_2000kVA | SE | Minera | B0Bk | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_2500kVA | SE | Minera | B0Bk | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_50kVA | SE | Minera | C0Bk | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_100kVA | SE | Minera | C0Bk | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_160kVA | SE | Minera | C0Bk | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_250kVA | SE | Minera | C0Bk | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_315kVA | SE | Minera | C0Bk | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_400kVA | SE | Minera | C0Bk | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_500kVA | SE | Minera | C0Bk | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_630kVA | SE | Minera | C0Bk | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_800kVA | SE | Minera | C0Bk | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_1000kVA | SE | Minera | C0Bk | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_1250kVA | SE | Minera | C0Bk | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_1600kVA | SE | Minera | C0Bk | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_2000kVA | SE | Minera | C0Bk | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_2500kVA | SE | Minera | C0Bk | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Minera_Standard_50kVA | SE | Minera | Standard | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_Standard_100kVA | SE | Minera | Standard | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Minera_Standard_160kVA | SE | Minera | Standard | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Minera_Standard_250kVA | SE | Minera | Standard | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Minera_Standard_315kVA | SE | Minera | Standard | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Minera_Standard_400kVA | SE | Minera | Standard | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Minera_Standard_500kVA | SE | Minera | Standard | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Minera_Standard_630kVA | SE | Minera | Standard | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Minera_Standard_800kVA | SE | Minera | Standard | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Minera_Standard_1000kVA | SE | Minera | Standard | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Minera_Standard_1250kVA | SE | Minera | Standard | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Minera_Standard_1600kVA | SE | Minera | Standard | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Minera_Standard_2000kVA | SE | Minera | Standard | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Minera_Standard_2500kVA | SE | Minera | Standard | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_160kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_250kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_400kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_630kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_800kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_1000kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_1250kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_1600kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_2000kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Trihal_Extra_Reduced_Losses_2500kVA | SE | Trihal | Extra_Reduced_Losses | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_160kVA | SE | Trihal | Reduced_Losses | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_250kVA | SE | Trihal | Reduced_Losses | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_400kVA | SE | Trihal | Reduced_Losses | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_630kVA | SE | Trihal | Reduced_Losses | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_800kVA | SE | Trihal | Reduced_Losses | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_1000kVA | SE | Trihal | Reduced_Losses | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_1250kVA | SE | Trihal | Reduced_Losses | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_1600kVA | SE | Trihal | Reduced_Losses | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_2000kVA | SE | Trihal | Reduced_Losses | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Trihal_Reduced_Losses_2500kVA | SE | Trihal | Reduced_Losses | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_160kVA | SE | Trihal | Standard | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_250kVA | SE | Trihal | Standard | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_400kVA | SE | Trihal | Standard | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_630kVA | SE | Trihal | Standard | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_800kVA | SE | Trihal | Standard | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_1000kVA | SE | Trihal | Standard | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_1250kVA | SE | Trihal | Standard | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_1600kVA | SE | Trihal | Standard | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_2000kVA | SE | Trihal | Standard | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Trihal_Standard_2500kVA | SE | Trihal | Standard | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_50kVA | SE | Vegeta | C0Bk | Dyn11 | 50.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_100kVA | SE | Vegeta | C0Bk | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_160kVA | SE | Vegeta | C0Bk | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_250kVA | SE | Vegeta | C0Bk | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_315kVA | SE | Vegeta | C0Bk | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_400kVA | SE | Vegeta | C0Bk | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_500kVA | SE | Vegeta | C0Bk | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_630kVA | SE | Vegeta | C0Bk | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_800kVA | SE | Vegeta | C0Bk | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_1000kVA | SE | Vegeta | C0Bk | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_1250kVA | SE | Vegeta | C0Bk | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_1600kVA | SE | Vegeta | C0Bk | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_2000kVA | SE | Vegeta | C0Bk | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_2500kVA | SE | Vegeta | C0Bk | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_3150kVA | SE | Vegeta | C0Bk | Dyn11 | 3150.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_50kVA | SE | Vegeta | Standard | Dyn11 | 50.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_100kVA | SE | Vegeta | Standard | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_160kVA | SE | Vegeta | Standard | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_250kVA | SE | Vegeta | Standard | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_315kVA | SE | Vegeta | Standard | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_400kVA | SE | Vegeta | Standard | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_500kVA | SE | Vegeta | Standard | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_630kVA | SE | Vegeta | Standard | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_800kVA | SE | Vegeta | Standard | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_1000kVA | SE | Vegeta | Standard | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_1250kVA | SE | Vegeta | Standard | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_1600kVA | SE | Vegeta | Standard | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_2000kVA | SE | Vegeta | Standard | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_2500kVA | SE | Vegeta | Standard | Dyn11 | 2500.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_3150kVA | SE | Vegeta | Standard | Dyn11 | 3150.0 | 20.0 | 0.4 | + +The following data are available in this table: + +- the **id**: a unique id among the catalogue. +- the **manufacturer**: two manufacturers are available. `"SE"` stands for "Schneider-Electric" and `"FT"` stands for + "France Transfo". +- the product **range** which depends on the manufacturer +- the **efficiency** class of the transformer +- the **type** of the transformer. +- the nominal power, noted **sn**. +- the primary side phase to phase voltage, noted **uhv**. +- the secondary side phase to phase volage, noted **ulv**. + +The `print_catalogue` method accepts arguments (in bold above) that can be used to filter the printed table. The +following command only prints transformer parameters of transformers with an efficiency of "A0Ak": + +```pycon +>>> TransformerParameters.print_catalogue(efficiency="A0Ak") +``` + +| Id | Manufacturer | Product range | Efficiency | Type | Nominal power (kVA) | High voltage (kV) | Low voltage (kV) | +| :--------------------- | :----------- | :------------ | :--------- | :---- | ------------------: | ----------------: | ---------------: | +| SE_Minera_A0Ak_50kVA | SE | Minera | A0Ak | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_100kVA | SE | Minera | A0Ak | Dyn11 | 100.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_160kVA | SE | Minera | A0Ak | Dyn11 | 160.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_250kVA | SE | Minera | A0Ak | Dyn11 | 250.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_315kVA | SE | Minera | A0Ak | Dyn11 | 315.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_400kVA | SE | Minera | A0Ak | Dyn11 | 400.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_500kVA | SE | Minera | A0Ak | Dyn11 | 500.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_630kVA | SE | Minera | A0Ak | Dyn11 | 630.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_800kVA | SE | Minera | A0Ak | Dyn11 | 800.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_1000kVA | SE | Minera | A0Ak | Dyn11 | 1000.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_1250kVA | SE | Minera | A0Ak | Dyn11 | 1250.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_1600kVA | SE | Minera | A0Ak | Dyn11 | 1600.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_2000kVA | SE | Minera | A0Ak | Dyn11 | 2000.0 | 20.0 | 0.4 | +| SE_Minera_A0Ak_2500kVA | SE | Minera | A0Ak | Dyn11 | 2500.0 | 20.0 | 0.4 | + +or only transformers with a wye winding on the primary side (using a regular expression) + +```pycon +>>> TransformerParameters.print_catalogue(type=r"^y.*$") +``` + +| Id | Manufacturer | Product range | Efficiency | Type | Nominal power (kVA) | High voltage (kV) | Low voltage (kV) | +| :----------------------- | :----------- | :------------ | :--------- | :---- | ------------------: | ----------------: | ---------------: | +| SE_Minera_A0Ak_50kVA | SE | Minera | A0Ak | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_B0Bk_50kVA | SE | Minera | B0Bk | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_C0Bk_50kVA | SE | Minera | C0Bk | Yzn11 | 50.0 | 20.0 | 0.4 | +| SE_Minera_Standard_50kVA | SE | Minera | Standard | Yzn11 | 50.0 | 20.0 | 0.4 | + +or only transformers meeting both criteria + +```pycon +>>> TransformerParameters.print_catalogue(efficiency="A0Ak", type=r"^y.*$") +``` + +| Id | Manufacturer | Product range | Efficiency | Type | Nominal power (kVA) | High voltage (kV) | Low voltage (kV) | +| :------------------- | :----------- | :------------ | :--------- | :---- | ------------------: | ----------------: | ---------------: | +| SE_Minera_A0Ak_50kVA | SE | Minera | A0Ak | Yzn11 | 50.0 | 20.0 | 0.4 | + +Among all the possible filters, the nominal power and voltages are expected in their default unit (VA and V). The +[Pint](https://pint.readthedocs.io/en/stable/) library can also be used. For instance, if we want to print +transformer parameters with a nominal power of 3150 kVA, the following two commands print the same table: + +```pycon +>>> TransformerParameters.print_catalogue(sn=3150e3) # in VA by default + +>>> from roseau.load_flow.units import Q_ +... TransformerParameters.print_catalogue(sn=Q_(3150, "kVA")) +``` + +| Id | Manufacturer | Product range | Efficiency | Type | Nominal power (kVA) | High voltage (kV) | Low voltage (kV) | +| :--------------------------- | :----------- | :------------ | :--------- | :---- | ------------------: | ----------------: | ---------------: | +| FT_Standard_Standard_3150kVA | FT | Standard | Standard | Dyn11 | 3150.0 | 20.0 | 0.4 | +| SE_Vegeta_C0Bk_3150kVA | SE | Vegeta | C0Bk | Dyn11 | 3150.0 | 20.0 | 0.4 | +| SE_Vegeta_Standard_3150kVA | SE | Vegeta | Standard | Dyn11 | 3150.0 | 20.0 | 0.4 | + +### Getting an instance + +To build a transformer parameters from the catalogue, the class method `from_catalogue` can be used. The same filter +as the one used for the method `print_catalogue` can be used. The filter must lead to a single transformer in the +catalogue. + +For instance, this filter leads to a single transformer parameters in the catalogue: + +```pycon +>>> TransformerParameters.from_catalogue(efficiency="A0Ak", type=r"^y.*$") +TransformerParameters(id='SE_Minera_A0Ak_50kVA') +``` + +The `id` filter can be directly used: + +```pycon +>>> TransformerParameters.from_catalogue(id="SE_Minera_A0Ak_50kVA") +TransformerParameters(id='SE_Minera_A0Ak_50kVA') +``` + +In case of mistakes, an error is raised: + +```pycon +>>> TransformerParameters.from_catalogue(manufacturer="ft") +RoseauLoadFlowException: Several transformers matching the query ("manufacturer='ft'") +have been found. Please look at the catalogue using the `print_catalogue` class method. + [catalogue_several_found] +``` + +or if no results: + +```pycon +>>> TransformerParameters.from_catalogue(manufacturer="unknown") +RoseauLoadFlowException: No manufacturer matching the name 'unknown' has been found. +Available manufacturers are 'FT', 'SE'. [catalogue_not_found] +``` diff --git a/doc/usage/Connecting_Elements.md b/doc/usage/Connecting_Elements.md new file mode 100644 index 00000000..36fb6430 --- /dev/null +++ b/doc/usage/Connecting_Elements.md @@ -0,0 +1,159 @@ +# (Dis)Connecting elements + +## Creating a network + +Let's take the electrical network of the [Getting started page](usage-getting-started). + +```pycon +>>> import numpy as np +... from roseau.load_flow import * + +>>> source_bus = Bus(id="sb", phases="abcn") +... load_bus = Bus(id="lb", phases="abcn") + +>>> ground = Ground(id="gnd") +... pref = PotentialRef(id="pref", element=ground) +... ground.connect(source_bus, phase="n") + +>>> un = 400 / np.sqrt(3) +... source_voltages = [un, un * np.exp(-2j * np.pi / 3), un * np.exp(2j * np.pi / 3)] +... vs = VoltageSource(id="vs", bus=source_bus, voltages=source_voltages) + +>>> load = PowerLoad(id="load", bus=load_bus, powers=[10e3 + 0j, 10e3, 10e3]) # VA + +>>> lp = LineParameters("lp", z_line=(0.1 + 0.0j) * np.eye(4, dtype=complex)) +... line = Line( +... id="line", bus1=source_bus, bus2=load_bus, phases="abcn", parameters=lp, length=2.0 +... ) +``` + +At this point, all the elements are connected, but they do not belong to a network: + +```pycon +>>> load.network +None +``` + +Then, creating an electrical network populates all the `network` fields of elements belonging to this network: + +```pycon +>>> en = ElectricalNetwork.from_element(source_bus) +>>> load.network + +``` + +Obviously, an element can only belong to a single network: + +```pycon +>>> ElectricalNetwork.from_element(load) +roseau.load_flow.exceptions.RoseauLoadFlowException: The Bus 'lb' is already assigned to another network. [several_networks] +``` + +The load flow can be solved: + +```pycon +>>> auth = ("username", "password") +>>> en.solve_load_flow(auth=auth) +2 +``` + +## Disconnecting an element + +In order to disconnect an element from the network, the `disconnect` method is available. + +```{note} +The `disconnect` method is only available for loads and for voltage sources. +``` + +```pycon +>>> load.disconnect() +``` + +Now, the load does not belong anymore to the network `en`. Symmetrically, the network doesn't have this load anymore: + +```pycon +>>> load.network +None +>>> en + +``` + +When accessing to a result, a warning is emitted because the results are now outdated: + +```pycon +>>> line.res_powers +UserWarning: The results of this element may be outdated. Please re-run a load flow to ensure the validity of results. +(array([10406.073858+0.00000000e+00j, 10406.073858+3.79778686e-12j, + 10406.073858-3.79778686e-12j, 0. -0.00000000e+00j]) , + array([-9.99999996e+03+0.00000000e+00j, -9.99999996e+03-4.11872388e-12j, + -9.99999996e+03+4.11872388e-12j, 3.48949926e-29+0.00000000e+00j]) ) +``` + +```{danger} +The load element `load` doesn't belong to a network and a part of its results is not accessible any more. `res_` +methods may raise errors. +``` + +## Connecting an element + +Let's create a new line and a new load at the end of this line. + +The new bus and the new load are created first. + +```pycon +>>> new_bus = Bus(id="new_bus", phases="abcn") +>>> new_load = PowerLoad(id="new_load", bus=new_bus, phases="an", powers=[6e3]) # W +``` + +At this point, they don't belong to any network: + +```pycon +>>> new_bus.network +None +>>> new_load.network +None +``` + +Creating a line connecting the `load_bus` (belonging to the network `en`) and our new bus `new_bus` (which doesn't +belong to a network) will propagate the network to the new elements. + +```pycon +>>> lp_u_al_240 = LineParameters.from_name_lv("U_AL_240") +>>> new_line = Line( +... id="new_line", +... bus1=load_bus, +... bus2=new_bus, +... phases="abcn", +... ground=ground, +... parameters=lp_u_al_240, +... length=0.5, +... ) +>>> new_line.network + +>>> new_bus.network + +>>> new_load.network + +>>> en + +``` + +If you look at the network elements, you can see the new bus, line and load are added. + +```pycon +>>> en.buses["new_bus"] +Bus(id='new_bus', phases='abcn') +>>> en.loads["new_load"] +PowerLoad(id='new_load', phases='an', bus='new_bus') +>>> en.branches["new_line"] +Line(id='new_line', phases1='abcn', phases2='abcn', bus1='lb', bus2='new_bus') +``` + +And now if you run the load flow, you can see that the new elements are taken into account. + +```pycon +>>> en.solve_load_flow(auth=auth) +3 +>>> abs(new_load.res_voltages) +array([216.54956226]) +``` diff --git a/doc/usage/Flexible_Loads.md b/doc/usage/Flexible_Loads.md new file mode 100644 index 00000000..5891c0f7 --- /dev/null +++ b/doc/usage/Flexible_Loads.md @@ -0,0 +1,247 @@ +(usage-flexible-loads)= + +# Flexible loads + +Make sure you have followed the [getting started guide](Getting_Started.md) first. + +Let's create a network with MV and LV elements connected via a transformer. + +## Creating a network + +This network contains a voltage source with a constant balanced voltage of 20 kV (phase-to-phase), +a Delta-Wye transformer and a small LV network. + +![Advanced Network](../_static/Advanced_Tutorial.svg) + +```pycon +>>> import numpy as np +... from roseau.load_flow import * + +>>> # Create a MV bus with a voltage source +... bus0_mv = Bus(id="bus0_mv", phases="abc") +... un = 20e3 # V +... source_voltages = [un, un * np.exp(-2j * np.pi / 3), un * np.exp(2j * np.pi / 3)] +... vs = VoltageSource(id="vs", bus=bus0_mv, phases="abc", voltages=source_voltages) +... # Set the MV potential reference +... pref_mv = PotentialRef(id="pref_mv", element=bus0_mv) + +>>> # Create a LV bus and connect its neutral to the ground +... bus0_lv = Bus(id="bus0_lv", phases="abcn") +... ground = Ground(id="gnd") +... # Set the ground potential to 0V +... pref_lv = PotentialRef(id="pref_lv", element=ground) +... # Connect the ground to the neutral of the LV bus +... ground.connect(bus0_lv) + +>>> # Add a MV/LV transformer +... tp = TransformerParameters( +... "160_kVA", +... "Dyn11", +... sn=160.0 * 1e3, +... uhv=20e3, +... ulv=400.0, +... i0=2.3 / 100, +... p0=460.0, +... psc=2350.0, +... vsc=4.0 / 100, +... ) +... transformer = Transformer( +... id="transfo", +... bus1=bus0_mv, +... bus2=bus0_lv, +... phases1="abc", +... phases2="abcn", +... parameters=tp, +... tap=1.025, +... ) + +>>> # Add the LV network elements +... lp = LineParameters.from_name_lv("U_AL_150") +... bus1 = Bus(id="bus1", phases="abcn") +... bus2 = Bus(id="bus2", phases="abcn") +... load_bus1 = Bus(id="load_bus1", phases="abcn") +... load_bus2 = Bus(id="load_bus2", phases="abcn") +... load_bus3 = Bus(id="load_bus3", phases="abcn") +... line1 = Line( +... id="line1", +... bus1=bus0_lv, +... bus2=bus1, +... phases="abcn", +... ground=ground, +... parameters=lp, +... length=0.5, +... ) # km +... line2 = Line( +... id="line2", +... bus1=bus1, +... bus2=bus2, +... phases="abcn", +... ground=ground, +... parameters=lp, +... length=0.4, +... ) +... line3 = Line( +... id="line3", +... bus1=bus1, +... bus2=load_bus1, +... phases="abcn", +... ground=ground, +... parameters=lp, +... length=0.3, +... ) +... line4 = Line( +... id="line4", +... bus1=bus2, +... bus2=load_bus2, +... phases="abcn", +... ground=ground, +... parameters=lp, +... length=0.3, +... ) +... line5 = Line( +... id="line5", +... bus1=load_bus2, +... bus2=load_bus3, +... phases="abcn", +... ground=ground, +... parameters=lp, +... length=0.4, +... ) +... si = -3e3 # VA, negative as it is production +... load1 = PowerLoad(id="load1", bus=load_bus1, phases="abcn", powers=[si, si, si]) +... load2 = PowerLoad(id="load2", bus=load_bus2, phases="abcn", powers=[si, si, si]) +... load3 = PowerLoad(id="load3", bus=load_bus3, phases="abcn", powers=[si, 0, 0]) + +>>> # Create the network +... en = ElectricalNetwork.from_element(bus0_mv) +``` + +Then, the load flow can be solved and the results can be retrieved. + +```pycon +>>> auth = ("username", "password") +>>> en.solve_load_flow(auth=auth) +2 +>>> abs(load_bus3.res_voltages) +array([243.66463933, 232.20612714, 233.55093129]) +``` + +The flexible loads are loads that implement some basic controls such as $P(U)$, $Q(U)$ or $PQ(U)$. + +## $P(U)$ control + +Let's remove `load3` from the network and add a flexible load as a replacement. A flexible load +is a normal `PowerLoad` with a `flexible_params` argument that takes a list of`FlexibleParameter`. + +We first create a `FlexibleParameter` using its class method `p_max_u_production`. It returns a +flexible parameter instance that reduces the active production when the voltage is higher than +`u_up` volts and stops the production when the voltage reaches `u_max`. The `s_max` argument +defines the maximum allowed apparent power of the production plant. In the example below, +`u_up=240 V`, `u_max=250 V` and `s_max=4 kVA`. + +After that, a flexible load representing a PV plant is created. Its apparent power is fixed at +`[si, 0, 0]` VA with `si` a negative value (negative because it is production). Theses apparent +powers define the maximum power this load can produce. The `flexible_params` argument takes a +list of `FlexibleParameter` instances, one per phase. For the first phase, the $P(U)$ control is +used. For the two other phases, there is no control at all thus the `constant` class method is +used. + +As a consequence, the provided apparent power for phase `'a'` is the maximum that can be produced +(potentially modified by the $P(U)$ control) and the provided apparent power for phases `'b'` and +`'c'` is the desired production as the flexible parameter is defined as `constant`. + +```pycon +>>> # Let's make the load 3 flexible with a p(u) control to reduce the voltages constraints +... en.loads["load3"].disconnect() +... fp = FlexibleParameter.p_max_u_production(u_up=240, u_max=250, s_max=4000) # V and VA +... flexible_load = PowerLoad( +... id="load3", +... bus=load_bus3, +... phases="abcn", +... powers=[si, 0, 0], # W +... flexible_params=[fp, FlexibleParameter.constant(), FlexibleParameter.constant()], +... ) +``` + +The load flow can now be run again. You can see that the voltage magnitude has changed. Note that +the voltage magnitude for phase `'a'` was 240 V above without the $P(U)$ control, thus the control +has been activated in this run. + +```pycon +>>> en.solve_load_flow(auth=auth) +4 +>>> abs(load_bus3.res_voltages) +array([243.08225748, 232.46046866, 233.62854073]) +``` + +The actually produced power of the flexible load is a result of the computation and can be +accessed using the `res_flexible_powers` property of the load. + +```pycon +>>> flexible_load.res_flexible_powers +array([-2757.8035271+0.j, 0.+0.j, 0.+0.j]) +``` + +```{note} +The flexible powers are the powers that flow in the load elements and not in the lines. These are +only different in case of delta loads. To access the powers that flow in the lines, use the +`res_powers` property instead. +``` + +Here, one can note that: + +- The active power for the phase `'a'` is negative meaning production; +- The actual value of this active power is lower that the one requested as the control was activated; +- The power for phases `'b'` and `'c'` is 0 VA as expected. + +## $PQ(U)$ control + +Now, let's remove the flexible load that we have added in the previous section and add a new +flexible load implementing a $PQ(U)$ control instead. + +As before, we first create a `FlexibleParameter` but this time, we will use the +`pq_u_production` class method. It requires several arguments: + +- `up_up` and `up_max`: the voltages defining the interval of the `P(U)` control activation. + Below `up_up`, no control is applied and above `u_max`, the production is totally shut down. +- `uq_min`, `uq_down`, `uq_up` and `uq_max` which are the voltages defining the `Q(U)` control + activation. + - Below `uq_min`, the power plant produces the maximum possible reactive power. + - Between `uq_down` and `uq_up`, there is no `Q(U)` control. + - Above `uq_max`, the power plant consumes the maximum possible reactive power. + +In the example below, as the new load is a production load, only the `up_up`, `up_max`, `uq_up` +and `uq_max` are of interests. The $Q(U)$ control starts its action at 235 V and is fully +exhausted at 240 V. After that, the $P(U)$ is activated and is exhausted at 250 V where the +production is totally shut down. + +```pycon +>>> # Let's try with pq(u) control, by injecting reactive power before reducing active power +... en.loads["load3"].disconnect() +... fp = FlexibleParameter.pq_u_production( +... up_up=240, up_max=250, uq_min=200, uq_down=210, uq_up=235, uq_max=240, s_max=4000 # V and VA +... ) +... flexible_load = PowerLoad( +... id="load3", +... bus=load_bus3, +... phases="abcn", +... powers=[si, 0, 0], +... flexible_params=[fp, FlexibleParameter.constant(), FlexibleParameter.constant()], +... ) +``` + +The load flow can be solved again. + +```pycon +>>> en.solve_load_flow(auth=auth) +6 +>>> abs(load_bus3.res_voltages) +array([239.5133208 , 230.2108052 , 237.59184615]) +>>> flexible_load.res_flexible_powers +array([-2566.23768012+3068.29336425j, 0.+0.j, 0.+0.j]) +``` + +One can note that this time, the phase `'a'` consumes reactive power to limit the voltage rise in +the network. Moreover, the magnitude of the power on phase `'a'` is approximately $4 kVA$ which is +the maximum allowed apparent power for `load3`. In order to maintain this maximum, a +[Euclidean projection](models-flexible_load-projection) has been used. diff --git a/doc/usage/Getting_Started.md b/doc/usage/Getting_Started.md new file mode 100644 index 00000000..be252290 --- /dev/null +++ b/doc/usage/Getting_Started.md @@ -0,0 +1,476 @@ +(usage-getting-started)= + +# Getting started + +_Make sure you have followed the_ [installation instructions](../Installation.md). + +In this tutorial you will learn how to: + +1. [Create a simple electrical network with one source and one load](gs-creating-network); +2. [Solve a load flow](gs-solving-load-flow); +3. [Get the results of the load flow](gs-getting-results); +4. [Update the elements of the network](gs-updating-elements); +5. [Save the network and the results to the disk for later analysis](gs-saving-network); +6. [Load the saved network and the results from the disk](gs-loading-network). + +(gs-creating-network)= + +## Creating a network + +An electrical network can be built by assembling basic elements described in the [Models section](../models/index.md). +The following is a summary of the available elements: + +- Buses: + + - `Bus`: An electrical bus. + +- Branches: + + - `Line`: A line connects two buses. The parameters of the line are defined by a `LineParameters` object. + - `LineParameters`: This object defines the parameters of a line (model, impedance, etc.) + - `Switch`: A basic switch element. + - `Transformer`: A generic transformer. The parameters of the transformer are defined by a `TransformerParameters` + object. + - `TransformerParameters`: This object defines the parameters of a transformer (model, windings, etc.) + +- Loads: + The ZIP load model is available via the following classes: + + - `ImpedanceLoad`: A constant impedance (Z) load: $S = |V|^2 \times \overline{Z}$, $|S|$ is proportional to $|V|^2$. + - `CurrentLoad` A constant current (I) load: $S = V \times \overline{I}$, $|S|$ is proportional to $|V|^1$. + - `PowerLoad`: A constant power (P) load: $S = \mathrm{constant}$, $|S|$ is proportional to $|V|^0$. + + A power load can be made flexible (controllable) by using the following class: + + - `FlexibleParameter`: This object defines the parameters of the flexible load's control (Maximum power, projection, + type, etc.) + + Note that flexible loads are an advanced feature that most users don't need. They are explained in details [here](usage-flexible-loads). + +- Sources: + + - `VoltageSource`: Represents an infinite power source with a constant voltage. + +- Others: + - `Ground`: A ground acts as a perfect conductor. If two elements are connected to the ground, the potentials at the + connection points are always equal. + - `PotentialRef`: A potential reference sets the reference of potentials in the network. It can be connected to + buses or grounds. + +For a more detailed description of the elements, please refer to the [API reference](../autoapi/roseau/load_flow/models/index). + +Let's use some of these elements to build the following network with a voltage source, a simple +line and a constant power load. This network is a low voltage network (three-phase + neutral wire). + +![Network](../_static/Getting_Started_Tutorial.svg) + +It leads to the following code + +```pycon +>>> import numpy as np +... from roseau.load_flow import * + +>>> # Create two buses +... source_bus = Bus(id="sb", phases="abcn") +... load_bus = Bus(id="lb", phases="abcn") + +>>> # Define the reference of potentials to be the neutral of the source bus +... ground = Ground(id="gnd") +... # Fix the potential of the ground at 0 V +... pref = PotentialRef(id="pref", element=ground) +... ground.connect(source_bus, phase="n") + +>>> # Create a LV source at the first bus +... # Volts (phase-to-neutral because the source is connected to the neutral) +... un = 400 / np.sqrt(3) +... source_voltages = [un, un * np.exp(-2j * np.pi / 3), un * np.exp(2j * np.pi / 3)] +... vs = VoltageSource(id="vs", bus=source_bus, voltages=source_voltages) + +>>> # Add a load at the second bus +... load = PowerLoad(id="load", bus=load_bus, powers=[10e3 + 0j, 10e3, 10e3]) # VA + +>>> # Add a LV line between the source bus and the load bus +... # R = 0.1 Ohm/km, X = 0 +... lp = LineParameters("lp", z_line=(0.1 + 0.0j) * np.eye(4, dtype=complex)) +... line = Line(id="line", bus1=source_bus, bus2=load_bus, parameters=lp, length=2.0) +``` + +At this point, all the basic elements of the network have been defined and connected. Now, +everything can be encapsulated in an `ElectricalNetwork` object, but first, some important +notes on the `Ground` and `PotentialRef` elements: + +```{important} +The `Ground` element does not have a fixed potential as one would expect from a real ground +connection. The potential reference (0 Volts) is defined by the `PotentialRef` element that +itself can be connected to any bus or ground in the network. This is to give more flexibility +for the user to define the potential reference of their network. + +A `PotentialRef` defines the potential reference for the network. It is a mandatory reference +for the load flow resolution to be well-defined. A network MUST have one and only one potential +reference per a galvanically isolated section. +``` + +```{tip} +The `Ground` element is not required in this simple network as it is connected to a single +element. No current will flow through the ground and no two points in the network will be forced +to have the same potential. In this scenario you are allowed to define the potential reference +directly on the bus element: `pref = PotentialRef(id="pref", element=source_bus, phase="n")` and +not bother with creating the ground element at all. +``` + +An `ElectricalNetwork` object can now be created using the `from_element` constructor. The source +bus `source_bus` is given to this constructor. All the elements connected to this bus are +automatically included into the network. + +```pycon +>>> en = ElectricalNetwork.from_element(source_bus) +``` + +(gs-solving-load-flow)= + +## Solving a load flow + +An authentication is required. Please contact us at contact@roseautechnologies.com to get the necessary credentials. +Then, the load flow can be solved by requesting our server **(requires Internet access)**. + +```{note} +The server takes some time to warm up the first time it is requested. Subsequent requests will execute faster. +``` + +```pycon +>>> auth = ("username", "password") +>>> en.solve_load_flow(auth=auth) +2 +``` + +It returns the number of iterations performed by the _Newton-Raphson_ solver, here _2_. More information about the +load flow resolution is available via the `res_info` attribute. + +```pycon +>>> en.res_info +{'solver': 'newton_goldstein', + 'solver_params': {'m1': 0.1, 'm2': 0.9}, + 'tolerance': 1e-06, + 'max_iterations': 20, + 'warm_start': True, + 'status': 'success', + 'iterations': 2, + 'residual': 1.8595619621919468e-07} +``` + +The available values are: + +- `solver`: it can be `"newton"` for the _Newton_ solver or `"newton_goldstein"` for the _Newton_ solver using the + _Goldstein and Price_ linear search; +- `solver_params`: the parameters used by the solver; +- `tolerance`: the requested tolerance for the solver. $10^{-6}$ is the default; +- `max_iterations`: the requested maximum number of iterations for the solver. 20 is the default; +- `warm_start`: if `True`, the results (potentials of each bus) from the last valid run are used + as a starting point for the solver. For large networks, using a warm start can lead to performance gains as the + solver will converge faster. `True` is the default; +- `status`: the convergence of the load flow. Two possibilities: _success_ or _failure_; +- `iterations`: the number of iterations made by the solver. +- `residual`: the precision which was reached by the solver (lower than the tolerance if successful solve). + +More details on solvers are given in the [Solvers page](../Solvers.md). + +(gs-getting-results)= + +## Getting the results + +The results are now available for every element of the network. Results can be accessed through +special properties prefixed with `res_` on each element object. For instance, the potentials +of the `load_bus` can be accessed using the property `load_bus.res_potentials`. It contains 4 +values which are the potentials of its phases `a`, `b`, `c` and `n` (neutral). The potentials +are returned as complex numbers. Calling `abs(load_bus.res_potentials)` gives you the magnitude +of the load's potentials (in Volts) and `np.angle(load_bus.res_potentials)` gives their angle +(phase shift) in radians. + +````{note} +Roseau Load Flow uses the [Pint](https://pint.readthedocs.io/en/stable/) `Quantity` objects to +present the data in unit-agnostic way for the user. All input data (load powers, source voltages, +etc.) are expected to be either given in SI units or using the pint Quantity interface for non-SI +units (example below). The `length` parameter of the `Line` class is an exception where the +default unit is Kilometers. +Example, create a load with powers expressed in kVA: + +```python +from roseau.load_flow import Q_ + +load = PowerLoad(id="load", bus=load_bus, phases="abcn", powers=Q_([10, 10, 10], "kVA")) +``` +```` + +The results returned by the `res_` properties are also `Quantity` objects. + +### Available results + +The available results depend on the type of element. The following table summarizes the available +results for each element type: + +| Element type | Available results | +| ------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| `Bus` | `res_potentials`, `res_voltages` | +| `Line` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages`, `res_series_power_losses`, `res_shunt_power_losses`, `res_power_losses` | +| `Transformer`, `Switch` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages` | +| `ImpedanceLoad`, `CurrentLoad`, `PowerLoad` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages`, `res_flexible_powers`⁎ | +| `VoltageSource` | `res_currents`, `res_powers`, `res_potentials`, `res_voltages` | +| `Ground` | `res_potential` | +| `PotentialRef` | `res_current` _(Always zero for a successful load flow)_ | + +⁎: `res_flexible_powers` is only available for flexible loads (`PowerLoad`s with `flexible_params`). You'll see +an example on the usage of flexible loads in the _Flexible Loads_ section. + +### Getting results per object + +In order to get the potentials or voltages of a bus, use the `res_potentials` or `res_voltages` +properties of buses as follows: + +```pycon +>>> load_bus.res_potentials +array([ 2.21928183e+02-2.60536682e-18j, -1.10964092e+02-1.92195445e+02j, + -1.10964092e+02+1.92195445e+02j, 2.68637675e-15-6.67652444e-17j]) +``` + +As the results are _pint quantities_, they can be converted to different units. Here, the magnitudes +of the voltages of the same bus are displayed in kilovolts. + +```pycon +>>> abs(load_bus.res_voltages).to("kV") +array([0.22192818, 0.22192818, 0.22192818]) +``` + +```{important} +Everywhere in `roseau-load-flow`, the `voltages` of an element depend on the element's `phases`. +Voltages of elements connected in a *Star (wye)* configuration (elements that have a neutral connection indicated by the presence of the `'n'` char in their `phases` attribute) are the +**phase-to-neutral** voltages. Voltages of elements connected in a *Delta* configuration (elements +that do not have a neutral connection indicated by the absence of the `'n'` char from their +`phases` attribute) are the **phase-to-phase** voltages. This is true for *input* voltages, such +as the `voltages` parameter to a `VoltageSource`, as well as for the results such as the `res_voltages` property of a `Bus`. +``` + +The currents of the line are available using the `res_currents` property of the `line` object. +It contains two arrays: + +- the first is the current flowing from the first bus of the line to the second bus of the line. + It contains 4 values: one per phase and the neutral current. +- the second is the current flowing from the second bus of the line to the first bus of the line. + +Here, the sum of these currents is 0 as we have chosen a simple line model, i.e, a line with only +series impedance elements without shunt components. If shunt components were modelled, the sum +would have been non-zero. + +```pycon +>>> line.res_currents +(array([ 4.50596216e+01+1.30268341e-17j, -2.25298108e+01-3.90227770e+01j, + -2.25298108e+01+3.90227770e+01j, -1.34318838e-14+3.33826222e-16j]) , + array([-4.50596216e+01-1.30268341e-17j, 2.25298108e+01+3.90227770e+01j, + 2.25298108e+01-3.90227770e+01j, 1.34318838e-14-3.33826222e-16j]) ) +``` + +### Dataframe network results + +The results can also be retrieved for the entire network using `res_` properties of the +`ElectricalNetwork` instance as [pandas](https://pandas.pydata.org/docs/) {doc}` DataFrames `. + +Available results for the network are: + +- `res_buses`: Buses potentials indexed by _(bus id, phase)_ +- `res_buses_voltages`: Buses voltages indexed by _(bus id, voltage phase)_ +- `res_branches`: Branches currents, powers, and potentials indexed by _(branch id, phase)_ +- `res_lines`: Lines currents, powers, potentials, series losses, series currents indexed by _(line id, phase)_ +- `res_loads`: Loads currents, powers, and potentials indexed by _(load id, phase)_ +- `res_loads_voltages`: Loads voltages indexed by _(load id, voltage phase)_ +- `res_loads_flexible_powers`: Loads flexible powers (only for flexible loads) indexed by + _(load id, phase)_ +- `res_sources`: Sources currents, powers, and potentials indexed by _(source id, phase)_ +- `res_grounds`: Grounds potentials indexed by _ground id_ +- `res_potential_refs`: Potential references currents indexed by _potential ref id_ (always zero + for a successful load flow) + +All the results are complex numbers. You can always access the magnitude of the results using +the `abs` function and the angle in radians using the `np.angle` function. For instance, +`abs(network.res_loads)` gives you the magnitude of the loads' results in SI units. + +Below are the results of the load flow for `en`: + +```{note} +All the following tables are rounded to 2 decimals to be properly displayed. +``` + +```pycon +>>> en.res_buses +``` + +| bus_id | phase | potential | +| :----- | :---- | -------------: | +| sb | a | 230.94+0j | +| sb | b | -115.47-200j | +| sb | c | -115.47+200j | +| sb | n | 0j | +| lb | a | 221.93-0j | +| lb | b | -110.96-192.2j | +| lb | c | -110.96+192.2j | +| lb | n | -0j | + +```pycon +>>> en.res_buses_voltages +``` + +| bus_id | phase | voltage | +| :----- | :---- | -------------: | +| sb | an | 230.94+0j | +| sb | bn | -115.47-200j | +| sb | cn | -115.47+200j | +| lb | an | 221.93+0j | +| lb | bn | -110.96-192.2j | +| lb | cn | -110.96+192.2j | + +```pycon +>>> en.res_branches +``` + +| branch_id | phase | current1 | current2 | power1 | power2 | potential1 | potential2 | +| :-------- | :---- | ------------: | -----------: | ----------: | --------: | -----------: | -------------: | +| line | a | 45.06+0j | -45.06-0j | 10406.07-0j | -10000+0j | 230.94+0j | 221.93-0j | +| line | b | -22.53-39.02j | 22.53+39.02j | 10406.07+0j | -10000-0j | -115.47-200j | -110.96-192.2j | +| line | c | -22.53+39.02j | 22.53-39.02j | 10406.07-0j | -10000+0j | -115.47+200j | -110.96+192.2j | +| line | n | 0j | -0j | 0j | -0j | 0j | -0j | + +```pycon +>>> en.res_lines +``` + +| branch_id | phase | current1 | current2 | power1 | power2 | potential1 | potential2 | series_losses | series_current | +| :-------- | :---- | ------------: | -----------: | ----------: | --------: | -----------: | -------------: | ------------: | -------------: | +| line | a | 45.06+0j | -45.06-0j | 10406.07-0j | -10000+0j | 230.94+0j | 221.93-0j | 406.07-0j | 45.06+0j | +| line | b | -22.53-39.02j | 22.53+39.02j | 10406.07+0j | -10000-0j | -115.47-200j | -110.96-192.2j | 406.07-0j | -22.53-39.02j | +| line | c | -22.53+39.02j | 22.53-39.02j | 10406.07-0j | -10000+0j | -115.47+200j | -110.96+192.2j | 406.07+0j | -22.53+39.02j | +| line | n | 0j | -0j | -0j | -0j | 0j | -0j | -0j | -0+0j | + +```pycon +>>> en.res_loads +``` + +| load_id | phase | current | power | potential | +| :------ | :---- | ------------: | -------: | -------------: | +| load | a | 45.06+0j | 10000-0j | 221.93-0j | +| load | b | -22.53-39.02j | 10000-0j | -110.96-192.2j | +| load | c | -22.53+39.02j | 10000+0j | -110.96+192.2j | +| load | n | 0j | 0j | -0j | + +```pycon +>>> en.res_loads_voltages +``` + +| load_id | phase | voltage | +| :------ | :---- | -------------: | +| load | an | 221.93+0j | +| load | bn | -110.96-192.2j | +| load | cn | -110.96+192.2j | + +```pycon +>>> en.res_sources +``` + +| source_id | phase | current | power | potential | +| :-------- | :---- | -----------: | ------------: | -----------: | +| vs | a | -45.06-0j | -10406.07+0j) | 230.94+0j | +| vs | b | 22.53+39.02j | -10406.07-0j) | -115.47-200j | +| vs | c | 22.53-39.02j | -10406.07+0j) | -115.47+200j | +| vs | n | 0j | 0j | 0j | + +```pycon +>>> en.res_grounds +``` + +| ground_id | potential | +| :-------- | --------: | +| gnd | 0j | + +```pycon +>>> en.res_potential_refs +``` + +| potential_ref_id | current | +| :--------------- | ------: | +| pref | 0j | + +Using the `transform` method of data frames, the results can easily be converted from complex values +to magnitude and angle values. + +```pycon +>>> en.res_buses_voltages.transform([np.abs, np.angle]) +``` + +| bus_id | phase | ('voltage', 'absolute') | ('voltage', 'angle') | +| :----- | :---- | ----------------------: | -------------------: | +| sb | an | 230.94 | 0 | +| sb | bn | 230.94 | -2.0944 | +| sb | cn | 230.94 | 2.0944 | +| lb | an | 221.928 | 2.89102e-19 | +| lb | bn | 221.928 | -2.0944 | +| lb | cn | 221.928 | 2.0944 | + +Or, if you prefer degrees: + +```pycon +>>> import functools as ft +... en.res_buses_voltages.transform([np.abs, ft.partial(np.angle, deg=True)]) +``` + +| bus_id | phase | ('voltage', 'absolute') | ('voltage', 'angle') | +| :----- | :---- | ----------------------: | -------------------: | +| sb | an | 230.94 | 0 | +| sb | bn | 230.94 | -120 | +| sb | cn | 230.94 | 120 | +| lb | an | 221.928 | 1.65643e-17 | +| lb | bn | 221.928 | -120 | +| lb | cn | 221.928 | 120 | + +(gs-updating-elements)= + +## Updating elements of the network + +Network elements can be updated. Here, the load's power values are changed to create an +unbalanced situation. + +```pycon +>>> load.powers = Q_([15, 0, 0], "kVA") +>>> en.solve_load_flow(auth=auth) +3 +>>> load_bus.res_potentials +array([ 216.02252269 +0.j, -115.47005384-200.j, -115.47005384+200.j, 14.91758499 +0.j]) +``` + +One can notice that the neutral's potential of the bus is no longer close to 0 V. + +(gs-saving-network)= + +## Saving the network to a file + +The network can be saved to a JSON file using the `en.to_json` method. Note that this method +does not save the results of the load flow. It only saves the network elements. + +To save the results of the load flow, use the `en.results_to_json` method. + +```pycon +>>> en.to_json("my_network.json") +>>> en.results_to_json("my_network_results.json") +``` + +```{warning} +The `to_json` and `results_to_json` methods will overwrite the file if it already exists. +``` + +(gs-loading-network)= + +## Loading a network from a file + +A saved network can be loaded using the `ElectricalNetwork.from_json` method. The results of +the load flow can then be loaded using the `ElectricalNetwork.results_from_json` method. + +```pycon +>>> en = ElectricalNetwork.from_json("my_network.json") +>>> en.results_from_json("my_network_results.json") +``` diff --git a/doc/usage/Plotting.md b/doc/usage/Plotting.md new file mode 100644 index 00000000..15aed61d --- /dev/null +++ b/doc/usage/Plotting.md @@ -0,0 +1,121 @@ +# Plotting + +On this page, the [folium](https://python-visualization.github.io/folium/index.html) library is used to plot an +`ElectricalNetwork`. + +Let's take a MV network from the catalogue: + +```pycon +>>> from roseau.load_flow import ElectricalNetwork +>>> en = ElectricalNetwork.from_catalogue(name="MVFeeder210", load_point_name="Winter") +``` + +The plot will be done from the {doc}`GeoDataFrame ` of buses and branches. + +```pycon +>>> buses_gdf = en.buses_frame.reset_index() +>>> branches_gdf = en.branches_frame.reset_index() +``` + +In order to style the buses, a style function, a highlight function and a tooltip are defined. The `"id"` property of +the buses is used to separate the HV/MV substation and the MV/LV substations for the style function. Remaining buses +are junction buses. The color of the buses is changed when highlighted. + +```pycon +>>> import folium + +>>> def buses_style_function(feature): +... if feature["properties"]["id"].startswith("HVMV"): # HV/MV substation +... return { +... "fill": True, +... "fillColor": "#000000", +... "color": "#000000", +... "fillOpacity": 1, +... "radius": 7, +... } +... elif feature["properties"]["id"].startswith("MVLV"): # MV/LV substations +... return { +... "fill": True, +... "fillColor": "#234e83", +... "color": "#234e83", +... "fillOpacity": 1, +... "radius": 5, +... } +... else: # Junctions buses +... return { +... "fill": True, +... "fillColor": "#234e83", +... "color": "#234e83", +... "fillOpacity": 1, +... "radius": 3, +... } + +>>> def buses_highlight_function(feature): +... return {"color": "#cad40e", "fillColor": "#cad40e"} + +>>> buses_tooltip = folium.GeoJsonTooltip( +... fields=["id", "phases"], +... aliases=["Id:", "Phases:"], +... localize=True, +... sticky=False, +... labels=True, +... max_width=800, +... ) +``` + +The same is done for the branches. There are three types of branches: `"line"`, `"transformer"` and `"switch"`. Only +lines are plotted so the opacity of others is set to 0. + +```pycon +>>> def branches_style_function(feature): +... if feature["properties"]["branch_type"] == "line": +... return {"color": "#234e83", "weight": 4} +... else: +... # feature["properties"]["branch_type"] in ("transformer", "switch") +... return {"opacity": 0} + +>>> def branches_highlight_function(feature): +... return {"color": "#cad40e"} + +>>> branches_tooltip = folium.GeoJsonTooltip( +... fields=["id", "branch_type", "bus1_id", "bus2_id"], +... aliases=["Id:", "Type:", "Bus1:", "Bus2:"], +... localize=True, +... sticky=False, +... labels=True, +... max_width=800, +... ) +``` + +Finally, the two geojson layers are added in a folium map. + +```pycon +>>> m = folium.Map( +... location=list(reversed(buses_gdf.unary_union.centroid.coords[0])), zoom_start=12 +... ) + +>>> folium.GeoJson( +... branches_gdf, +... name="branches", +... marker=folium.CircleMarker(), +... style_function=branches_style_function, +... highlight_function=branches_highlight_function, +... tooltip=branches_tooltip, +... ).add_to(m) + +>>> folium.GeoJson( +... buses_gdf, +... name="buses", +... marker=folium.CircleMarker(), +... style_function=buses_style_function, +... highlight_function=buses_highlight_function, +... tooltip=buses_tooltip, +... ).add_to(m) + +>>> folium.LayerControl().add_to(m) +>>> m +``` + +It leads to this result: + + diff --git a/doc/usage/Short_Circuit.md b/doc/usage/Short_Circuit.md new file mode 100644 index 00000000..196794ec --- /dev/null +++ b/doc/usage/Short_Circuit.md @@ -0,0 +1,170 @@ +# Short-Circuit + +Let's see how we can make a short-circuit calculation. + +We will start by creating a simple network composed of two LV lines. As usual with short-circuit calculations, we +won't add any loads. + +```{note} +While impedance and current loads could technically be added to the network, it is not possible to add a power load +on the same bus as the one we want to compute the short-circuit on. This is because having `I = (S/U)*` with `U=0` +is impossible. +``` + +```pycon +>>> import numpy as np +... from roseau.load_flow import * + +>>> # Create three buses +... source_bus = Bus(id="sb", phases="abcn") +... bus1 = Bus(id="b1", phases="abcn") +... bus2 = Bus(id="b2", phases="abcn") + +>>> # Define the reference of potentials +... ground = Ground(id="gnd") +... pref = PotentialRef(id="pref", element=ground) +... ground.connect(bus=source_bus) + +>>> # Create a LV source at the first bus +... un = 400 / np.sqrt(3) +... source_voltages = [un, un * np.exp(-2j * np.pi / 3), un * np.exp(2j * np.pi / 3)] +... vs = VoltageSource(id="vs", bus=source_bus, phases="abcn", voltages=source_voltages) + +>>> # Add LV lines +... lp1 = LineParameters.from_name_lv("U_AL_240") +... line1 = Line( +... id="line1", bus1=source_bus, bus2=bus1, parameters=lp1, length=1.0, ground=ground +... ) +... lp2 = LineParameters.from_name_lv("U_AL_150") +... line2 = Line(id="line2", bus1=bus1, bus2=bus2, parameters=lp2, length=2.0, ground=ground) + +>>> # Create network +... en = ElectricalNetwork.from_element(source_bus) +``` + +## Phase-to-phase + +We can now add a short-circuit. Let's first create a phase-to-phase short-circuit: + +```pycon +>>> bus2.add_short_circuit("a", "b") +``` + +Let's run the load flow, and get the current results. + +```{note} +All the following tables are rounded to 2 decimals to be properly displayed. +``` + +```pycon +>>> auth = ("username", "password") +>>> en.solve_load_flow(auth=auth) +1 +>>> en.res_branches +``` + +| branch_id | phase | current1 | current2 | power1 | power2 | potential1 | potential2 | +| :-------- | :---- | -------------: | -----------------: | -----------------: | ----------------------: | --------------: | ----------------: | +| line1 | a | 376.73+75.27j | -376.51-75.17j | 87001.18-17383.7j | -69627.17+24139.23j | 230.94+0j | 190.15-26.15j | +| line1 | b | -376.14-74.96j | 376.12+74.96j | 58424.25+66571.96j | -41140.25-59810.05j | -115.47-200j | -74.72-173.91j | +| line1 | c | -0.49-0.42j | 0.49+0.21j | -26.73-147j | -14.9+126.71j | -115.47+200j | -117.06+208.26j | +| line1 | n | -0.1+0.1j | -0.1-0j | 0j | -0.15+0.85j | 0j | 1.63-8.2j | +| line2 | a | 376.51+75.17j | **-376.45-74.93j** | 69627.17-24139.23j | **-14217.89+41992.79j** | 190.15-26.15j | **57.69-100.07j** | +| line2 | b | -376.12-74.96j | **376.45+74.93j** | 41140.25+59810.05j | **14217.89-41992.79j** | -74.72-173.91j | **57.69-100.07j** | +| line2 | c | -0.49-0.21j | 0j | 14.9-126.71j | 0j | -117.06+208.26j | -120.25+224.73j | +| line2 | n | 0.1+0j | 0j | 0.15-0.85j | 0j | 1.63-8.2j | 4.88-24.6j | + +Looking at the line results of the second bus of the line `line2`, which is `bus2` where we added the short-circuit, +one can notice that: + +- the potentials of phases "a" and "b" are equal; +- the currents and powers in phases "a" and "b" are equal with opposite signs, i.e. the sum of the currents is zero; +- the currents and powers in these two phases are very high; + +which is expected from a short-circuit. + +## Multi-phase + +It is possible to create short-circuits between several phases, not only two. Let's first remove the existing +short-circuit then create a new one between phases "a", "b", and "c". + +```pycon +>>> bus2.clear_short_circuits() +>>> bus2.add_short_circuit("a", "b", "c") +>>> en.solve_load_flow(auth=auth) +1 +>>> en.res_branches +``` + +| branch_id | phase | current1 | current2 | power1 | power2 | potential1 | potential2 | +| :-------- | :---- | --------------: | --------------: | -----------------: | ------------------: | -------------: | --------------: | +| line1 | a | 371.74-146.3j | -371.55+146.39j | 85849.16+33785.8j | -63525.86-24647.08j | 230.94-0j | 170.63-0.89j | +| line1 | b | -325.13-309.42j | 325.11+309.42j | 99425.41+29296.84j | -75755.17-20038.48j | -115.47-200j | -91.49-148.71j | +| line1 | c | -46.49+455.6j | 46.51-455.8j | 96487.77+43308.67j | -75409.92-31858.5j | -115.47+200j | -85.88+156.68j | +| line1 | n | -0.12+0.12j | -0.07-0.01j | 0j | -0.4+0.53j | 0j | 6.74-7.09j | +| line2 | a | 371.55-146.39j | -371.59+146.56j | 63525.86+24647.08j | 3541.55-1646.58j | 170.63-0.89j | **-6.74+7.09j** | +| line2 | b | -325.11-309.42j | 325.28+309.3j | 75755.17+20038.48j | 1.41+4388.76j | -91.49-148.71j | **-6.74+7.09j** | +| line2 | c | -46.51+455.8j | 46.31-455.86j | 75409.92+31858.5j | -3542.97-2742.18j | -85.88+156.68j | **-6.74+7.09j** | +| line2 | n | 0.07+0.01j | 0j | 0.4-0.53j | 0j | 6.74-7.09j | 20.21-21.26j | + +Now the potentials of the three phases are equal and the currents and powers add up to zero at the bus where the +short-circuit is applied. + +## Phase-to-ground + +Phase-to-ground short-circuits are also possible. Let's remove the existing short-circuit and create a new one +between phase "a" and ground. + +```pycon +>>> bus2.clear_short_circuits() +>>> # ground MUST be passed as a keyword argument +... bus2.add_short_circuit("a", ground=ground) +>>> en.solve_load_flow(auth=auth) +1 +>>> en.res_branches +``` + +| branch_id | phase | current1 | current2 | power1 | power2 | potential1 | potential2 | +| :-------- | :---- | ------------: | ------------: | -----------------: | ------------------: | --------------: | --------------: | +| line1 | a | 96.01-188.55j | -95.8+188.65j | 22173.17+43543.72j | -16858.71-29476.66j | 230.94+0j | 160.3-7.97j | +| line1 | b | 0.53-0.42j | -0.54+0.42j | 22.57-153.79j | -3.39+192.16j | -115.47-200j | -166.27-225.68j | +| line1 | c | -0.41-0.51j | 0.43+0.28j | -54.42-141.47j | -21.19+121.75j | -115.47+200j | -162.05+176.44j | +| line1 | n | -0.04-0.07j | -0.17+0.18j | 0j | 4.19+13.62j | 0j | -50.72-25.69j | +| line2 | a | 95.8-188.65j | -95.91+188.9j | 16858.71+29476.66j | 0j | 160.3-7.97j | **0j** | +| line2 | b | 0.54-0.42j | 0j | 3.39-192.16j | 0j | -166.27-225.68j | -267.74-277.02j | +| line2 | c | -0.43-0.28j | 0j | 21.19-121.75j | 0j | -162.05+176.44j | -255.11+129.31j | +| line2 | n | 0.17-0.18j | 0j | -4.19-13.62j | 0j | -50.72-25.69j | -152.11-77.04j | + +```pycon +>>> en.res_grounds +``` + +| ground_id | potential | +| :-------- | --------: | +| gnd | 0j | + +Here the potential at phase "a" of bus `bus2` is zero, equal to the ground potential. The sum of the currents in the +other phases is also zero indicating that the current of phase "a" went through the ground. + +## Additional notes + +The library will prevent the user from making mistakes, for example when trying to add a power load with the +short-circuit, or when forgetting parameters. + +```pycon +>>> try: +... load = PowerLoad("load", bus=bus2, powers=[10, 10, 10]) +... except RoseauLoadFlowException as e: +... print(e) +The power load 'load' is connected on bus 'b2' that already has a short-circuit. +It makes the short-circuit calculation impossible. [bad_short_circuit] +``` + +```pycon +>>> try: +... bus2.add_short_circuit("a") +... except RoseauLoadFlowException as e: +... print(e) +For the short-circuit on bus 'b2', at least two phases (or a phase and a ground) +should be given (only ('a',) is given). [bad_phase] +``` diff --git a/doc/usage/index.md b/doc/usage/index.md new file mode 100644 index 00000000..05695cd9 --- /dev/null +++ b/doc/usage/index.md @@ -0,0 +1,16 @@ +# Usage + +This section provides some tutorials to start using _Roseau_Load_Flow_: + +```{toctree} +--- +maxdepth: 2 +caption: Usage +--- +Getting_Started +Connecting_Elements +Flexible_Loads +Short_Circuit +Catalogues +Plotting +``` diff --git a/poetry.lock b/poetry.lock index 9791e1fa..e6021b73 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,30 +1,4 @@ -# This file is automatically @generated by Poetry 1.5.0 and should not be changed by hand. - -[[package]] -name = "aiofiles" -version = "22.1.0" -description = "File support for asyncio." -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "aiofiles-22.1.0-py3-none-any.whl", hash = "sha256:1142fa8e80dbae46bb6339573ad4c8c0841358f79c6eb50a493dceca14621bad"}, - {file = "aiofiles-22.1.0.tar.gz", hash = "sha256:9107f1ca0b2a5553987a94a3c9959fe5b491fdf731389aa5b7b1bd0733e32de6"}, -] - -[[package]] -name = "aiosqlite" -version = "0.19.0" -description = "asyncio bridge to the standard sqlite3 module" -optional = false -python-versions = ">=3.7" -files = [ - {file = "aiosqlite-0.19.0-py3-none-any.whl", hash = "sha256:edba222e03453e094a3ce605db1b970c4b3376264e56f32e2a4959f948d66a96"}, - {file = "aiosqlite-0.19.0.tar.gz", hash = "sha256:95ee77b91c8d2808bd08a59fbebf66270e9090c3d92ffbf260dc0db0b979577d"}, -] - -[package.extras] -dev = ["aiounittest (==1.4.1)", "attribution (==1.6.2)", "black (==23.3.0)", "coverage[toml] (==7.2.3)", "flake8 (==5.0.4)", "flake8-bugbear (==23.3.12)", "flit (==3.7.1)", "mypy (==1.2.0)", "ufmt (==2.1.0)", "usort (==1.0.6)"] -docs = ["sphinx (==6.1.3)", "sphinx-mdinclude (==0.5.3)"] +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "alabaster" @@ -38,26 +12,16 @@ files = [ ] [[package]] -name = "anyio" -version = "3.7.0" -description = "High level compatibility layer for multiple asynchronous event loop implementations" +name = "anyascii" +version = "0.3.2" +description = "Unicode to ASCII transliteration" optional = false -python-versions = ">=3.7" +python-versions = ">=3.3" files = [ - {file = "anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0"}, - {file = "anyio-3.7.0.tar.gz", hash = "sha256:275d9973793619a5374e1c89a4f4ad3f4b0a5510a2b5b939444bee8f4c4d37ce"}, + {file = "anyascii-0.3.2-py3-none-any.whl", hash = "sha256:3b3beef6fc43d9036d3b0529050b0c48bfad8bc960e9e562d7223cfb94fe45d4"}, + {file = "anyascii-0.3.2.tar.gz", hash = "sha256:9d5d32ef844fe225b8bc7cba7f950534fae4da27a9bf3a6bea2cb0ea46ce4730"}, ] -[package.dependencies] -exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" - -[package.extras] -doc = ["Sphinx (>=6.1.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme", "sphinxcontrib-jquery"] -test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (<0.22)"] - [[package]] name = "appnope" version = "0.1.3" @@ -69,85 +33,15 @@ files = [ {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, ] -[[package]] -name = "argon2-cffi" -version = "21.3.0" -description = "The secure Argon2 password hashing algorithm." -optional = false -python-versions = ">=3.6" -files = [ - {file = "argon2-cffi-21.3.0.tar.gz", hash = "sha256:d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b"}, - {file = "argon2_cffi-21.3.0-py3-none-any.whl", hash = "sha256:8c976986f2c5c0e5000919e6de187906cfd81fb1c72bf9d88c01177e77da7f80"}, -] - -[package.dependencies] -argon2-cffi-bindings = "*" - -[package.extras] -dev = ["cogapp", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "pre-commit", "pytest", "sphinx", "sphinx-notfound-page", "tomli"] -docs = ["furo", "sphinx", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pytest"] - -[[package]] -name = "argon2-cffi-bindings" -version = "21.2.0" -description = "Low-level CFFI bindings for Argon2" -optional = false -python-versions = ">=3.6" -files = [ - {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082"}, - {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f"}, - {file = "argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93"}, - {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3e385d1c39c520c08b53d63300c3ecc28622f076f4c2b0e6d7e796e9f6502194"}, - {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3e3cc67fdb7d82c4718f19b4e7a87123caf8a93fde7e23cf66ac0337d3cb3f"}, - {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a22ad9800121b71099d0fb0a65323810a15f2e292f2ba450810a7316e128ee5"}, - {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9f8b450ed0547e3d473fdc8612083fd08dd2120d6ac8f73828df9b7d45bb351"}, - {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:93f9bf70084f97245ba10ee36575f0c3f1e7d7724d67d8e5b08e61787c320ed7"}, - {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3b9ef65804859d335dc6b31582cad2c5166f0c3e7975f324d9ffaa34ee7e6583"}, - {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4966ef5848d820776f5f562a7d45fdd70c2f330c961d0d745b784034bd9f48d"}, - {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ef543a89dee4db46a1a6e206cd015360e5a75822f76df533845c3cbaf72670"}, - {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2937d286e2ad0cc79a7087d3c272832865f779430e0cc2b4f3718d3159b0cb"}, - {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5e00316dabdaea0b2dd82d141cc66889ced0cdcbfa599e8b471cf22c620c329a"}, -] - -[package.dependencies] -cffi = ">=1.0.1" - -[package.extras] -dev = ["cogapp", "pre-commit", "pytest", "wheel"] -tests = ["pytest"] - -[[package]] -name = "arrow" -version = "1.2.3" -description = "Better dates & times for Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "arrow-1.2.3-py3-none-any.whl", hash = "sha256:5a49ab92e3b7b71d96cd6bfcc4df14efefc9dfa96ea19045815914a6ab6b1fe2"}, - {file = "arrow-1.2.3.tar.gz", hash = "sha256:3934b30ca1b9f292376d9db15b19446088d12ec58629bc3f0da28fd55fb633a1"}, -] - -[package.dependencies] -python-dateutil = ">=2.7.0" - [[package]] name = "astroid" -version = "2.15.5" +version = "2.15.6" description = "An abstract syntax tree for Python with inference support." optional = false python-versions = ">=3.7.2" files = [ - {file = "astroid-2.15.5-py3-none-any.whl", hash = "sha256:078e5212f9885fa85fbb0cf0101978a336190aadea6e13305409d099f71b2324"}, - {file = "astroid-2.15.5.tar.gz", hash = "sha256:1039262575027b441137ab4a62a793a9b43defb42c32d5670f38686207cd780f"}, + {file = "astroid-2.15.6-py3-none-any.whl", hash = "sha256:389656ca57b6108f939cf5d2f9a2a825a3be50ba9d589670f393236e0a03b91c"}, + {file = "astroid-2.15.6.tar.gz", hash = "sha256:903f024859b7c7687d7a7f3a3f73b17301f8e42dfd9cc9df9d4418172d3e2dbd"}, ] [package.dependencies] @@ -235,36 +129,33 @@ lxml = ["lxml"] [[package]] name = "black" -version = "23.3.0" +version = "23.7.0" description = "The uncompromising code formatter." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "black-23.3.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:0945e13506be58bf7db93ee5853243eb368ace1c08a24c65ce108986eac65915"}, - {file = "black-23.3.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:67de8d0c209eb5b330cce2469503de11bca4085880d62f1628bd9972cc3366b9"}, - {file = "black-23.3.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:7c3eb7cea23904399866c55826b31c1f55bbcd3890ce22ff70466b907b6775c2"}, - {file = "black-23.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32daa9783106c28815d05b724238e30718f34155653d4d6e125dc7daec8e260c"}, - {file = "black-23.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:35d1381d7a22cc5b2be2f72c7dfdae4072a3336060635718cc7e1ede24221d6c"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:a8a968125d0a6a404842fa1bf0b349a568634f856aa08ffaff40ae0dfa52e7c6"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:c7ab5790333c448903c4b721b59c0d80b11fe5e9803d8703e84dcb8da56fec1b"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:a6f6886c9869d4daae2d1715ce34a19bbc4b95006d20ed785ca00fa03cba312d"}, - {file = "black-23.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f3c333ea1dd6771b2d3777482429864f8e258899f6ff05826c3a4fcc5ce3f70"}, - {file = "black-23.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:11c410f71b876f961d1de77b9699ad19f939094c3a677323f43d7a29855fe326"}, - {file = "black-23.3.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:1d06691f1eb8de91cd1b322f21e3bfc9efe0c7ca1f0e1eb1db44ea367dff656b"}, - {file = "black-23.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50cb33cac881766a5cd9913e10ff75b1e8eb71babf4c7104f2e9c52da1fb7de2"}, - {file = "black-23.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e114420bf26b90d4b9daa597351337762b63039752bdf72bf361364c1aa05925"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:48f9d345675bb7fbc3dd85821b12487e1b9a75242028adad0333ce36ed2a6d27"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:714290490c18fb0126baa0fca0a54ee795f7502b44177e1ce7624ba1c00f2331"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:064101748afa12ad2291c2b91c960be28b817c0c7eaa35bec09cc63aa56493c5"}, - {file = "black-23.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:562bd3a70495facf56814293149e51aa1be9931567474993c7942ff7d3533961"}, - {file = "black-23.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:e198cf27888ad6f4ff331ca1c48ffc038848ea9f031a3b40ba36aced7e22f2c8"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:3238f2aacf827d18d26db07524e44741233ae09a584273aa059066d644ca7b30"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:f0bd2f4a58d6666500542b26354978218a9babcdc972722f4bf90779524515f3"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:92c543f6854c28a3c7f39f4d9b7694f9a6eb9d3c5e2ece488c327b6e7ea9b266"}, - {file = "black-23.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a150542a204124ed00683f0db1f5cf1c2aaaa9cc3495b7a3b5976fb136090ab"}, - {file = "black-23.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:6b39abdfb402002b8a7d030ccc85cf5afff64ee90fa4c5aebc531e3ad0175ddb"}, - {file = "black-23.3.0-py3-none-any.whl", hash = "sha256:ec751418022185b0c1bb7d7736e6933d40bbb14c14a0abcf9123d1b159f98dd4"}, - {file = "black-23.3.0.tar.gz", hash = "sha256:1c7b8d606e728a41ea1ccbd7264677e494e87cf630e399262ced92d4a8dac940"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, ] [package.dependencies] @@ -284,215 +175,121 @@ d = ["aiohttp (>=3.7.4)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] uvloop = ["uvloop (>=0.15.2)"] -[[package]] -name = "bleach" -version = "6.0.0" -description = "An easy safelist-based HTML-sanitizing tool." -optional = false -python-versions = ">=3.7" -files = [ - {file = "bleach-6.0.0-py3-none-any.whl", hash = "sha256:33c16e3353dbd13028ab4799a0f89a83f113405c766e9c122df8a06f5b85b3f4"}, - {file = "bleach-6.0.0.tar.gz", hash = "sha256:1a1a85c1595e07d8db14c5f09f09e6433502c51c595970edc090551f0db99414"}, -] - -[package.dependencies] -six = ">=1.9.0" -webencodings = "*" - -[package.extras] -css = ["tinycss2 (>=1.1.0,<1.2)"] - [[package]] name = "certifi" -version = "2023.5.7" +version = "2023.7.22" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, -] - -[[package]] -name = "cffi" -version = "1.15.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = "*" -files = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, ] -[package.dependencies] -pycparser = "*" - [[package]] name = "cfgv" -version = "3.3.1" +version = "3.4.0" description = "Validate configuration and produce human readable error messages." optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.8" files = [ - {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, - {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, + {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, + {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, ] [[package]] name = "charset-normalizer" -version = "3.1.0" +version = "3.2.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, - {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, ] [[package]] name = "click" -version = "8.1.3" +version = "8.1.7" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, ] [package.dependencies] @@ -543,92 +340,65 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] -[[package]] -name = "comm" -version = "0.1.3" -description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." -optional = false -python-versions = ">=3.6" -files = [ - {file = "comm-0.1.3-py3-none-any.whl", hash = "sha256:16613c6211e20223f215fc6d3b266a247b6e2641bf4e0a3ad34cb1aff2aa3f37"}, - {file = "comm-0.1.3.tar.gz", hash = "sha256:a61efa9daffcfbe66fd643ba966f846a624e4e6d6767eda9cf6e993aadaab93e"}, -] - -[package.dependencies] -traitlets = ">=5.3" - -[package.extras] -lint = ["black (>=22.6.0)", "mdformat (>0.7)", "mdformat-gfm (>=0.3.5)", "ruff (>=0.0.156)"] -test = ["pytest"] -typing = ["mypy (>=0.990)"] - [[package]] name = "coverage" -version = "7.2.7" +version = "7.3.0" description = "Code coverage measurement for Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "coverage-7.2.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8"}, - {file = "coverage-7.2.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb"}, - {file = "coverage-7.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6"}, - {file = "coverage-7.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2"}, - {file = "coverage-7.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063"}, - {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1"}, - {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353"}, - {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495"}, - {file = "coverage-7.2.7-cp310-cp310-win32.whl", hash = "sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818"}, - {file = "coverage-7.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850"}, - {file = "coverage-7.2.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f"}, - {file = "coverage-7.2.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe"}, - {file = "coverage-7.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3"}, - {file = "coverage-7.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f"}, - {file = "coverage-7.2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb"}, - {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833"}, - {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97"}, - {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a"}, - {file = "coverage-7.2.7-cp311-cp311-win32.whl", hash = "sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a"}, - {file = "coverage-7.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562"}, - {file = "coverage-7.2.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4"}, - {file = "coverage-7.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4"}, - {file = "coverage-7.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01"}, - {file = "coverage-7.2.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6"}, - {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d"}, - {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de"}, - {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d"}, - {file = "coverage-7.2.7-cp312-cp312-win32.whl", hash = "sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511"}, - {file = "coverage-7.2.7-cp312-cp312-win_amd64.whl", hash = "sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3"}, - {file = "coverage-7.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f"}, - {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb"}, - {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9"}, - {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd"}, - {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a"}, - {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959"}, - {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02"}, - {file = "coverage-7.2.7-cp37-cp37m-win32.whl", hash = "sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f"}, - {file = "coverage-7.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0"}, - {file = "coverage-7.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5"}, - {file = "coverage-7.2.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5"}, - {file = "coverage-7.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9"}, - {file = "coverage-7.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6"}, - {file = "coverage-7.2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e"}, - {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050"}, - {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5"}, - {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f"}, - {file = "coverage-7.2.7-cp38-cp38-win32.whl", hash = "sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e"}, - {file = "coverage-7.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c"}, - {file = "coverage-7.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9"}, - {file = "coverage-7.2.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2"}, - {file = "coverage-7.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7"}, - {file = "coverage-7.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e"}, - {file = "coverage-7.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1"}, - {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9"}, - {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250"}, - {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2"}, - {file = "coverage-7.2.7-cp39-cp39-win32.whl", hash = "sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb"}, - {file = "coverage-7.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27"}, - {file = "coverage-7.2.7-pp37.pp38.pp39-none-any.whl", hash = "sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d"}, - {file = "coverage-7.2.7.tar.gz", hash = "sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59"}, + {file = "coverage-7.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db76a1bcb51f02b2007adacbed4c88b6dee75342c37b05d1822815eed19edee5"}, + {file = "coverage-7.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c02cfa6c36144ab334d556989406837336c1d05215a9bdf44c0bc1d1ac1cb637"}, + {file = "coverage-7.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:477c9430ad5d1b80b07f3c12f7120eef40bfbf849e9e7859e53b9c93b922d2af"}, + {file = "coverage-7.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce2ee86ca75f9f96072295c5ebb4ef2a43cecf2870b0ca5e7a1cbdd929cf67e1"}, + {file = "coverage-7.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68d8a0426b49c053013e631c0cdc09b952d857efa8f68121746b339912d27a12"}, + {file = "coverage-7.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b3eb0c93e2ea6445b2173da48cb548364f8f65bf68f3d090404080d338e3a689"}, + {file = "coverage-7.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:90b6e2f0f66750c5a1178ffa9370dec6c508a8ca5265c42fbad3ccac210a7977"}, + {file = "coverage-7.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:96d7d761aea65b291a98c84e1250cd57b5b51726821a6f2f8df65db89363be51"}, + {file = "coverage-7.3.0-cp310-cp310-win32.whl", hash = "sha256:63c5b8ecbc3b3d5eb3a9d873dec60afc0cd5ff9d9f1c75981d8c31cfe4df8527"}, + {file = "coverage-7.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:97c44f4ee13bce914272589b6b41165bbb650e48fdb7bd5493a38bde8de730a1"}, + {file = "coverage-7.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:74c160285f2dfe0acf0f72d425f3e970b21b6de04157fc65adc9fd07ee44177f"}, + {file = "coverage-7.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b543302a3707245d454fc49b8ecd2c2d5982b50eb63f3535244fd79a4be0c99d"}, + {file = "coverage-7.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad0f87826c4ebd3ef484502e79b39614e9c03a5d1510cfb623f4a4a051edc6fd"}, + {file = "coverage-7.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:13c6cbbd5f31211d8fdb477f0f7b03438591bdd077054076eec362cf2207b4a7"}, + {file = "coverage-7.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fac440c43e9b479d1241fe9d768645e7ccec3fb65dc3a5f6e90675e75c3f3e3a"}, + {file = "coverage-7.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3c9834d5e3df9d2aba0275c9f67989c590e05732439b3318fa37a725dff51e74"}, + {file = "coverage-7.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4c8e31cf29b60859876474034a83f59a14381af50cbe8a9dbaadbf70adc4b214"}, + {file = "coverage-7.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7a9baf8e230f9621f8e1d00c580394a0aa328fdac0df2b3f8384387c44083c0f"}, + {file = "coverage-7.3.0-cp311-cp311-win32.whl", hash = "sha256:ccc51713b5581e12f93ccb9c5e39e8b5d4b16776d584c0f5e9e4e63381356482"}, + {file = "coverage-7.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:887665f00ea4e488501ba755a0e3c2cfd6278e846ada3185f42d391ef95e7e70"}, + {file = "coverage-7.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d000a739f9feed900381605a12a61f7aaced6beae832719ae0d15058a1e81c1b"}, + {file = "coverage-7.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:59777652e245bb1e300e620ce2bef0d341945842e4eb888c23a7f1d9e143c446"}, + {file = "coverage-7.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9737bc49a9255d78da085fa04f628a310c2332b187cd49b958b0e494c125071"}, + {file = "coverage-7.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5247bab12f84a1d608213b96b8af0cbb30d090d705b6663ad794c2f2a5e5b9fe"}, + {file = "coverage-7.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2ac9a1de294773b9fa77447ab7e529cf4fe3910f6a0832816e5f3d538cfea9a"}, + {file = "coverage-7.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:85b7335c22455ec12444cec0d600533a238d6439d8d709d545158c1208483873"}, + {file = "coverage-7.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:36ce5d43a072a036f287029a55b5c6a0e9bd73db58961a273b6dc11a2c6eb9c2"}, + {file = "coverage-7.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:211a4576e984f96d9fce61766ffaed0115d5dab1419e4f63d6992b480c2bd60b"}, + {file = "coverage-7.3.0-cp312-cp312-win32.whl", hash = "sha256:56afbf41fa4a7b27f6635bc4289050ac3ab7951b8a821bca46f5b024500e6321"}, + {file = "coverage-7.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:7f297e0c1ae55300ff688568b04ff26b01c13dfbf4c9d2b7d0cb688ac60df479"}, + {file = "coverage-7.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac0dec90e7de0087d3d95fa0533e1d2d722dcc008bc7b60e1143402a04c117c1"}, + {file = "coverage-7.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:438856d3f8f1e27f8e79b5410ae56650732a0dcfa94e756df88c7e2d24851fcd"}, + {file = "coverage-7.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1084393c6bda8875c05e04fce5cfe1301a425f758eb012f010eab586f1f3905e"}, + {file = "coverage-7.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49ab200acf891e3dde19e5aa4b0f35d12d8b4bd805dc0be8792270c71bd56c54"}, + {file = "coverage-7.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a67e6bbe756ed458646e1ef2b0778591ed4d1fcd4b146fc3ba2feb1a7afd4254"}, + {file = "coverage-7.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8f39c49faf5344af36042b293ce05c0d9004270d811c7080610b3e713251c9b0"}, + {file = "coverage-7.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7df91fb24c2edaabec4e0eee512ff3bc6ec20eb8dccac2e77001c1fe516c0c84"}, + {file = "coverage-7.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:34f9f0763d5fa3035a315b69b428fe9c34d4fc2f615262d6be3d3bf3882fb985"}, + {file = "coverage-7.3.0-cp38-cp38-win32.whl", hash = "sha256:bac329371d4c0d456e8d5f38a9b0816b446581b5f278474e416ea0c68c47dcd9"}, + {file = "coverage-7.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:b859128a093f135b556b4765658d5d2e758e1fae3e7cc2f8c10f26fe7005e543"}, + {file = "coverage-7.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fc0ed8d310afe013db1eedd37176d0839dc66c96bcfcce8f6607a73ffea2d6ba"}, + {file = "coverage-7.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61260ec93f99f2c2d93d264b564ba912bec502f679793c56f678ba5251f0393"}, + {file = "coverage-7.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97af9554a799bd7c58c0179cc8dbf14aa7ab50e1fd5fa73f90b9b7215874ba28"}, + {file = "coverage-7.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3558e5b574d62f9c46b76120a5c7c16c4612dc2644c3d48a9f4064a705eaee95"}, + {file = "coverage-7.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37d5576d35fcb765fca05654f66aa71e2808d4237d026e64ac8b397ffa66a56a"}, + {file = "coverage-7.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:07ea61bcb179f8f05ffd804d2732b09d23a1238642bf7e51dad62082b5019b34"}, + {file = "coverage-7.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:80501d1b2270d7e8daf1b64b895745c3e234289e00d5f0e30923e706f110334e"}, + {file = "coverage-7.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4eddd3153d02204f22aef0825409091a91bf2a20bce06fe0f638f5c19a85de54"}, + {file = "coverage-7.3.0-cp39-cp39-win32.whl", hash = "sha256:2d22172f938455c156e9af2612650f26cceea47dc86ca048fa4e0b2d21646ad3"}, + {file = "coverage-7.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:60f64e2007c9144375dd0f480a54d6070f00bb1a28f65c408370544091c9bc9e"}, + {file = "coverage-7.3.0-pp38.pp39.pp310-none-any.whl", hash = "sha256:5492a6ce3bdb15c6ad66cb68a0244854d9917478877a25671d70378bdc8562d0"}, + {file = "coverage-7.3.0.tar.gz", hash = "sha256:49dbb19cdcafc130f597d9e04a29d0a032ceedf729e41b181f51cd170e6ee865"}, ] [package.dependencies] @@ -637,33 +407,6 @@ tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.1 [package.extras] toml = ["tomli"] -[[package]] -name = "debugpy" -version = "1.6.7" -description = "An implementation of the Debug Adapter Protocol for Python" -optional = false -python-versions = ">=3.7" -files = [ - {file = "debugpy-1.6.7-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:b3e7ac809b991006ad7f857f016fa92014445085711ef111fdc3f74f66144096"}, - {file = "debugpy-1.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3876611d114a18aafef6383695dfc3f1217c98a9168c1aaf1a02b01ec7d8d1e"}, - {file = "debugpy-1.6.7-cp310-cp310-win32.whl", hash = "sha256:33edb4afa85c098c24cc361d72ba7c21bb92f501104514d4ffec1fb36e09c01a"}, - {file = "debugpy-1.6.7-cp310-cp310-win_amd64.whl", hash = "sha256:ed6d5413474e209ba50b1a75b2d9eecf64d41e6e4501977991cdc755dc83ab0f"}, - {file = "debugpy-1.6.7-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:38ed626353e7c63f4b11efad659be04c23de2b0d15efff77b60e4740ea685d07"}, - {file = "debugpy-1.6.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:279d64c408c60431c8ee832dfd9ace7c396984fd7341fa3116aee414e7dcd88d"}, - {file = "debugpy-1.6.7-cp37-cp37m-win32.whl", hash = "sha256:dbe04e7568aa69361a5b4c47b4493d5680bfa3a911d1e105fbea1b1f23f3eb45"}, - {file = "debugpy-1.6.7-cp37-cp37m-win_amd64.whl", hash = "sha256:f90a2d4ad9a035cee7331c06a4cf2245e38bd7c89554fe3b616d90ab8aab89cc"}, - {file = "debugpy-1.6.7-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:5224eabbbeddcf1943d4e2821876f3e5d7d383f27390b82da5d9558fd4eb30a9"}, - {file = "debugpy-1.6.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bae1123dff5bfe548ba1683eb972329ba6d646c3a80e6b4c06cd1b1dd0205e9b"}, - {file = "debugpy-1.6.7-cp38-cp38-win32.whl", hash = "sha256:9cd10cf338e0907fdcf9eac9087faa30f150ef5445af5a545d307055141dd7a4"}, - {file = "debugpy-1.6.7-cp38-cp38-win_amd64.whl", hash = "sha256:aaf6da50377ff4056c8ed470da24632b42e4087bc826845daad7af211e00faad"}, - {file = "debugpy-1.6.7-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:0679b7e1e3523bd7d7869447ec67b59728675aadfc038550a63a362b63029d2c"}, - {file = "debugpy-1.6.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de86029696e1b3b4d0d49076b9eba606c226e33ae312a57a46dca14ff370894d"}, - {file = "debugpy-1.6.7-cp39-cp39-win32.whl", hash = "sha256:d71b31117779d9a90b745720c0eab54ae1da76d5b38c8026c654f4a066b0130a"}, - {file = "debugpy-1.6.7-cp39-cp39-win_amd64.whl", hash = "sha256:c0ff93ae90a03b06d85b2c529eca51ab15457868a377c4cc40a23ab0e4e552a3"}, - {file = "debugpy-1.6.7-py2.py3-none-any.whl", hash = "sha256:53f7a456bc50706a0eaabecf2d3ce44c4d5010e46dfc65b6b81a518b42866267"}, - {file = "debugpy-1.6.7.zip", hash = "sha256:c4c2f0810fa25323abfdfa36cbbbb24e5c3b1a42cb762782de64439c575d67f2"}, -] - [[package]] name = "decorator" version = "5.1.1" @@ -675,48 +418,37 @@ files = [ {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, ] -[[package]] -name = "defusedxml" -version = "0.7.1" -description = "XML bomb protection for Python stdlib modules" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, - {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, -] - [[package]] name = "distlib" -version = "0.3.6" +version = "0.3.7" description = "Distribution utilities" optional = false python-versions = "*" files = [ - {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, - {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, + {file = "distlib-0.3.7-py2.py3-none-any.whl", hash = "sha256:2e24928bc811348f0feb63014e97aaae3037f2cf48712d51ae61df7fd6075057"}, + {file = "distlib-0.3.7.tar.gz", hash = "sha256:9dafe54b34a028eafd95039d5e5d4851a13734540f1331060d31c9916e7147a8"}, ] [[package]] name = "docutils" -version = "0.19" +version = "0.20.1" description = "Docutils -- Python Documentation Utilities" optional = false python-versions = ">=3.7" files = [ - {file = "docutils-0.19-py3-none-any.whl", hash = "sha256:5e1de4d849fee02c63b040a4a3fd567f4ab104defd8a5511fbbc24a8a017efbc"}, - {file = "docutils-0.19.tar.gz", hash = "sha256:33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6"}, + {file = "docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6"}, + {file = "docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"}, ] [[package]] name = "exceptiongroup" -version = "1.1.1" +version = "1.1.3" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, - {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, + {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, + {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, ] [package.extras] @@ -724,17 +456,17 @@ test = ["pytest (>=6)"] [[package]] name = "execnet" -version = "1.9.0" +version = "2.0.2" description = "execnet: rapid multi-Python deployment" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" files = [ - {file = "execnet-1.9.0-py2.py3-none-any.whl", hash = "sha256:a295f7cc774947aac58dde7fdc85f4aa00c42adf5d8f5468fc630c1acf30a142"}, - {file = "execnet-1.9.0.tar.gz", hash = "sha256:8f694f3ba9cc92cab508b152dcfe322153975c29bda272e2fd7f3f00f36e47c5"}, + {file = "execnet-2.0.2-py3-none-any.whl", hash = "sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41"}, + {file = "execnet-2.0.2.tar.gz", hash = "sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af"}, ] [package.extras] -testing = ["pre-commit"] +testing = ["hatch", "pre-commit", "pytest", "tox"] [[package]] name = "executing" @@ -750,34 +482,23 @@ files = [ [package.extras] tests = ["asttokens", "littleutils", "pytest", "rich"] -[[package]] -name = "fastjsonschema" -version = "2.17.1" -description = "Fastest Python implementation of JSON schema" -optional = false -python-versions = "*" -files = [ - {file = "fastjsonschema-2.17.1-py3-none-any.whl", hash = "sha256:4b90b252628ca695280924d863fe37234eebadc29c5360d322571233dc9746e0"}, - {file = "fastjsonschema-2.17.1.tar.gz", hash = "sha256:f4eeb8a77cef54861dbf7424ac8ce71306f12cbb086c45131bcba2c6a4f726e3"}, -] - -[package.extras] -devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"] - [[package]] name = "filelock" -version = "3.12.0" +version = "3.12.3" description = "A platform independent file lock." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "filelock-3.12.0-py3-none-any.whl", hash = "sha256:ad98852315c2ab702aeb628412cbf7e95b7ce8c3bf9565670b4eaecf1db370a9"}, - {file = "filelock-3.12.0.tar.gz", hash = "sha256:fc03ae43288c013d2ea83c8597001b1129db351aad9c57fe2409327916b8e718"}, + {file = "filelock-3.12.3-py3-none-any.whl", hash = "sha256:f067e40ccc40f2b48395a80fcbd4728262fab54e232e090a4063ab804179efeb"}, + {file = "filelock-3.12.3.tar.gz", hash = "sha256:0ecc1dd2ec4672a10c8550a8182f1bd0c0a5088470ecd5a125e45f49472fac3d"}, ] +[package.dependencies] +typing-extensions = {version = ">=4.7.1", markers = "python_version < \"3.11\""} + [package.extras] -docs = ["furo (>=2023.3.27)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] +docs = ["furo (>=2023.7.26)", "sphinx (>=7.1.2)", "sphinx-autodoc-typehints (>=1.24)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.3)", "diff-cover (>=7.7)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)", "pytest-timeout (>=2.1)"] [[package]] name = "fiona" @@ -823,26 +544,15 @@ calc = ["shapely"] s3 = ["boto3 (>=1.3.1)"] test = ["Fiona[s3]", "pytest (>=7)", "pytest-cov", "pytz"] -[[package]] -name = "fqdn" -version = "1.5.1" -description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" -optional = false -python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" -files = [ - {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, - {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, -] - [[package]] name = "furo" -version = "2023.5.20" +version = "2023.8.19" description = "A clean customisable Sphinx documentation theme." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "furo-2023.5.20-py3-none-any.whl", hash = "sha256:594a8436ddfe0c071f3a9e9a209c314a219d8341f3f1af33fdf7c69544fab9e6"}, - {file = "furo-2023.5.20.tar.gz", hash = "sha256:40e09fa17c6f4b22419d122e933089226dcdb59747b5b6c79363089827dea16f"}, + {file = "furo-2023.8.19-py3-none-any.whl", hash = "sha256:12f99f87a1873b6746228cfde18f77244e6c1ffb85d7fed95e638aae70d80590"}, + {file = "furo-2023.8.19.tar.gz", hash = "sha256:e671ee638ab3f1b472f4033b0167f502ab407830e0db0f843b1c1028119c9cd1"}, ] [package.dependencies] @@ -853,13 +563,13 @@ sphinx-basic-ng = "*" [[package]] name = "geopandas" -version = "0.13.0" +version = "0.13.2" description = "Geographic pandas extensions" optional = false python-versions = ">=3.8" files = [ - {file = "geopandas-0.13.0-py3-none-any.whl", hash = "sha256:2a5d7f2dfa46c6679ca2d2358b49420be08bab31a7882b500bdb2ae8be40603a"}, - {file = "geopandas-0.13.0.tar.gz", hash = "sha256:330b5a3faf8062efc6f424bf339f6e88f835b846027b48241d37da9b7c7b2485"}, + {file = "geopandas-0.13.2-py3-none-any.whl", hash = "sha256:101cfd0de54bcf9e287a55b5ea17ebe0db53a5e25a28bacf100143d0507cabd9"}, + {file = "geopandas-0.13.2.tar.gz", hash = "sha256:e5b56d9c20800c77bcc0c914db3f27447a37b23b2cd892be543f5001a694a968"}, ] [package.dependencies] @@ -871,13 +581,13 @@ shapely = ">=1.7.1" [[package]] name = "identify" -version = "2.5.24" +version = "2.5.27" description = "File identification library for Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "identify-2.5.24-py2.py3-none-any.whl", hash = "sha256:986dbfb38b1140e763e413e6feb44cd731faf72d1909543178aa79b0e258265d"}, - {file = "identify-2.5.24.tar.gz", hash = "sha256:0aac67d5b4812498056d28a9a512a483f5085cc28640b02b258a59dac34301d4"}, + {file = "identify-2.5.27-py2.py3-none-any.whl", hash = "sha256:fdb527b2dfe24602809b2201e033c2a113d7bdf716db3ca8e3243f735dcecaba"}, + {file = "identify-2.5.27.tar.gz", hash = "sha256:287b75b04a0e22d727bc9a41f0d4f3c1bcada97490fa6eabb5b28f0e9097e733"}, ] [package.extras] @@ -907,13 +617,13 @@ files = [ [[package]] name = "importlib-metadata" -version = "6.6.0" +version = "6.8.0" description = "Read metadata from Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "importlib_metadata-6.6.0-py3-none-any.whl", hash = "sha256:43dd286a2cd8995d5eaef7fee2066340423b818ed3fd70adf0bad5f1fac53fed"}, - {file = "importlib_metadata-6.6.0.tar.gz", hash = "sha256:92501cdf9cc66ebd3e612f1b4f0c0765dfa42f0fa38ffb319b6bd84dd675d705"}, + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, ] [package.dependencies] @@ -922,7 +632,7 @@ zipp = ">=0.5" [package.extras] docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] -testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] [[package]] name = "iniconfig" @@ -935,39 +645,6 @@ files = [ {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, ] -[[package]] -name = "ipykernel" -version = "6.23.1" -description = "IPython Kernel for Jupyter" -optional = false -python-versions = ">=3.8" -files = [ - {file = "ipykernel-6.23.1-py3-none-any.whl", hash = "sha256:77aeffab056c21d16f1edccdc9e5ccbf7d96eb401bd6703610a21be8b068aadc"}, - {file = "ipykernel-6.23.1.tar.gz", hash = "sha256:1aba0ae8453e15e9bc6b24e497ef6840114afcdb832ae597f32137fa19d42a6f"}, -] - -[package.dependencies] -appnope = {version = "*", markers = "platform_system == \"Darwin\""} -comm = ">=0.1.1" -debugpy = ">=1.6.5" -ipython = ">=7.23.1" -jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -matplotlib-inline = ">=0.1" -nest-asyncio = "*" -packaging = "*" -psutil = "*" -pyzmq = ">=20" -tornado = ">=6.1" -traitlets = ">=5.4.0" - -[package.extras] -cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] -pyqt5 = ["pyqt5"] -pyside6 = ["pyside6"] -test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov", "pytest-timeout"] - [[package]] name = "ipython" version = "8.14.0" @@ -1007,69 +684,23 @@ qtconsole = ["qtconsole"] test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] -[[package]] -name = "ipython-genutils" -version = "0.2.0" -description = "Vestigial utilities from IPython" -optional = false -python-versions = "*" -files = [ - {file = "ipython_genutils-0.2.0-py2.py3-none-any.whl", hash = "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8"}, - {file = "ipython_genutils-0.2.0.tar.gz", hash = "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"}, -] - -[[package]] -name = "ipywidgets" -version = "8.0.6" -description = "Jupyter interactive widgets" -optional = false -python-versions = ">=3.7" -files = [ - {file = "ipywidgets-8.0.6-py3-none-any.whl", hash = "sha256:a60bf8d2528997e05ac83fd19ea2fbe65f2e79fbe1b2b35779bdfc46c2941dcc"}, - {file = "ipywidgets-8.0.6.tar.gz", hash = "sha256:de7d779f2045d60de9f6c25f653fdae2dba57898e6a1284494b3ba20b6893bb8"}, -] - -[package.dependencies] -ipykernel = ">=4.5.1" -ipython = ">=6.1.0" -jupyterlab-widgets = ">=3.0.7,<3.1.0" -traitlets = ">=4.3.1" -widgetsnbextension = ">=4.0.7,<4.1.0" - -[package.extras] -test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] - -[[package]] -name = "isoduration" -version = "20.11.0" -description = "Operations with ISO 8601 durations" -optional = false -python-versions = ">=3.7" -files = [ - {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, - {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, -] - -[package.dependencies] -arrow = ">=0.15.0" - [[package]] name = "jedi" -version = "0.18.2" +version = "0.19.0" description = "An autocompletion tool for Python that can be used for text editors." optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.18.2-py2.py3-none-any.whl", hash = "sha256:203c1fd9d969ab8f2119ec0a3342e0b49910045abe6af0a3ae83a5764d54639e"}, - {file = "jedi-0.18.2.tar.gz", hash = "sha256:bae794c30d07f6d910d32a7048af09b5a39ed740918da923c6b780790ebac612"}, + {file = "jedi-0.19.0-py2.py3-none-any.whl", hash = "sha256:cb8ce23fbccff0025e9386b5cf85e892f94c9b822378f8da49970471335ac64e"}, + {file = "jedi-0.19.0.tar.gz", hash = "sha256:bcf9894f1753969cbac8022a8c2eaee06bfa3724e4192470aaffe7eb6272b0c4"}, ] [package.dependencies] -parso = ">=0.8.0,<0.9.0" +parso = ">=0.8.3,<0.9.0" [package.extras] docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] @@ -1090,366 +721,18 @@ MarkupSafe = ">=2.0" i18n = ["Babel (>=2.7)"] [[package]] -name = "json5" -version = "0.9.14" -description = "A Python implementation of the JSON5 data format." -optional = false -python-versions = "*" -files = [ - {file = "json5-0.9.14-py2.py3-none-any.whl", hash = "sha256:740c7f1b9e584a468dbb2939d8d458db3427f2c93ae2139d05f47e453eae964f"}, - {file = "json5-0.9.14.tar.gz", hash = "sha256:9ed66c3a6ca3510a976a9ef9b8c0787de24802724ab1860bc0153c7fdd589b02"}, -] - -[package.extras] -dev = ["hypothesis"] - -[[package]] -name = "jsonpointer" -version = "2.3" -description = "Identify specific nodes in a JSON document (RFC 6901)" +name = "latexcodec" +version = "2.0.1" +description = "A lexer and codec to work with LaTeX code in Python." optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ - {file = "jsonpointer-2.3-py2.py3-none-any.whl", hash = "sha256:51801e558539b4e9cd268638c078c6c5746c9ac96bc38152d443400e4f3793e9"}, - {file = "jsonpointer-2.3.tar.gz", hash = "sha256:97cba51526c829282218feb99dab1b1e6bdf8efd1c43dc9d57be093c0d69c99a"}, -] - -[[package]] -name = "jsonschema" -version = "4.17.3" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, - {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} -idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} -isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} -jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} -pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" -rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} -rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} -uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} -webcolors = {version = ">=1.11", optional = true, markers = "extra == \"format-nongpl\""} - -[package.extras] -format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] - -[[package]] -name = "jupyter" -version = "1.0.0" -description = "Jupyter metapackage. Install all the Jupyter components in one go." -optional = false -python-versions = "*" -files = [ - {file = "jupyter-1.0.0-py2.py3-none-any.whl", hash = "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"}, - {file = "jupyter-1.0.0.tar.gz", hash = "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"}, - {file = "jupyter-1.0.0.zip", hash = "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"}, -] - -[package.dependencies] -ipykernel = "*" -ipywidgets = "*" -jupyter-console = "*" -nbconvert = "*" -notebook = "*" -qtconsole = "*" - -[[package]] -name = "jupyter-client" -version = "8.2.0" -description = "Jupyter protocol implementation and client libraries" -optional = false -python-versions = ">=3.8" -files = [ - {file = "jupyter_client-8.2.0-py3-none-any.whl", hash = "sha256:b18219aa695d39e2ad570533e0d71fb7881d35a873051054a84ee2a17c4b7389"}, - {file = "jupyter_client-8.2.0.tar.gz", hash = "sha256:9fe233834edd0e6c0aa5f05ca2ab4bdea1842bfd2d8a932878212fc5301ddaf0"}, -] - -[package.dependencies] -importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -python-dateutil = ">=2.8.2" -pyzmq = ">=23.0" -tornado = ">=6.2" -traitlets = ">=5.3" - -[package.extras] -docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] - -[[package]] -name = "jupyter-console" -version = "6.6.3" -description = "Jupyter terminal console" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485"}, - {file = "jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539"}, -] - -[package.dependencies] -ipykernel = ">=6.14" -ipython = "*" -jupyter-client = ">=7.0.0" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -prompt-toolkit = ">=3.0.30" -pygments = "*" -pyzmq = ">=17" -traitlets = ">=5.4" - -[package.extras] -test = ["flaky", "pexpect", "pytest"] - -[[package]] -name = "jupyter-core" -version = "5.3.0" -description = "Jupyter core package. A base package on which Jupyter projects rely." -optional = false -python-versions = ">=3.8" -files = [ - {file = "jupyter_core-5.3.0-py3-none-any.whl", hash = "sha256:d4201af84559bc8c70cead287e1ab94aeef3c512848dde077b7684b54d67730d"}, - {file = "jupyter_core-5.3.0.tar.gz", hash = "sha256:6db75be0c83edbf1b7c9f91ec266a9a24ef945da630f3120e1a0046dc13713fc"}, + {file = "latexcodec-2.0.1-py2.py3-none-any.whl", hash = "sha256:c277a193638dc7683c4c30f6684e3db728a06efb0dc9cf346db8bd0aa6c5d271"}, + {file = "latexcodec-2.0.1.tar.gz", hash = "sha256:2aa2551c373261cefe2ad3a8953a6d6533e68238d180eb4bb91d7964adb3fe9a"}, ] [package.dependencies] -platformdirs = ">=2.5" -pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = ">=5.3" - -[package.extras] -docs = ["myst-parser", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] -test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] - -[[package]] -name = "jupyter-events" -version = "0.6.3" -description = "Jupyter Event System library" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyter_events-0.6.3-py3-none-any.whl", hash = "sha256:57a2749f87ba387cd1bfd9b22a0875b889237dbf2edc2121ebb22bde47036c17"}, - {file = "jupyter_events-0.6.3.tar.gz", hash = "sha256:9a6e9995f75d1b7146b436ea24d696ce3a35bfa8bfe45e0c33c334c79464d0b3"}, -] - -[package.dependencies] -jsonschema = {version = ">=3.2.0", extras = ["format-nongpl"]} -python-json-logger = ">=2.0.4" -pyyaml = ">=5.3" -rfc3339-validator = "*" -rfc3986-validator = ">=0.1.1" -traitlets = ">=5.3" - -[package.extras] -cli = ["click", "rich"] -docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] -test = ["click", "coverage", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "pytest-cov", "rich"] - -[[package]] -name = "jupyter-server" -version = "2.6.0" -description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." -optional = false -python-versions = ">=3.8" -files = [ - {file = "jupyter_server-2.6.0-py3-none-any.whl", hash = "sha256:19525a1515b5999618a91b3e99ec9f6869aa8c5ba73e0b6279fcda918b54ba36"}, - {file = "jupyter_server-2.6.0.tar.gz", hash = "sha256:ae4af349f030ed08dd78cb7ac1a03a92d886000380c9ea6283f3c542a81f4b06"}, -] - -[package.dependencies] -anyio = ">=3.1.0" -argon2-cffi = "*" -jinja2 = "*" -jupyter-client = ">=7.4.4" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -jupyter-events = ">=0.6.0" -jupyter-server-terminals = "*" -nbconvert = ">=6.4.4" -nbformat = ">=5.3.0" -overrides = "*" -packaging = "*" -prometheus-client = "*" -pywinpty = {version = "*", markers = "os_name == \"nt\""} -pyzmq = ">=24" -send2trash = "*" -terminado = ">=0.8.3" -tornado = ">=6.2.0" -traitlets = ">=5.6.0" -websocket-client = "*" - -[package.extras] -docs = ["ipykernel", "jinja2", "jupyter-client", "jupyter-server", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi (>=0.8.0)", "sphinxcontrib-spelling", "sphinxemoji", "tornado", "typing-extensions"] -test = ["ipykernel", "pre-commit", "pytest (>=7.0)", "pytest-console-scripts", "pytest-jupyter[server] (>=0.4)", "pytest-timeout", "requests"] - -[[package]] -name = "jupyter-server-fileid" -version = "0.9.0" -description = "" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyter_server_fileid-0.9.0-py3-none-any.whl", hash = "sha256:5b489c6fe6783c41174a728c7b81099608518387e53c3d53451a67f46a0cb7b0"}, - {file = "jupyter_server_fileid-0.9.0.tar.gz", hash = "sha256:171538b7c7d08d11dbc57d4e6da196e0c258e4c2cd29249ef1e032bb423677f8"}, -] - -[package.dependencies] -jupyter-events = ">=0.5.0" -jupyter-server = ">=1.15,<3" - -[package.extras] -cli = ["click"] -test = ["jupyter-server[test] (>=1.15,<3)", "pytest", "pytest-cov"] - -[[package]] -name = "jupyter-server-terminals" -version = "0.4.4" -description = "A Jupyter Server Extension Providing Terminals." -optional = false -python-versions = ">=3.8" -files = [ - {file = "jupyter_server_terminals-0.4.4-py3-none-any.whl", hash = "sha256:75779164661cec02a8758a5311e18bb8eb70c4e86c6b699403100f1585a12a36"}, - {file = "jupyter_server_terminals-0.4.4.tar.gz", hash = "sha256:57ab779797c25a7ba68e97bcfb5d7740f2b5e8a83b5e8102b10438041a7eac5d"}, -] - -[package.dependencies] -pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""} -terminado = ">=0.8.3" - -[package.extras] -docs = ["jinja2", "jupyter-server", "mistune (<3.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] -test = ["coverage", "jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-cov", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout"] - -[[package]] -name = "jupyter-server-ydoc" -version = "0.8.0" -description = "A Jupyter Server Extension Providing Y Documents." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyter_server_ydoc-0.8.0-py3-none-any.whl", hash = "sha256:969a3a1a77ed4e99487d60a74048dc9fa7d3b0dcd32e60885d835bbf7ba7be11"}, - {file = "jupyter_server_ydoc-0.8.0.tar.gz", hash = "sha256:a6fe125091792d16c962cc3720c950c2b87fcc8c3ecf0c54c84e9a20b814526c"}, -] - -[package.dependencies] -jupyter-server-fileid = ">=0.6.0,<1" -jupyter-ydoc = ">=0.2.0,<0.4.0" -ypy-websocket = ">=0.8.2,<0.9.0" - -[package.extras] -test = ["coverage", "jupyter-server[test] (>=2.0.0a0)", "pytest (>=7.0)", "pytest-cov", "pytest-timeout", "pytest-tornasync"] - -[[package]] -name = "jupyter-ydoc" -version = "0.2.4" -description = "Document structures for collaborative editing using Ypy" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyter_ydoc-0.2.4-py3-none-any.whl", hash = "sha256:d1a51c73ead6f6417bec0450f53c577a66abe8d43e9c2d8a1acaf7a17259f843"}, - {file = "jupyter_ydoc-0.2.4.tar.gz", hash = "sha256:a3f670a69135e90493ffb91d6788efe2632bf42c6cc42a25f25c2e6eddd55a0e"}, -] - -[package.dependencies] -importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} -y-py = ">=0.5.3,<0.6.0" - -[package.extras] -dev = ["click", "jupyter-releaser"] -test = ["pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)", "ypy-websocket (>=0.3.1,<0.4.0)"] - -[[package]] -name = "jupyterlab" -version = "3.6.4" -description = "JupyterLab computational environment" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyterlab-3.6.4-py3-none-any.whl", hash = "sha256:8a4e495a096ae2315af2b07acaac9d38917b6927ebd891834ddf83b28f53e881"}, - {file = "jupyterlab-3.6.4.tar.gz", hash = "sha256:862fb4a06c759a9b0a12de6bf434a8681a42e52fff0593c120e3fbad6847889f"}, -] - -[package.dependencies] -ipython = "*" -jinja2 = ">=2.1" -jupyter-core = "*" -jupyter-server = ">=1.16.0,<3" -jupyter-server-ydoc = ">=0.8.0,<0.9.0" -jupyter-ydoc = ">=0.2.4,<0.3.0" -jupyterlab-server = ">=2.19,<3.0" -nbclassic = "*" -notebook = "<7" -packaging = "*" -tomli = {version = "*", markers = "python_version < \"3.11\""} -tornado = ">=6.1.0" - -[package.extras] -test = ["check-manifest", "coverage", "jupyterlab-server[test]", "pre-commit", "pytest (>=6.0)", "pytest-check-links (>=0.5)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "requests", "requests-cache", "virtualenv"] - -[[package]] -name = "jupyterlab-language-pack-fr-fr" -version = "3.6.post3" -description = "JupyterLab French (France) Language Pack" -optional = false -python-versions = "*" -files = [ - {file = "jupyterlab_language_pack_fr_fr-3.6.post3-py2.py3-none-any.whl", hash = "sha256:a31bb4abe59723297d1e4045cc4bafdce4f667f466ed052ba459d5d0a10a3999"}, - {file = "jupyterlab_language_pack_fr_fr-3.6.post3.tar.gz", hash = "sha256:f00a804a7004942ddc262ae10163c78c06bddbfcfb4c186cf2ead5894e6a8e55"}, -] - -[[package]] -name = "jupyterlab-pygments" -version = "0.2.2" -description = "Pygments theme using JupyterLab CSS variables" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyterlab_pygments-0.2.2-py2.py3-none-any.whl", hash = "sha256:2405800db07c9f770863bcf8049a529c3dd4d3e28536638bd7c1c01d2748309f"}, - {file = "jupyterlab_pygments-0.2.2.tar.gz", hash = "sha256:7405d7fde60819d905a9fa8ce89e4cd830e318cdad22a0030f7a901da705585d"}, -] - -[[package]] -name = "jupyterlab-server" -version = "2.22.1" -description = "A set of server components for JupyterLab and JupyterLab like applications." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyterlab_server-2.22.1-py3-none-any.whl", hash = "sha256:1c8eb55c7cd70a50a51fef42a7b4e26ef2f7fc48728f0290604bd89b1dd156e6"}, - {file = "jupyterlab_server-2.22.1.tar.gz", hash = "sha256:dfaaf898af84b9d01ae9583b813f378b96ee90c3a66f24c5186ea5d1bbdb2089"}, -] - -[package.dependencies] -babel = ">=2.10" -importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jinja2 = ">=3.0.3" -json5 = ">=0.9.0" -jsonschema = ">=4.17.3" -jupyter-server = ">=1.21,<3" -packaging = ">=21.3" -requests = ">=2.28" - -[package.extras] -docs = ["autodoc-traits", "docutils (<0.20)", "jinja2 (<3.2.0)", "mistune (<3)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi"] -openapi = ["openapi-core (>=0.16.1,<0.17.0)", "ruamel-yaml"] -test = ["hatch", "ipykernel", "jupyterlab-server[openapi]", "openapi-spec-validator (>=0.5.1,<0.6.0)", "pytest (>=7.0)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] - -[[package]] -name = "jupyterlab-widgets" -version = "3.0.7" -description = "Jupyter interactive widgets for JupyterLab" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jupyterlab_widgets-3.0.7-py3-none-any.whl", hash = "sha256:c73f8370338ec19f1bec47254752d6505b03601cbd5a67e6a0b184532f73a459"}, - {file = "jupyterlab_widgets-3.0.7.tar.gz", hash = "sha256:c3a50ed5bf528a0c7a869096503af54702f86dda1db469aee1c92dc0c01b43ca"}, -] +six = ">=1.4.1" [[package]] name = "lazy-object-proxy" @@ -1498,13 +781,13 @@ files = [ [[package]] name = "markdown-it-py" -version = "2.2.0" +version = "3.0.0" description = "Python port of markdown-it. Markdown parsing, done right!" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "markdown-it-py-2.2.0.tar.gz", hash = "sha256:7c9a5e412688bc771c67432cbfebcdd686c93ce6484913dccf06cb5a0bea35a1"}, - {file = "markdown_it_py-2.2.0-py3-none-any.whl", hash = "sha256:5a35f8d1870171d9acc47b99612dc146129b631baf04970128b568f190d0cc30"}, + {file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"}, + {file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"}, ] [package.dependencies] @@ -1517,7 +800,7 @@ compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0 linkify = ["linkify-it-py (>=1,<3)"] plugins = ["mdit-py-plugins"] profiling = ["gprof2dot"] -rtd = ["attrs", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] +rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] @@ -1595,21 +878,21 @@ traitlets = "*" [[package]] name = "mdit-py-plugins" -version = "0.3.5" +version = "0.4.0" description = "Collection of plugins for markdown-it-py" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mdit-py-plugins-0.3.5.tar.gz", hash = "sha256:eee0adc7195e5827e17e02d2a258a2ba159944a0748f59c5099a4a27f78fcf6a"}, - {file = "mdit_py_plugins-0.3.5-py3-none-any.whl", hash = "sha256:ca9a0714ea59a24b2b044a1831f48d817dd0c817e84339f20e7889f392d77c4e"}, + {file = "mdit_py_plugins-0.4.0-py3-none-any.whl", hash = "sha256:b51b3bb70691f57f974e257e367107857a93b36f322a9e6d44ca5bf28ec2def9"}, + {file = "mdit_py_plugins-0.4.0.tar.gz", hash = "sha256:d8ab27e9aed6c38aa716819fedfde15ca275715955f8a185a8e1cf90fb1d2c1b"}, ] [package.dependencies] -markdown-it-py = ">=1.0.0,<3.0.0" +markdown-it-py = ">=1.0.0,<4.0.0" [package.extras] code-style = ["pre-commit"] -rtd = ["attrs", "myst-parser (>=0.16.1,<0.17.0)", "sphinx-book-theme (>=0.1.0,<0.2.0)"] +rtd = ["myst-parser", "sphinx-book-theme"] testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] @@ -1623,17 +906,6 @@ files = [ {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, ] -[[package]] -name = "mistune" -version = "2.0.5" -description = "A sane Markdown parser with useful plugins and renderers" -optional = false -python-versions = "*" -files = [ - {file = "mistune-2.0.5-py2.py3-none-any.whl", hash = "sha256:bad7f5d431886fcbaf5f758118ecff70d31f75231b34024a1341120340a65ce8"}, - {file = "mistune-2.0.5.tar.gz", hash = "sha256:0246113cb2492db875c6be56974a7c893333bf26cd92891c85f63151cee09d34"}, -] - [[package]] name = "mypy-extensions" version = "1.0.0" @@ -1647,176 +919,30 @@ files = [ [[package]] name = "myst-parser" -version = "1.0.0" +version = "2.0.0" description = "An extended [CommonMark](https://spec.commonmark.org/) compliant parser," optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "myst-parser-1.0.0.tar.gz", hash = "sha256:502845659313099542bd38a2ae62f01360e7dd4b1310f025dd014dfc0439cdae"}, - {file = "myst_parser-1.0.0-py3-none-any.whl", hash = "sha256:69fb40a586c6fa68995e6521ac0a525793935db7e724ca9bac1d33be51be9a4c"}, + {file = "myst_parser-2.0.0-py3-none-any.whl", hash = "sha256:7c36344ae39c8e740dad7fdabf5aa6fc4897a813083c6cc9990044eb93656b14"}, + {file = "myst_parser-2.0.0.tar.gz", hash = "sha256:ea929a67a6a0b1683cdbe19b8d2e724cd7643f8aa3e7bb18dd65beac3483bead"}, ] [package.dependencies] -docutils = ">=0.15,<0.20" +docutils = ">=0.16,<0.21" jinja2 = "*" -markdown-it-py = ">=1.0.0,<3.0.0" -mdit-py-plugins = ">=0.3.4,<0.4.0" +markdown-it-py = ">=3.0,<4.0" +mdit-py-plugins = ">=0.4,<1.0" pyyaml = "*" -sphinx = ">=5,<7" +sphinx = ">=6,<8" [package.extras] code-style = ["pre-commit (>=3.0,<4.0)"] -linkify = ["linkify-it-py (>=1.0,<2.0)"] -rtd = ["ipython", "pydata-sphinx-theme (==v0.13.0rc4)", "sphinx-autodoc2 (>=0.4.2,<0.5.0)", "sphinx-book-theme (==1.0.0rc2)", "sphinx-copybutton", "sphinx-design2", "sphinx-pyscript", "sphinx-tippy (>=0.3.1)", "sphinx-togglebutton", "sphinxext-opengraph (>=0.7.5,<0.8.0)", "sphinxext-rediraffe (>=0.2.7,<0.3.0)"] +linkify = ["linkify-it-py (>=2.0,<3.0)"] +rtd = ["ipython", "pydata-sphinx-theme (==v0.13.0rc4)", "sphinx-autodoc2 (>=0.4.2,<0.5.0)", "sphinx-book-theme (==1.0.0rc2)", "sphinx-copybutton", "sphinx-design2", "sphinx-pyscript", "sphinx-tippy (>=0.3.1)", "sphinx-togglebutton", "sphinxext-opengraph (>=0.8.2,<0.9.0)", "sphinxext-rediraffe (>=0.2.7,<0.3.0)"] testing = ["beautifulsoup4", "coverage[toml]", "pytest (>=7,<8)", "pytest-cov", "pytest-param-files (>=0.3.4,<0.4.0)", "pytest-regressions", "sphinx-pytest"] testing-docutils = ["pygments", "pytest (>=7,<8)", "pytest-param-files (>=0.3.4,<0.4.0)"] -[[package]] -name = "nbclassic" -version = "1.0.0" -description = "Jupyter Notebook as a Jupyter Server extension." -optional = false -python-versions = ">=3.7" -files = [ - {file = "nbclassic-1.0.0-py3-none-any.whl", hash = "sha256:f99e4769b4750076cd4235c044b61232110733322384a94a63791d2e7beacc66"}, - {file = "nbclassic-1.0.0.tar.gz", hash = "sha256:0ae11eb2319455d805596bf320336cda9554b41d99ab9a3c31bf8180bffa30e3"}, -] - -[package.dependencies] -argon2-cffi = "*" -ipykernel = "*" -ipython-genutils = "*" -jinja2 = "*" -jupyter-client = ">=6.1.1" -jupyter-core = ">=4.6.1" -jupyter-server = ">=1.8" -nbconvert = ">=5" -nbformat = "*" -nest-asyncio = ">=1.5" -notebook-shim = ">=0.2.3" -prometheus-client = "*" -pyzmq = ">=17" -Send2Trash = ">=1.8.0" -terminado = ">=0.8.3" -tornado = ">=6.1" -traitlets = ">=4.2.1" - -[package.extras] -docs = ["myst-parser", "nbsphinx", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -json-logging = ["json-logging"] -test = ["coverage", "nbval", "pytest", "pytest-cov", "pytest-jupyter", "pytest-playwright", "pytest-tornasync", "requests", "requests-unixsocket", "testpath"] - -[[package]] -name = "nbclient" -version = "0.8.0" -description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." -optional = false -python-versions = ">=3.8.0" -files = [ - {file = "nbclient-0.8.0-py3-none-any.whl", hash = "sha256:25e861299e5303a0477568557c4045eccc7a34c17fc08e7959558707b9ebe548"}, - {file = "nbclient-0.8.0.tar.gz", hash = "sha256:f9b179cd4b2d7bca965f900a2ebf0db4a12ebff2f36a711cb66861e4ae158e55"}, -] - -[package.dependencies] -jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -nbformat = ">=5.1" -traitlets = ">=5.4" - -[package.extras] -dev = ["pre-commit"] -docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"] -test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] - -[[package]] -name = "nbconvert" -version = "7.4.0" -description = "Converting Jupyter Notebooks" -optional = false -python-versions = ">=3.7" -files = [ - {file = "nbconvert-7.4.0-py3-none-any.whl", hash = "sha256:af5064a9db524f9f12f4e8be7f0799524bd5b14c1adea37e34e83c95127cc818"}, - {file = "nbconvert-7.4.0.tar.gz", hash = "sha256:51b6c77b507b177b73f6729dba15676e42c4e92bcb00edc8cc982ee72e7d89d7"}, -] - -[package.dependencies] -beautifulsoup4 = "*" -bleach = "*" -defusedxml = "*" -importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} -jinja2 = ">=3.0" -jupyter-core = ">=4.7" -jupyterlab-pygments = "*" -markupsafe = ">=2.0" -mistune = ">=2.0.3,<3" -nbclient = ">=0.5.0" -nbformat = ">=5.1" -packaging = "*" -pandocfilters = ">=1.4.1" -pygments = ">=2.4.1" -tinycss2 = "*" -traitlets = ">=5.0" - -[package.extras] -all = ["nbconvert[docs,qtpdf,serve,test,webpdf]"] -docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] -qtpdf = ["nbconvert[qtpng]"] -qtpng = ["pyqtwebengine (>=5.15)"] -serve = ["tornado (>=6.1)"] -test = ["ipykernel", "ipywidgets (>=7)", "pre-commit", "pytest", "pytest-dependency"] -webpdf = ["pyppeteer (>=1,<1.1)"] - -[[package]] -name = "nbformat" -version = "5.9.0" -description = "The Jupyter Notebook format" -optional = false -python-versions = ">=3.8" -files = [ - {file = "nbformat-5.9.0-py3-none-any.whl", hash = "sha256:8c8fa16d6d05062c26177754bfbfac22de644888e2ef69d27ad2a334cf2576e5"}, - {file = "nbformat-5.9.0.tar.gz", hash = "sha256:e98ebb6120c3efbafdee2a40af2a140cadee90bb06dd69a2a63d9551fcc7f976"}, -] - -[package.dependencies] -fastjsonschema = "*" -jsonschema = ">=2.6" -jupyter-core = "*" -traitlets = ">=5.1" - -[package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["pep440", "pre-commit", "pytest", "testpath"] - -[[package]] -name = "nbsphinx" -version = "0.9.2" -description = "Jupyter Notebook Tools for Sphinx" -optional = false -python-versions = ">=3.6" -files = [ - {file = "nbsphinx-0.9.2-py3-none-any.whl", hash = "sha256:2746680ece5ad3b0e980639d717a5041a1c1aafb416846b72dfaeecc306bc351"}, - {file = "nbsphinx-0.9.2.tar.gz", hash = "sha256:540db7f4066347f23d0650c4ae8e7d85334c69adf749e030af64c12e996ff88e"}, -] - -[package.dependencies] -docutils = "*" -jinja2 = "*" -nbconvert = "!=5.4" -nbformat = "*" -sphinx = ">=1.8" -traitlets = ">=5" - -[[package]] -name = "nest-asyncio" -version = "1.5.6" -description = "Patch asyncio to allow nested event loops" -optional = false -python-versions = ">=3.5" -files = [ - {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, - {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, -] - [[package]] name = "nodeenv" version = "1.8.0" @@ -1824,110 +950,45 @@ description = "Node.js virtual environment builder" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ - {file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"}, - {file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"}, -] - -[package.dependencies] -setuptools = "*" - -[[package]] -name = "notebook" -version = "6.5.4" -description = "A web-based notebook environment for interactive computing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "notebook-6.5.4-py3-none-any.whl", hash = "sha256:dd17e78aefe64c768737b32bf171c1c766666a21cc79a44d37a1700771cab56f"}, - {file = "notebook-6.5.4.tar.gz", hash = "sha256:517209568bd47261e2def27a140e97d49070602eea0d226a696f42a7f16c9a4e"}, -] - -[package.dependencies] -argon2-cffi = "*" -ipykernel = "*" -ipython-genutils = "*" -jinja2 = "*" -jupyter-client = ">=5.3.4" -jupyter-core = ">=4.6.1" -nbclassic = ">=0.4.7" -nbconvert = ">=5" -nbformat = "*" -nest-asyncio = ">=1.5" -prometheus-client = "*" -pyzmq = ">=17" -Send2Trash = ">=1.8.0" -terminado = ">=0.8.3" -tornado = ">=6.1" -traitlets = ">=4.2.1" - -[package.extras] -docs = ["myst-parser", "nbsphinx", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -json-logging = ["json-logging"] -test = ["coverage", "nbval", "pytest", "pytest-cov", "requests", "requests-unixsocket", "selenium (==4.1.5)", "testpath"] - -[[package]] -name = "notebook-shim" -version = "0.2.3" -description = "A shim layer for notebook traits and config" -optional = false -python-versions = ">=3.7" -files = [ - {file = "notebook_shim-0.2.3-py3-none-any.whl", hash = "sha256:a83496a43341c1674b093bfcebf0fe8e74cbe7eda5fd2bbc56f8e39e1486c0c7"}, - {file = "notebook_shim-0.2.3.tar.gz", hash = "sha256:f69388ac283ae008cd506dda10d0288b09a017d822d5e8c7129a152cbd3ce7e9"}, + {file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"}, + {file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"}, ] [package.dependencies] -jupyter-server = ">=1.8,<3" - -[package.extras] -test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"] +setuptools = "*" [[package]] name = "numpy" -version = "1.24.3" +version = "1.25.2" description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.8" -files = [ - {file = "numpy-1.24.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3c1104d3c036fb81ab923f507536daedc718d0ad5a8707c6061cdfd6d184e570"}, - {file = "numpy-1.24.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:202de8f38fc4a45a3eea4b63e2f376e5f2dc64ef0fa692838e31a808520efaf7"}, - {file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8535303847b89aa6b0f00aa1dc62867b5a32923e4d1681a35b5eef2d9591a463"}, - {file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d926b52ba1367f9acb76b0df6ed21f0b16a1ad87c6720a1121674e5cf63e2b6"}, - {file = "numpy-1.24.3-cp310-cp310-win32.whl", hash = "sha256:f21c442fdd2805e91799fbe044a7b999b8571bb0ab0f7850d0cb9641a687092b"}, - {file = "numpy-1.24.3-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f23af8c16022663a652d3b25dcdc272ac3f83c3af4c02eb8b824e6b3ab9d7"}, - {file = "numpy-1.24.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9a7721ec204d3a237225db3e194c25268faf92e19338a35f3a224469cb6039a3"}, - {file = "numpy-1.24.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d6cc757de514c00b24ae8cf5c876af2a7c3df189028d68c0cb4eaa9cd5afc2bf"}, - {file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76e3f4e85fc5d4fd311f6e9b794d0c00e7002ec122be271f2019d63376f1d385"}, - {file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1d3c026f57ceaad42f8231305d4653d5f05dc6332a730ae5c0bea3513de0950"}, - {file = "numpy-1.24.3-cp311-cp311-win32.whl", hash = "sha256:c91c4afd8abc3908e00a44b2672718905b8611503f7ff87390cc0ac3423fb096"}, - {file = "numpy-1.24.3-cp311-cp311-win_amd64.whl", hash = "sha256:5342cf6aad47943286afa6f1609cad9b4266a05e7f2ec408e2cf7aea7ff69d80"}, - {file = "numpy-1.24.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7776ea65423ca6a15255ba1872d82d207bd1e09f6d0894ee4a64678dd2204078"}, - {file = "numpy-1.24.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ae8d0be48d1b6ed82588934aaaa179875e7dc4f3d84da18d7eae6eb3f06c242c"}, - {file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ecde0f8adef7dfdec993fd54b0f78183051b6580f606111a6d789cd14c61ea0c"}, - {file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4749e053a29364d3452c034827102ee100986903263e89884922ef01a0a6fd2f"}, - {file = "numpy-1.24.3-cp38-cp38-win32.whl", hash = "sha256:d933fabd8f6a319e8530d0de4fcc2e6a61917e0b0c271fded460032db42a0fe4"}, - {file = "numpy-1.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:56e48aec79ae238f6e4395886b5eaed058abb7231fb3361ddd7bfdf4eed54289"}, - {file = "numpy-1.24.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4719d5aefb5189f50887773699eaf94e7d1e02bf36c1a9d353d9f46703758ca4"}, - {file = "numpy-1.24.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0ec87a7084caa559c36e0a2309e4ecb1baa03b687201d0a847c8b0ed476a7187"}, - {file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea8282b9bcfe2b5e7d491d0bf7f3e2da29700cec05b49e64d6246923329f2b02"}, - {file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210461d87fb02a84ef243cac5e814aad2b7f4be953b32cb53327bb49fd77fbb4"}, - {file = "numpy-1.24.3-cp39-cp39-win32.whl", hash = "sha256:784c6da1a07818491b0ffd63c6bbe5a33deaa0e25a20e1b3ea20cf0e43f8046c"}, - {file = "numpy-1.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:d5036197ecae68d7f491fcdb4df90082b0d4960ca6599ba2659957aafced7c17"}, - {file = "numpy-1.24.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:352ee00c7f8387b44d19f4cada524586f07379c0d49270f87233983bc5087ca0"}, - {file = "numpy-1.24.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7d6acc2e7524c9955e5c903160aa4ea083736fde7e91276b0e5d98e6332812"}, - {file = "numpy-1.24.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:35400e6a8d102fd07c71ed7dcadd9eb62ee9a6e84ec159bd48c28235bbb0f8e4"}, - {file = "numpy-1.24.3.tar.gz", hash = "sha256:ab344f1bf21f140adab8e47fdbc7c35a477dc01408791f8ba00d018dd0bc5155"}, -] - -[[package]] -name = "overrides" -version = "7.3.1" -description = "A decorator to automatically detect mismatch when overriding a method." -optional = false -python-versions = ">=3.6" +python-versions = ">=3.9" files = [ - {file = "overrides-7.3.1-py3-none-any.whl", hash = "sha256:6187d8710a935d09b0bcef8238301d6ee2569d2ac1ae0ec39a8c7924e27f58ca"}, - {file = "overrides-7.3.1.tar.gz", hash = "sha256:8b97c6c1e1681b78cbc9424b138d880f0803c2254c5ebaabdde57bb6c62093f2"}, + {file = "numpy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db3ccc4e37a6873045580d413fe79b68e47a681af8db2e046f1dacfa11f86eb3"}, + {file = "numpy-1.25.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:90319e4f002795ccfc9050110bbbaa16c944b1c37c0baeea43c5fb881693ae1f"}, + {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfe4a913e29b418d096e696ddd422d8a5d13ffba4ea91f9f60440a3b759b0187"}, + {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08f2e037bba04e707eebf4bc934f1972a315c883a9e0ebfa8a7756eabf9e357"}, + {file = "numpy-1.25.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bec1e7213c7cb00d67093247f8c4db156fd03075f49876957dca4711306d39c9"}, + {file = "numpy-1.25.2-cp310-cp310-win32.whl", hash = "sha256:7dc869c0c75988e1c693d0e2d5b26034644399dd929bc049db55395b1379e044"}, + {file = "numpy-1.25.2-cp310-cp310-win_amd64.whl", hash = "sha256:834b386f2b8210dca38c71a6e0f4fd6922f7d3fcff935dbe3a570945acb1b545"}, + {file = "numpy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5462d19336db4560041517dbb7759c21d181a67cb01b36ca109b2ae37d32418"}, + {file = "numpy-1.25.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5652ea24d33585ea39eb6a6a15dac87a1206a692719ff45d53c5282e66d4a8f"}, + {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d60fbae8e0019865fc4784745814cff1c421df5afee233db6d88ab4f14655a2"}, + {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e7f0f7f6d0eee8364b9a6304c2845b9c491ac706048c7e8cf47b83123b8dbf"}, + {file = "numpy-1.25.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bb33d5a1cf360304754913a350edda36d5b8c5331a8237268c48f91253c3a364"}, + {file = "numpy-1.25.2-cp311-cp311-win32.whl", hash = "sha256:5883c06bb92f2e6c8181df7b39971a5fb436288db58b5a1c3967702d4278691d"}, + {file = "numpy-1.25.2-cp311-cp311-win_amd64.whl", hash = "sha256:5c97325a0ba6f9d041feb9390924614b60b99209a71a69c876f71052521d42a4"}, + {file = "numpy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b79e513d7aac42ae918db3ad1341a015488530d0bb2a6abcbdd10a3a829ccfd3"}, + {file = "numpy-1.25.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eb942bfb6f84df5ce05dbf4b46673ffed0d3da59f13635ea9b926af3deb76926"}, + {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0746410e73384e70d286f93abf2520035250aad8c5714240b0492a7302fdca"}, + {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7806500e4f5bdd04095e849265e55de20d8cc4b661b038957354327f6d9b295"}, + {file = "numpy-1.25.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8b77775f4b7df768967a7c8b3567e309f617dd5e99aeb886fa14dc1a0791141f"}, + {file = "numpy-1.25.2-cp39-cp39-win32.whl", hash = "sha256:2792d23d62ec51e50ce4d4b7d73de8f67a2fd3ea710dcbc8563a51a03fb07b01"}, + {file = "numpy-1.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:76b4115d42a7dfc5d485d358728cdd8719be33cc5ec6ec08632a5d6fca2ed380"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1a1329e26f46230bf77b02cc19e900db9b52f398d6722ca853349a782d4cff55"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c3abc71e8b6edba80a01a52e66d83c5d14433cbcd26a40c329ec7ed09f37901"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1b9735c27cea5d995496f46a8b1cd7b408b3f34b6d50459d9ac8fe3a20cc17bf"}, + {file = "numpy-1.25.2.tar.gz", hash = "sha256:fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760"}, ] [[package]] @@ -1943,50 +1004,50 @@ files = [ [[package]] name = "pandas" -version = "2.0.2" +version = "2.0.3" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.8" files = [ - {file = "pandas-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ebb9f1c22ddb828e7fd017ea265a59d80461d5a79154b49a4207bd17514d122"}, - {file = "pandas-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1eb09a242184092f424b2edd06eb2b99d06dc07eeddff9929e8667d4ed44e181"}, - {file = "pandas-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7319b6e68de14e6209460f72a8d1ef13c09fb3d3ef6c37c1e65b35d50b5c145"}, - {file = "pandas-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd46bde7309088481b1cf9c58e3f0e204b9ff9e3244f441accd220dd3365ce7c"}, - {file = "pandas-2.0.2-cp310-cp310-win32.whl", hash = "sha256:51a93d422fbb1bd04b67639ba4b5368dffc26923f3ea32a275d2cc450f1d1c86"}, - {file = "pandas-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:66d00300f188fa5de73f92d5725ced162488f6dc6ad4cecfe4144ca29debe3b8"}, - {file = "pandas-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02755de164da6827764ceb3bbc5f64b35cb12394b1024fdf88704d0fa06e0e2f"}, - {file = "pandas-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0a1e0576611641acde15c2322228d138258f236d14b749ad9af498ab69089e2d"}, - {file = "pandas-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6b5f14cd24a2ed06e14255ff40fe2ea0cfaef79a8dd68069b7ace74bd6acbba"}, - {file = "pandas-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50e451932b3011b61d2961b4185382c92cc8c6ee4658dcd4f320687bb2d000ee"}, - {file = "pandas-2.0.2-cp311-cp311-win32.whl", hash = "sha256:7b21cb72958fc49ad757685db1919021d99650d7aaba676576c9e88d3889d456"}, - {file = "pandas-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:c4af689352c4fe3d75b2834933ee9d0ccdbf5d7a8a7264f0ce9524e877820c08"}, - {file = "pandas-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:69167693cb8f9b3fc060956a5d0a0a8dbfed5f980d9fd2c306fb5b9c855c814c"}, - {file = "pandas-2.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:30a89d0fec4263ccbf96f68592fd668939481854d2ff9da709d32a047689393b"}, - {file = "pandas-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a18e5c72b989ff0f7197707ceddc99828320d0ca22ab50dd1b9e37db45b010c0"}, - {file = "pandas-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7376e13d28eb16752c398ca1d36ccfe52bf7e887067af9a0474de6331dd948d2"}, - {file = "pandas-2.0.2-cp38-cp38-win32.whl", hash = "sha256:6d6d10c2142d11d40d6e6c0a190b1f89f525bcf85564707e31b0a39e3b398e08"}, - {file = "pandas-2.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:e69140bc2d29a8556f55445c15f5794490852af3de0f609a24003ef174528b79"}, - {file = "pandas-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b42b120458636a981077cfcfa8568c031b3e8709701315e2bfa866324a83efa8"}, - {file = "pandas-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f908a77cbeef9bbd646bd4b81214cbef9ac3dda4181d5092a4aa9797d1bc7774"}, - {file = "pandas-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:713f2f70abcdade1ddd68fc91577cb090b3544b07ceba78a12f799355a13ee44"}, - {file = "pandas-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf3f0c361a4270185baa89ec7ab92ecaa355fe783791457077473f974f654df5"}, - {file = "pandas-2.0.2-cp39-cp39-win32.whl", hash = "sha256:598e9020d85a8cdbaa1815eb325a91cfff2bb2b23c1442549b8a3668e36f0f77"}, - {file = "pandas-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:77550c8909ebc23e56a89f91b40ad01b50c42cfbfab49b3393694a50549295ea"}, - {file = "pandas-2.0.2.tar.gz", hash = "sha256:dd5476b6c3fe410ee95926873f377b856dbc4e81a9c605a0dc05aaccc6a7c6c6"}, + {file = "pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c7c9f27a4185304c7caf96dc7d91bc60bc162221152de697c98eb0b2648dd8"}, + {file = "pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f167beed68918d62bffb6ec64f2e1d8a7d297a038f86d4aed056b9493fca407f"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce0c6f76a0f1ba361551f3e6dceaff06bde7514a374aa43e33b588ec10420183"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba619e410a21d8c387a1ea6e8a0e49bb42216474436245718d7f2e88a2f8d7c0"}, + {file = "pandas-2.0.3-cp310-cp310-win32.whl", hash = "sha256:3ef285093b4fe5058eefd756100a367f27029913760773c8bf1d2d8bebe5d210"}, + {file = "pandas-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:9ee1a69328d5c36c98d8e74db06f4ad518a1840e8ccb94a4ba86920986bb617e"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b084b91d8d66ab19f5bb3256cbd5ea661848338301940e17f4492b2ce0801fe8"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37673e3bdf1551b95bf5d4ce372b37770f9529743d2498032439371fc7b7eb26"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9cb1e14fdb546396b7e1b923ffaeeac24e4cedd14266c3497216dd4448e4f2d"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cd88488cceb7635aebb84809d087468eb33551097d600c6dad13602029c2df"}, + {file = "pandas-2.0.3-cp311-cp311-win32.whl", hash = "sha256:694888a81198786f0e164ee3a581df7d505024fbb1f15202fc7db88a71d84ebd"}, + {file = "pandas-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6a21ab5c89dcbd57f78d0ae16630b090eec626360085a4148693def5452d8a6b"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4da0d45e7f34c069fe4d522359df7d23badf83abc1d1cef398895822d11061"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32fca2ee1b0d93dd71d979726b12b61faa06aeb93cf77468776287f41ff8fdc5"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:258d3624b3ae734490e4d63c430256e716f488c4fcb7c8e9bde2d3aa46c29089"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eae3dc34fa1aa7772dd3fc60270d13ced7346fcbcfee017d3132ec625e23bb0"}, + {file = "pandas-2.0.3-cp38-cp38-win32.whl", hash = "sha256:f3421a7afb1a43f7e38e82e844e2bca9a6d793d66c1a7f9f0ff39a795bbc5e02"}, + {file = "pandas-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:69d7f3884c95da3a31ef82b7618af5710dba95bb885ffab339aad925c3e8ce78"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5247fb1ba347c1261cbbf0fcfba4a3121fbb4029d95d9ef4dc45406620b25c8b"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81af086f4543c9d8bb128328b5d32e9986e0c84d3ee673a2ac6fb57fd14f755e"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1994c789bf12a7c5098277fb43836ce090f1073858c10f9220998ac74f37c69b"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ec591c48e29226bcbb316e0c1e9423622bc7a4eaf1ef7c3c9fa1a3981f89641"}, + {file = "pandas-2.0.3-cp39-cp39-win32.whl", hash = "sha256:04dbdbaf2e4d46ca8da896e1805bc04eb85caa9a82e259e8eed00254d5e0c682"}, + {file = "pandas-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:1168574b036cd8b93abc746171c9b4f1b83467438a5e45909fed645cf8692dbc"}, + {file = "pandas-2.0.3.tar.gz", hash = "sha256:c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512e2043c"}, ] [package.dependencies] numpy = [ {version = ">=1.20.3", markers = "python_version < \"3.10\""}, - {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, {version = ">=1.23.2", markers = "python_version >= \"3.11\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" tzdata = ">=2022.1" [package.extras] -all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.0.0)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] +all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] aws = ["s3fs (>=2021.08.0)"] clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"] compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"] @@ -2005,20 +1066,9 @@ plot = ["matplotlib (>=3.6.1)"] postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"] spss = ["pyreadstat (>=1.1.2)"] sql-other = ["SQLAlchemy (>=1.4.16)"] -test = ["hypothesis (>=6.34.2)", "pytest (>=7.0.0)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] +test = ["hypothesis (>=6.34.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] xml = ["lxml (>=4.6.3)"] -[[package]] -name = "pandocfilters" -version = "1.5.0" -description = "Utilities for writing pandoc filters in python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pandocfilters-1.5.0-py2.py3-none-any.whl", hash = "sha256:33aae3f25fd1a026079f5d27bdd52496f0e0803b3469282162bafdcbdf6ef14f"}, - {file = "pandocfilters-1.5.0.tar.gz", hash = "sha256:0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38"}, -] - [[package]] name = "parso" version = "0.8.3" @@ -2036,13 +1086,13 @@ testing = ["docopt", "pytest (<6.0.0)"] [[package]] name = "pathspec" -version = "0.11.1" +version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." optional = false python-versions = ">=3.7" files = [ - {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, - {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, ] [[package]] @@ -2096,28 +1146,28 @@ xarray = ["xarray"] [[package]] name = "platformdirs" -version = "3.5.1" +version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." optional = false python-versions = ">=3.7" files = [ - {file = "platformdirs-3.5.1-py3-none-any.whl", hash = "sha256:e2378146f1964972c03c085bb5662ae80b2b8c06226c54b2ff4aa9483e8a13a5"}, - {file = "platformdirs-3.5.1.tar.gz", hash = "sha256:412dae91f52a6f84830f39a8078cecd0e866cb72294a5c66808e74d5e88d251f"}, + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, ] [package.extras] -docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.2.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] [[package]] name = "pluggy" -version = "1.0.0" +version = "1.3.0" description = "plugin and hook calling mechanisms for python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, + {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, + {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, ] [package.extras] @@ -2126,13 +1176,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pre-commit" -version = "3.3.2" +version = "3.3.3" description = "A framework for managing and maintaining multi-language pre-commit hooks." optional = false python-versions = ">=3.8" files = [ - {file = "pre_commit-3.3.2-py2.py3-none-any.whl", hash = "sha256:8056bc52181efadf4aac792b1f4f255dfd2fb5a350ded7335d251a68561e8cb6"}, - {file = "pre_commit-3.3.2.tar.gz", hash = "sha256:66e37bec2d882de1f17f88075047ef8962581f83c234ac08da21a0c58953d1f0"}, + {file = "pre_commit-3.3.3-py2.py3-none-any.whl", hash = "sha256:10badb65d6a38caff29703362271d7dca483d01da88f9d7e05d0b97171c136cb"}, + {file = "pre_commit-3.3.3.tar.gz", hash = "sha256:a2256f489cd913d575c145132ae196fe335da32d91a8294b7afe6622335dd023"}, ] [package.dependencies] @@ -2142,60 +1192,20 @@ nodeenv = ">=0.11.1" pyyaml = ">=5.1" virtualenv = ">=20.10.0" -[[package]] -name = "prometheus-client" -version = "0.17.0" -description = "Python client for the Prometheus monitoring system." -optional = false -python-versions = ">=3.6" -files = [ - {file = "prometheus_client-0.17.0-py3-none-any.whl", hash = "sha256:a77b708cf083f4d1a3fb3ce5c95b4afa32b9c521ae363354a4a910204ea095ce"}, - {file = "prometheus_client-0.17.0.tar.gz", hash = "sha256:9c3b26f1535945e85b8934fb374678d263137b78ef85f305b1156c7c881cd11b"}, -] - -[package.extras] -twisted = ["twisted"] - [[package]] name = "prompt-toolkit" -version = "3.0.38" +version = "3.0.39" description = "Library for building powerful interactive command lines in Python" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.38-py3-none-any.whl", hash = "sha256:45ea77a2f7c60418850331366c81cf6b5b9cf4c7fd34616f733c5427e6abbb1f"}, - {file = "prompt_toolkit-3.0.38.tar.gz", hash = "sha256:23ac5d50538a9a38c8bde05fecb47d0b403ecd0662857a86f886f798563d5b9b"}, + {file = "prompt_toolkit-3.0.39-py3-none-any.whl", hash = "sha256:9dffbe1d8acf91e3de75f3b544e4842382fc06c6babe903ac9acb74dc6e08d88"}, + {file = "prompt_toolkit-3.0.39.tar.gz", hash = "sha256:04505ade687dc26dc4284b1ad19a83be2f2afe83e7a828ace0c72f3a1df72aac"}, ] [package.dependencies] wcwidth = "*" -[[package]] -name = "psutil" -version = "5.9.5" -description = "Cross-platform lib for process and system monitoring in Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "psutil-5.9.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:be8929ce4313f9f8146caad4272f6abb8bf99fc6cf59344a3167ecd74f4f203f"}, - {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ab8ed1a1d77c95453db1ae00a3f9c50227ebd955437bcf2a574ba8adbf6a74d5"}, - {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4aef137f3345082a3d3232187aeb4ac4ef959ba3d7c10c33dd73763fbc063da4"}, - {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ea8518d152174e1249c4f2a1c89e3e6065941df2fa13a1ab45327716a23c2b48"}, - {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:acf2aef9391710afded549ff602b5887d7a2349831ae4c26be7c807c0a39fac4"}, - {file = "psutil-5.9.5-cp27-none-win32.whl", hash = "sha256:5b9b8cb93f507e8dbaf22af6a2fd0ccbe8244bf30b1baad6b3954e935157ae3f"}, - {file = "psutil-5.9.5-cp27-none-win_amd64.whl", hash = "sha256:8c5f7c5a052d1d567db4ddd231a9d27a74e8e4a9c3f44b1032762bd7b9fdcd42"}, - {file = "psutil-5.9.5-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3c6f686f4225553615612f6d9bc21f1c0e305f75d7d8454f9b46e901778e7217"}, - {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a7dd9997128a0d928ed4fb2c2d57e5102bb6089027939f3b722f3a210f9a8da"}, - {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89518112647f1276b03ca97b65cc7f64ca587b1eb0278383017c2a0dcc26cbe4"}, - {file = "psutil-5.9.5-cp36-abi3-win32.whl", hash = "sha256:104a5cc0e31baa2bcf67900be36acde157756b9c44017b86b2c049f11957887d"}, - {file = "psutil-5.9.5-cp36-abi3-win_amd64.whl", hash = "sha256:b258c0c1c9d145a1d5ceffab1134441c4c5113b2417fafff7315a917a026c3c9"}, - {file = "psutil-5.9.5-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:c607bb3b57dc779d55e1554846352b4e358c10fff3abf3514a7a6601beebdb30"}, - {file = "psutil-5.9.5.tar.gz", hash = "sha256:5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c"}, -] - -[package.extras] -test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] - [[package]] name = "ptyprocess" version = "0.7.0" @@ -2222,25 +1232,48 @@ files = [ tests = ["pytest"] [[package]] -name = "pycparser" -version = "2.21" -description = "C parser in Python" +name = "pybtex" +version = "0.24.0" +description = "A BibTeX-compatible bibliography processor in Python" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*" +files = [ + {file = "pybtex-0.24.0-py2.py3-none-any.whl", hash = "sha256:e1e0c8c69998452fea90e9179aa2a98ab103f3eed894405b7264e517cc2fcc0f"}, + {file = "pybtex-0.24.0.tar.gz", hash = "sha256:818eae35b61733e5c007c3fcd2cfb75ed1bc8b4173c1f70b56cc4c0802d34755"}, +] + +[package.dependencies] +latexcodec = ">=1.0.4" +PyYAML = ">=3.01" +six = "*" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "pybtex-docutils" +version = "1.0.3" +description = "A docutils backend for pybtex." +optional = false +python-versions = ">=3.7" files = [ - {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, - {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, + {file = "pybtex-docutils-1.0.3.tar.gz", hash = "sha256:3a7ebdf92b593e00e8c1c538aa9a20bca5d92d84231124715acc964d51d93c6b"}, + {file = "pybtex_docutils-1.0.3-py3-none-any.whl", hash = "sha256:8fd290d2ae48e32fcb54d86b0efb8d573198653c7e2447d5bec5847095f430b9"}, ] +[package.dependencies] +docutils = ">=0.14" +pybtex = ">=0.16" + [[package]] name = "pygments" -version = "2.15.1" +version = "2.16.1" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.15.1-py3-none-any.whl", hash = "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1"}, - {file = "Pygments-2.15.1.tar.gz", hash = "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c"}, + {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, + {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, ] [package.extras] @@ -2248,96 +1281,50 @@ plugins = ["importlib-metadata"] [[package]] name = "pyproj" -version = "3.5.0" +version = "3.6.0" description = "Python interface to PROJ (cartographic projections and coordinate transformations library)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pyproj-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6475ce653880938468a1a1b7321267243909e34b972ba9e53d5982c41d555918"}, - {file = "pyproj-3.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61e4ad57d89b03a7b173793b31bca8ee110112cde1937ef0f42a70b9120c827d"}, - {file = "pyproj-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bdd2021bb6f7f346bfe1d2a358aa109da017d22c4704af2d994e7c7ee0a7a53"}, - {file = "pyproj-3.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5674923351e76222e2c10c58b5e1ac119d7a46b270d822c463035971b06f724b"}, - {file = "pyproj-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd5e2b6aa255023c4acd0b977590f1f7cc801ba21b4d806fcf6dfac3474ebb83"}, - {file = "pyproj-3.5.0-cp310-cp310-win32.whl", hash = "sha256:6f316a66031a14e9c5a88c91f8b77aa97f5454895674541ed6ab630b682be35d"}, - {file = "pyproj-3.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:f7c2f4d9681e810cf40239caaca00079930a6d9ee6591139b88d592d36051d82"}, - {file = "pyproj-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7572983134e310e0ca809c63f1722557a040fe9443df5f247bf11ba887eb1229"}, - {file = "pyproj-3.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eccb417b91d0be27805dfc97550bfb8b7db94e9fe1db5ebedb98f5b88d601323"}, - {file = "pyproj-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:621d78a9d8bf4d06e08bef2471021fbcb1a65aa629ad4a20c22e521ce729cc20"}, - {file = "pyproj-3.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d9a024370e917c899bff9171f03ea6079deecdc7482a146a2c565f3b9df134ea"}, - {file = "pyproj-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b7c2113c4d11184a238077ec85e31eda1dcc58ffeb9a4429830e0a7036e787d"}, - {file = "pyproj-3.5.0-cp311-cp311-win32.whl", hash = "sha256:a730f5b4c98c8a0f312437873e6e34dbd4cc6dc23d5afd91a6691c62724b1f68"}, - {file = "pyproj-3.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:e97573de0ab3bbbcb4c7748bc41f4ceb6da10b45d35b1a294b5820701e7c25f0"}, - {file = "pyproj-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2b708fd43453b985642b737d4a6e7f1d6a0ab1677ffa4e14cc258537b49224b0"}, - {file = "pyproj-3.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b60d93a200639e8367c6542a964fd0aa2dbd152f256c1831dc18cd5aa470fb8a"}, - {file = "pyproj-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38862fe07316ae12b79d82d298e390973a4f00b684f3c2d037238e20e00610ba"}, - {file = "pyproj-3.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:71b65f2a38cd9e16883dbb0f8ae82bdf8f6b79b1b02975c78483ab8428dbbf2f"}, - {file = "pyproj-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b752b7d9c4b08181c7e8c0d9c7f277cbefff42227f34d3310696a87c863d9dd3"}, - {file = "pyproj-3.5.0-cp38-cp38-win32.whl", hash = "sha256:b937215bfbaf404ec8f03ca741fc3f9f2c4c2c5590a02ccddddd820ae3c71331"}, - {file = "pyproj-3.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:97ed199033c2c770e7eea2ef80ff5e6413426ec2d7ec985b869792f04ab95d05"}, - {file = "pyproj-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:052c49fce8b5d55943a35c36ccecb87350c68b48ba95bc02a789770c374ef819"}, - {file = "pyproj-3.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1507138ea28bf2134d31797675380791cc1a7156a3aeda484e65a78a4aba9b62"}, - {file = "pyproj-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c02742ef3d846401861a878a61ef7ad911ea7539d6cc4619ddb52dbdf7b45aee"}, - {file = "pyproj-3.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:385b0341861d3ebc8cad98337a738821dcb548d465576527399f4955ca24b6ed"}, - {file = "pyproj-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fe6bb1b68a35d07378d38be77b5b2f8dd2bea5910c957bfcc7bee55988d3910"}, - {file = "pyproj-3.5.0-cp39-cp39-win32.whl", hash = "sha256:5c4b85ac10d733c42d73a2e6261c8d6745bf52433a31848dd1b6561c9a382da3"}, - {file = "pyproj-3.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:1798ff7d65d9057ebb2d017ffe8403268b8452f24d0428b2140018c25c7fa1bc"}, - {file = "pyproj-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d711517a8487ef3245b08dc82f781a906df9abb3b6cb0ce0486f0eeb823ca570"}, - {file = "pyproj-3.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:788a5dadb532644a64efe0f5f01bf508c821eb7e984f13a677d56002f1e8a67a"}, - {file = "pyproj-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73f7960a97225812f9b1d7aeda5fb83812f38de9441e3476fcc8abb3e2b2f4de"}, - {file = "pyproj-3.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fde5ece4d2436b5a57c8f5f97b49b5de06a856d03959f836c957d3e609f2de7e"}, - {file = "pyproj-3.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e08db25b61cf024648d55973cc3d1c3f1d0818fabf594d5f5a8e2318103d2aa0"}, - {file = "pyproj-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a87b419a2a352413fbf759ecb66da9da50bd19861c8f26db6a25439125b27b9"}, - {file = "pyproj-3.5.0.tar.gz", hash = "sha256:9859d1591c1863414d875ae0759e72c2cffc01ab989dc64137fbac572cc81bf6"}, + {file = "pyproj-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e600f6a2771d3b41aeb2cc1efd96771ae9a01451013da1dd48ff272e7c6e34ef"}, + {file = "pyproj-3.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d7f6cd045df29aae960391dfe06a575c110af598f1dea5add8be6ca42332b0f5"}, + {file = "pyproj-3.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:557e6592855111c84eda176ddf6b130f55d5e2b9cb1c017b8c91b69f37f474f5"}, + {file = "pyproj-3.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de6288b6ceabdeeac01abf627c74414822d322d8f55dc8efe4d29dedd27c5719"}, + {file = "pyproj-3.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e427ccdbb1763872416549bdfa9fa1f5f169054653c4daf674e71480cc39cf11"}, + {file = "pyproj-3.6.0-cp310-cp310-win32.whl", hash = "sha256:1283d3c1960edbb74828f5f3405b27578a9a27f7766ab6a3956f4bd851f08239"}, + {file = "pyproj-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:9de1aab71234bfd3fd648a1152519b5ee152c43113d7d8ea52590a0140129501"}, + {file = "pyproj-3.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:00fab048596c17572fa8980014ef117dbb2a445e6f7ba3b9ddfcc683efc598e7"}, + {file = "pyproj-3.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ba5e7c8ddd6ed5a3f9fcf95ea80ba44c931913723de2ece841c94bb38b200c4a"}, + {file = "pyproj-3.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08dfc5c9533c78a97afae9d53b99b810a4a8f97c3be9eb2b8f323b726c736403"}, + {file = "pyproj-3.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18a8bdb87aeb41b60a2e91d32f623227de3569fb83b4c64b174c3a7c5b0ed3ae"}, + {file = "pyproj-3.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfe392dfc0eba2248dc08c976a72f52ff9da2bddfddfd9ff5dcf18e8e88200c7"}, + {file = "pyproj-3.6.0-cp311-cp311-win32.whl", hash = "sha256:78276c6b0c831255c97c56dff7313a3571f327a284d8ac63d6a56437a72ed0e0"}, + {file = "pyproj-3.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:8fbac2eb9a0e425d7d6b7c6f4ebacd675cf3bdef0c59887057b8b4b0374e7c12"}, + {file = "pyproj-3.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:95120d65cbc5983dfd877076f28dbc18b9b329cbee38ca6e217bb7a5a043c099"}, + {file = "pyproj-3.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:830e6de7cfe43853967afee5ef908dfd5aa72d1ec12af9b9e3fecc179886e346"}, + {file = "pyproj-3.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e342b3010b2b20134671564ff9a8c476e5e512bf589477480aded1a5813af7c8"}, + {file = "pyproj-3.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23787460fab85ba2f857ee60ffb2e8e21fd9bd5db9833c51c1c05b2a6d9f0be5"}, + {file = "pyproj-3.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:595376e4d3bb72b7dceeccbce0f4c43053d47561f17a1ad0224407e9980ee849"}, + {file = "pyproj-3.6.0-cp39-cp39-win32.whl", hash = "sha256:4d8a9773503085eada59b6892c96ddf686ab8cf64cfdc18ad744d13ee76dfa6f"}, + {file = "pyproj-3.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:137a07404f937f264b11b7130cd4cfa00002dbe4333b222e8056db84849c2ea4"}, + {file = "pyproj-3.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2799499a4045e4fb73e44c31bdacab0593a253a7a4b6baae6fdd27d604cf9bc2"}, + {file = "pyproj-3.6.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f04f6297c615c3b17f835df2556ac8fb9b4f51f281e960437eaf0cd80e7ae26a"}, + {file = "pyproj-3.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a4d2d438b007cb1f8d5f6f308d53d7ff9a2508cff8f9da6e2a93b76ffd98aaf"}, + {file = "pyproj-3.6.0.tar.gz", hash = "sha256:a5b111865b3f0f8b77b3983f2fbe4dd6248fc09d3730295949977c8dcd988062"}, ] [package.dependencies] certifi = "*" -[[package]] -name = "pyrsistent" -version = "0.19.3" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, - {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, - {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, - {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, - {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, - {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, -] - [[package]] name = "pytest" -version = "7.3.1" +version = "7.4.0" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.3.1-py3-none-any.whl", hash = "sha256:3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362"}, - {file = "pytest-7.3.1.tar.gz", hash = "sha256:434afafd78b1d78ed0addf160ad2b77a30d35d4bdf8af234fe621919d9ed15e3"}, + {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, + {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, ] [package.dependencies] @@ -2349,7 +1336,7 @@ pluggy = ">=0.12,<2.0" tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-cov" @@ -2403,17 +1390,6 @@ files = [ [package.dependencies] six = ">=1.5" -[[package]] -name = "python-json-logger" -version = "2.0.7" -description = "A python library adding a json log formatter" -optional = false -python-versions = ">=3.6" -files = [ - {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, - {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, -] - [[package]] name = "pytz" version = "2023.3" @@ -2425,320 +1401,150 @@ files = [ {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, ] -[[package]] -name = "pywin32" -version = "306" -description = "Python for Window Extensions" -optional = false -python-versions = "*" -files = [ - {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, - {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, - {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, - {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, - {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, - {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, - {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, - {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, - {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, - {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, - {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, - {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, - {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, - {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, -] - -[[package]] -name = "pywinpty" -version = "2.0.10" -description = "Pseudo terminal support for Windows from Python." -optional = false -python-versions = ">=3.7" -files = [ - {file = "pywinpty-2.0.10-cp310-none-win_amd64.whl", hash = "sha256:4c7d06ad10f6e92bc850a467f26d98f4f30e73d2fe5926536308c6ae0566bc16"}, - {file = "pywinpty-2.0.10-cp311-none-win_amd64.whl", hash = "sha256:7ffbd66310b83e42028fc9df7746118978d94fba8c1ebf15a7c1275fdd80b28a"}, - {file = "pywinpty-2.0.10-cp37-none-win_amd64.whl", hash = "sha256:38cb924f2778b5751ef91a75febd114776b3af0ae411bc667be45dd84fc881d3"}, - {file = "pywinpty-2.0.10-cp38-none-win_amd64.whl", hash = "sha256:902d79444b29ad1833b8d5c3c9aabdfd428f4f068504430df18074007c8c0de8"}, - {file = "pywinpty-2.0.10-cp39-none-win_amd64.whl", hash = "sha256:3c46aef80dd50979aff93de199e4a00a8ee033ba7a03cadf0a91fed45f0c39d7"}, - {file = "pywinpty-2.0.10.tar.gz", hash = "sha256:cdbb5694cf8c7242c2ecfaca35c545d31fa5d5814c3d67a4e628f803f680ebea"}, -] - [[package]] name = "pyyaml" -version = "6.0" +version = "6.0.1" description = "YAML parser and emitter for Python" optional = false python-versions = ">=3.6" files = [ - {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, - {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, - {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, - {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, - {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, - {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, - {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, - {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, - {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, - {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, - {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, - {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, - {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, - {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, - {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, - {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, - {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, - {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, -] - -[[package]] -name = "pyzmq" -version = "25.1.0" -description = "Python bindings for 0MQ" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pyzmq-25.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:1a6169e69034eaa06823da6a93a7739ff38716142b3596c180363dee729d713d"}, - {file = "pyzmq-25.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:19d0383b1f18411d137d891cab567de9afa609b214de68b86e20173dc624c101"}, - {file = "pyzmq-25.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1e931d9a92f628858a50f5bdffdfcf839aebe388b82f9d2ccd5d22a38a789dc"}, - {file = "pyzmq-25.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:97d984b1b2f574bc1bb58296d3c0b64b10e95e7026f8716ed6c0b86d4679843f"}, - {file = "pyzmq-25.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:154bddda2a351161474b36dba03bf1463377ec226a13458725183e508840df89"}, - {file = "pyzmq-25.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:cb6d161ae94fb35bb518b74bb06b7293299c15ba3bc099dccd6a5b7ae589aee3"}, - {file = "pyzmq-25.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:90146ab578931e0e2826ee39d0c948d0ea72734378f1898939d18bc9c823fcf9"}, - {file = "pyzmq-25.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:831ba20b660b39e39e5ac8603e8193f8fce1ee03a42c84ade89c36a251449d80"}, - {file = "pyzmq-25.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3a522510e3434e12aff80187144c6df556bb06fe6b9d01b2ecfbd2b5bfa5c60c"}, - {file = "pyzmq-25.1.0-cp310-cp310-win32.whl", hash = "sha256:be24a5867b8e3b9dd5c241de359a9a5217698ff616ac2daa47713ba2ebe30ad1"}, - {file = "pyzmq-25.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:5693dcc4f163481cf79e98cf2d7995c60e43809e325b77a7748d8024b1b7bcba"}, - {file = "pyzmq-25.1.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:13bbe36da3f8aaf2b7ec12696253c0bf6ffe05f4507985a8844a1081db6ec22d"}, - {file = "pyzmq-25.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:69511d604368f3dc58d4be1b0bad99b61ee92b44afe1cd9b7bd8c5e34ea8248a"}, - {file = "pyzmq-25.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a983c8694667fd76d793ada77fd36c8317e76aa66eec75be2653cef2ea72883"}, - {file = "pyzmq-25.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:332616f95eb400492103ab9d542b69d5f0ff628b23129a4bc0a2fd48da6e4e0b"}, - {file = "pyzmq-25.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58416db767787aedbfd57116714aad6c9ce57215ffa1c3758a52403f7c68cff5"}, - {file = "pyzmq-25.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cad9545f5801a125f162d09ec9b724b7ad9b6440151b89645241d0120e119dcc"}, - {file = "pyzmq-25.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d6128d431b8dfa888bf51c22a04d48bcb3d64431caf02b3cb943269f17fd2994"}, - {file = "pyzmq-25.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:2b15247c49d8cbea695b321ae5478d47cffd496a2ec5ef47131a9e79ddd7e46c"}, - {file = "pyzmq-25.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:442d3efc77ca4d35bee3547a8e08e8d4bb88dadb54a8377014938ba98d2e074a"}, - {file = "pyzmq-25.1.0-cp311-cp311-win32.whl", hash = "sha256:65346f507a815a731092421d0d7d60ed551a80d9b75e8b684307d435a5597425"}, - {file = "pyzmq-25.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:8b45d722046fea5a5694cba5d86f21f78f0052b40a4bbbbf60128ac55bfcc7b6"}, - {file = "pyzmq-25.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f45808eda8b1d71308c5416ef3abe958f033fdbb356984fabbfc7887bed76b3f"}, - {file = "pyzmq-25.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b697774ea8273e3c0460cf0bba16cd85ca6c46dfe8b303211816d68c492e132"}, - {file = "pyzmq-25.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b324fa769577fc2c8f5efcd429cef5acbc17d63fe15ed16d6dcbac2c5eb00849"}, - {file = "pyzmq-25.1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:5873d6a60b778848ce23b6c0ac26c39e48969823882f607516b91fb323ce80e5"}, - {file = "pyzmq-25.1.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:f0d9e7ba6a815a12c8575ba7887da4b72483e4cfc57179af10c9b937f3f9308f"}, - {file = "pyzmq-25.1.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:414b8beec76521358b49170db7b9967d6974bdfc3297f47f7d23edec37329b00"}, - {file = "pyzmq-25.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:01f06f33e12497dca86353c354461f75275a5ad9eaea181ac0dc1662da8074fa"}, - {file = "pyzmq-25.1.0-cp36-cp36m-win32.whl", hash = "sha256:b5a07c4f29bf7cb0164664ef87e4aa25435dcc1f818d29842118b0ac1eb8e2b5"}, - {file = "pyzmq-25.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:968b0c737797c1809ec602e082cb63e9824ff2329275336bb88bd71591e94a90"}, - {file = "pyzmq-25.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:47b915ba666c51391836d7ed9a745926b22c434efa76c119f77bcffa64d2c50c"}, - {file = "pyzmq-25.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5af31493663cf76dd36b00dafbc839e83bbca8a0662931e11816d75f36155897"}, - {file = "pyzmq-25.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5489738a692bc7ee9a0a7765979c8a572520d616d12d949eaffc6e061b82b4d1"}, - {file = "pyzmq-25.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1fc56a0221bdf67cfa94ef2d6ce5513a3d209c3dfd21fed4d4e87eca1822e3a3"}, - {file = "pyzmq-25.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:75217e83faea9edbc29516fc90c817bc40c6b21a5771ecb53e868e45594826b0"}, - {file = "pyzmq-25.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3830be8826639d801de9053cf86350ed6742c4321ba4236e4b5568528d7bfed7"}, - {file = "pyzmq-25.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3575699d7fd7c9b2108bc1c6128641a9a825a58577775ada26c02eb29e09c517"}, - {file = "pyzmq-25.1.0-cp37-cp37m-win32.whl", hash = "sha256:95bd3a998d8c68b76679f6b18f520904af5204f089beebb7b0301d97704634dd"}, - {file = "pyzmq-25.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:dbc466744a2db4b7ca05589f21ae1a35066afada2f803f92369f5877c100ef62"}, - {file = "pyzmq-25.1.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:3bed53f7218490c68f0e82a29c92335daa9606216e51c64f37b48eb78f1281f4"}, - {file = "pyzmq-25.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eb52e826d16c09ef87132c6e360e1879c984f19a4f62d8a935345deac43f3c12"}, - {file = "pyzmq-25.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ddbef8b53cd16467fdbfa92a712eae46dd066aa19780681a2ce266e88fbc7165"}, - {file = "pyzmq-25.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9301cf1d7fc1ddf668d0abbe3e227fc9ab15bc036a31c247276012abb921b5ff"}, - {file = "pyzmq-25.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e23a8c3b6c06de40bdb9e06288180d630b562db8ac199e8cc535af81f90e64b"}, - {file = "pyzmq-25.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4a82faae00d1eed4809c2f18b37f15ce39a10a1c58fe48b60ad02875d6e13d80"}, - {file = "pyzmq-25.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c8398a1b1951aaa330269c35335ae69744be166e67e0ebd9869bdc09426f3871"}, - {file = "pyzmq-25.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d40682ac60b2a613d36d8d3a0cd14fbdf8e7e0618fbb40aa9fa7b796c9081584"}, - {file = "pyzmq-25.1.0-cp38-cp38-win32.whl", hash = "sha256:33d5c8391a34d56224bccf74f458d82fc6e24b3213fc68165c98b708c7a69325"}, - {file = "pyzmq-25.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:c66b7ff2527e18554030319b1376d81560ca0742c6e0b17ff1ee96624a5f1afd"}, - {file = "pyzmq-25.1.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:af56229ea6527a849ac9fb154a059d7e32e77a8cba27e3e62a1e38d8808cb1a5"}, - {file = "pyzmq-25.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bdca18b94c404af6ae5533cd1bc310c4931f7ac97c148bbfd2cd4bdd62b96253"}, - {file = "pyzmq-25.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0b6b42f7055bbc562f63f3df3b63e3dd1ebe9727ff0f124c3aa7bcea7b3a00f9"}, - {file = "pyzmq-25.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4c2fc7aad520a97d64ffc98190fce6b64152bde57a10c704b337082679e74f67"}, - {file = "pyzmq-25.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be86a26415a8b6af02cd8d782e3a9ae3872140a057f1cadf0133de685185c02b"}, - {file = "pyzmq-25.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:851fb2fe14036cfc1960d806628b80276af5424db09fe5c91c726890c8e6d943"}, - {file = "pyzmq-25.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2a21fec5c3cea45421a19ccbe6250c82f97af4175bc09de4d6dd78fb0cb4c200"}, - {file = "pyzmq-25.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bad172aba822444b32eae54c2d5ab18cd7dee9814fd5c7ed026603b8cae2d05f"}, - {file = "pyzmq-25.1.0-cp39-cp39-win32.whl", hash = "sha256:4d67609b37204acad3d566bb7391e0ecc25ef8bae22ff72ebe2ad7ffb7847158"}, - {file = "pyzmq-25.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:71c7b5896e40720d30cd77a81e62b433b981005bbff0cb2f739e0f8d059b5d99"}, - {file = "pyzmq-25.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4cb27ef9d3bdc0c195b2dc54fcb8720e18b741624686a81942e14c8b67cc61a6"}, - {file = "pyzmq-25.1.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0c4fc2741e0513b5d5a12fe200d6785bbcc621f6f2278893a9ca7bed7f2efb7d"}, - {file = "pyzmq-25.1.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fc34fdd458ff77a2a00e3c86f899911f6f269d393ca5675842a6e92eea565bae"}, - {file = "pyzmq-25.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8751f9c1442624da391bbd92bd4b072def6d7702a9390e4479f45c182392ff78"}, - {file = "pyzmq-25.1.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:6581e886aec3135964a302a0f5eb68f964869b9efd1dbafdebceaaf2934f8a68"}, - {file = "pyzmq-25.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5482f08d2c3c42b920e8771ae8932fbaa0a67dff925fc476996ddd8155a170f3"}, - {file = "pyzmq-25.1.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5e7fbcafa3ea16d1de1f213c226005fea21ee16ed56134b75b2dede5a2129e62"}, - {file = "pyzmq-25.1.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:adecf6d02b1beab8d7c04bc36f22bb0e4c65a35eb0b4750b91693631d4081c70"}, - {file = "pyzmq-25.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6d39e42a0aa888122d1beb8ec0d4ddfb6c6b45aecb5ba4013c27e2f28657765"}, - {file = "pyzmq-25.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:7018289b402ebf2b2c06992813523de61d4ce17bd514c4339d8f27a6f6809492"}, - {file = "pyzmq-25.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9e68ae9864d260b18f311b68d29134d8776d82e7f5d75ce898b40a88df9db30f"}, - {file = "pyzmq-25.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e21cc00e4debe8f54c3ed7b9fcca540f46eee12762a9fa56feb8512fd9057161"}, - {file = "pyzmq-25.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2f666ae327a6899ff560d741681fdcdf4506f990595201ed39b44278c471ad98"}, - {file = "pyzmq-25.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f5efcc29056dfe95e9c9db0dfbb12b62db9c4ad302f812931b6d21dd04a9119"}, - {file = "pyzmq-25.1.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:48e5e59e77c1a83162ab3c163fc01cd2eebc5b34560341a67421b09be0891287"}, - {file = "pyzmq-25.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:108c96ebbd573d929740d66e4c3d1bdf31d5cde003b8dc7811a3c8c5b0fc173b"}, - {file = "pyzmq-25.1.0.tar.gz", hash = "sha256:80c41023465d36280e801564a69cbfce8ae85ff79b080e1913f6e90481fb8957"}, -] - -[package.dependencies] -cffi = {version = "*", markers = "implementation_name == \"pypy\""} - -[[package]] -name = "qtconsole" -version = "5.4.3" -description = "Jupyter Qt console" -optional = false -python-versions = ">= 3.7" -files = [ - {file = "qtconsole-5.4.3-py3-none-any.whl", hash = "sha256:35fd6e87b1f6d1fd41801b07e69339f8982e76afd4fa8ef35595bc6036717189"}, - {file = "qtconsole-5.4.3.tar.gz", hash = "sha256:5e4082a86a201796b2a5cfd4298352d22b158b51b57736531824715fc2a979dd"}, -] - -[package.dependencies] -ipykernel = ">=4.1" -ipython-genutils = "*" -jupyter-client = ">=4.1" -jupyter-core = "*" -packaging = "*" -pygments = "*" -pyzmq = ">=17.1" -qtpy = ">=2.0.1" -traitlets = "<5.2.1 || >5.2.1,<5.2.2 || >5.2.2" - -[package.extras] -doc = ["Sphinx (>=1.3)"] -test = ["flaky", "pytest", "pytest-qt"] - -[[package]] -name = "qtpy" -version = "2.3.1" -description = "Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6)." -optional = false -python-versions = ">=3.7" -files = [ - {file = "QtPy-2.3.1-py3-none-any.whl", hash = "sha256:5193d20e0b16e4d9d3bc2c642d04d9f4e2c892590bd1b9c92bfe38a95d5a2e12"}, - {file = "QtPy-2.3.1.tar.gz", hash = "sha256:a8c74982d6d172ce124d80cafd39653df78989683f760f2281ba91a6e7b9de8b"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] -[package.dependencies] -packaging = "*" - -[package.extras] -test = ["pytest (>=6,!=7.0.0,!=7.0.1)", "pytest-cov (>=3.0.0)", "pytest-qt"] - [[package]] name = "regex" -version = "2023.6.3" +version = "2023.8.8" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.6" files = [ - {file = "regex-2023.6.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:824bf3ac11001849aec3fa1d69abcb67aac3e150a933963fb12bda5151fe1bfd"}, - {file = "regex-2023.6.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:05ed27acdf4465c95826962528f9e8d41dbf9b1aa8531a387dee6ed215a3e9ef"}, - {file = "regex-2023.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b49c764f88a79160fa64f9a7b425620e87c9f46095ef9c9920542ab2495c8bc"}, - {file = "regex-2023.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8e3f1316c2293e5469f8f09dc2d76efb6c3982d3da91ba95061a7e69489a14ef"}, - {file = "regex-2023.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:43e1dd9d12df9004246bacb79a0e5886b3b6071b32e41f83b0acbf293f820ee8"}, - {file = "regex-2023.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4959e8bcbfda5146477d21c3a8ad81b185cd252f3d0d6e4724a5ef11c012fb06"}, - {file = "regex-2023.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:af4dd387354dc83a3bff67127a124c21116feb0d2ef536805c454721c5d7993d"}, - {file = "regex-2023.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2239d95d8e243658b8dbb36b12bd10c33ad6e6933a54d36ff053713f129aa536"}, - {file = "regex-2023.6.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:890e5a11c97cf0d0c550eb661b937a1e45431ffa79803b942a057c4fb12a2da2"}, - {file = "regex-2023.6.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a8105e9af3b029f243ab11ad47c19b566482c150c754e4c717900a798806b222"}, - {file = "regex-2023.6.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:25be746a8ec7bc7b082783216de8e9473803706723b3f6bef34b3d0ed03d57e2"}, - {file = "regex-2023.6.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:3676f1dd082be28b1266c93f618ee07741b704ab7b68501a173ce7d8d0d0ca18"}, - {file = "regex-2023.6.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:10cb847aeb1728412c666ab2e2000ba6f174f25b2bdc7292e7dd71b16db07568"}, - {file = "regex-2023.6.3-cp310-cp310-win32.whl", hash = "sha256:dbbbfce33cd98f97f6bffb17801b0576e653f4fdb1d399b2ea89638bc8d08ae1"}, - {file = "regex-2023.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:c5f8037000eb21e4823aa485149f2299eb589f8d1fe4b448036d230c3f4e68e0"}, - {file = "regex-2023.6.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c123f662be8ec5ab4ea72ea300359023a5d1df095b7ead76fedcd8babbedf969"}, - {file = "regex-2023.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9edcbad1f8a407e450fbac88d89e04e0b99a08473f666a3f3de0fd292badb6aa"}, - {file = "regex-2023.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcba6dae7de533c876255317c11f3abe4907ba7d9aa15d13e3d9710d4315ec0e"}, - {file = "regex-2023.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29cdd471ebf9e0f2fb3cac165efedc3c58db841d83a518b082077e612d3ee5df"}, - {file = "regex-2023.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12b74fbbf6cbbf9dbce20eb9b5879469e97aeeaa874145517563cca4029db65c"}, - {file = "regex-2023.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c29ca1bd61b16b67be247be87390ef1d1ef702800f91fbd1991f5c4421ebae8"}, - {file = "regex-2023.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77f09bc4b55d4bf7cc5eba785d87001d6757b7c9eec237fe2af57aba1a071d9"}, - {file = "regex-2023.6.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ea353ecb6ab5f7e7d2f4372b1e779796ebd7b37352d290096978fea83c4dba0c"}, - {file = "regex-2023.6.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:10590510780b7541969287512d1b43f19f965c2ece6c9b1c00fc367b29d8dce7"}, - {file = "regex-2023.6.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e2fbd6236aae3b7f9d514312cdb58e6494ee1c76a9948adde6eba33eb1c4264f"}, - {file = "regex-2023.6.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:6b2675068c8b56f6bfd5a2bda55b8accbb96c02fd563704732fd1c95e2083461"}, - {file = "regex-2023.6.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74419d2b50ecb98360cfaa2974da8689cb3b45b9deff0dcf489c0d333bcc1477"}, - {file = "regex-2023.6.3-cp311-cp311-win32.whl", hash = "sha256:fb5ec16523dc573a4b277663a2b5a364e2099902d3944c9419a40ebd56a118f9"}, - {file = "regex-2023.6.3-cp311-cp311-win_amd64.whl", hash = "sha256:09e4a1a6acc39294a36b7338819b10baceb227f7f7dbbea0506d419b5a1dd8af"}, - {file = "regex-2023.6.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0654bca0cdf28a5956c83839162692725159f4cda8d63e0911a2c0dc76166525"}, - {file = "regex-2023.6.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:463b6a3ceb5ca952e66550a4532cef94c9a0c80dc156c4cc343041951aec1697"}, - {file = "regex-2023.6.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87b2a5bb5e78ee0ad1de71c664d6eb536dc3947a46a69182a90f4410f5e3f7dd"}, - {file = "regex-2023.6.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6343c6928282c1f6a9db41f5fd551662310e8774c0e5ebccb767002fcf663ca9"}, - {file = "regex-2023.6.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6192d5af2ccd2a38877bfef086d35e6659566a335b1492786ff254c168b1693"}, - {file = "regex-2023.6.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74390d18c75054947e4194019077e243c06fbb62e541d8817a0fa822ea310c14"}, - {file = "regex-2023.6.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:742e19a90d9bb2f4a6cf2862b8b06dea5e09b96c9f2df1779e53432d7275331f"}, - {file = "regex-2023.6.3-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:8abbc5d54ea0ee80e37fef009e3cec5dafd722ed3c829126253d3e22f3846f1e"}, - {file = "regex-2023.6.3-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:c2b867c17a7a7ae44c43ebbeb1b5ff406b3e8d5b3e14662683e5e66e6cc868d3"}, - {file = "regex-2023.6.3-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:d831c2f8ff278179705ca59f7e8524069c1a989e716a1874d6d1aab6119d91d1"}, - {file = "regex-2023.6.3-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:ee2d1a9a253b1729bb2de27d41f696ae893507c7db224436abe83ee25356f5c1"}, - {file = "regex-2023.6.3-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:61474f0b41fe1a80e8dfa70f70ea1e047387b7cd01c85ec88fa44f5d7561d787"}, - {file = "regex-2023.6.3-cp36-cp36m-win32.whl", hash = "sha256:0b71e63226e393b534105fcbdd8740410dc6b0854c2bfa39bbda6b0d40e59a54"}, - {file = "regex-2023.6.3-cp36-cp36m-win_amd64.whl", hash = "sha256:bbb02fd4462f37060122e5acacec78e49c0fbb303c30dd49c7f493cf21fc5b27"}, - {file = "regex-2023.6.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b862c2b9d5ae38a68b92e215b93f98d4c5e9454fa36aae4450f61dd33ff48487"}, - {file = "regex-2023.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:976d7a304b59ede34ca2921305b57356694f9e6879db323fd90a80f865d355a3"}, - {file = "regex-2023.6.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:83320a09188e0e6c39088355d423aa9d056ad57a0b6c6381b300ec1a04ec3d16"}, - {file = "regex-2023.6.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9427a399501818a7564f8c90eced1e9e20709ece36be701f394ada99890ea4b3"}, - {file = "regex-2023.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7178bbc1b2ec40eaca599d13c092079bf529679bf0371c602edaa555e10b41c3"}, - {file = "regex-2023.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:837328d14cde912af625d5f303ec29f7e28cdab588674897baafaf505341f2fc"}, - {file = "regex-2023.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2d44dc13229905ae96dd2ae2dd7cebf824ee92bc52e8cf03dcead37d926da019"}, - {file = "regex-2023.6.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d54af539295392611e7efbe94e827311eb8b29668e2b3f4cadcfe6f46df9c777"}, - {file = "regex-2023.6.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:7117d10690c38a622e54c432dfbbd3cbd92f09401d622902c32f6d377e2300ee"}, - {file = "regex-2023.6.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bb60b503ec8a6e4e3e03a681072fa3a5adcbfa5479fa2d898ae2b4a8e24c4591"}, - {file = "regex-2023.6.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:65ba8603753cec91c71de423a943ba506363b0e5c3fdb913ef8f9caa14b2c7e0"}, - {file = "regex-2023.6.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:271f0bdba3c70b58e6f500b205d10a36fb4b58bd06ac61381b68de66442efddb"}, - {file = "regex-2023.6.3-cp37-cp37m-win32.whl", hash = "sha256:9beb322958aaca059f34975b0df135181f2e5d7a13b84d3e0e45434749cb20f7"}, - {file = "regex-2023.6.3-cp37-cp37m-win_amd64.whl", hash = "sha256:fea75c3710d4f31389eed3c02f62d0b66a9da282521075061ce875eb5300cf23"}, - {file = "regex-2023.6.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8f56fcb7ff7bf7404becdfc60b1e81a6d0561807051fd2f1860b0d0348156a07"}, - {file = "regex-2023.6.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d2da3abc88711bce7557412310dfa50327d5769a31d1c894b58eb256459dc289"}, - {file = "regex-2023.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a99b50300df5add73d307cf66abea093304a07eb017bce94f01e795090dea87c"}, - {file = "regex-2023.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5708089ed5b40a7b2dc561e0c8baa9535b77771b64a8330b684823cfd5116036"}, - {file = "regex-2023.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:687ea9d78a4b1cf82f8479cab23678aff723108df3edeac098e5b2498879f4a7"}, - {file = "regex-2023.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d3850beab9f527f06ccc94b446c864059c57651b3f911fddb8d9d3ec1d1b25d"}, - {file = "regex-2023.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e8915cc96abeb8983cea1df3c939e3c6e1ac778340c17732eb63bb96247b91d2"}, - {file = "regex-2023.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:841d6e0e5663d4c7b4c8099c9997be748677d46cbf43f9f471150e560791f7ff"}, - {file = "regex-2023.6.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9edce5281f965cf135e19840f4d93d55b3835122aa76ccacfd389e880ba4cf82"}, - {file = "regex-2023.6.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b956231ebdc45f5b7a2e1f90f66a12be9610ce775fe1b1d50414aac1e9206c06"}, - {file = "regex-2023.6.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:36efeba71c6539d23c4643be88295ce8c82c88bbd7c65e8a24081d2ca123da3f"}, - {file = "regex-2023.6.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:cf67ca618b4fd34aee78740bea954d7c69fdda419eb208c2c0c7060bb822d747"}, - {file = "regex-2023.6.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b4598b1897837067a57b08147a68ac026c1e73b31ef6e36deeeb1fa60b2933c9"}, - {file = "regex-2023.6.3-cp38-cp38-win32.whl", hash = "sha256:f415f802fbcafed5dcc694c13b1292f07fe0befdb94aa8a52905bd115ff41e88"}, - {file = "regex-2023.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:d4f03bb71d482f979bda92e1427f3ec9b220e62a7dd337af0aa6b47bf4498f72"}, - {file = "regex-2023.6.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccf91346b7bd20c790310c4147eee6ed495a54ddb6737162a36ce9dbef3e4751"}, - {file = "regex-2023.6.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b28f5024a3a041009eb4c333863d7894d191215b39576535c6734cd88b0fcb68"}, - {file = "regex-2023.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0bb18053dfcfed432cc3ac632b5e5e5c5b7e55fb3f8090e867bfd9b054dbcbf"}, - {file = "regex-2023.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a5bfb3004f2144a084a16ce19ca56b8ac46e6fd0651f54269fc9e230edb5e4a"}, - {file = "regex-2023.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c6b48d0fa50d8f4df3daf451be7f9689c2bde1a52b1225c5926e3f54b6a9ed1"}, - {file = "regex-2023.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:051da80e6eeb6e239e394ae60704d2b566aa6a7aed6f2890a7967307267a5dc6"}, - {file = "regex-2023.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a4c3b7fa4cdaa69268748665a1a6ff70c014d39bb69c50fda64b396c9116cf77"}, - {file = "regex-2023.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:457b6cce21bee41ac292d6753d5e94dcbc5c9e3e3a834da285b0bde7aa4a11e9"}, - {file = "regex-2023.6.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:aad51907d74fc183033ad796dd4c2e080d1adcc4fd3c0fd4fd499f30c03011cd"}, - {file = "regex-2023.6.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:0385e73da22363778ef2324950e08b689abdf0b108a7d8decb403ad7f5191938"}, - {file = "regex-2023.6.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c6a57b742133830eec44d9b2290daf5cbe0a2f1d6acee1b3c7b1c7b2f3606df7"}, - {file = "regex-2023.6.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:3e5219bf9e75993d73ab3d25985c857c77e614525fac9ae02b1bebd92f7cecac"}, - {file = "regex-2023.6.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e5087a3c59eef624a4591ef9eaa6e9a8d8a94c779dade95d27c0bc24650261cd"}, - {file = "regex-2023.6.3-cp39-cp39-win32.whl", hash = "sha256:20326216cc2afe69b6e98528160b225d72f85ab080cbdf0b11528cbbaba2248f"}, - {file = "regex-2023.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:bdff5eab10e59cf26bc479f565e25ed71a7d041d1ded04ccf9aee1d9f208487a"}, - {file = "regex-2023.6.3.tar.gz", hash = "sha256:72d1a25bf36d2050ceb35b517afe13864865268dfb45910e2e17a84be6cbfeb0"}, + {file = "regex-2023.8.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:88900f521c645f784260a8d346e12a1590f79e96403971241e64c3a265c8ecdb"}, + {file = "regex-2023.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3611576aff55918af2697410ff0293d6071b7e00f4b09e005d614686ac4cd57c"}, + {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8a0ccc8f2698f120e9e5742f4b38dc944c38744d4bdfc427616f3a163dd9de5"}, + {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c662a4cbdd6280ee56f841f14620787215a171c4e2d1744c9528bed8f5816c96"}, + {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf0633e4a1b667bfe0bb10b5e53fe0d5f34a6243ea2530eb342491f1adf4f739"}, + {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:551ad543fa19e94943c5b2cebc54c73353ffff08228ee5f3376bd27b3d5b9800"}, + {file = "regex-2023.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54de2619f5ea58474f2ac211ceea6b615af2d7e4306220d4f3fe690c91988a61"}, + {file = "regex-2023.8.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5ec4b3f0aebbbe2fc0134ee30a791af522a92ad9f164858805a77442d7d18570"}, + {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3ae646c35cb9f820491760ac62c25b6d6b496757fda2d51be429e0e7b67ae0ab"}, + {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ca339088839582d01654e6f83a637a4b8194d0960477b9769d2ff2cfa0fa36d2"}, + {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:d9b6627408021452dcd0d2cdf8da0534e19d93d070bfa8b6b4176f99711e7f90"}, + {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:bd3366aceedf274f765a3a4bc95d6cd97b130d1dda524d8f25225d14123c01db"}, + {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7aed90a72fc3654fba9bc4b7f851571dcc368120432ad68b226bd593f3f6c0b7"}, + {file = "regex-2023.8.8-cp310-cp310-win32.whl", hash = "sha256:80b80b889cb767cc47f31d2b2f3dec2db8126fbcd0cff31b3925b4dc6609dcdb"}, + {file = "regex-2023.8.8-cp310-cp310-win_amd64.whl", hash = "sha256:b82edc98d107cbc7357da7a5a695901b47d6eb0420e587256ba3ad24b80b7d0b"}, + {file = "regex-2023.8.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1e7d84d64c84ad97bf06f3c8cb5e48941f135ace28f450d86af6b6512f1c9a71"}, + {file = "regex-2023.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ce0f9fbe7d295f9922c0424a3637b88c6c472b75eafeaff6f910494a1fa719ef"}, + {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06c57e14ac723b04458df5956cfb7e2d9caa6e9d353c0b4c7d5d54fcb1325c46"}, + {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e7a9aaa5a1267125eef22cef3b63484c3241aaec6f48949b366d26c7250e0357"}, + {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b7408511fca48a82a119d78a77c2f5eb1b22fe88b0d2450ed0756d194fe7a9a"}, + {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14dc6f2d88192a67d708341f3085df6a4f5a0c7b03dec08d763ca2cd86e9f559"}, + {file = "regex-2023.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48c640b99213643d141550326f34f0502fedb1798adb3c9eb79650b1ecb2f177"}, + {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0085da0f6c6393428bf0d9c08d8b1874d805bb55e17cb1dfa5ddb7cfb11140bf"}, + {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:964b16dcc10c79a4a2be9f1273fcc2684a9eedb3906439720598029a797b46e6"}, + {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7ce606c14bb195b0e5108544b540e2c5faed6843367e4ab3deb5c6aa5e681208"}, + {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:40f029d73b10fac448c73d6eb33d57b34607f40116e9f6e9f0d32e9229b147d7"}, + {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3b8e6ea6be6d64104d8e9afc34c151926f8182f84e7ac290a93925c0db004bfd"}, + {file = "regex-2023.8.8-cp311-cp311-win32.whl", hash = "sha256:942f8b1f3b223638b02df7df79140646c03938d488fbfb771824f3d05fc083a8"}, + {file = "regex-2023.8.8-cp311-cp311-win_amd64.whl", hash = "sha256:51d8ea2a3a1a8fe4f67de21b8b93757005213e8ac3917567872f2865185fa7fb"}, + {file = "regex-2023.8.8-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e951d1a8e9963ea51efd7f150450803e3b95db5939f994ad3d5edac2b6f6e2b4"}, + {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704f63b774218207b8ccc6c47fcef5340741e5d839d11d606f70af93ee78e4d4"}, + {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22283c769a7b01c8ac355d5be0715bf6929b6267619505e289f792b01304d898"}, + {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91129ff1bb0619bc1f4ad19485718cc623a2dc433dff95baadbf89405c7f6b57"}, + {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de35342190deb7b866ad6ba5cbcccb2d22c0487ee0cbb251efef0843d705f0d4"}, + {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b993b6f524d1e274a5062488a43e3f9f8764ee9745ccd8e8193df743dbe5ee61"}, + {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3026cbcf11d79095a32d9a13bbc572a458727bd5b1ca332df4a79faecd45281c"}, + {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:293352710172239bf579c90a9864d0df57340b6fd21272345222fb6371bf82b3"}, + {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d909b5a3fff619dc7e48b6b1bedc2f30ec43033ba7af32f936c10839e81b9217"}, + {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3d370ff652323c5307d9c8e4c62efd1956fb08051b0e9210212bc51168b4ff56"}, + {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:b076da1ed19dc37788f6a934c60adf97bd02c7eea461b73730513921a85d4235"}, + {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:e9941a4ada58f6218694f382e43fdd256e97615db9da135e77359da257a7168b"}, + {file = "regex-2023.8.8-cp36-cp36m-win32.whl", hash = "sha256:a8c65c17aed7e15a0c824cdc63a6b104dfc530f6fa8cb6ac51c437af52b481c7"}, + {file = "regex-2023.8.8-cp36-cp36m-win_amd64.whl", hash = "sha256:aadf28046e77a72f30dcc1ab185639e8de7f4104b8cb5c6dfa5d8ed860e57236"}, + {file = "regex-2023.8.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:423adfa872b4908843ac3e7a30f957f5d5282944b81ca0a3b8a7ccbbfaa06103"}, + {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ae594c66f4a7e1ea67232a0846649a7c94c188d6c071ac0210c3e86a5f92109"}, + {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e51c80c168074faa793685656c38eb7a06cbad7774c8cbc3ea05552d615393d8"}, + {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09b7f4c66aa9d1522b06e31a54f15581c37286237208df1345108fcf4e050c18"}, + {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e73e5243af12d9cd6a9d6a45a43570dbe2e5b1cdfc862f5ae2b031e44dd95a8"}, + {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:941460db8fe3bd613db52f05259c9336f5a47ccae7d7def44cc277184030a116"}, + {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f0ccf3e01afeb412a1a9993049cb160d0352dba635bbca7762b2dc722aa5742a"}, + {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:2e9216e0d2cdce7dbc9be48cb3eacb962740a09b011a116fd7af8c832ab116ca"}, + {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:5cd9cd7170459b9223c5e592ac036e0704bee765706445c353d96f2890e816c8"}, + {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:4873ef92e03a4309b3ccd8281454801b291b689f6ad45ef8c3658b6fa761d7ac"}, + {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:239c3c2a339d3b3ddd51c2daef10874410917cd2b998f043c13e2084cb191684"}, + {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1005c60ed7037be0d9dea1f9c53cc42f836188227366370867222bda4c3c6bd7"}, + {file = "regex-2023.8.8-cp37-cp37m-win32.whl", hash = "sha256:e6bd1e9b95bc5614a7a9c9c44fde9539cba1c823b43a9f7bc11266446dd568e3"}, + {file = "regex-2023.8.8-cp37-cp37m-win_amd64.whl", hash = "sha256:9a96edd79661e93327cfeac4edec72a4046e14550a1d22aa0dd2e3ca52aec921"}, + {file = "regex-2023.8.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f2181c20ef18747d5f4a7ea513e09ea03bdd50884a11ce46066bb90fe4213675"}, + {file = "regex-2023.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a2ad5add903eb7cdde2b7c64aaca405f3957ab34f16594d2b78d53b8b1a6a7d6"}, + {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9233ac249b354c54146e392e8a451e465dd2d967fc773690811d3a8c240ac601"}, + {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:920974009fb37b20d32afcdf0227a2e707eb83fe418713f7a8b7de038b870d0b"}, + {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd2b6c5dfe0929b6c23dde9624483380b170b6e34ed79054ad131b20203a1a63"}, + {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96979d753b1dc3b2169003e1854dc67bfc86edf93c01e84757927f810b8c3c93"}, + {file = "regex-2023.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ae54a338191e1356253e7883d9d19f8679b6143703086245fb14d1f20196be9"}, + {file = "regex-2023.8.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2162ae2eb8b079622176a81b65d486ba50b888271302190870b8cc488587d280"}, + {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c884d1a59e69e03b93cf0dfee8794c63d7de0ee8f7ffb76e5f75be8131b6400a"}, + {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf9273e96f3ee2ac89ffcb17627a78f78e7516b08f94dc435844ae72576a276e"}, + {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:83215147121e15d5f3a45d99abeed9cf1fe16869d5c233b08c56cdf75f43a504"}, + {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3f7454aa427b8ab9101f3787eb178057c5250478e39b99540cfc2b889c7d0586"}, + {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f0640913d2c1044d97e30d7c41728195fc37e54d190c5385eacb52115127b882"}, + {file = "regex-2023.8.8-cp38-cp38-win32.whl", hash = "sha256:0c59122ceccb905a941fb23b087b8eafc5290bf983ebcb14d2301febcbe199c7"}, + {file = "regex-2023.8.8-cp38-cp38-win_amd64.whl", hash = "sha256:c12f6f67495ea05c3d542d119d270007090bad5b843f642d418eb601ec0fa7be"}, + {file = "regex-2023.8.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:82cd0a69cd28f6cc3789cc6adeb1027f79526b1ab50b1f6062bbc3a0ccb2dbc3"}, + {file = "regex-2023.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb34d1605f96a245fc39790a117ac1bac8de84ab7691637b26ab2c5efb8f228c"}, + {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:987b9ac04d0b38ef4f89fbc035e84a7efad9cdd5f1e29024f9289182c8d99e09"}, + {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dd6082f4e2aec9b6a0927202c85bc1b09dcab113f97265127c1dc20e2e32495"}, + {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7eb95fe8222932c10d4436e7a6f7c99991e3fdd9f36c949eff16a69246dee2dc"}, + {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7098c524ba9f20717a56a8d551d2ed491ea89cbf37e540759ed3b776a4f8d6eb"}, + {file = "regex-2023.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b694430b3f00eb02c594ff5a16db30e054c1b9589a043fe9174584c6efa8033"}, + {file = "regex-2023.8.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2aeab3895d778155054abea5238d0eb9a72e9242bd4b43f42fd911ef9a13470"}, + {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:988631b9d78b546e284478c2ec15c8a85960e262e247b35ca5eaf7ee22f6050a"}, + {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:67ecd894e56a0c6108ec5ab1d8fa8418ec0cff45844a855966b875d1039a2e34"}, + {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:14898830f0a0eb67cae2bbbc787c1a7d6e34ecc06fbd39d3af5fe29a4468e2c9"}, + {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:f2200e00b62568cfd920127782c61bc1c546062a879cdc741cfcc6976668dfcf"}, + {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9691a549c19c22d26a4f3b948071e93517bdf86e41b81d8c6ac8a964bb71e5a6"}, + {file = "regex-2023.8.8-cp39-cp39-win32.whl", hash = "sha256:6ab2ed84bf0137927846b37e882745a827458689eb969028af8032b1b3dac78e"}, + {file = "regex-2023.8.8-cp39-cp39-win_amd64.whl", hash = "sha256:5543c055d8ec7801901e1193a51570643d6a6ab8751b1f7dd9af71af467538bb"}, + {file = "regex-2023.8.8.tar.gz", hash = "sha256:fcbdc5f2b0f1cd0f6a56cdb46fe41d2cce1e644e3b68832f3eeebc5fb0f7712e"}, ] [[package]] @@ -2764,13 +1570,13 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-mock" -version = "1.10.0" +version = "1.11.0" description = "Mock out responses from the requests package" optional = false python-versions = "*" files = [ - {file = "requests-mock-1.10.0.tar.gz", hash = "sha256:59c9c32419a9fb1ae83ec242d98e889c45bd7d7a65d48375cc243ec08441658b"}, - {file = "requests_mock-1.10.0-py2.py3-none-any.whl", hash = "sha256:2fdbb637ad17ee15c06f33d31169e71bf9fe2bdb7bc9da26185be0dd8d842699"}, + {file = "requests-mock-1.11.0.tar.gz", hash = "sha256:ef10b572b489a5f28e09b708697208c4a3b2b89ef80a9f01584340ea357ec3c4"}, + {file = "requests_mock-1.11.0-py2.py3-none-any.whl", hash = "sha256:f7fae383f228633f6bececebdab236c478ace2284d6292c6e7e2867b9ab74d15"}, ] [package.dependencies] @@ -2779,63 +1585,66 @@ six = "*" [package.extras] fixture = ["fixtures"] -test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testrepository (>=0.0.18)", "testtools"] +test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testtools"] [[package]] -name = "rfc3339-validator" -version = "0.1.4" -description = "A pure python RFC3339 validator" +name = "rich" +version = "13.5.2" +description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7.0" files = [ - {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, - {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, + {file = "rich-13.5.2-py3-none-any.whl", hash = "sha256:146a90b3b6b47cac4a73c12866a499e9817426423f57c5a66949c086191a8808"}, + {file = "rich-13.5.2.tar.gz", hash = "sha256:fb9d6c0a0f643c99eed3875b5377a184132ba9be4d61516a55273d3554d75a39"}, ] [package.dependencies] -six = "*" +markdown-it-py = ">=2.2.0" +pygments = ">=2.13.0,<3.0.0" -[[package]] -name = "rfc3986-validator" -version = "0.1.1" -description = "Pure python rfc3986 validator" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, - {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, -] +[package.extras] +jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] -name = "send2trash" -version = "1.8.2" -description = "Send file to trash natively under Mac OS X, Windows and Linux" +name = "ruff" +version = "0.0.286" +description = "An extremely fast Python linter, written in Rust." optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.7" files = [ - {file = "Send2Trash-1.8.2-py3-none-any.whl", hash = "sha256:a384719d99c07ce1eefd6905d2decb6f8b7ed054025bb0e618919f945de4f679"}, - {file = "Send2Trash-1.8.2.tar.gz", hash = "sha256:c132d59fa44b9ca2b1699af5c86f57ce9f4c5eb56629d5d55fbb7a35f84e2312"}, + {file = "ruff-0.0.286-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:8e22cb557e7395893490e7f9cfea1073d19a5b1dd337f44fd81359b2767da4e9"}, + {file = "ruff-0.0.286-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:68ed8c99c883ae79a9133cb1a86d7130feee0397fdf5ba385abf2d53e178d3fa"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8301f0bb4ec1a5b29cfaf15b83565136c47abefb771603241af9d6038f8981e8"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:acc4598f810bbc465ce0ed84417ac687e392c993a84c7eaf3abf97638701c1ec"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88c8e358b445eb66d47164fa38541cfcc267847d1e7a92dd186dddb1a0a9a17f"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:0433683d0c5dbcf6162a4beb2356e820a593243f1fa714072fec15e2e4f4c939"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddb61a0c4454cbe4623f4a07fef03c5ae921fe04fede8d15c6e36703c0a73b07"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:47549c7c0be24c8ae9f2bce6f1c49fbafea83bca80142d118306f08ec7414041"}, + {file = "ruff-0.0.286-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:559aa793149ac23dc4310f94f2c83209eedb16908a0343663be19bec42233d25"}, + {file = "ruff-0.0.286-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:d73cfb1c3352e7aa0ce6fb2321f36fa1d4a2c48d2ceac694cb03611ddf0e4db6"}, + {file = "ruff-0.0.286-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:3dad93b1f973c6d1db4b6a5da8690c5625a3fa32bdf38e543a6936e634b83dc3"}, + {file = "ruff-0.0.286-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26afc0851f4fc3738afcf30f5f8b8612a31ac3455cb76e611deea80f5c0bf3ce"}, + {file = "ruff-0.0.286-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:9b6b116d1c4000de1b9bf027131dbc3b8a70507788f794c6b09509d28952c512"}, + {file = "ruff-0.0.286-py3-none-win32.whl", hash = "sha256:556e965ac07c1e8c1c2d759ac512e526ecff62c00fde1a046acb088d3cbc1a6c"}, + {file = "ruff-0.0.286-py3-none-win_amd64.whl", hash = "sha256:5d295c758961376c84aaa92d16e643d110be32add7465e197bfdaec5a431a107"}, + {file = "ruff-0.0.286-py3-none-win_arm64.whl", hash = "sha256:1d6142d53ab7f164204b3133d053c4958d4d11ec3a39abf23a40b13b0784e3f0"}, + {file = "ruff-0.0.286.tar.gz", hash = "sha256:f1e9d169cce81a384a26ee5bb8c919fe9ae88255f39a1a69fd1ebab233a85ed2"}, ] -[package.extras] -nativelib = ["pyobjc-framework-Cocoa", "pywin32"] -objc = ["pyobjc-framework-Cocoa"] -win32 = ["pywin32"] - [[package]] name = "setuptools" -version = "67.8.0" +version = "68.1.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "setuptools-67.8.0-py3-none-any.whl", hash = "sha256:5df61bf30bb10c6f756eb19e7c9f3b473051f48db77fddbe06ff2ca307df9a6f"}, - {file = "setuptools-67.8.0.tar.gz", hash = "sha256:62642358adc77ffa87233bc4d2354c4b2682d214048f500964dbe760ccedf102"}, + {file = "setuptools-68.1.2-py3-none-any.whl", hash = "sha256:3d8083eed2d13afc9426f227b24fd1659489ec107c0e86cec2ffdde5c92e790b"}, + {file = "setuptools-68.1.2.tar.gz", hash = "sha256:3d4dfa6d95f1b101d695a6160a7626e15583af71a5f52176efa5d39a054d475d"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5,<=7.1.2)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] [[package]] @@ -2903,17 +1712,6 @@ files = [ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] -[[package]] -name = "sniffio" -version = "1.3.0" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, -] - [[package]] name = "snowballstemmer" version = "2.2.0" @@ -2938,25 +1736,25 @@ files = [ [[package]] name = "sphinx" -version = "6.2.1" +version = "7.2.4" description = "Python documentation generator" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "Sphinx-6.2.1.tar.gz", hash = "sha256:6d56a34697bb749ffa0152feafc4b19836c755d90a7c59b72bc7dfd371b9cc6b"}, - {file = "sphinx-6.2.1-py3-none-any.whl", hash = "sha256:97787ff1fa3256a3eef9eda523a63dbf299f7b47e053cfcf684a1c2a8380c912"}, + {file = "sphinx-7.2.4-py3-none-any.whl", hash = "sha256:9b3aa23254ffc5be468646810543e491653bf5a67f3f23e4ccd4e515b0bd0b9c"}, + {file = "sphinx-7.2.4.tar.gz", hash = "sha256:1aeec862bf1edff4374012ac38082e0d1daa066c9e327841a846401164797988"}, ] [package.dependencies] alabaster = ">=0.7,<0.8" babel = ">=2.9" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} -docutils = ">=0.18.1,<0.20" +docutils = ">=0.18.1,<0.21" imagesize = ">=1.3" importlib-metadata = {version = ">=4.8", markers = "python_version < \"3.10\""} Jinja2 = ">=3.0" packaging = ">=21.0" -Pygments = ">=2.13" +Pygments = ">=2.14" requests = ">=2.25.0" snowballstemmer = ">=2.0" sphinxcontrib-applehelp = "*" @@ -2964,45 +1762,45 @@ sphinxcontrib-devhelp = "*" sphinxcontrib-htmlhelp = ">=2.0.0" sphinxcontrib-jsmath = "*" sphinxcontrib-qthelp = "*" -sphinxcontrib-serializinghtml = ">=1.1.5" +sphinxcontrib-serializinghtml = ">=1.1.9" [package.extras] docs = ["sphinxcontrib-websupport"] lint = ["docutils-stubs", "flake8 (>=3.5.0)", "flake8-simplify", "isort", "mypy (>=0.990)", "ruff", "sphinx-lint", "types-requests"] -test = ["cython", "filelock", "html5lib", "pytest (>=4.6)"] +test = ["cython (>=3.0)", "filelock", "html5lib", "pytest (>=4.6)", "setuptools (>=67.0)"] [[package]] name = "sphinx-autoapi" -version = "2.1.0" +version = "2.1.1" description = "Sphinx API documentation generator" optional = false python-versions = ">=3.7" files = [ - {file = "sphinx-autoapi-2.1.0.tar.gz", hash = "sha256:5b5c58064214d5a846c9c81d23f00990a64654b9bca10213231db54a241bc50f"}, - {file = "sphinx_autoapi-2.1.0-py2.py3-none-any.whl", hash = "sha256:b25c7b2cda379447b8c36b6a0e3bdf76e02fd64f7ca99d41c6cbdf130a01768f"}, + {file = "sphinx-autoapi-2.1.1.tar.gz", hash = "sha256:fbadb96e79020d6b0ec45d888517bf816d6b587a2d340fbe1ec31135e300a6c8"}, + {file = "sphinx_autoapi-2.1.1-py2.py3-none-any.whl", hash = "sha256:d8da890477bd18e3327cafdead9d5a44a7d798476c6fa32492100e288250a5a3"}, ] [package.dependencies] +anyascii = "*" astroid = ">=2.7" Jinja2 = "*" PyYAML = "*" sphinx = ">=5.2.0" -unidecode = "*" [package.extras] -docs = ["sphinx", "sphinx-rtd-theme"] +docs = ["furo", "sphinx", "sphinx-design"] dotnet = ["sphinxcontrib-dotnetdomain"] go = ["sphinxcontrib-golangdomain"] [[package]] name = "sphinx-basic-ng" -version = "1.0.0b1" +version = "1.0.0b2" description = "A modern skeleton for Sphinx themes." optional = false python-versions = ">=3.7" files = [ - {file = "sphinx_basic_ng-1.0.0b1-py3-none-any.whl", hash = "sha256:ade597a3029c7865b24ad0eda88318766bcc2f9f4cef60df7e28126fde94db2a"}, - {file = "sphinx_basic_ng-1.0.0b1.tar.gz", hash = "sha256:89374bd3ccd9452a301786781e28c8718e99960f2d4f411845ea75fc7bb5a9b0"}, + {file = "sphinx_basic_ng-1.0.0b2-py3-none-any.whl", hash = "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b"}, + {file = "sphinx_basic_ng-1.0.0b2.tar.gz", hash = "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9"}, ] [package.dependencies] @@ -3063,45 +1861,86 @@ sphinx = "*" [[package]] name = "sphinxcontrib-applehelp" -version = "1.0.4" +version = "1.0.7" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-applehelp-1.0.4.tar.gz", hash = "sha256:828f867945bbe39817c210a1abfd1bc4895c8b73fcaade56d45357a348a07d7e"}, - {file = "sphinxcontrib_applehelp-1.0.4-py3-none-any.whl", hash = "sha256:29d341f67fb0f6f586b23ad80e072c8e6ad0b48417db2bde114a4c9746feb228"}, + {file = "sphinxcontrib_applehelp-1.0.7-py3-none-any.whl", hash = "sha256:094c4d56209d1734e7d252f6e0b3ccc090bd52ee56807a5d9315b19c122ab15d"}, + {file = "sphinxcontrib_applehelp-1.0.7.tar.gz", hash = "sha256:39fdc8d762d33b01a7d8f026a3b7d71563ea3b72787d5f00ad8465bd9d6dfbfa"}, ] +[package.dependencies] +Sphinx = ">=5" + [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] +[[package]] +name = "sphinxcontrib-bibtex" +version = "2.6.1" +description = "Sphinx extension for BibTeX style citations." +optional = false +python-versions = ">=3.7" +files = [ + {file = "sphinxcontrib-bibtex-2.6.1.tar.gz", hash = "sha256:046b49f070ae5276af34c1b8ddb9bc9562ef6de2f7a52d37a91cb8e53f54b863"}, + {file = "sphinxcontrib_bibtex-2.6.1-py3-none-any.whl", hash = "sha256:094c772098fe6b030cda8618c45722b2957cad0c04f328ba2b154aa08dfe720a"}, +] + +[package.dependencies] +docutils = ">=0.8,<0.18.dev0 || >=0.20.dev0" +importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} +pybtex = ">=0.24" +pybtex-docutils = ">=1.0.0" +Sphinx = ">=3.5" + [[package]] name = "sphinxcontrib-devhelp" -version = "1.0.2" -description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document." +version = "1.0.5" +description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"}, - {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"}, + {file = "sphinxcontrib_devhelp-1.0.5-py3-none-any.whl", hash = "sha256:fe8009aed765188f08fcaadbb3ea0d90ce8ae2d76710b7e29ea7d047177dae2f"}, + {file = "sphinxcontrib_devhelp-1.0.5.tar.gz", hash = "sha256:63b41e0d38207ca40ebbeabcf4d8e51f76c03e78cd61abe118cf4435c73d4212"}, ] +[package.dependencies] +Sphinx = ">=5" + [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] +[[package]] +name = "sphinxcontrib-googleanalytics" +version = "0.4" +description = "Sphinx extension googleanalytics" +optional = false +python-versions = "*" +files = [ + {file = "sphinxcontrib-googleanalytics-0.4.tar.gz", hash = "sha256:4b19c1f0fce5df6c7da5633201b64a9e5b0cb3210a14fdb4134942ceee8c5d12"}, + {file = "sphinxcontrib_googleanalytics-0.4-py3-none-any.whl", hash = "sha256:a6574983f9a58e5864ec10d34dc99914c4d647108b22c9249c8f0038b0cb18b3"}, +] + +[package.dependencies] +Sphinx = ">=0.6" + [[package]] name = "sphinxcontrib-htmlhelp" -version = "2.0.1" +version = "2.0.4" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-htmlhelp-2.0.1.tar.gz", hash = "sha256:0cbdd302815330058422b98a113195c9249825d681e18f11e8b1f78a2f11efff"}, - {file = "sphinxcontrib_htmlhelp-2.0.1-py3-none-any.whl", hash = "sha256:c38cb46dccf316c79de6e5515e1770414b797162b23cd3d06e67020e1d2a6903"}, + {file = "sphinxcontrib_htmlhelp-2.0.4-py3-none-any.whl", hash = "sha256:8001661c077a73c29beaf4a79968d0726103c5605e27db92b9ebed8bab1359e9"}, + {file = "sphinxcontrib_htmlhelp-2.0.4.tar.gz", hash = "sha256:6c26a118a05b76000738429b724a0568dbde5b72391a688577da08f11891092a"}, ] +[package.dependencies] +Sphinx = ">=5" + [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["html5lib", "pytest"] @@ -3122,30 +1961,36 @@ test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" -version = "1.0.3" -description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document." +version = "1.0.6" +description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"}, - {file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"}, + {file = "sphinxcontrib_qthelp-1.0.6-py3-none-any.whl", hash = "sha256:bf76886ee7470b934e363da7a954ea2825650013d367728588732c7350f49ea4"}, + {file = "sphinxcontrib_qthelp-1.0.6.tar.gz", hash = "sha256:62b9d1a186ab7f5ee3356d906f648cacb7a6bdb94d201ee7adf26db55092982d"}, ] +[package.dependencies] +Sphinx = ">=5" + [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] name = "sphinxcontrib-serializinghtml" -version = "1.1.5" -description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)." +version = "1.1.9" +description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"}, - {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, + {file = "sphinxcontrib_serializinghtml-1.1.9-py3-none-any.whl", hash = "sha256:9b36e503703ff04f20e9675771df105e58aa029cfcbc23b8ed716019b7416ae1"}, + {file = "sphinxcontrib_serializinghtml-1.1.9.tar.gz", hash = "sha256:0c64ff898339e1fac29abd2bf5f11078f3ec413cfe9c046d3120d7ca65530b54"}, ] +[package.dependencies] +Sphinx = ">=5" + [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] @@ -3169,53 +2014,15 @@ pure-eval = "*" [package.extras] tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] -[[package]] -name = "terminado" -version = "0.17.1" -description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." -optional = false -python-versions = ">=3.7" -files = [ - {file = "terminado-0.17.1-py3-none-any.whl", hash = "sha256:8650d44334eba354dd591129ca3124a6ba42c3d5b70df5051b6921d506fdaeae"}, - {file = "terminado-0.17.1.tar.gz", hash = "sha256:6ccbbcd3a4f8a25a5ec04991f39a0b8db52dfcd487ea0e578d977e6752380333"}, -] - -[package.dependencies] -ptyprocess = {version = "*", markers = "os_name != \"nt\""} -pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} -tornado = ">=6.1.0" - -[package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] - -[[package]] -name = "tinycss2" -version = "1.2.1" -description = "A tiny CSS parser" -optional = false -python-versions = ">=3.7" -files = [ - {file = "tinycss2-1.2.1-py3-none-any.whl", hash = "sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847"}, - {file = "tinycss2-1.2.1.tar.gz", hash = "sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627"}, -] - -[package.dependencies] -webencodings = ">=0.4" - -[package.extras] -doc = ["sphinx", "sphinx_rtd_theme"] -test = ["flake8", "isort", "pytest"] - [[package]] name = "tokenize-rt" -version = "5.0.0" +version = "5.2.0" description = "A wrapper around the stdlib `tokenize` which roundtrips." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tokenize_rt-5.0.0-py2.py3-none-any.whl", hash = "sha256:c67772c662c6b3dc65edf66808577968fb10badfc2042e3027196bed4daf9e5a"}, - {file = "tokenize_rt-5.0.0.tar.gz", hash = "sha256:3160bc0c3e8491312d0485171dea861fc160a240f5f5766b72a1165408d10740"}, + {file = "tokenize_rt-5.2.0-py2.py3-none-any.whl", hash = "sha256:b79d41a65cfec71285433511b50271b05da3584a1da144a0752e9c621a285289"}, + {file = "tokenize_rt-5.2.0.tar.gz", hash = "sha256:9fe80f8a5c1edad2d3ede0f37481cc0cc1538a2f442c9c2f9e4feacd2792d054"}, ] [[package]] @@ -3229,26 +2036,6 @@ files = [ {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] -[[package]] -name = "tornado" -version = "6.3.2" -description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -optional = false -python-versions = ">= 3.8" -files = [ - {file = "tornado-6.3.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:c367ab6c0393d71171123ca5515c61ff62fe09024fa6bf299cd1339dc9456829"}, - {file = "tornado-6.3.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b46a6ab20f5c7c1cb949c72c1994a4585d2eaa0be4853f50a03b5031e964fc7c"}, - {file = "tornado-6.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c2de14066c4a38b4ecbbcd55c5cc4b5340eb04f1c5e81da7451ef555859c833f"}, - {file = "tornado-6.3.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:05615096845cf50a895026f749195bf0b10b8909f9be672f50b0fe69cba368e4"}, - {file = "tornado-6.3.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b17b1cf5f8354efa3d37c6e28fdfd9c1c1e5122f2cb56dac121ac61baa47cbe"}, - {file = "tornado-6.3.2-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:29e71c847a35f6e10ca3b5c2990a52ce38b233019d8e858b755ea6ce4dcdd19d"}, - {file = "tornado-6.3.2-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:834ae7540ad3a83199a8da8f9f2d383e3c3d5130a328889e4cc991acc81e87a0"}, - {file = "tornado-6.3.2-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6a0848f1aea0d196a7c4f6772197cbe2abc4266f836b0aac76947872cd29b411"}, - {file = "tornado-6.3.2-cp38-abi3-win32.whl", hash = "sha256:7efcbcc30b7c654eb6a8c9c9da787a851c18f8ccd4a5a3a95b05c7accfa068d2"}, - {file = "tornado-6.3.2-cp38-abi3-win_amd64.whl", hash = "sha256:0c325e66c8123c606eea33084976c832aa4e766b7dff8aedd7587ea44a604cdf"}, - {file = "tornado-6.3.2.tar.gz", hash = "sha256:4b927c4f19b71e627b13f3db2324e4ae660527143f9e1f2e2fb404f3a187e2ba"}, -] - [[package]] name = "traitlets" version = "5.9.0" @@ -3266,13 +2053,13 @@ test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] [[package]] name = "typing-extensions" -version = "4.6.3" +version = "4.7.1" description = "Backported and Experimental Type Hints for Python 3.7+" optional = false python-versions = ">=3.7" files = [ - {file = "typing_extensions-4.6.3-py3-none-any.whl", hash = "sha256:88a4153d8505aabbb4e13aacb7c486c2b4a33ca3b3f807914a9b4c844c471c26"}, - {file = "typing_extensions-4.6.3.tar.gz", hash = "sha256:d91d5919357fe7f681a9f2b5b4cb2a5f1ef0a1e9f59c4d8ff0d3491e05c0ffd5"}, + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, ] [[package]] @@ -3286,40 +2073,15 @@ files = [ {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, ] -[[package]] -name = "unidecode" -version = "1.3.6" -description = "ASCII transliterations of Unicode text" -optional = false -python-versions = ">=3.5" -files = [ - {file = "Unidecode-1.3.6-py3-none-any.whl", hash = "sha256:547d7c479e4f377b430dd91ac1275d593308dce0fc464fb2ab7d41f82ec653be"}, - {file = "Unidecode-1.3.6.tar.gz", hash = "sha256:fed09cf0be8cf415b391642c2a5addfc72194407caee4f98719e40ec2a72b830"}, -] - -[[package]] -name = "uri-template" -version = "1.2.0" -description = "RFC 6570 URI Template Processor" -optional = false -python-versions = ">=3.6" -files = [ - {file = "uri_template-1.2.0-py3-none-any.whl", hash = "sha256:f1699c77b73b925cf4937eae31ab282a86dc885c333f2e942513f08f691fc7db"}, - {file = "uri_template-1.2.0.tar.gz", hash = "sha256:934e4d09d108b70eb8a24410af8615294d09d279ce0e7cbcdaef1bd21f932b06"}, -] - -[package.extras] -dev = ["flake8 (<4.0.0)", "flake8-annotations", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-noqa", "flake8-requirements", "flake8-type-annotations", "flake8-use-fstring", "mypy", "pep8-naming"] - [[package]] name = "urllib3" -version = "2.0.2" +version = "2.0.4" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.7" files = [ - {file = "urllib3-2.0.2-py3-none-any.whl", hash = "sha256:d055c2f9d38dc53c808f6fdc8eab7360b6fdbbde02340ed25cfbcd817c62469e"}, - {file = "urllib3-2.0.2.tar.gz", hash = "sha256:61717a1095d7e155cdb737ac7bb2f4324a858a1e2e6466f6d03ff630ca68d3cc"}, + {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, + {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, ] [package.extras] @@ -3330,23 +2092,23 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "virtualenv" -version = "20.23.0" +version = "20.24.3" description = "Virtual Python Environment builder" optional = false python-versions = ">=3.7" files = [ - {file = "virtualenv-20.23.0-py3-none-any.whl", hash = "sha256:6abec7670e5802a528357fdc75b26b9f57d5d92f29c5462ba0fbe45feacc685e"}, - {file = "virtualenv-20.23.0.tar.gz", hash = "sha256:a85caa554ced0c0afbd0d638e7e2d7b5f92d23478d05d17a76daeac8f279f924"}, + {file = "virtualenv-20.24.3-py3-none-any.whl", hash = "sha256:95a6e9398b4967fbcb5fef2acec5efaf9aa4972049d9ae41f95e0972a683fd02"}, + {file = "virtualenv-20.24.3.tar.gz", hash = "sha256:e5c3b4ce817b0b328af041506a2a299418c98747c4b1e68cb7527e74ced23efc"}, ] [package.dependencies] -distlib = ">=0.3.6,<1" -filelock = ">=3.11,<4" -platformdirs = ">=3.2,<4" +distlib = ">=0.3.7,<1" +filelock = ">=3.12.2,<4" +platformdirs = ">=3.9.1,<4" [package.extras] -docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"] -test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.3.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=67.7.1)", "time-machine (>=2.9)"] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] [[package]] name = "wcwidth" @@ -3359,59 +2121,6 @@ files = [ {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, ] -[[package]] -name = "webcolors" -version = "1.13" -description = "A library for working with the color formats defined by HTML and CSS." -optional = false -python-versions = ">=3.7" -files = [ - {file = "webcolors-1.13-py3-none-any.whl", hash = "sha256:29bc7e8752c0a1bd4a1f03c14d6e6a72e93d82193738fa860cbff59d0fcc11bf"}, - {file = "webcolors-1.13.tar.gz", hash = "sha256:c225b674c83fa923be93d235330ce0300373d02885cef23238813b0d5668304a"}, -] - -[package.extras] -docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] -tests = ["pytest", "pytest-cov"] - -[[package]] -name = "webencodings" -version = "0.5.1" -description = "Character encoding aliases for legacy web content" -optional = false -python-versions = "*" -files = [ - {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, - {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, -] - -[[package]] -name = "websocket-client" -version = "1.5.2" -description = "WebSocket client for Python with low level API options" -optional = false -python-versions = ">=3.7" -files = [ - {file = "websocket-client-1.5.2.tar.gz", hash = "sha256:c7d67c13b928645f259d9b847ab5b57fd2d127213ca41ebd880de1f553b7c23b"}, - {file = "websocket_client-1.5.2-py3-none-any.whl", hash = "sha256:f8c64e28cd700e7ba1f04350d66422b6833b82a796b525a51e740b8cc8dab4b1"}, -] - -[package.extras] -docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] -optional = ["python-socks", "wsaccel"] -test = ["websockets"] - -[[package]] -name = "widgetsnbextension" -version = "4.0.7" -description = "Jupyter interactive widgets for Jupyter Notebook" -optional = false -python-versions = ">=3.7" -files = [ - {file = "widgetsnbextension-4.0.7-py3-none-any.whl", hash = "sha256:be3228a73bbab189a16be2d4a3cd89ecbd4e31948bfdc64edac17dcdee3cd99c"}, - {file = "widgetsnbextension-4.0.7.tar.gz", hash = "sha256:ea67c17a7cd4ae358f8f46c3b304c40698bc0423732e3f273321ee141232c8be"}, -] - [[package]] name = "wrapt" version = "1.15.0" @@ -3496,116 +2205,22 @@ files = [ {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, ] -[[package]] -name = "y-py" -version = "0.5.9" -description = "Python bindings for the Y-CRDT built from yrs (Rust)" -optional = false -python-versions = "*" -files = [ - {file = "y_py-0.5.9-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:afa9a11aa2880dd8689894f3269b653e6d3bd1956963d5329be9a5bf021dab62"}, - {file = "y_py-0.5.9-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:e370ce076781adea161b04d2f666e8b4f89bc7e8927ef842fbb0283d3bfa73e0"}, - {file = "y_py-0.5.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b67dad339f9b6701f74ff7a6e901c7909eca4eea02cf955b28d87a42650bd1be"}, - {file = "y_py-0.5.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae82a6d9cbaff8cb7505e81b5b7f9cd7756bb7e7110aef7914375fe56b012a90"}, - {file = "y_py-0.5.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c7ca64a2a97f708569dcabd55865915943e30267bf6d26c4d212d005951efe62"}, - {file = "y_py-0.5.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55098440e32339c2dc3d652fb36bb77a4927dee5fd4ab0cb1fe12fdd163fd4f5"}, - {file = "y_py-0.5.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9052a814e8b7ec756371a191f38de68b956437e0bb429c2dd503e658f298f9"}, - {file = "y_py-0.5.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:95d13b38c9055d607565b77cbae12e2bf0c1671c5cb8f2ee2e1230d41d2d6d34"}, - {file = "y_py-0.5.9-cp310-none-win32.whl", hash = "sha256:5dbd8d177ec7b9fef4a7b6d22eb2f8d5606fd5aac31cf2eab0dc18f0b3504c7c"}, - {file = "y_py-0.5.9-cp310-none-win_amd64.whl", hash = "sha256:d373c6bb8e21d5f7ec0833b76fa1ab480086ada602ef5bbf4724a25a21a00b6a"}, - {file = "y_py-0.5.9-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:f8f238144a302f17eb26b122cad9382fcff5ec6653b8a562130b9a5e44010098"}, - {file = "y_py-0.5.9-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:25637e3d011ca6f877a24f3083ff2549d1d619406d7e8a1455c445527205046c"}, - {file = "y_py-0.5.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ffebe5e62cbfee6e24593927dedba77dc13ac4cfb9c822074ab566b1fb63d59"}, - {file = "y_py-0.5.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b0ed760e6aa5316227a0ba2d5d29634a4ef2d72c8bc55169ac01664e17e4b536"}, - {file = "y_py-0.5.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91be189fae8ba242528333e266e38d65cae3d9a09fe45867fab8578a3ddf2ea2"}, - {file = "y_py-0.5.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3ae6d22b7cc599220a26b06da6ead9fd582eea5fdb6273b06fa3f060d0a26a7"}, - {file = "y_py-0.5.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:065f90501cf008375d70be6ce72dd41745e09d088f0b545f5f914d2c3f04f7ae"}, - {file = "y_py-0.5.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:742c486d5b792c4ad76e09426161302edddca85efe826fa01dcee50907326cd7"}, - {file = "y_py-0.5.9-cp311-none-win32.whl", hash = "sha256:2692c808bf28f797f8d693f45dc86563ac3b1626579f67ce9546dca69644d687"}, - {file = "y_py-0.5.9-cp311-none-win_amd64.whl", hash = "sha256:c1f5f287cc7ae127ed6a2fb1546e631b316a41d087d7d2db9caa3e5f59906dcf"}, - {file = "y_py-0.5.9-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:9a59603cf42c20d02ee5add2e3d0ce48e89c480a2a02f642fb77f142c4f37958"}, - {file = "y_py-0.5.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b44473bb32217c78e18db66f497f6c8be33e339bab5f52398bb2468c904d5140"}, - {file = "y_py-0.5.9-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1906f13e8d5ebfbd9c7948f57bc6f6f53b451b19c99350f42a0f648147a8acfe"}, - {file = "y_py-0.5.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:202b2a3e42e0a1eaedee26f8a3bc73cd9f994c4c2b15511ea56b9838178eb380"}, - {file = "y_py-0.5.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13b9d2959d9a26536b6ad118fb026ff19bd79da52e4addf6f3a562e7c01d516e"}, - {file = "y_py-0.5.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff3ddedaa95284f4f22a92b362f658f3d92f272d8c0fa009051bd5490c4d5a04"}, - {file = "y_py-0.5.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:85585e669d7679126e4a04e4bc0a063a641175a74eecfe47539e8da3e5b1da6e"}, - {file = "y_py-0.5.9-cp37-none-win32.whl", hash = "sha256:caf9b1feb69379d424a1d3d7c899b8e0389a3fb3131d39c3c03dcc3d4a93dbdc"}, - {file = "y_py-0.5.9-cp37-none-win_amd64.whl", hash = "sha256:7353af0e9c1f42fbf0ab340e253eeb333d58c890fa91d3eadb1b9adaf9336732"}, - {file = "y_py-0.5.9-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:ed0fd5265905cc7e23709479bc152d69f4972dec32fa322d20cb77f749707e78"}, - {file = "y_py-0.5.9-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:db1ac7f2d1862eb4c448cf76183399d555a63dbe2452bafecb1c2f691e36d687"}, - {file = "y_py-0.5.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa685f7e43ce490dfb1e392ac48f584b75cd21f05dc526c160d15308236ce8a0"}, - {file = "y_py-0.5.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c42f3a6cd20153925b00c49af855a3277989d411bb8ea849095be943ee160821"}, - {file = "y_py-0.5.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:753aaae817d658a1e9d271663439d8e83d9d8effa45590ecdcadc600c7cf77e3"}, - {file = "y_py-0.5.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cc8e5f38842a4b043c9592bfa9a740147ddb8fac2d7a5b7bf6d52466c090ec23"}, - {file = "y_py-0.5.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd3cb0d13ac92e7b9235d1024dba9af0788161246f12dcf1f635d634ccb206a"}, - {file = "y_py-0.5.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9983e99e3a61452b39ffce98206c7e4c6d260f4e917c8fe53fb54aaf25df89a3"}, - {file = "y_py-0.5.9-cp38-none-win32.whl", hash = "sha256:63ef8e5b76cd54578a7fd5f72d8c698d9ccd7c555c7900ebfd38a24d397c3b15"}, - {file = "y_py-0.5.9-cp38-none-win_amd64.whl", hash = "sha256:fe70d0134fe2115c08866f0cac0eb5c0788093872b5026eb438a74e1ebafd659"}, - {file = "y_py-0.5.9-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:05f805b58422d5d7c8e7e8e2141d1c3cac4daaa4557ae6a9b84b141fe8d6289e"}, - {file = "y_py-0.5.9-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:a7977eeaceaeb0dfffcc5643c985c337ebc33a0b1d792ae0a9b1331cdd97366f"}, - {file = "y_py-0.5.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:800e73d2110b97a74c52db2c8ce03a78e96f0d66a7e0c87d8254170a67c2db0e"}, - {file = "y_py-0.5.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:add793f5f5c7c7a3eb1b09ffc771bdaae10a0bd482a370bf696b83f8dee8d1b4"}, - {file = "y_py-0.5.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8b67ae37af8aac6160fda66c0f73bcdf65c06da9022eb76192c3fc45cfab994"}, - {file = "y_py-0.5.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2532ea5aefb223fd688c93860199d348a7601d814aac9e8784d816314588ddeb"}, - {file = "y_py-0.5.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df78a0409dca11554a4b6442d7a8e61f762c3cfc78d55d98352392869a6b9ae0"}, - {file = "y_py-0.5.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d2da2a9e28dceab4832945a745cad507579f52b4d0c9e2f54ae156eb56875861"}, - {file = "y_py-0.5.9-cp39-none-win32.whl", hash = "sha256:fdafb93bfd5532b13a53c4090675bcd31724160017ecc73e492dc1211bc0377a"}, - {file = "y_py-0.5.9-cp39-none-win_amd64.whl", hash = "sha256:73200c59bb253b880825466717941ac57267f2f685b053e183183cb6fe82874d"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:af6df5ec1d66ee2d962026635d60e84ad35fc01b2a1e36b993360c0ce60ae349"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:0c0e333c20b0a6ce4a5851203d45898ab93f16426c342420b931e190c5b71d3d"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7434c77cd23592973ed63341b8d337e6aebaba5ed40d7f22e2d43dfd0c3a56e"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e30fe2491d095c6d695a2c96257967fd3e2497f0f777030c8492d03c18d46e2a"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a57d81260e048caacf43a2f851766687f53e8a8356df6947fb0eee7336a7e2de"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d4dfc276f988175baaa4ab321c3321a16ce33db3356c9bc5f4dea0db3de55aa"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb68445414940efe547291340e91604c7b8379b60822678ef29f4fc2a0e11c62"}, - {file = "y_py-0.5.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cd6f373dbf592ad83aaf95c16abebc8678928e49bd509ebd593259e1908345ae"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:76b3480e7037ac9390c450e2aff9e46e2c9e61520c0d88afe228110ec728adc5"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:9484a3fc33f812234e58a5ee834b42bb0a628054d61b5c06c323aa56c12e557d"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6d87d0c2e87990bc00c049742d36a5dbbb1510949459af17198728890ee748a"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fce5feb57f6231376eb10d1fb68c60da106ffa0b520b3129471c466eff0304cc"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:27c1e9a866146d250e9e16d99fe22a40c82f5b592ab85da97e5679fc3841c7ce"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d722d6a27230c1f395535da5cee6a9a16497c6343afd262c846090075c083009"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f54625b9ed4e787872c45d3044dcfd04c0da4258d9914f3d32308830b35246c"}, - {file = "y_py-0.5.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9513ae81fcc805671ae134c4c7421ca322acf92ce8b33817e1775ea8c0176973"}, - {file = "y_py-0.5.9.tar.gz", hash = "sha256:50cfa0532bcee27edb8c64743b49570e28bb76a00cd384ead1d84b6f052d9368"}, -] - -[[package]] -name = "ypy-websocket" -version = "0.8.2" -description = "WebSocket connector for Ypy" -optional = false -python-versions = ">=3.7" -files = [ - {file = "ypy_websocket-0.8.2-py3-none-any.whl", hash = "sha256:9049d5a7d61c26c2b5a39757c9ffcbe2274bf3553adeea8de7fe1c04671d4145"}, - {file = "ypy_websocket-0.8.2.tar.gz", hash = "sha256:491b2cc4271df4dde9be83017c15f4532b597dc43148472eb20c5aeb838a5b46"}, -] - -[package.dependencies] -aiofiles = ">=22.1.0,<23" -aiosqlite = ">=0.17.0,<1" -y-py = ">=0.5.3,<0.6.0" - -[package.extras] -test = ["mypy", "pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)"] - [[package]] name = "zipp" -version = "3.15.0" +version = "3.16.2" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, - {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, + {file = "zipp-3.16.2-py3-none-any.whl", hash = "sha256:679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0"}, + {file = "zipp-3.16.2.tar.gz", hash = "sha256:ebc15946aa78bd63458992fc81ec3b6f7b1e92d51c35e6de1c3804e73b799147"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "57740d05db43b0ac7c41d9f3fd48800604d28793d4ce29e037ee6c6c0886502b" +content-hash = "337b546c564d8a2ac0cf8b133bb9a74d4d0525a98d396ad0f293f2013635ee69" diff --git a/pyproject.toml b/pyproject.toml index d62169d5..7cd97a26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "roseau_load_flow" -version = "0.4.0" +name = "roseau-load-flow" +version = "0.5.0" description = "Highly capable three-phase load flow solver" authors = [ "Ali Hamdan ", @@ -12,7 +12,10 @@ maintainers = ["Ali Hamdan "] license = "Proprietary" repository = "https://github.com/RoseauTechnologies/Roseau_Load_Flow/" readme = "README.md" -include = [] +include = [ + "roseau/load_flow/data/**/*.json", + "roseau/load_flow/data/**/*.csv" +] exclude = [ "**/tests/**", "**/conftest.py", @@ -40,8 +43,9 @@ geopandas = ">=0.10.2" shapely = ">=2.0.0" regex = ">=2022.1.18" requests = ">=2.28.1" -pint = ">=0.19.2" +pint = ">=0.21.0" typing-extensions = ">=4.6.2" +rich = ">=13.5.1" [tool.poetry.group.test.dependencies] pytest = "^7.1.2" @@ -52,24 +56,19 @@ coverage = { version = "^7.0.5", extras = ["toml"] } [tool.poetry.group.dev.dependencies] pre-commit = "^3.0.0" -black = { version = "^23.1.0", extras = ["jupyter"] } +black = { version = "==23.7.0", extras = ["jupyter"] } # keep in sync with .pre-commit-config.yaml +ruff = "==0.0.286" # keep in sync with .pre-commit-config.yaml [tool.poetry.group.doc.dependencies] -Sphinx = "^6.2.0" +sphinx = "^7.0.1" myst-parser = ">=0.16.1" sphinx-math-dollar = "^1.2.1" sphinx-autoapi = "^2.0.0" sphinx-copybutton = ">=0.5.1" sphinx-inline-tabs = ">=2022.1.2b11" -jupyter = "^1.0.0" -nbsphinx = ">=0.8.9" furo = ">=2022.9.29" - -[tool.poetry.group.docker] -optional = true -[tool.poetry.group.docker.dependencies] -jupyterlab = "^3.4.8" -jupyterlab-language-pack-fr-FR = "^3.4" +sphinxcontrib-googleanalytics = ">=0.3" +sphinxcontrib-bibtex = "^2.5.0" [tool.black] line-length = 120 @@ -79,13 +78,24 @@ target-version = ["py39", "py310", "py311"] line-length = 120 target-version = "py39" show-fixes = true -select = ["E", "F", "C90", "W", "B", "UP", "I", "RUF100"] +namespace-packages = ["roseau"] +include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"] +select = ["E", "F", "C90", "W", "B", "UP", "I", "RUF100", "TID", "SIM", "PT", "PIE", "N", "C4", "NPY"] unfixable = ["B"] -extend-ignore = ["E501", "B024"] +ignore = ["E501", "B024", "N818"] + +[tool.ruff.flake8-tidy-imports] +ban-relative-imports = "all" + +[tool.ruff.flake8-pytest-style] +parametrize-values-type = "tuple" [tool.ruff.mccabe] max-complexity = 15 +[tool.ruff.per-file-ignores] +"*.ipynb" = ["E402", "F403", "F405", "B018"] + [tool.coverage.run] branch = true omit = ["roseau/load_flow/__about__.py"] diff --git a/roseau/load_flow/__init__.py b/roseau/load_flow/__init__.py index cb4eed7c..e94310f2 100644 --- a/roseau/load_flow/__init__.py +++ b/roseau/load_flow/__init__.py @@ -40,9 +40,10 @@ ) from roseau.load_flow.network import ElectricalNetwork from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.utils import ConductorType, InsulatorType, LineType from roseau.load_flow.utils._versions import show_versions -__version__ = importlib.metadata.version("roseau_load_flow") +__version__ = importlib.metadata.version("roseau-load-flow") __all__ = [ "__author__", @@ -86,4 +87,8 @@ # Units "Q_", "ureg", + # Types + "LineType", + "ConductorType", + "InsulatorType", ] diff --git a/roseau/load_flow/conftest.py b/roseau/load_flow/conftest.py index 2f08e890..d8079b39 100644 --- a/roseau/load_flow/conftest.py +++ b/roseau/load_flow/conftest.py @@ -9,7 +9,7 @@ TEST_ALL_NETWORKS_DATA_FOLDER = HERE / "tests" / "data" / "networks" TEST_ALL_NETWORKS_DATA_PARAMS = [x for x in TEST_ALL_NETWORKS_DATA_FOLDER.glob("*") if x.is_dir()] TEST_ALL_NETWORKS_DATA_IDS = [x.name for x in TEST_ALL_NETWORKS_DATA_PARAMS] -TEST_DGS_NETWORKS = [x for x in (HERE / "tests" / "data" / "dgs").glob("*")] +TEST_DGS_NETWORKS = list((HERE / "tests" / "data" / "dgs").glob("*")) TEST_DGS_NETWORKS_IDS = [x.stem for x in TEST_DGS_NETWORKS] TEST_SOME_NETWORKS_NAMES_SET = { @@ -36,44 +36,44 @@ def rg() -> np.random.Generator: return np.random.default_rng(seed=42) -@pytest.fixture(scope="function", params=["impedance", "power"], ids=["impedance", "power"]) +@pytest.fixture(params=["impedance", "power"], ids=["impedance", "power"]) def network_load_data_name(request) -> str: return request.param -@pytest.fixture(scope="function", params=TEST_ALL_NETWORKS_DATA_PARAMS, ids=TEST_ALL_NETWORKS_DATA_IDS) +@pytest.fixture(params=TEST_ALL_NETWORKS_DATA_PARAMS, ids=TEST_ALL_NETWORKS_DATA_IDS) def all_network_folder(request) -> Path: return request.param -@pytest.fixture(scope="function") +@pytest.fixture() def all_network_path(all_network_folder, network_load_data_name) -> Path: _check_folders(all_network_folder, network_load_data_name) return all_network_folder / f"network_{network_load_data_name}.json" -@pytest.fixture(scope="function") +@pytest.fixture() def all_network_result(all_network_folder, network_load_data_name) -> Path: return all_network_folder / "results_linear_method.csv" -@pytest.fixture(scope="function", params=TEST_SOME_NETWORKS_DATA_PARAMS, ids=TEST_SOME_NETWORKS_DATA_IDS) +@pytest.fixture(params=TEST_SOME_NETWORKS_DATA_PARAMS, ids=TEST_SOME_NETWORKS_DATA_IDS) def some_network_folder(request) -> Path: return request.param -@pytest.fixture(scope="function") +@pytest.fixture() def some_network_path(some_network_folder, network_load_data_name) -> Path: _check_folders(some_network_folder, network_load_data_name) return some_network_folder / f"network_{network_load_data_name}.json" -@pytest.fixture(scope="function") +@pytest.fixture() def some_network_result(some_network_folder, network_load_data_name) -> Path: return some_network_folder / "results_linear_method.csv" -@pytest.fixture(scope="function", params=TEST_DGS_NETWORKS, ids=TEST_DGS_NETWORKS_IDS) +@pytest.fixture(params=TEST_DGS_NETWORKS, ids=TEST_DGS_NETWORKS_IDS) def dgs_network_path(request) -> Path: return request.param diff --git a/roseau/load_flow/converters.py b/roseau/load_flow/converters.py index d2f8717b..32417120 100644 --- a/roseau/load_flow/converters.py +++ b/roseau/load_flow/converters.py @@ -132,7 +132,7 @@ def calculate_voltages(potentials: np.ndarray, phases: str) -> np.ndarray: # we know "n" is the last phase voltages = potentials[:-1] - potentials[-1] else: # Vab, Vbc, Vca - if len(phases) == 2: + if len(phases) == 2: # noqa: SIM108 # V = potentials[0] - potentials[1] (but as array) voltages = potentials[:1] - potentials[1:] else: diff --git a/roseau/load_flow/data/networks/Catalogue.json b/roseau/load_flow/data/networks/Catalogue.json new file mode 100644 index 00000000..ee614439 --- /dev/null +++ b/roseau/load_flow/data/networks/Catalogue.json @@ -0,0 +1,362 @@ +{ + "LVFeeder00939": { + "nb_buses": 8, + "nb_branches": 7, + "nb_loads": 12, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder02639": { + "nb_buses": 7, + "nb_branches": 6, + "nb_loads": 10, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder04790": { + "nb_buses": 4, + "nb_branches": 3, + "nb_loads": 4, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder06713": { + "nb_buses": 3, + "nb_branches": 2, + "nb_loads": 2, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "LVFeeder06926": { + "nb_buses": 3, + "nb_branches": 2, + "nb_loads": 2, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder06975": { + "nb_buses": 6, + "nb_branches": 5, + "nb_loads": 8, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder18498": { + "nb_buses": 18, + "nb_branches": 17, + "nb_loads": 32, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder18769": { + "nb_buses": 7, + "nb_branches": 6, + "nb_loads": 10, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder19558": { + "nb_buses": 3, + "nb_branches": 2, + "nb_loads": 2, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder20256": { + "nb_buses": 9, + "nb_branches": 8, + "nb_loads": 14, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder23832": { + "nb_buses": 3, + "nb_branches": 2, + "nb_loads": 2, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder24400": { + "nb_buses": 4, + "nb_branches": 3, + "nb_loads": 4, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "LVFeeder27429": { + "nb_buses": 11, + "nb_branches": 10, + "nb_loads": 18, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder27681": { + "nb_buses": 3, + "nb_branches": 2, + "nb_loads": 2, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder30216": { + "nb_buses": 9, + "nb_branches": 8, + "nb_loads": 14, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "LVFeeder31441": { + "nb_buses": 4, + "nb_branches": 3, + "nb_loads": 4, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "LVFeeder36284": { + "nb_buses": 5, + "nb_branches": 4, + "nb_loads": 6, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "LVFeeder36360": { + "nb_buses": 9, + "nb_branches": 8, + "nb_loads": 14, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "LVFeeder37263": { + "nb_buses": 3, + "nb_branches": 2, + "nb_loads": 2, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "LVFeeder38211": { + "nb_buses": 6, + "nb_branches": 5, + "nb_loads": 8, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder004": { + "nb_buses": 17, + "nb_branches": 16, + "nb_loads": 10, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder011": { + "nb_buses": 50, + "nb_branches": 49, + "nb_loads": 68, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder015": { + "nb_buses": 30, + "nb_branches": 29, + "nb_loads": 20, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder032": { + "nb_buses": 53, + "nb_branches": 52, + "nb_loads": 40, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder041": { + "nb_buses": 88, + "nb_branches": 87, + "nb_loads": 62, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder063": { + "nb_buses": 39, + "nb_branches": 38, + "nb_loads": 38, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder078": { + "nb_buses": 69, + "nb_branches": 68, + "nb_loads": 46, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder115": { + "nb_buses": 4, + "nb_branches": 3, + "nb_loads": 4, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder128": { + "nb_buses": 49, + "nb_branches": 48, + "nb_loads": 32, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder151": { + "nb_buses": 59, + "nb_branches": 58, + "nb_loads": 44, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder159": { + "nb_buses": 8, + "nb_branches": 7, + "nb_loads": 0, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder176": { + "nb_buses": 33, + "nb_branches": 32, + "nb_loads": 20, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder210": { + "nb_buses": 128, + "nb_branches": 127, + "nb_loads": 82, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder217": { + "nb_buses": 44, + "nb_branches": 43, + "nb_loads": 44, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder232": { + "nb_buses": 66, + "nb_branches": 65, + "nb_loads": 38, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + }, + "MVFeeder251": { + "nb_buses": 125, + "nb_branches": 124, + "nb_loads": 106, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder290": { + "nb_buses": 12, + "nb_branches": 11, + "nb_loads": 16, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder312": { + "nb_buses": 11, + "nb_branches": 10, + "nb_loads": 8, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder320": { + "nb_buses": 20, + "nb_branches": 19, + "nb_loads": 12, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Winter", "Summer"] + }, + "MVFeeder339": { + "nb_buses": 33, + "nb_branches": 32, + "nb_loads": 28, + "nb_sources": 1, + "nb_grounds": 1, + "nb_potential_refs": 1, + "load_points": ["Summer", "Winter"] + } +} diff --git a/roseau/load_flow/data/networks/LVFeeder00939_Summer.json b/roseau/load_flow/data/networks/LVFeeder00939_Summer.json new file mode 100644 index 00000000..3df20a22 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder00939_Summer.json @@ -0,0 +1,458 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV03045", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.318375372111463, 48.64794139348595] + } + }, + { + "id": "MVLV03045", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.318375372111463, 48.64794139348595] + } + }, + { + "id": "LVBus004111", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.319439380306016, 48.64935651484044] + } + }, + { + "id": "LVBus004112", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.318850459390614, 48.65071019353541] + } + }, + { + "id": "LVBus004113", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320149235966572, 48.64971306653889] + } + }, + { + "id": "LVBus004114", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320930091968568, 48.64998504109587] + } + }, + { + "id": "LVBus004115", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.321744301484108, 48.65025939158834] + } + }, + { + "id": "LVBus004116", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320032407456181, 48.64986022542928] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV03045", + "geometry": { + "type": "Point", + "coordinates": [-1.318375372111463, 48.64794139348595] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch128683", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV03045", + "bus2": "LVBus004111", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.318375372111463, 48.64794139348595], + [-1.318372262723904, 48.64795764182027], + [-1.318372262723904, 48.64795764182027], + [-1.318356873544854, 48.648119631764985], + [-1.318375980897601, 48.6481408999871], + [-1.318601939788418, 48.64839239672023], + [-1.318954973911141, 48.648990539493255], + [-1.31920351237447, 48.649289813902186], + [-1.319439380306016, 48.64935651484044], + [-1.319439380306016, 48.64935651484044] + ] + }, + "length": 0.18165362031560994, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch068439", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004111", + "bus2": "LVBus004112", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.319439380306016, 48.64935651484044], + [-1.319439380306016, 48.64935651484044], + [-1.319213661443218, 48.64963763726965], + [-1.3192072357427, 48.649645340289645], + [-1.319310285624904, 48.65014425413255], + [-1.319312529830104, 48.650155127151486], + [-1.319287770629054, 48.65018487528955], + [-1.318853741189945, 48.650706258927364], + [-1.318850459390614, 48.65071019353541], + [-1.318850459390614, 48.65071019353541] + ] + }, + "length": 0.1640996914834165, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch022998", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004111", + "bus2": "LVBus004113", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.319439380306016, 48.64935651484044], + [-1.319439380306016, 48.64935651484044], + [-1.319444760628315, 48.64935925539479], + [-1.320149235966572, 48.64971306653889], + [-1.320149235966572, 48.64971306653889] + ] + }, + "length": 0.06563452239076538, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch013211", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004113", + "bus2": "LVBus004114", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.320149235966572, 48.64971306653889], + [-1.320149235966572, 48.64971306653889], + [-1.320924091665486, 48.64998294963954], + [-1.320929757900593, 48.64998492542595], + [-1.320930091968568, 48.64998504109587], + [-1.320930091968568, 48.64998504109587] + ] + }, + "length": 0.06500094076102345, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch147387", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004114", + "bus2": "LVBus004115", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.320930091968568, 48.64998504109587], + [-1.320930091968568, 48.64998504109587], + [-1.320959330644131, 48.649976336965366], + [-1.321402033442493, 48.65012293785019], + [-1.321657507976488, 48.650209573100575], + [-1.321681660037352, 48.65021776315184], + [-1.321757789157954, 48.650243578682044], + [-1.321744301484108, 48.65025939158834], + [-1.321744301484108, 48.65025939158834] + ] + }, + "length": 0.07029495574312403, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch013210", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004113", + "bus2": "LVBus004116", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.320149235966572, 48.64971306653889], + [-1.320149235966572, 48.64971306653889], + [-1.320036206285348, 48.64985649979303], + [-1.320032407456181, 48.64986022542928], + [-1.320032407456181, 48.64986022542928] + ] + }, + "length": 0.01849364446078355, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus004111_production", + "bus": "LVBus004111", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004111_consumption", + "bus": "LVBus004111", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004112_production", + "bus": "LVBus004112", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-456.4102564102564, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004112_consumption", + "bus": "LVBus004112", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2093.746904840429, 688.181327888491], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004113_production", + "bus": "LVBus004113", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004113_consumption", + "bus": "LVBus004113", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004114_production", + "bus": "LVBus004114", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004114_consumption", + "bus": "LVBus004114", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004115_production", + "bus": "LVBus004115", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-456.4102564102564, 0.0] + ] + }, + { + "id": "LVBus004115_consumption", + "bus": "LVBus004115", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2093.746904840429, 688.181327888491] + ] + }, + { + "id": "LVBus004116_production", + "bus": "LVBus004116", + "phases": "abcn", + "powers": [ + [-456.4102564102564, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004116_consumption", + "bus": "LVBus004116", + "phases": "abcn", + "powers": [ + [2093.746904840429, 688.181327888491], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder00939_Winter.json b/roseau/load_flow/data/networks/LVFeeder00939_Winter.json new file mode 100644 index 00000000..7d06b096 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder00939_Winter.json @@ -0,0 +1,458 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV03045", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.318375372111463, 48.64794139348595] + } + }, + { + "id": "MVLV03045", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.318375372111463, 48.64794139348595] + } + }, + { + "id": "LVBus004111", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.319439380306016, 48.64935651484044] + } + }, + { + "id": "LVBus004112", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.318850459390614, 48.65071019353541] + } + }, + { + "id": "LVBus004113", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320149235966572, 48.64971306653889] + } + }, + { + "id": "LVBus004114", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320930091968568, 48.64998504109587] + } + }, + { + "id": "LVBus004115", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.321744301484108, 48.65025939158834] + } + }, + { + "id": "LVBus004116", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320032407456181, 48.64986022542928] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV03045", + "geometry": { + "type": "Point", + "coordinates": [-1.318375372111463, 48.64794139348595] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch128683", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV03045", + "bus2": "LVBus004111", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.318375372111463, 48.64794139348595], + [-1.318372262723904, 48.64795764182027], + [-1.318372262723904, 48.64795764182027], + [-1.318356873544854, 48.648119631764985], + [-1.318375980897601, 48.6481408999871], + [-1.318601939788418, 48.64839239672023], + [-1.318954973911141, 48.648990539493255], + [-1.31920351237447, 48.649289813902186], + [-1.319439380306016, 48.64935651484044], + [-1.319439380306016, 48.64935651484044] + ] + }, + "length": 0.18165362031560994, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch068439", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004111", + "bus2": "LVBus004112", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.319439380306016, 48.64935651484044], + [-1.319439380306016, 48.64935651484044], + [-1.319213661443218, 48.64963763726965], + [-1.3192072357427, 48.649645340289645], + [-1.319310285624904, 48.65014425413255], + [-1.319312529830104, 48.650155127151486], + [-1.319287770629054, 48.65018487528955], + [-1.318853741189945, 48.650706258927364], + [-1.318850459390614, 48.65071019353541], + [-1.318850459390614, 48.65071019353541] + ] + }, + "length": 0.1640996914834165, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch022998", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004111", + "bus2": "LVBus004113", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.319439380306016, 48.64935651484044], + [-1.319439380306016, 48.64935651484044], + [-1.319444760628315, 48.64935925539479], + [-1.320149235966572, 48.64971306653889], + [-1.320149235966572, 48.64971306653889] + ] + }, + "length": 0.06563452239076538, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch013211", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004113", + "bus2": "LVBus004114", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.320149235966572, 48.64971306653889], + [-1.320149235966572, 48.64971306653889], + [-1.320924091665486, 48.64998294963954], + [-1.320929757900593, 48.64998492542595], + [-1.320930091968568, 48.64998504109587], + [-1.320930091968568, 48.64998504109587] + ] + }, + "length": 0.06500094076102345, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch147387", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004114", + "bus2": "LVBus004115", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.320930091968568, 48.64998504109587], + [-1.320930091968568, 48.64998504109587], + [-1.320959330644131, 48.649976336965366], + [-1.321402033442493, 48.65012293785019], + [-1.321657507976488, 48.650209573100575], + [-1.321681660037352, 48.65021776315184], + [-1.321757789157954, 48.650243578682044], + [-1.321744301484108, 48.65025939158834], + [-1.321744301484108, 48.65025939158834] + ] + }, + "length": 0.07029495574312403, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch013210", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus004113", + "bus2": "LVBus004116", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.320149235966572, 48.64971306653889], + [-1.320149235966572, 48.64971306653889], + [-1.320036206285348, 48.64985649979303], + [-1.320032407456181, 48.64986022542928], + [-1.320032407456181, 48.64986022542928] + ] + }, + "length": 0.01849364446078355, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus004111_production", + "bus": "LVBus004111", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004111_consumption", + "bus": "LVBus004111", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004112_production", + "bus": "LVBus004112", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004112_consumption", + "bus": "LVBus004112", + "phases": "abcn", + "powers": [ + [10468.734524202146, 3440.906639442455], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004113_production", + "bus": "LVBus004113", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus004113_consumption", + "bus": "LVBus004113", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004114_production", + "bus": "LVBus004114", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004114_consumption", + "bus": "LVBus004114", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004115_production", + "bus": "LVBus004115", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004115_consumption", + "bus": "LVBus004115", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [10468.734524202146, 3440.906639442455], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004116_production", + "bus": "LVBus004116", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus004116_consumption", + "bus": "LVBus004116", + "phases": "abcn", + "powers": [ + [10468.734524202146, 3440.906639442455], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder02639_Summer.json b/roseau/load_flow/data/networks/LVFeeder02639_Summer.json new file mode 100644 index 00000000..6a612a4b --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder02639_Summer.json @@ -0,0 +1,385 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV13030", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.113772280167845, 49.11691122611608] + } + }, + { + "id": "MVLV13030", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.113772280167845, 49.11691122611608] + } + }, + { + "id": "LVBus012331", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114826112913037, 49.11661005366279] + } + }, + { + "id": "LVBus012332", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114823091410435, 49.116473223549235] + } + }, + { + "id": "LVBus012333", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114801264260203, 49.11643351455647] + } + }, + { + "id": "LVBus012335", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114664902732631, 49.11644824054329] + } + }, + { + "id": "LVBus012334", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114635189864904, 49.11629134091336] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV13030", + "geometry": { + "type": "Point", + "coordinates": [-1.113772280167845, 49.11691122611608] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch089497", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV13030", + "bus2": "LVBus012331", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113772280167845, 49.11691122611608], + [-1.113809602359184, 49.11691846498369], + [-1.113809602359184, 49.11691846498369], + [-1.113830369459365, 49.11688563132004], + [-1.113834643225292, 49.116883565360546], + [-1.1138392395914, 49.11688283921328], + [-1.113920524290085, 49.11690481536989], + [-1.113928018269146, 49.11690684779911], + [-1.113934390484964, 49.11690665505638], + [-1.113944509440132, 49.11690409675379], + [-1.114058782645394, 49.11687521330427], + [-1.114063955125718, 49.116871835263936], + [-1.114066087768089, 49.11686725872721], + [-1.11408711823683, 49.11683119752992], + [-1.114090771093566, 49.116827224728816], + [-1.11410051045201, 49.11681919995221], + [-1.114113316106086, 49.116811950183994], + [-1.11438565478225, 49.11673557924769], + [-1.114826112913037, 49.11661005366279], + [-1.114826112913037, 49.11661005366279] + ] + }, + "length": 0.08681523635053473, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch089528", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012331", + "bus2": "LVBus012332", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114826112913037, 49.11661005366279], + [-1.114826112913037, 49.11661005366279], + [-1.114911435961938, 49.116588992801624], + [-1.114912955318509, 49.11658753690231], + [-1.114891565003778, 49.11655108018678], + [-1.114823091410435, 49.116473223549235], + [-1.114823091410435, 49.116473223549235] + ] + }, + "length": 0.02119335092120977, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch095409", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012332", + "bus2": "LVBus012333", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114823091410435, 49.116473223549235], + [-1.114823091410435, 49.116473223549235], + [-1.114801264260203, 49.11643351455647], + [-1.114801264260203, 49.11643351455647] + ] + }, + "length": 0.004694786680023009, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch136046", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012333", + "bus2": "LVBus012335", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114801264260203, 49.11643351455647], + [-1.114801264260203, 49.11643351455647], + [-1.11479480557162, 49.11643241469008], + [-1.114783384515044, 49.11641633886235], + [-1.114780465929909, 49.11641674683182], + [-1.114681090491443, 49.11644382523756], + [-1.114664902732631, 49.11644824054329], + [-1.114664902732631, 49.11644824054329] + ] + }, + "length": 0.011812025644293674, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch136047", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012333", + "bus2": "LVBus012334", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114801264260203, 49.11643351455647], + [-1.114801264260203, 49.11643351455647], + [-1.114723765714752, 49.1163178551149], + [-1.114709242318357, 49.11629616649662], + [-1.114653634718668, 49.116314913127574], + [-1.114644000161638, 49.11630259926119], + [-1.114635189864904, 49.11629134091336], + [-1.114635189864904, 49.11629134091336] + ] + }, + "length": 0.024197289324129616, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus012331_production", + "bus": "LVBus012331", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus012331_consumption", + "bus": "LVBus012331", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012332_production", + "bus": "LVBus012332", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012332_consumption", + "bus": "LVBus012332", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012333_production", + "bus": "LVBus012333", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus012333_consumption", + "bus": "LVBus012333", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012335_production", + "bus": "LVBus012335", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-439.8583569405099, 0.0] + ] + }, + { + "id": "LVBus012335_consumption", + "bus": "LVBus012335", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [5128.927258987809, 1685.7968666478876] + ] + }, + { + "id": "LVBus012334_production", + "bus": "LVBus012334", + "phases": "abcn", + "powers": [ + [-439.8583569405099, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012334_consumption", + "bus": "LVBus012334", + "phases": "abcn", + "powers": [ + [5128.927258987809, 1685.7968666478876], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder02639_Winter.json b/roseau/load_flow/data/networks/LVFeeder02639_Winter.json new file mode 100644 index 00000000..dddd45dc --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder02639_Winter.json @@ -0,0 +1,385 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV13030", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.113772280167845, 49.11691122611608] + } + }, + { + "id": "MVLV13030", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.113772280167845, 49.11691122611608] + } + }, + { + "id": "LVBus012331", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114826112913037, 49.11661005366279] + } + }, + { + "id": "LVBus012332", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114823091410435, 49.116473223549235] + } + }, + { + "id": "LVBus012333", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114801264260203, 49.11643351455647] + } + }, + { + "id": "LVBus012335", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114664902732631, 49.11644824054329] + } + }, + { + "id": "LVBus012334", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.114635189864904, 49.11629134091336] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV13030", + "geometry": { + "type": "Point", + "coordinates": [-1.113772280167845, 49.11691122611608] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch089497", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV13030", + "bus2": "LVBus012331", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113772280167845, 49.11691122611608], + [-1.113809602359184, 49.11691846498369], + [-1.113809602359184, 49.11691846498369], + [-1.113830369459365, 49.11688563132004], + [-1.113834643225292, 49.116883565360546], + [-1.1138392395914, 49.11688283921328], + [-1.113920524290085, 49.11690481536989], + [-1.113928018269146, 49.11690684779911], + [-1.113934390484964, 49.11690665505638], + [-1.113944509440132, 49.11690409675379], + [-1.114058782645394, 49.11687521330427], + [-1.114063955125718, 49.116871835263936], + [-1.114066087768089, 49.11686725872721], + [-1.11408711823683, 49.11683119752992], + [-1.114090771093566, 49.116827224728816], + [-1.11410051045201, 49.11681919995221], + [-1.114113316106086, 49.116811950183994], + [-1.11438565478225, 49.11673557924769], + [-1.114826112913037, 49.11661005366279], + [-1.114826112913037, 49.11661005366279] + ] + }, + "length": 0.08681523635053473, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch089528", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012331", + "bus2": "LVBus012332", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114826112913037, 49.11661005366279], + [-1.114826112913037, 49.11661005366279], + [-1.114911435961938, 49.116588992801624], + [-1.114912955318509, 49.11658753690231], + [-1.114891565003778, 49.11655108018678], + [-1.114823091410435, 49.116473223549235], + [-1.114823091410435, 49.116473223549235] + ] + }, + "length": 0.02119335092120977, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch095409", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012332", + "bus2": "LVBus012333", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114823091410435, 49.116473223549235], + [-1.114823091410435, 49.116473223549235], + [-1.114801264260203, 49.11643351455647], + [-1.114801264260203, 49.11643351455647] + ] + }, + "length": 0.004694786680023009, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch136046", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012333", + "bus2": "LVBus012335", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114801264260203, 49.11643351455647], + [-1.114801264260203, 49.11643351455647], + [-1.11479480557162, 49.11643241469008], + [-1.114783384515044, 49.11641633886235], + [-1.114780465929909, 49.11641674683182], + [-1.114681090491443, 49.11644382523756], + [-1.114664902732631, 49.11644824054329], + [-1.114664902732631, 49.11644824054329] + ] + }, + "length": 0.011812025644293674, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch136047", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus012333", + "bus2": "LVBus012334", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114801264260203, 49.11643351455647], + [-1.114801264260203, 49.11643351455647], + [-1.114723765714752, 49.1163178551149], + [-1.114709242318357, 49.11629616649662], + [-1.114653634718668, 49.116314913127574], + [-1.114644000161638, 49.11630259926119], + [-1.114635189864904, 49.11629134091336], + [-1.114635189864904, 49.11629134091336] + ] + }, + "length": 0.024197289324129616, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus012331_production", + "bus": "LVBus012331", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012331_consumption", + "bus": "LVBus012331", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012332_production", + "bus": "LVBus012332", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus012332_consumption", + "bus": "LVBus012332", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012333_production", + "bus": "LVBus012333", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012333_consumption", + "bus": "LVBus012333", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus012335_production", + "bus": "LVBus012335", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus012335_consumption", + "bus": "LVBus012335", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [25644.636294939046, 8428.984333239438] + ] + }, + { + "id": "LVBus012334_production", + "bus": "LVBus012334", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus012334_consumption", + "bus": "LVBus012334", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [25644.636294939046, 8428.984333239438] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder04790_Summer.json b/roseau/load_flow/data/networks/LVFeeder04790_Summer.json new file mode 100644 index 00000000..8b067a50 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder04790_Summer.json @@ -0,0 +1,251 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV08786", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3413945147439499, 48.67575966750258] + } + }, + { + "id": "MVLV08786", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3413945147439499, 48.67575966750258] + } + }, + { + "id": "LVBus021707", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3405143892225866, 48.67378431146558] + } + }, + { + "id": "LVBus195690", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.341130004040592, 48.674217267249176] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV08786", + "geometry": { + "type": "Point", + "coordinates": [-1.3413945147439499, 48.67575966750258] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch134552", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV08786", + "bus2": "LVBus021707", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3413945147439499, 48.67575966750258], + [-1.341385434067615, 48.675737128972145], + [-1.341385434067615, 48.675737128972145], + [-1.34132531607358, 48.67567824485926], + [-1.341313519030196, 48.67556560756853], + [-1.341283958893599, 48.67528344049164], + [-1.341283179747798, 48.67527684175873], + [-1.341269658363544, 48.6751632590872], + [-1.341214865480365, 48.675047087214786], + [-1.341200963077193, 48.67500612530304], + [-1.341220048671394, 48.67495148826574], + [-1.341326519319494, 48.67486521044506], + [-1.34138565954355, 48.674829775519406], + [-1.341340693466156, 48.67479069504203], + [-1.3414145116273, 48.67471746097725], + [-1.341427347328673, 48.67458617046537], + [-1.341399709215387, 48.67451717234955], + [-1.341279929401527, 48.67445653948811], + [-1.340881583766118, 48.67409267631658], + [-1.340845898341474, 48.67405070724385], + [-1.34056797392051, 48.67379685828972], + [-1.340550630424044, 48.67378100987611], + [-1.340545527448469, 48.67377974637049], + [-1.34054090795977, 48.673780132595105], + [-1.340517035971892, 48.67379109524738], + [-1.3405143892225866, 48.67378431146558] + ] + }, + "length": 0.2522152999932708, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch143253", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus021707", + "bus2": "LVBus195690", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3405143892225866, 48.67378431146558], + [-1.340511742473281, 48.67377752768378], + [-1.340524215456442, 48.67377214668572], + [-1.34061533771321, 48.67377109338631], + [-1.340622296919997, 48.6737732441641], + [-1.340644073201206, 48.673787218376674], + [-1.340650525953079, 48.67379719556955], + [-1.340658667983175, 48.67380569860559], + [-1.340749772721113, 48.67388683816967], + [-1.340760178041364, 48.67389218451362], + [-1.340883396791196, 48.67399667794088], + [-1.340888875935236, 48.67400787312246], + [-1.341094728878057, 48.6742062763994], + [-1.341096974187145, 48.674208438386664], + [-1.341108332911281, 48.674219388198615], + [-1.341113099956009, 48.67422089606251], + [-1.341119512019872, 48.67422068817659], + [-1.341130004040592, 48.674217267249176], + [-1.341130004040592, 48.674217267249176] + ] + }, + "length": 0.07146262631265571, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus021707_production", + "bus": "LVBus021707", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus021707_consumption", + "bus": "LVBus021707", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195690_production", + "bus": "LVBus195690", + "phases": "abcn", + "powers": [ + [-284.53679738776225, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195690_consumption", + "bus": "LVBus195690", + "phases": "abcn", + "powers": [ + [2838.520115227675, 932.976444105812], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder04790_Winter.json b/roseau/load_flow/data/networks/LVFeeder04790_Winter.json new file mode 100644 index 00000000..b00842e1 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder04790_Winter.json @@ -0,0 +1,251 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV08786", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3413945147439499, 48.67575966750258] + } + }, + { + "id": "MVLV08786", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3413945147439499, 48.67575966750258] + } + }, + { + "id": "LVBus021707", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3405143892225866, 48.67378431146558] + } + }, + { + "id": "LVBus195690", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.341130004040592, 48.674217267249176] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV08786", + "geometry": { + "type": "Point", + "coordinates": [-1.3413945147439499, 48.67575966750258] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch134552", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV08786", + "bus2": "LVBus021707", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3413945147439499, 48.67575966750258], + [-1.341385434067615, 48.675737128972145], + [-1.341385434067615, 48.675737128972145], + [-1.34132531607358, 48.67567824485926], + [-1.341313519030196, 48.67556560756853], + [-1.341283958893599, 48.67528344049164], + [-1.341283179747798, 48.67527684175873], + [-1.341269658363544, 48.6751632590872], + [-1.341214865480365, 48.675047087214786], + [-1.341200963077193, 48.67500612530304], + [-1.341220048671394, 48.67495148826574], + [-1.341326519319494, 48.67486521044506], + [-1.34138565954355, 48.674829775519406], + [-1.341340693466156, 48.67479069504203], + [-1.3414145116273, 48.67471746097725], + [-1.341427347328673, 48.67458617046537], + [-1.341399709215387, 48.67451717234955], + [-1.341279929401527, 48.67445653948811], + [-1.340881583766118, 48.67409267631658], + [-1.340845898341474, 48.67405070724385], + [-1.34056797392051, 48.67379685828972], + [-1.340550630424044, 48.67378100987611], + [-1.340545527448469, 48.67377974637049], + [-1.34054090795977, 48.673780132595105], + [-1.340517035971892, 48.67379109524738], + [-1.3405143892225866, 48.67378431146558] + ] + }, + "length": 0.2522152999932708, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch143253", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus021707", + "bus2": "LVBus195690", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3405143892225866, 48.67378431146558], + [-1.340511742473281, 48.67377752768378], + [-1.340524215456442, 48.67377214668572], + [-1.34061533771321, 48.67377109338631], + [-1.340622296919997, 48.6737732441641], + [-1.340644073201206, 48.673787218376674], + [-1.340650525953079, 48.67379719556955], + [-1.340658667983175, 48.67380569860559], + [-1.340749772721113, 48.67388683816967], + [-1.340760178041364, 48.67389218451362], + [-1.340883396791196, 48.67399667794088], + [-1.340888875935236, 48.67400787312246], + [-1.341094728878057, 48.6742062763994], + [-1.341096974187145, 48.674208438386664], + [-1.341108332911281, 48.674219388198615], + [-1.341113099956009, 48.67422089606251], + [-1.341119512019872, 48.67422068817659], + [-1.341130004040592, 48.674217267249176], + [-1.341130004040592, 48.674217267249176] + ] + }, + "length": 0.07146262631265571, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus021707_production", + "bus": "LVBus021707", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus021707_consumption", + "bus": "LVBus021707", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195690_production", + "bus": "LVBus195690", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195690_consumption", + "bus": "LVBus195690", + "phases": "abcn", + "powers": [ + [14192.600576138375, 4664.88222052906], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder06713_Summer.json b/roseau/load_flow/data/networks/LVFeeder06713_Summer.json new file mode 100644 index 00000000..60298c5e --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder06713_Summer.json @@ -0,0 +1,169 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV13539", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5670214765884245, 48.8376573517751] + } + }, + { + "id": "MVLV13539", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5670214765884245, 48.8376573517751] + } + }, + { + "id": "LVBus030540", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.567394325443026, 48.83750072463013] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV13539", + "geometry": { + "type": "Point", + "coordinates": [-1.5670214765884245, 48.8376573517751] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch087298", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV13539", + "bus2": "LVBus030540", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5670214765884245, 48.8376573517751], + [-1.567024891036148, 48.83765119266356], + [-1.567024891036148, 48.83765119266356], + [-1.567093126593634, 48.837644598215576], + [-1.567393224273691, 48.83750166962812], + [-1.567394325443026, 48.83750072463013], + [-1.567394325443026, 48.83750072463013] + ] + }, + "length": 0.03236051183812635, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus030540_production", + "bus": "LVBus030540", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-306.3376110562685, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus030540_consumption", + "bus": "LVBus030540", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [4275.261860751033, 1405.2106191062749], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder06713_Winter.json b/roseau/load_flow/data/networks/LVFeeder06713_Winter.json new file mode 100644 index 00000000..3a8145ad --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder06713_Winter.json @@ -0,0 +1,169 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV13539", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5670214765884245, 48.8376573517751] + } + }, + { + "id": "MVLV13539", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5670214765884245, 48.8376573517751] + } + }, + { + "id": "LVBus030540", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.567394325443026, 48.83750072463013] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV13539", + "geometry": { + "type": "Point", + "coordinates": [-1.5670214765884245, 48.8376573517751] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch087298", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV13539", + "bus2": "LVBus030540", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5670214765884245, 48.8376573517751], + [-1.567024891036148, 48.83765119266356], + [-1.567024891036148, 48.83765119266356], + [-1.567093126593634, 48.837644598215576], + [-1.567393224273691, 48.83750166962812], + [-1.567394325443026, 48.83750072463013], + [-1.567394325443026, 48.83750072463013] + ] + }, + "length": 0.03236051183812635, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus030540_production", + "bus": "LVBus030540", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus030540_consumption", + "bus": "LVBus030540", + "phases": "abcn", + "powers": [ + [21376.309303755166, 7026.053095531374], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder06926_Summer.json b/roseau/load_flow/data/networks/LVFeeder06926_Summer.json new file mode 100644 index 00000000..dec50257 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder06926_Summer.json @@ -0,0 +1,170 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV10892", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.58340589517331, 48.8394770872287] + } + }, + { + "id": "MVLV10892", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.58340589517331, 48.8394770872287] + } + }, + { + "id": "LVBus031502", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.583679933728929, 48.83930896861669] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV10892", + "geometry": { + "type": "Point", + "coordinates": [-1.58340589517331, 48.8394770872287] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch145043", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV10892", + "bus2": "LVBus031502", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.58340589517331, 48.8394770872287], + [-1.58341509679312, 48.839476091109375], + [-1.58341509679312, 48.839476091109375], + [-1.583488045613804, 48.839414277829576], + [-1.583597546837644, 48.83932637854037], + [-1.583677511796301, 48.83930921040863], + [-1.583679933728929, 48.83930896861669], + [-1.583679933728929, 48.83930896861669] + ] + }, + "length": 0.027721633689653087, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus031502_production", + "bus": "LVBus031502", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-306.3376110562685, 0.0] + ] + }, + { + "id": "LVBus031502_consumption", + "bus": "LVBus031502", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3443.2924934925854, 1131.755512092707] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder06926_Winter.json b/roseau/load_flow/data/networks/LVFeeder06926_Winter.json new file mode 100644 index 00000000..7c4aa22b --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder06926_Winter.json @@ -0,0 +1,170 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV10892", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.58340589517331, 48.8394770872287] + } + }, + { + "id": "MVLV10892", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.58340589517331, 48.8394770872287] + } + }, + { + "id": "LVBus031502", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.583679933728929, 48.83930896861669] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV10892", + "geometry": { + "type": "Point", + "coordinates": [-1.58340589517331, 48.8394770872287] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch145043", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV10892", + "bus2": "LVBus031502", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.58340589517331, 48.8394770872287], + [-1.58341509679312, 48.839476091109375], + [-1.58341509679312, 48.839476091109375], + [-1.583488045613804, 48.839414277829576], + [-1.583597546837644, 48.83932637854037], + [-1.583677511796301, 48.83930921040863], + [-1.583679933728929, 48.83930896861669], + [-1.583679933728929, 48.83930896861669] + ] + }, + "length": 0.027721633689653087, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus031502_production", + "bus": "LVBus031502", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus031502_consumption", + "bus": "LVBus031502", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [17216.462467462927, 5658.777560463535] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder06975_Summer.json b/roseau/load_flow/data/networks/LVFeeder06975_Summer.json new file mode 100644 index 00000000..12f625dd --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder06975_Summer.json @@ -0,0 +1,333 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV08323", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.486544817424025, 49.00306803282168] + } + }, + { + "id": "MVLV08323", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.486544817424025, 49.00306803282168] + } + }, + { + "id": "LVBus031726", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.486513726909302, 49.0030409493912] + } + }, + { + "id": "LVBus031727", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.4817331705175, 49.002397773977464] + } + }, + { + "id": "LVBus031728", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.481138923860346, 49.00208240563369] + } + }, + { + "id": "LVBus031729", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.481550880201745, 49.00293744342641] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV08323", + "geometry": { + "type": "Point", + "coordinates": [-1.486544817424025, 49.00306803282168] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch148636", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV08323", + "bus2": "LVBus031726", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.486544817424025, 49.00306803282168], + [-1.486556205105343, 49.00304599455681], + [-1.486556205105343, 49.00304599455681], + [-1.486551191373767, 49.003029798808676], + [-1.486513726909302, 49.0030409493912], + [-1.486513726909302, 49.0030409493912] + ] + }, + "length": 0.004846721290393125, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch123573", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus031726", + "bus2": "LVBus031727", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.486513726909302, 49.0030409493912], + [-1.486513726909302, 49.0030409493912], + [-1.486512429527617, 49.00303653748757], + [-1.486493305743448, 49.00297140077385], + [-1.486347687624937, 49.0029522501714], + [-1.486332635334052, 49.002950267140264], + [-1.486317610993442, 49.002948292208906], + [-1.484304605647006, 49.002683446474286], + [-1.48217896418185, 49.00244902690201], + [-1.482015518723655, 49.00243099929583], + [-1.481739888652721, 49.00239856670567], + [-1.481736260905229, 49.00239814294953], + [-1.4817331705175, 49.002397773977464], + [-1.4817331705175, 49.002397773977464] + ] + }, + "length": 0.362001412407552, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch138641", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus031727", + "bus2": "LVBus031728", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.4817331705175, 49.002397773977464], + [-1.4817331705175, 49.002397773977464], + [-1.481578482975684, 49.00235669453785], + [-1.481536089456321, 49.00232927871434], + [-1.481309745923622, 49.00220712619791], + [-1.481106887488244, 49.00210558063966], + [-1.481116366298437, 49.002098394847074], + [-1.481133680209698, 49.00208528141549], + [-1.481138923860346, 49.00208240563369], + [-1.481138923860346, 49.00208240563369] + ] + }, + "length": 0.0601146076163281, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch148631", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus031727", + "bus2": "LVBus031729", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.4817331705175, 49.002397773977464], + [-1.4817331705175, 49.002397773977464], + [-1.481717340508317, 49.00245742579791], + [-1.481602259087947, 49.002891220390545], + [-1.481604665586369, 49.002916937411754], + [-1.481594902210566, 49.002925454877314], + [-1.481575750641467, 49.002937574513844], + [-1.481550880201745, 49.00293744342641], + [-1.481550880201745, 49.00293744342641] + ] + }, + "length": 0.06352159420091105, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus031726_production", + "bus": "LVBus031726", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031726_consumption", + "bus": "LVBus031726", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031727_production", + "bus": "LVBus031727", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031727_consumption", + "bus": "LVBus031727", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031728_production", + "bus": "LVBus031728", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-177.83783783783784, 0.0] + ] + }, + { + "id": "LVBus031728_consumption", + "bus": "LVBus031728", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [4396.655796987995, 1445.1108764124608] + ] + }, + { + "id": "LVBus031729_production", + "bus": "LVBus031729", + "phases": "abcn", + "powers": [ + [-177.83783783783784, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031729_consumption", + "bus": "LVBus031729", + "phases": "abcn", + "powers": [ + [4396.655796987995, 1445.1108764124608], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder06975_Winter.json b/roseau/load_flow/data/networks/LVFeeder06975_Winter.json new file mode 100644 index 00000000..16b04940 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder06975_Winter.json @@ -0,0 +1,333 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV08323", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.486544817424025, 49.00306803282168] + } + }, + { + "id": "MVLV08323", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.486544817424025, 49.00306803282168] + } + }, + { + "id": "LVBus031726", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.486513726909302, 49.0030409493912] + } + }, + { + "id": "LVBus031727", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.4817331705175, 49.002397773977464] + } + }, + { + "id": "LVBus031728", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.481138923860346, 49.00208240563369] + } + }, + { + "id": "LVBus031729", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.481550880201745, 49.00293744342641] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV08323", + "geometry": { + "type": "Point", + "coordinates": [-1.486544817424025, 49.00306803282168] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch148636", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV08323", + "bus2": "LVBus031726", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.486544817424025, 49.00306803282168], + [-1.486556205105343, 49.00304599455681], + [-1.486556205105343, 49.00304599455681], + [-1.486551191373767, 49.003029798808676], + [-1.486513726909302, 49.0030409493912], + [-1.486513726909302, 49.0030409493912] + ] + }, + "length": 0.004846721290393125, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch123573", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus031726", + "bus2": "LVBus031727", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.486513726909302, 49.0030409493912], + [-1.486513726909302, 49.0030409493912], + [-1.486512429527617, 49.00303653748757], + [-1.486493305743448, 49.00297140077385], + [-1.486347687624937, 49.0029522501714], + [-1.486332635334052, 49.002950267140264], + [-1.486317610993442, 49.002948292208906], + [-1.484304605647006, 49.002683446474286], + [-1.48217896418185, 49.00244902690201], + [-1.482015518723655, 49.00243099929583], + [-1.481739888652721, 49.00239856670567], + [-1.481736260905229, 49.00239814294953], + [-1.4817331705175, 49.002397773977464], + [-1.4817331705175, 49.002397773977464] + ] + }, + "length": 0.362001412407552, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch138641", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus031727", + "bus2": "LVBus031728", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.4817331705175, 49.002397773977464], + [-1.4817331705175, 49.002397773977464], + [-1.481578482975684, 49.00235669453785], + [-1.481536089456321, 49.00232927871434], + [-1.481309745923622, 49.00220712619791], + [-1.481106887488244, 49.00210558063966], + [-1.481116366298437, 49.002098394847074], + [-1.481133680209698, 49.00208528141549], + [-1.481138923860346, 49.00208240563369], + [-1.481138923860346, 49.00208240563369] + ] + }, + "length": 0.0601146076163281, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch148631", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus031727", + "bus2": "LVBus031729", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.4817331705175, 49.002397773977464], + [-1.4817331705175, 49.002397773977464], + [-1.481717340508317, 49.00245742579791], + [-1.481602259087947, 49.002891220390545], + [-1.481604665586369, 49.002916937411754], + [-1.481594902210566, 49.002925454877314], + [-1.481575750641467, 49.002937574513844], + [-1.481550880201745, 49.00293744342641], + [-1.481550880201745, 49.00293744342641] + ] + }, + "length": 0.06352159420091105, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus031726_production", + "bus": "LVBus031726", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus031726_consumption", + "bus": "LVBus031726", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031727_production", + "bus": "LVBus031727", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus031727_consumption", + "bus": "LVBus031727", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031728_production", + "bus": "LVBus031728", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031728_consumption", + "bus": "LVBus031728", + "phases": "abcn", + "powers": [ + [21983.278984939974, 7225.554382062304], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031729_production", + "bus": "LVBus031729", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus031729_consumption", + "bus": "LVBus031729", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [21983.278984939974, 7225.554382062304], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder18498_Summer.json b/roseau/load_flow/data/networks/LVFeeder18498_Summer.json new file mode 100644 index 00000000..37e4ad5e --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder18498_Summer.json @@ -0,0 +1,1038 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV00326", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5639210563669224, 48.79419143030816] + } + }, + { + "id": "MVLV00326", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5639210563669224, 48.79419143030816] + } + }, + { + "id": "LVBus085930", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562476265032381, 48.7949240921263] + } + }, + { + "id": "LVBus085931", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562482623690557, 48.795387615140605] + } + }, + { + "id": "LVBus085932", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562475637105285, 48.795715629354305] + } + }, + { + "id": "LVBus085933", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.56235443936651, 48.79575460167714] + } + }, + { + "id": "LVBus085934", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.561584006278786, 48.79600280057835] + } + }, + { + "id": "LVBus085935", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.560652963825319, 48.79627514893211] + } + }, + { + "id": "LVBus085936", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559853608307476, 48.79666148121493] + } + }, + { + "id": "LVBus085937", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559217380050197, 48.797010785238264] + } + }, + { + "id": "LVBus085941", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.558830493044168, 48.796788342209] + } + }, + { + "id": "LVBus085942", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.557940893282149, 48.7958232612289] + } + }, + { + "id": "LVBus085938", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559159203236932, 48.797069357860536] + } + }, + { + "id": "LVBus085939", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559424458218843, 48.79767431513093] + } + }, + { + "id": "LVBus085940", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.557950211467694, 48.797314977507305] + } + }, + { + "id": "LVBus085943", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559813684997206, 48.794598913180515] + } + }, + { + "id": "LVBus085944", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.561547474793642, 48.79604140703939] + } + }, + { + "id": "LVBus085945", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562051920070268, 48.796500031317706] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV00326", + "geometry": { + "type": "Point", + "coordinates": [-1.5639210563669224, 48.79419143030816] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch095269", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV00326", + "bus2": "LVBus085930", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5639210563669224, 48.79419143030816], + [-1.563911480764471, 48.794192149494776], + [-1.563911480764471, 48.794192149494776], + [-1.563908355394083, 48.79420692029797], + [-1.563987942067012, 48.79435277273157], + [-1.563908878738397, 48.79436912665271], + [-1.563779051331804, 48.794395983288766], + [-1.56360378354593, 48.79443223189149], + [-1.563331158017897, 48.79448861964062], + [-1.563247721586648, 48.79450587250205], + [-1.562954655825835, 48.7945664935784], + [-1.562811858103681, 48.794596033376706], + [-1.562660289403692, 48.79462920832764], + [-1.562648985241195, 48.79466346905984], + [-1.562638924597969, 48.79468383067471], + [-1.562636918516864, 48.7946877660157], + [-1.562531865408142, 48.79489384067077], + [-1.562476265032381, 48.7949240921263], + [-1.562476265032381, 48.7949240921263] + ] + }, + "length": 0.15739335503674393, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch068329", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085930", + "bus2": "LVBus085931", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.562476265032381, 48.7949240921263], + [-1.562476265032381, 48.7949240921263], + [-1.5624763306461, 48.794928589427506], + [-1.562481192980537, 48.79528358974487], + [-1.562482623690557, 48.795387615140605], + [-1.562482623690557, 48.795387615140605] + ] + }, + "length": 0.0515485496378037, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch143411", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085931", + "bus2": "LVBus085932", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.562482623690557, 48.795387615140605], + [-1.562482623690557, 48.795387615140605], + [-1.56248913597707, 48.7953889043325], + [-1.562502008392102, 48.79539145171091], + [-1.562500850608743, 48.79568955135254], + [-1.562472873897896, 48.79569771319403], + [-1.562474947146663, 48.795711161535245], + [-1.562475637105285, 48.795715629354305], + [-1.562475637105285, 48.795715629354305] + ] + }, + "length": 0.03888689850109125, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch143412", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085932", + "bus2": "LVBus085933", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.562475637105285, 48.795715629354305], + [-1.562475637105285, 48.795715629354305], + [-1.56247076977813, 48.79571248642073], + [-1.562458402131035, 48.795704514139366], + [-1.56235581469101, 48.79573828655136], + [-1.56235443936651, 48.79575460167714], + [-1.56235443936651, 48.79575460167714] + ] + }, + "length": 0.01200773888479161, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch159777", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085933", + "bus2": "LVBus085934", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56235443936651, 48.79575460167714], + [-1.56235443936651, 48.79575460167714], + [-1.562338861109953, 48.795743963037005], + [-1.562259116225267, 48.79577121778338], + [-1.562234625411284, 48.79577900425578], + [-1.561979822372869, 48.7958600548774], + [-1.561587744907283, 48.79598476116963], + [-1.561584006278786, 48.79600280057835], + [-1.561584006278786, 48.79600280057835] + ] + }, + "length": 0.06501197017011255, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch134684", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085934", + "bus2": "LVBus085935", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561584006278786, 48.79600280057835], + [-1.561584006278786, 48.79600280057835], + [-1.5615684258737, 48.79598361296299], + [-1.561438456653736, 48.79602568861757], + [-1.561189302297884, 48.79610635423052], + [-1.561168678013306, 48.79611303280055], + [-1.561083228476114, 48.79614069874988], + [-1.560685408238978, 48.79627386918763], + [-1.560652963825319, 48.79627514893211], + [-1.560652963825319, 48.79627514893211] + ] + }, + "length": 0.07727254510592567, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120208", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085935", + "bus2": "LVBus085936", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.560652963825319, 48.79627514893211], + [-1.560652963825319, 48.79627514893211], + [-1.56062695451107, 48.79626381721302], + [-1.56054584861538, 48.79632773183593], + [-1.560347234312262, 48.79641794214853], + [-1.560223039792418, 48.79647436026747], + [-1.56015284809163, 48.796506240711416], + [-1.560055930632327, 48.796550254842494], + [-1.560019998512119, 48.79656657788678], + [-1.55985379865856, 48.79664207339011], + [-1.559853608307476, 48.79666148121493], + [-1.559853608307476, 48.79666148121493] + ] + }, + "length": 0.0754243117518209, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120206", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085936", + "bus2": "LVBus085937", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559853608307476, 48.79666148121493], + [-1.559853608307476, 48.79666148121493], + [-1.559831732558835, 48.79665440527826], + [-1.559698264244369, 48.796714312400844], + [-1.559571542145425, 48.79677119058429], + [-1.559371279871425, 48.79686108418754], + [-1.559347288985397, 48.79687916635324], + [-1.559254523785118, 48.79694910441934], + [-1.559217380050197, 48.797010785238264], + [-1.559217380050197, 48.797010785238264] + ] + }, + "length": 0.06308495235043682, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120205", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085937", + "bus2": "LVBus085941", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559217380050197, 48.797010785238264], + [-1.559217380050197, 48.797010785238264], + [-1.559167752593059, 48.79699184933102], + [-1.559097362968066, 48.79703816077496], + [-1.558981088949208, 48.79696102659631], + [-1.558858452324498, 48.79679916046414], + [-1.558830493044168, 48.796788342209], + [-1.558830493044168, 48.796788342209] + ] + }, + "length": 0.046124792075994944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch078641", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085941", + "bus2": "LVBus085942", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558830493044168, 48.796788342209], + [-1.558830493044168, 48.796788342209], + [-1.558689755589964, 48.79659637394668], + [-1.558214303290298, 48.79610552429633], + [-1.557944555455452, 48.79582704675016], + [-1.557942989834666, 48.79582542425673], + [-1.557940893282149, 48.7958232612289], + [-1.557940893282149, 48.7958232612289] + ] + }, + "length": 0.12579227015476419, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch095315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085937", + "bus2": "LVBus085938", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559217380050197, 48.797010785238264], + [-1.559217380050197, 48.797010785238264], + [-1.559193501839281, 48.79701241373311], + [-1.559172063107798, 48.79703890714755], + [-1.559159203236932, 48.797069357860536], + [-1.559159203236932, 48.797069357860536] + ] + }, + "length": 0.008620072155210545, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch095286", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085938", + "bus2": "LVBus085939", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559159203236932, 48.797069357860536], + [-1.559159203236932, 48.797069357860536], + [-1.559141646334514, 48.797127589050575], + [-1.559148516191801, 48.79719312765552], + [-1.559178323551715, 48.7972767941318], + [-1.559191677381318, 48.79730025747179], + [-1.55923649113574, 48.797378968665235], + [-1.559286026688566, 48.79746595702616], + [-1.559406406639428, 48.79767735448237], + [-1.559424458218843, 48.79767431513093], + [-1.559424458218843, 48.79767431513093] + ] + }, + "length": 0.07242780940632175, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch085710", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085938", + "bus2": "LVBus085940", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559159203236932, 48.797069357860536], + [-1.559159203236932, 48.797069357860536], + [-1.559123629160332, 48.79705998608895], + [-1.559105076645978, 48.797061431022016], + [-1.559080713863751, 48.79706331834405], + [-1.55906347516306, 48.797063757332786], + [-1.559051229546833, 48.79706357373655], + [-1.559032715574916, 48.797062992648776], + [-1.559019369666146, 48.797062305177], + [-1.559008960208799, 48.79706244835136], + [-1.558979686073499, 48.7970645955998], + [-1.558952586779939, 48.79706994715531], + [-1.558934185410253, 48.7970743117413], + [-1.558918455073145, 48.797077967866606], + [-1.558901836642812, 48.79708303892058], + [-1.558878187925509, 48.797090626081264], + [-1.558844606527365, 48.79710089645127], + [-1.558809728000405, 48.79711148828481], + [-1.558804912661023, 48.797114840688614], + [-1.55878544614436, 48.79712243475575], + [-1.558771297144275, 48.79712647098427], + [-1.558757390977545, 48.79712884346106], + [-1.558746399332657, 48.79713121041391], + [-1.558687603320486, 48.79714762536806], + [-1.55862929820416, 48.79716332229342], + [-1.558608628929495, 48.7971701368468], + [-1.558580708173903, 48.79717779194685], + [-1.558559442692226, 48.79718410409415], + [-1.558537262318507, 48.797190023270616], + [-1.558499008684606, 48.79719920479818], + [-1.55842677678008, 48.7972162758648], + [-1.558357629686671, 48.79723252589524], + [-1.558315962725732, 48.79724069434893], + [-1.558271426107748, 48.79724765198099], + [-1.558208703659671, 48.79725731121114], + [-1.558143079247456, 48.79726750643634], + [-1.558072801063144, 48.7972788529792], + [-1.558006000871563, 48.79728971657173], + [-1.557958216007627, 48.79729677151139], + [-1.557950050796354, 48.79729977469074], + [-1.557946470201684, 48.797303608535984], + [-1.557950211467694, 48.797314977507305], + [-1.557950211467694, 48.797314977507305] + ] + }, + "length": 0.09560581989804982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch103976", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085935", + "bus2": "LVBus085943", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.560652963825319, 48.79627514893211], + [-1.560652963825319, 48.79627514893211], + [-1.5606304275901, 48.796217943998926], + [-1.560607110786743, 48.79610665434017], + [-1.559871682515022, 48.794625223461374], + [-1.5598378636043, 48.79462142770611], + [-1.559829632964095, 48.79461376049445], + [-1.559813684997206, 48.794598913180515], + [-1.559813684997206, 48.794598913180515] + ] + }, + "length": 0.19803602647938606, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120207", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085934", + "bus2": "LVBus085944", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561584006278786, 48.79600280057835], + [-1.561584006278786, 48.79600280057835], + [-1.561558370322597, 48.79599825097898], + [-1.561536771785084, 48.796006464382494], + [-1.561551557171352, 48.796023410352916], + [-1.561547474793642, 48.79604140703939], + [-1.561547474793642, 48.79604140703939] + ] + }, + "length": 0.007980033327017745, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch085664", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085944", + "bus2": "LVBus085945", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561547474793642, 48.79604140703939], + [-1.561547474793642, 48.79604140703939], + [-1.561568231118501, 48.796035398987506], + [-1.561670537311036, 48.796103360026216], + [-1.561912033462999, 48.79622837133884], + [-1.561982394573095, 48.79625657886689], + [-1.562413935632969, 48.79637147732905], + [-1.562188318304135, 48.79647588593019], + [-1.562079853544692, 48.79652608480834], + [-1.562051920070268, 48.796500031317706], + [-1.562051920070268, 48.796500031317706] + ] + }, + "length": 0.10861218547672713, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus085930_production", + "bus": "LVBus085930", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085930_consumption", + "bus": "LVBus085930", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085931_production", + "bus": "LVBus085931", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085931_consumption", + "bus": "LVBus085931", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085932_production", + "bus": "LVBus085932", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085932_consumption", + "bus": "LVBus085932", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085933_production", + "bus": "LVBus085933", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085933_consumption", + "bus": "LVBus085933", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085934_production", + "bus": "LVBus085934", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085934_consumption", + "bus": "LVBus085934", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085935_production", + "bus": "LVBus085935", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085935_consumption", + "bus": "LVBus085935", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085936_production", + "bus": "LVBus085936", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085936_consumption", + "bus": "LVBus085936", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085937_production", + "bus": "LVBus085937", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085937_consumption", + "bus": "LVBus085937", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085941_production", + "bus": "LVBus085941", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085941_consumption", + "bus": "LVBus085941", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085942_production", + "bus": "LVBus085942", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-297.2314049586777, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085942_consumption", + "bus": "LVBus085942", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3470.8969265013834, 1140.8286504551738], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085938_production", + "bus": "LVBus085938", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085938_consumption", + "bus": "LVBus085938", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085939_production", + "bus": "LVBus085939", + "phases": "abcn", + "powers": [ + [-297.2314049586777, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085939_consumption", + "bus": "LVBus085939", + "phases": "abcn", + "powers": [ + [3470.8969265013834, 1140.8286504551738], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085940_production", + "bus": "LVBus085940", + "phases": "abcn", + "powers": [ + [-297.2314049586777, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085940_consumption", + "bus": "LVBus085940", + "phases": "abcn", + "powers": [ + [3470.8969265013834, 1140.8286504551738], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085943_production", + "bus": "LVBus085943", + "phases": "abcn", + "powers": [ + [-297.2314049586777, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085943_consumption", + "bus": "LVBus085943", + "phases": "abcn", + "powers": [ + [3470.8969265013834, 1140.8286504551738], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085944_production", + "bus": "LVBus085944", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085944_consumption", + "bus": "LVBus085944", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085945_production", + "bus": "LVBus085945", + "phases": "abcn", + "powers": [ + [-297.2314049586777, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085945_consumption", + "bus": "LVBus085945", + "phases": "abcn", + "powers": [ + [3470.8969265013834, 1140.8286504551738], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder18498_Winter.json b/roseau/load_flow/data/networks/LVFeeder18498_Winter.json new file mode 100644 index 00000000..55ad74fe --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder18498_Winter.json @@ -0,0 +1,1038 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV00326", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5639210563669224, 48.79419143030816] + } + }, + { + "id": "MVLV00326", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5639210563669224, 48.79419143030816] + } + }, + { + "id": "LVBus085930", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562476265032381, 48.7949240921263] + } + }, + { + "id": "LVBus085931", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562482623690557, 48.795387615140605] + } + }, + { + "id": "LVBus085932", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562475637105285, 48.795715629354305] + } + }, + { + "id": "LVBus085933", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.56235443936651, 48.79575460167714] + } + }, + { + "id": "LVBus085934", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.561584006278786, 48.79600280057835] + } + }, + { + "id": "LVBus085935", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.560652963825319, 48.79627514893211] + } + }, + { + "id": "LVBus085936", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559853608307476, 48.79666148121493] + } + }, + { + "id": "LVBus085937", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559217380050197, 48.797010785238264] + } + }, + { + "id": "LVBus085941", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.558830493044168, 48.796788342209] + } + }, + { + "id": "LVBus085942", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.557940893282149, 48.7958232612289] + } + }, + { + "id": "LVBus085938", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559159203236932, 48.797069357860536] + } + }, + { + "id": "LVBus085939", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559424458218843, 48.79767431513093] + } + }, + { + "id": "LVBus085940", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.557950211467694, 48.797314977507305] + } + }, + { + "id": "LVBus085943", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.559813684997206, 48.794598913180515] + } + }, + { + "id": "LVBus085944", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.561547474793642, 48.79604140703939] + } + }, + { + "id": "LVBus085945", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562051920070268, 48.796500031317706] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV00326", + "geometry": { + "type": "Point", + "coordinates": [-1.5639210563669224, 48.79419143030816] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch095269", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV00326", + "bus2": "LVBus085930", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5639210563669224, 48.79419143030816], + [-1.563911480764471, 48.794192149494776], + [-1.563911480764471, 48.794192149494776], + [-1.563908355394083, 48.79420692029797], + [-1.563987942067012, 48.79435277273157], + [-1.563908878738397, 48.79436912665271], + [-1.563779051331804, 48.794395983288766], + [-1.56360378354593, 48.79443223189149], + [-1.563331158017897, 48.79448861964062], + [-1.563247721586648, 48.79450587250205], + [-1.562954655825835, 48.7945664935784], + [-1.562811858103681, 48.794596033376706], + [-1.562660289403692, 48.79462920832764], + [-1.562648985241195, 48.79466346905984], + [-1.562638924597969, 48.79468383067471], + [-1.562636918516864, 48.7946877660157], + [-1.562531865408142, 48.79489384067077], + [-1.562476265032381, 48.7949240921263], + [-1.562476265032381, 48.7949240921263] + ] + }, + "length": 0.15739335503674393, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch068329", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085930", + "bus2": "LVBus085931", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.562476265032381, 48.7949240921263], + [-1.562476265032381, 48.7949240921263], + [-1.5624763306461, 48.794928589427506], + [-1.562481192980537, 48.79528358974487], + [-1.562482623690557, 48.795387615140605], + [-1.562482623690557, 48.795387615140605] + ] + }, + "length": 0.0515485496378037, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch143411", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085931", + "bus2": "LVBus085932", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.562482623690557, 48.795387615140605], + [-1.562482623690557, 48.795387615140605], + [-1.56248913597707, 48.7953889043325], + [-1.562502008392102, 48.79539145171091], + [-1.562500850608743, 48.79568955135254], + [-1.562472873897896, 48.79569771319403], + [-1.562474947146663, 48.795711161535245], + [-1.562475637105285, 48.795715629354305], + [-1.562475637105285, 48.795715629354305] + ] + }, + "length": 0.03888689850109125, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch143412", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085932", + "bus2": "LVBus085933", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.562475637105285, 48.795715629354305], + [-1.562475637105285, 48.795715629354305], + [-1.56247076977813, 48.79571248642073], + [-1.562458402131035, 48.795704514139366], + [-1.56235581469101, 48.79573828655136], + [-1.56235443936651, 48.79575460167714], + [-1.56235443936651, 48.79575460167714] + ] + }, + "length": 0.01200773888479161, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch159777", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085933", + "bus2": "LVBus085934", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56235443936651, 48.79575460167714], + [-1.56235443936651, 48.79575460167714], + [-1.562338861109953, 48.795743963037005], + [-1.562259116225267, 48.79577121778338], + [-1.562234625411284, 48.79577900425578], + [-1.561979822372869, 48.7958600548774], + [-1.561587744907283, 48.79598476116963], + [-1.561584006278786, 48.79600280057835], + [-1.561584006278786, 48.79600280057835] + ] + }, + "length": 0.06501197017011255, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch134684", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085934", + "bus2": "LVBus085935", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561584006278786, 48.79600280057835], + [-1.561584006278786, 48.79600280057835], + [-1.5615684258737, 48.79598361296299], + [-1.561438456653736, 48.79602568861757], + [-1.561189302297884, 48.79610635423052], + [-1.561168678013306, 48.79611303280055], + [-1.561083228476114, 48.79614069874988], + [-1.560685408238978, 48.79627386918763], + [-1.560652963825319, 48.79627514893211], + [-1.560652963825319, 48.79627514893211] + ] + }, + "length": 0.07727254510592567, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120208", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085935", + "bus2": "LVBus085936", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.560652963825319, 48.79627514893211], + [-1.560652963825319, 48.79627514893211], + [-1.56062695451107, 48.79626381721302], + [-1.56054584861538, 48.79632773183593], + [-1.560347234312262, 48.79641794214853], + [-1.560223039792418, 48.79647436026747], + [-1.56015284809163, 48.796506240711416], + [-1.560055930632327, 48.796550254842494], + [-1.560019998512119, 48.79656657788678], + [-1.55985379865856, 48.79664207339011], + [-1.559853608307476, 48.79666148121493], + [-1.559853608307476, 48.79666148121493] + ] + }, + "length": 0.0754243117518209, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120206", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085936", + "bus2": "LVBus085937", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559853608307476, 48.79666148121493], + [-1.559853608307476, 48.79666148121493], + [-1.559831732558835, 48.79665440527826], + [-1.559698264244369, 48.796714312400844], + [-1.559571542145425, 48.79677119058429], + [-1.559371279871425, 48.79686108418754], + [-1.559347288985397, 48.79687916635324], + [-1.559254523785118, 48.79694910441934], + [-1.559217380050197, 48.797010785238264], + [-1.559217380050197, 48.797010785238264] + ] + }, + "length": 0.06308495235043682, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120205", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085937", + "bus2": "LVBus085941", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559217380050197, 48.797010785238264], + [-1.559217380050197, 48.797010785238264], + [-1.559167752593059, 48.79699184933102], + [-1.559097362968066, 48.79703816077496], + [-1.558981088949208, 48.79696102659631], + [-1.558858452324498, 48.79679916046414], + [-1.558830493044168, 48.796788342209], + [-1.558830493044168, 48.796788342209] + ] + }, + "length": 0.046124792075994944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch078641", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085941", + "bus2": "LVBus085942", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558830493044168, 48.796788342209], + [-1.558830493044168, 48.796788342209], + [-1.558689755589964, 48.79659637394668], + [-1.558214303290298, 48.79610552429633], + [-1.557944555455452, 48.79582704675016], + [-1.557942989834666, 48.79582542425673], + [-1.557940893282149, 48.7958232612289], + [-1.557940893282149, 48.7958232612289] + ] + }, + "length": 0.12579227015476419, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch095315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085937", + "bus2": "LVBus085938", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559217380050197, 48.797010785238264], + [-1.559217380050197, 48.797010785238264], + [-1.559193501839281, 48.79701241373311], + [-1.559172063107798, 48.79703890714755], + [-1.559159203236932, 48.797069357860536], + [-1.559159203236932, 48.797069357860536] + ] + }, + "length": 0.008620072155210545, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch095286", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085938", + "bus2": "LVBus085939", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559159203236932, 48.797069357860536], + [-1.559159203236932, 48.797069357860536], + [-1.559141646334514, 48.797127589050575], + [-1.559148516191801, 48.79719312765552], + [-1.559178323551715, 48.7972767941318], + [-1.559191677381318, 48.79730025747179], + [-1.55923649113574, 48.797378968665235], + [-1.559286026688566, 48.79746595702616], + [-1.559406406639428, 48.79767735448237], + [-1.559424458218843, 48.79767431513093], + [-1.559424458218843, 48.79767431513093] + ] + }, + "length": 0.07242780940632175, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch085710", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085938", + "bus2": "LVBus085940", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559159203236932, 48.797069357860536], + [-1.559159203236932, 48.797069357860536], + [-1.559123629160332, 48.79705998608895], + [-1.559105076645978, 48.797061431022016], + [-1.559080713863751, 48.79706331834405], + [-1.55906347516306, 48.797063757332786], + [-1.559051229546833, 48.79706357373655], + [-1.559032715574916, 48.797062992648776], + [-1.559019369666146, 48.797062305177], + [-1.559008960208799, 48.79706244835136], + [-1.558979686073499, 48.7970645955998], + [-1.558952586779939, 48.79706994715531], + [-1.558934185410253, 48.7970743117413], + [-1.558918455073145, 48.797077967866606], + [-1.558901836642812, 48.79708303892058], + [-1.558878187925509, 48.797090626081264], + [-1.558844606527365, 48.79710089645127], + [-1.558809728000405, 48.79711148828481], + [-1.558804912661023, 48.797114840688614], + [-1.55878544614436, 48.79712243475575], + [-1.558771297144275, 48.79712647098427], + [-1.558757390977545, 48.79712884346106], + [-1.558746399332657, 48.79713121041391], + [-1.558687603320486, 48.79714762536806], + [-1.55862929820416, 48.79716332229342], + [-1.558608628929495, 48.7971701368468], + [-1.558580708173903, 48.79717779194685], + [-1.558559442692226, 48.79718410409415], + [-1.558537262318507, 48.797190023270616], + [-1.558499008684606, 48.79719920479818], + [-1.55842677678008, 48.7972162758648], + [-1.558357629686671, 48.79723252589524], + [-1.558315962725732, 48.79724069434893], + [-1.558271426107748, 48.79724765198099], + [-1.558208703659671, 48.79725731121114], + [-1.558143079247456, 48.79726750643634], + [-1.558072801063144, 48.7972788529792], + [-1.558006000871563, 48.79728971657173], + [-1.557958216007627, 48.79729677151139], + [-1.557950050796354, 48.79729977469074], + [-1.557946470201684, 48.797303608535984], + [-1.557950211467694, 48.797314977507305], + [-1.557950211467694, 48.797314977507305] + ] + }, + "length": 0.09560581989804982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch103976", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085935", + "bus2": "LVBus085943", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.560652963825319, 48.79627514893211], + [-1.560652963825319, 48.79627514893211], + [-1.5606304275901, 48.796217943998926], + [-1.560607110786743, 48.79610665434017], + [-1.559871682515022, 48.794625223461374], + [-1.5598378636043, 48.79462142770611], + [-1.559829632964095, 48.79461376049445], + [-1.559813684997206, 48.794598913180515], + [-1.559813684997206, 48.794598913180515] + ] + }, + "length": 0.19803602647938606, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch120207", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085934", + "bus2": "LVBus085944", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561584006278786, 48.79600280057835], + [-1.561584006278786, 48.79600280057835], + [-1.561558370322597, 48.79599825097898], + [-1.561536771785084, 48.796006464382494], + [-1.561551557171352, 48.796023410352916], + [-1.561547474793642, 48.79604140703939], + [-1.561547474793642, 48.79604140703939] + ] + }, + "length": 0.007980033327017745, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch085664", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus085944", + "bus2": "LVBus085945", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561547474793642, 48.79604140703939], + [-1.561547474793642, 48.79604140703939], + [-1.561568231118501, 48.796035398987506], + [-1.561670537311036, 48.796103360026216], + [-1.561912033462999, 48.79622837133884], + [-1.561982394573095, 48.79625657886689], + [-1.562413935632969, 48.79637147732905], + [-1.562188318304135, 48.79647588593019], + [-1.562079853544692, 48.79652608480834], + [-1.562051920070268, 48.796500031317706], + [-1.562051920070268, 48.796500031317706] + ] + }, + "length": 0.10861218547672713, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus085930_production", + "bus": "LVBus085930", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085930_consumption", + "bus": "LVBus085930", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085931_production", + "bus": "LVBus085931", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085931_consumption", + "bus": "LVBus085931", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085932_production", + "bus": "LVBus085932", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085932_consumption", + "bus": "LVBus085932", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085933_production", + "bus": "LVBus085933", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085933_consumption", + "bus": "LVBus085933", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085934_production", + "bus": "LVBus085934", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085934_consumption", + "bus": "LVBus085934", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085935_production", + "bus": "LVBus085935", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085935_consumption", + "bus": "LVBus085935", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085936_production", + "bus": "LVBus085936", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085936_consumption", + "bus": "LVBus085936", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085937_production", + "bus": "LVBus085937", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085937_consumption", + "bus": "LVBus085937", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085941_production", + "bus": "LVBus085941", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085941_consumption", + "bus": "LVBus085941", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085942_production", + "bus": "LVBus085942", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085942_consumption", + "bus": "LVBus085942", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [17354.484632506916, 5704.14325227587] + ] + }, + { + "id": "LVBus085938_production", + "bus": "LVBus085938", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085938_consumption", + "bus": "LVBus085938", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085939_production", + "bus": "LVBus085939", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085939_consumption", + "bus": "LVBus085939", + "phases": "abcn", + "powers": [ + [17354.484632506916, 5704.14325227587], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085940_production", + "bus": "LVBus085940", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085940_consumption", + "bus": "LVBus085940", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [17354.484632506916, 5704.14325227587] + ] + }, + { + "id": "LVBus085943_production", + "bus": "LVBus085943", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085943_consumption", + "bus": "LVBus085943", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [17354.484632506916, 5704.14325227587] + ] + }, + { + "id": "LVBus085944_production", + "bus": "LVBus085944", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus085944_consumption", + "bus": "LVBus085944", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085945_production", + "bus": "LVBus085945", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus085945_consumption", + "bus": "LVBus085945", + "phases": "abcn", + "powers": [ + [17354.484632506916, 5704.14325227587], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder18769_Summer.json b/roseau/load_flow/data/networks/LVFeeder18769_Summer.json new file mode 100644 index 00000000..8e43e8a2 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder18769_Summer.json @@ -0,0 +1,401 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV12730", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.1327275629390434, 49.16774480064011] + } + }, + { + "id": "MVLV12730", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.1327275629390434, 49.16774480064011] + } + }, + { + "id": "LVBus087076", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.133194683772453, 49.167570340123746] + } + }, + { + "id": "LVBus087077", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.133319188207094, 49.167685073690194] + } + }, + { + "id": "LVBus087078", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.132412649513897, 49.16674157666] + } + }, + { + "id": "LVBus087080", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.132061025225172, 49.166463131093245] + } + }, + { + "id": "LVBus087079", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.132234747056438, 49.16694500576106] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV12730", + "geometry": { + "type": "Point", + "coordinates": [-1.1327275629390434, 49.16774480064011] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch139447", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV12730", + "bus2": "LVBus087076", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1327275629390434, 49.16774480064011], + [-1.132721836467177, 49.167737874903125], + [-1.132721836467177, 49.167737874903125], + [-1.13279854734083, 49.16774519548012], + [-1.133046304703306, 49.167598174902295], + [-1.13310708375901, 49.1676035464256], + [-1.133194683772453, 49.167570340123746], + [-1.133194683772453, 49.167570340123746] + ] + }, + "length": 0.04187235159546076, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch040995", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087076", + "bus2": "LVBus087077", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133194683772453, 49.167570340123746], + [-1.133194683772453, 49.167570340123746], + [-1.133201203913707, 49.16757693256448], + [-1.133315197743707, 49.16768142089236], + [-1.133319188207094, 49.167685073690194], + [-1.133319188207094, 49.167685073690194] + ] + }, + "length": 0.01566142289245769, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch059442", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087076", + "bus2": "LVBus087078", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133194683772453, 49.167570340123746], + [-1.133194683772453, 49.167570340123746], + [-1.132907809488627, 49.16728042493698], + [-1.132869699000441, 49.167251993220546], + [-1.132412649513897, 49.16674157666], + [-1.132412649513897, 49.16674157666] + ] + }, + "length": 0.10847194755352463, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch016717", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087078", + "bus2": "LVBus087080", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132412649513897, 49.16674157666], + [-1.132412649513897, 49.16674157666], + [-1.132408182115541, 49.16673817148385], + [-1.132095121511717, 49.1664887922987], + [-1.132088094047298, 49.16648341965802], + [-1.132061025225172, 49.166463131093245], + [-1.132061025225172, 49.166463131093245] + ] + }, + "length": 0.04020726221453102, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch009111", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087078", + "bus2": "LVBus087079", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132412649513897, 49.16674157666], + [-1.132412649513897, 49.16674157666], + [-1.132242248069601, 49.166936433309786], + [-1.132234747056438, 49.16694500576106], + [-1.132234747056438, 49.16694500576106] + ] + }, + "length": 0.02607998376353147, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus087076_production", + "bus": "LVBus087076", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087076_consumption", + "bus": "LVBus087076", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087077_production", + "bus": "LVBus087077", + "phases": "abcn", + "powers": [ + [-300.44642857142856, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087077_consumption", + "bus": "LVBus087077", + "phases": "abcn", + "powers": [ + [2020.5616651965179, 664.1265028838312], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087078_production", + "bus": "LVBus087078", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus087078_consumption", + "bus": "LVBus087078", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087080_production", + "bus": "LVBus087080", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-300.44642857142856, 0.0] + ] + }, + { + "id": "LVBus087080_consumption", + "bus": "LVBus087080", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2020.5616651965179, 664.1265028838312] + ] + }, + { + "id": "LVBus087079_production", + "bus": "LVBus087079", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-300.44642857142856, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087079_consumption", + "bus": "LVBus087079", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2020.5616651965179, 664.1265028838312], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder18769_Winter.json b/roseau/load_flow/data/networks/LVFeeder18769_Winter.json new file mode 100644 index 00000000..d22c7ddf --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder18769_Winter.json @@ -0,0 +1,401 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV12730", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.1327275629390434, 49.16774480064011] + } + }, + { + "id": "MVLV12730", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.1327275629390434, 49.16774480064011] + } + }, + { + "id": "LVBus087076", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.133194683772453, 49.167570340123746] + } + }, + { + "id": "LVBus087077", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.133319188207094, 49.167685073690194] + } + }, + { + "id": "LVBus087078", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.132412649513897, 49.16674157666] + } + }, + { + "id": "LVBus087080", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.132061025225172, 49.166463131093245] + } + }, + { + "id": "LVBus087079", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.132234747056438, 49.16694500576106] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV12730", + "geometry": { + "type": "Point", + "coordinates": [-1.1327275629390434, 49.16774480064011] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch139447", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV12730", + "bus2": "LVBus087076", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1327275629390434, 49.16774480064011], + [-1.132721836467177, 49.167737874903125], + [-1.132721836467177, 49.167737874903125], + [-1.13279854734083, 49.16774519548012], + [-1.133046304703306, 49.167598174902295], + [-1.13310708375901, 49.1676035464256], + [-1.133194683772453, 49.167570340123746], + [-1.133194683772453, 49.167570340123746] + ] + }, + "length": 0.04187235159546076, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch040995", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087076", + "bus2": "LVBus087077", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133194683772453, 49.167570340123746], + [-1.133194683772453, 49.167570340123746], + [-1.133201203913707, 49.16757693256448], + [-1.133315197743707, 49.16768142089236], + [-1.133319188207094, 49.167685073690194], + [-1.133319188207094, 49.167685073690194] + ] + }, + "length": 0.01566142289245769, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch059442", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087076", + "bus2": "LVBus087078", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133194683772453, 49.167570340123746], + [-1.133194683772453, 49.167570340123746], + [-1.132907809488627, 49.16728042493698], + [-1.132869699000441, 49.167251993220546], + [-1.132412649513897, 49.16674157666], + [-1.132412649513897, 49.16674157666] + ] + }, + "length": 0.10847194755352463, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch016717", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087078", + "bus2": "LVBus087080", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132412649513897, 49.16674157666], + [-1.132412649513897, 49.16674157666], + [-1.132408182115541, 49.16673817148385], + [-1.132095121511717, 49.1664887922987], + [-1.132088094047298, 49.16648341965802], + [-1.132061025225172, 49.166463131093245], + [-1.132061025225172, 49.166463131093245] + ] + }, + "length": 0.04020726221453102, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch009111", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus087078", + "bus2": "LVBus087079", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132412649513897, 49.16674157666], + [-1.132412649513897, 49.16674157666], + [-1.132242248069601, 49.166936433309786], + [-1.132234747056438, 49.16694500576106], + [-1.132234747056438, 49.16694500576106] + ] + }, + "length": 0.02607998376353147, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus087076_production", + "bus": "LVBus087076", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus087076_consumption", + "bus": "LVBus087076", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087077_production", + "bus": "LVBus087077", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus087077_consumption", + "bus": "LVBus087077", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [10102.808325982589, 3320.632514419156] + ] + }, + { + "id": "LVBus087078_production", + "bus": "LVBus087078", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087078_consumption", + "bus": "LVBus087078", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087080_production", + "bus": "LVBus087080", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087080_consumption", + "bus": "LVBus087080", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [10102.808325982589, 3320.632514419156], + [0.0, 0.0] + ] + }, + { + "id": "LVBus087079_production", + "bus": "LVBus087079", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus087079_consumption", + "bus": "LVBus087079", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [10102.808325982589, 3320.632514419156] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder19558_Summer.json b/roseau/load_flow/data/networks/LVFeeder19558_Summer.json new file mode 100644 index 00000000..83653cb8 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder19558_Summer.json @@ -0,0 +1,174 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV04060", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.356072102421145, 48.79586129055696] + } + }, + { + "id": "MVLV04060", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.356072102421145, 48.79586129055696] + } + }, + { + "id": "LVBus090801", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.355342592511366, 48.79547699965425] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV04060", + "geometry": { + "type": "Point", + "coordinates": [-1.356072102421145, 48.79586129055696] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch145794", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV04060", + "bus2": "LVBus090801", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.356072102421145, 48.79586129055696], + [-1.356059280282937, 48.795854310708265], + [-1.356059280282937, 48.795854310708265], + [-1.356048426894235, 48.79586351057455], + [-1.355984934386295, 48.79587365263908], + [-1.355638196527526, 48.795686580450564], + [-1.35553444122419, 48.79562661192269], + [-1.355497792240387, 48.795594269653165], + [-1.355423496407301, 48.79553335911966], + [-1.355350280739599, 48.79547384563337], + [-1.355342592511366, 48.79547699965425], + [-1.355342592511366, 48.79547699965425] + ] + }, + "length": 0.07150052986665181, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus090801_production", + "bus": "LVBus090801", + "phases": "abcn", + "powers": [ + [-1103.7037037037037, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus090801_consumption", + "bus": "LVBus090801", + "phases": "abcn", + "powers": [ + [1560.058817551325, 512.7665364732527], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder19558_Winter.json b/roseau/load_flow/data/networks/LVFeeder19558_Winter.json new file mode 100644 index 00000000..17ce549a --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder19558_Winter.json @@ -0,0 +1,174 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV04060", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.356072102421145, 48.79586129055696] + } + }, + { + "id": "MVLV04060", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.356072102421145, 48.79586129055696] + } + }, + { + "id": "LVBus090801", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.355342592511366, 48.79547699965425] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV04060", + "geometry": { + "type": "Point", + "coordinates": [-1.356072102421145, 48.79586129055696] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch145794", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV04060", + "bus2": "LVBus090801", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.356072102421145, 48.79586129055696], + [-1.356059280282937, 48.795854310708265], + [-1.356059280282937, 48.795854310708265], + [-1.356048426894235, 48.79586351057455], + [-1.355984934386295, 48.79587365263908], + [-1.355638196527526, 48.795686580450564], + [-1.35553444122419, 48.79562661192269], + [-1.355497792240387, 48.795594269653165], + [-1.355423496407301, 48.79553335911966], + [-1.355350280739599, 48.79547384563337], + [-1.355342592511366, 48.79547699965425], + [-1.355342592511366, 48.79547699965425] + ] + }, + "length": 0.07150052986665181, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus090801_production", + "bus": "LVBus090801", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus090801_consumption", + "bus": "LVBus090801", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [7800.294087756625, 2563.8326823662637] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder20256_Summer.json b/roseau/load_flow/data/networks/LVFeeder20256_Summer.json new file mode 100644 index 00000000..d0097d7e --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder20256_Summer.json @@ -0,0 +1,466 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV06233", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.198773190586607, 48.76230724776908] + } + }, + { + "id": "MVLV06233", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.198773190586607, 48.76230724776908] + } + }, + { + "id": "LVBus094025", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.198670212653164, 48.762307290177716] + } + }, + { + "id": "LVBus094026", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.196631691792718, 48.76430293374081] + } + }, + { + "id": "LVBus094028", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.19584166933687, 48.76430044109762] + } + }, + { + "id": "LVBus094027", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.196176665526038, 48.76383992052203] + } + }, + { + "id": "LVBus094029", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.199246174599321, 48.761582385193975] + } + }, + { + "id": "LVBus094030", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.199412792405016, 48.761244116844864] + } + }, + { + "id": "LVBus094031", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.19778131755017, 48.76160462078426] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV06233", + "geometry": { + "type": "Point", + "coordinates": [-1.198773190586607, 48.76230724776908] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch032577", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV06233", + "bus2": "LVBus094025", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.198773190586607, 48.76230724776908], + [-1.198754359183145, 48.76229631003135], + [-1.198754359183145, 48.76229631003135], + [-1.198670212653164, 48.762307290177716], + [-1.198670212653164, 48.762307290177716] + ] + }, + "length": 0.006305750351183943, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch068262", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094025", + "bus2": "LVBus094026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.198670212653164, 48.762307290177716], + [-1.198670212653164, 48.762307290177716], + [-1.198757084357338, 48.76282679782344], + [-1.19827679971019, 48.76327219047161], + [-1.197149503332568, 48.764115818504806], + [-1.197119005611957, 48.76412683865895], + [-1.197107077729324, 48.76413115227692], + [-1.196637655773829, 48.764300776956], + [-1.196631691792718, 48.76430293374081], + [-1.196631691792718, 48.76430293374081] + ] + }, + "length": 0.28751405369286326, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch044884", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094026", + "bus2": "LVBus094028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.196631691792718, 48.76430293374081], + [-1.196631691792718, 48.76430293374081], + [-1.196373882091346, 48.7643021188501], + [-1.19584166933687, 48.76430044109762], + [-1.19584166933687, 48.76430044109762] + ] + }, + "length": 0.05808029688523051, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch011859", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094026", + "bus2": "LVBus094027", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.196631691792718, 48.76430293374081], + [-1.196631691792718, 48.76430293374081], + [-1.196180365122294, 48.763843688222934], + [-1.196176665526038, 48.76383992052203], + [-1.196176665526038, 48.76383992052203] + ] + }, + "length": 0.061401995852302334, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch044888", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094025", + "bus2": "LVBus094029", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.198670212653164, 48.762307290177716], + [-1.198670212653164, 48.762307290177716], + [-1.198899487593858, 48.76180346410311], + [-1.199242484839553, 48.761586156877975], + [-1.199246174599321, 48.761582385193975], + [-1.199246174599321, 48.761582385193975] + ] + }, + "length": 0.09393517180378773, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch032580", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094029", + "bus2": "LVBus094030", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.199246174599321, 48.761582385193975], + [-1.199246174599321, 48.761582385193975], + [-1.199410353844309, 48.76124907489184], + [-1.199412792405016, 48.761244116844864], + [-1.199412792405016, 48.761244116844864] + ] + }, + "length": 0.039561474934677016, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch078604", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094029", + "bus2": "LVBus094031", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.199246174599321, 48.761582385193975], + [-1.199246174599321, 48.761582385193975], + [-1.19778131755017, 48.76160462078426], + [-1.19778131755017, 48.76160462078426] + ] + }, + "length": 0.10772524267857121, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus094025_production", + "bus": "LVBus094025", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094025_consumption", + "bus": "LVBus094025", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094026_production", + "bus": "LVBus094026", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus094026_consumption", + "bus": "LVBus094026", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094028_production", + "bus": "LVBus094028", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094028_consumption", + "bus": "LVBus094028", + "phases": "abcn", + "powers": [ + [1390.93807235189, 457.1792356701939], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094027_production", + "bus": "LVBus094027", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094027_consumption", + "bus": "LVBus094027", + "phases": "abcn", + "powers": [ + [1390.93807235189, 457.1792356701939], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094029_production", + "bus": "LVBus094029", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094029_consumption", + "bus": "LVBus094029", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094030_production", + "bus": "LVBus094030", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus094030_consumption", + "bus": "LVBus094030", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1390.93807235189, 457.1792356701939] + ] + }, + { + "id": "LVBus094031_production", + "bus": "LVBus094031", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094031_consumption", + "bus": "LVBus094031", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1390.93807235189, 457.1792356701939], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder20256_Winter.json b/roseau/load_flow/data/networks/LVFeeder20256_Winter.json new file mode 100644 index 00000000..3ecdca43 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder20256_Winter.json @@ -0,0 +1,466 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV06233", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.198773190586607, 48.76230724776908] + } + }, + { + "id": "MVLV06233", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.198773190586607, 48.76230724776908] + } + }, + { + "id": "LVBus094025", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.198670212653164, 48.762307290177716] + } + }, + { + "id": "LVBus094026", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.196631691792718, 48.76430293374081] + } + }, + { + "id": "LVBus094028", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.19584166933687, 48.76430044109762] + } + }, + { + "id": "LVBus094027", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.196176665526038, 48.76383992052203] + } + }, + { + "id": "LVBus094029", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.199246174599321, 48.761582385193975] + } + }, + { + "id": "LVBus094030", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.199412792405016, 48.761244116844864] + } + }, + { + "id": "LVBus094031", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.19778131755017, 48.76160462078426] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV06233", + "geometry": { + "type": "Point", + "coordinates": [-1.198773190586607, 48.76230724776908] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch032577", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV06233", + "bus2": "LVBus094025", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.198773190586607, 48.76230724776908], + [-1.198754359183145, 48.76229631003135], + [-1.198754359183145, 48.76229631003135], + [-1.198670212653164, 48.762307290177716], + [-1.198670212653164, 48.762307290177716] + ] + }, + "length": 0.006305750351183943, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch068262", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094025", + "bus2": "LVBus094026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.198670212653164, 48.762307290177716], + [-1.198670212653164, 48.762307290177716], + [-1.198757084357338, 48.76282679782344], + [-1.19827679971019, 48.76327219047161], + [-1.197149503332568, 48.764115818504806], + [-1.197119005611957, 48.76412683865895], + [-1.197107077729324, 48.76413115227692], + [-1.196637655773829, 48.764300776956], + [-1.196631691792718, 48.76430293374081], + [-1.196631691792718, 48.76430293374081] + ] + }, + "length": 0.28751405369286326, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch044884", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094026", + "bus2": "LVBus094028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.196631691792718, 48.76430293374081], + [-1.196631691792718, 48.76430293374081], + [-1.196373882091346, 48.7643021188501], + [-1.19584166933687, 48.76430044109762], + [-1.19584166933687, 48.76430044109762] + ] + }, + "length": 0.05808029688523051, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch011859", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094026", + "bus2": "LVBus094027", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.196631691792718, 48.76430293374081], + [-1.196631691792718, 48.76430293374081], + [-1.196180365122294, 48.763843688222934], + [-1.196176665526038, 48.76383992052203], + [-1.196176665526038, 48.76383992052203] + ] + }, + "length": 0.061401995852302334, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch044888", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094025", + "bus2": "LVBus094029", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.198670212653164, 48.762307290177716], + [-1.198670212653164, 48.762307290177716], + [-1.198899487593858, 48.76180346410311], + [-1.199242484839553, 48.761586156877975], + [-1.199246174599321, 48.761582385193975], + [-1.199246174599321, 48.761582385193975] + ] + }, + "length": 0.09393517180378773, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch032580", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094029", + "bus2": "LVBus094030", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.199246174599321, 48.761582385193975], + [-1.199246174599321, 48.761582385193975], + [-1.199410353844309, 48.76124907489184], + [-1.199412792405016, 48.761244116844864], + [-1.199412792405016, 48.761244116844864] + ] + }, + "length": 0.039561474934677016, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch078604", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus094029", + "bus2": "LVBus094031", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.199246174599321, 48.761582385193975], + [-1.199246174599321, 48.761582385193975], + [-1.19778131755017, 48.76160462078426], + [-1.19778131755017, 48.76160462078426] + ] + }, + "length": 0.10772524267857121, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus094025_production", + "bus": "LVBus094025", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094025_consumption", + "bus": "LVBus094025", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094026_production", + "bus": "LVBus094026", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094026_consumption", + "bus": "LVBus094026", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094028_production", + "bus": "LVBus094028", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus094028_consumption", + "bus": "LVBus094028", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [6954.69036175945, 2285.8961783509694] + ] + }, + { + "id": "LVBus094027_production", + "bus": "LVBus094027", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094027_consumption", + "bus": "LVBus094027", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [6954.69036175945, 2285.8961783509694], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094029_production", + "bus": "LVBus094029", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094029_consumption", + "bus": "LVBus094029", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094030_production", + "bus": "LVBus094030", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094030_consumption", + "bus": "LVBus094030", + "phases": "abcn", + "powers": [ + [6954.69036175945, 2285.8961783509694], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094031_production", + "bus": "LVBus094031", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus094031_consumption", + "bus": "LVBus094031", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [6954.69036175945, 2285.8961783509694], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder23832_Summer.json b/roseau/load_flow/data/networks/LVFeeder23832_Summer.json new file mode 100644 index 00000000..e32e7fae --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder23832_Summer.json @@ -0,0 +1,173 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV07524", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.40977863333772, 49.411627422261766] + } + }, + { + "id": "MVLV07524", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.40977863333772, 49.411627422261766] + } + }, + { + "id": "LVBus110873", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.406218859752376, 49.41236346910499] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV07524", + "geometry": { + "type": "Point", + "coordinates": [-1.40977863333772, 49.411627422261766] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch057373", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV07524", + "bus2": "LVBus110873", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40977863333772, 49.411627422261766], + [-1.409743508502538, 49.411621312092244], + [-1.409743508502538, 49.411621312092244], + [-1.408879685522408, 49.41175558278019], + [-1.408372592166125, 49.41183440331932], + [-1.407519779024074, 49.41205115669604], + [-1.407087261675502, 49.41223770004208], + [-1.406865142346526, 49.41233349605488], + [-1.406224368393009, 49.412363216869615], + [-1.406218859752376, 49.41236346910499], + [-1.406218859752376, 49.41236346910499] + ] + }, + "length": 0.2726431522482105, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus110873_production", + "bus": "LVBus110873", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-1158.58310626703, 0.0] + ] + }, + { + "id": "LVBus110873_consumption", + "bus": "LVBus110873", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2549.8221542184456, 838.0860131245311] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder23832_Winter.json b/roseau/load_flow/data/networks/LVFeeder23832_Winter.json new file mode 100644 index 00000000..4c153237 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder23832_Winter.json @@ -0,0 +1,173 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV07524", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.40977863333772, 49.411627422261766] + } + }, + { + "id": "MVLV07524", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.40977863333772, 49.411627422261766] + } + }, + { + "id": "LVBus110873", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.406218859752376, 49.41236346910499] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV07524", + "geometry": { + "type": "Point", + "coordinates": [-1.40977863333772, 49.411627422261766] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch057373", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV07524", + "bus2": "LVBus110873", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40977863333772, 49.411627422261766], + [-1.409743508502538, 49.411621312092244], + [-1.409743508502538, 49.411621312092244], + [-1.408879685522408, 49.41175558278019], + [-1.408372592166125, 49.41183440331932], + [-1.407519779024074, 49.41205115669604], + [-1.407087261675502, 49.41223770004208], + [-1.406865142346526, 49.41233349605488], + [-1.406224368393009, 49.412363216869615], + [-1.406218859752376, 49.41236346910499], + [-1.406218859752376, 49.41236346910499] + ] + }, + "length": 0.2726431522482105, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus110873_production", + "bus": "LVBus110873", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus110873_consumption", + "bus": "LVBus110873", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [12749.110771092228, 4190.430065622655], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder24400_Summer.json b/roseau/load_flow/data/networks/LVFeeder24400_Summer.json new file mode 100644 index 00000000..7b111bf8 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder24400_Summer.json @@ -0,0 +1,219 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV17777", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.455003968339352, 48.940400757428336] + } + }, + { + "id": "MVLV17777", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.455003968339352, 48.940400757428336] + } + }, + { + "id": "LVBus113443", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.452971862193451, 48.94089521617511] + } + }, + { + "id": "LVBus113444", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.452033590683014, 48.94042209226392] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV17777", + "geometry": { + "type": "Point", + "coordinates": [-1.455003968339352, 48.940400757428336] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch030132", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV17777", + "bus2": "LVBus113443", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.455003968339352, 48.940400757428336], + [-1.454965497080603, 48.940409934437504], + [-1.454965497080603, 48.940409934437504], + [-1.45495909604138, 48.940411487585706], + [-1.454088936515732, 48.94062331208275], + [-1.453065217015281, 48.94087249100193], + [-1.452971862193451, 48.94089521617511], + [-1.452971862193451, 48.94089521617511] + ] + }, + "length": 0.15570295096319542, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch030133", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus113443", + "bus2": "LVBus113444", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.452971862193451, 48.94089521617511], + [-1.452971862193451, 48.94089521617511], + [-1.452697541010771, 48.94075689397089], + [-1.452033590683014, 48.94042209226392], + [-1.452033590683014, 48.94042209226392] + ] + }, + "length": 0.08656266979024978, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus113443_production", + "bus": "LVBus113443", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus113443_consumption", + "bus": "LVBus113443", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus113444_production", + "bus": "LVBus113444", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-547.370786516854, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus113444_consumption", + "bus": "LVBus113444", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1993.2731310988013, 655.1571954722804], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder24400_Winter.json b/roseau/load_flow/data/networks/LVFeeder24400_Winter.json new file mode 100644 index 00000000..a9a73a7f --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder24400_Winter.json @@ -0,0 +1,219 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV17777", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.455003968339352, 48.940400757428336] + } + }, + { + "id": "MVLV17777", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.455003968339352, 48.940400757428336] + } + }, + { + "id": "LVBus113443", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.452971862193451, 48.94089521617511] + } + }, + { + "id": "LVBus113444", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.452033590683014, 48.94042209226392] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV17777", + "geometry": { + "type": "Point", + "coordinates": [-1.455003968339352, 48.940400757428336] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch030132", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV17777", + "bus2": "LVBus113443", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.455003968339352, 48.940400757428336], + [-1.454965497080603, 48.940409934437504], + [-1.454965497080603, 48.940409934437504], + [-1.45495909604138, 48.940411487585706], + [-1.454088936515732, 48.94062331208275], + [-1.453065217015281, 48.94087249100193], + [-1.452971862193451, 48.94089521617511], + [-1.452971862193451, 48.94089521617511] + ] + }, + "length": 0.15570295096319542, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch030133", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus113443", + "bus2": "LVBus113444", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.452971862193451, 48.94089521617511], + [-1.452971862193451, 48.94089521617511], + [-1.452697541010771, 48.94075689397089], + [-1.452033590683014, 48.94042209226392], + [-1.452033590683014, 48.94042209226392] + ] + }, + "length": 0.08656266979024978, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus113443_production", + "bus": "LVBus113443", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus113443_consumption", + "bus": "LVBus113443", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus113444_production", + "bus": "LVBus113444", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus113444_consumption", + "bus": "LVBus113444", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [9966.365655494006, 3275.785977361402] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder27429_Summer.json b/roseau/load_flow/data/networks/LVFeeder27429_Summer.json new file mode 100644 index 00000000..ca3cffc1 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder27429_Summer.json @@ -0,0 +1,633 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV01157", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763275481768985, 48.60297718339383] + } + }, + { + "id": "MVLV01157", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763275481768985, 48.60297718339383] + } + }, + { + "id": "LVBus127384", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.7634742960757851, 48.60299255811956] + } + }, + { + "id": "LVBus186172", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.76161692546682, 48.60244671901419] + } + }, + { + "id": "LVBus186175", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.761608195980402, 48.602420513668555] + } + }, + { + "id": "LVBus186176", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.762572178265289, 48.60149259897884] + } + }, + { + "id": "LVBus186177", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763339776619962, 48.60077755334537] + } + }, + { + "id": "LVBus186173", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.761561617561471, 48.60247914514799] + } + }, + { + "id": "LVBus186174", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.760257742058163, 48.602203698430706] + } + }, + { + "id": "LVBus187572", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763823658677378, 48.60305776103005] + } + }, + { + "id": "LVBus195737", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763276537372726, 48.604304238644815] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV01157", + "geometry": { + "type": "Point", + "coordinates": [-0.763275481768985, 48.60297718339383] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch119309", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV01157", + "bus2": "LVBus127384", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.763275481768985, 48.60297718339383], + [-0.763309940995956, 48.602959045107], + [-0.763309940995956, 48.602959045107], + [-0.763326191390601, 48.602949704710056], + [-0.763428319973567, 48.60297071910874], + [-0.76346568502553, 48.60298089655524], + [-0.763461159545054, 48.60299032598373], + [-0.7634742960757851, 48.60299255811956] + ] + }, + "length": 0.013551760479693866, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch158853", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus127384", + "bus2": "LVBus186172", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.7634742960757851, 48.60299255811956], + [-0.763474096368467, 48.60299300115818], + [-0.763480355768833, 48.60297965801517], + [-0.763433685309015, 48.60296241021414], + [-0.763330210793668, 48.602941116174414], + [-0.762715395127332, 48.602810277535205], + [-0.762577548674808, 48.60278372872246], + [-0.761924332648339, 48.602646666740235], + [-0.761891385762613, 48.60264439781511], + [-0.761864336788657, 48.602641173966475], + [-0.761569367773829, 48.60258094963647], + [-0.761555302568853, 48.60257526307455], + [-0.761554759760411, 48.602567504609844], + [-0.761582914991027, 48.60250836537728], + [-0.761581721761865, 48.60250039002285], + [-0.761577724811962, 48.602474693636765], + [-0.76159176927091, 48.60244878631047], + [-0.761612394695354, 48.60245370755538], + [-0.76161692546682, 48.60244671901419] + ] + }, + "length": 0.16687032258739654, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch133747", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186172", + "bus2": "LVBus186175", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.76161692546682, 48.60244671901419], + [-0.761620254605229, 48.60243921613341], + [-0.761599488501384, 48.60243215748877], + [-0.761608195980402, 48.602420513668555], + [-0.761608195980402, 48.602420513668555] + ] + }, + "length": 0.0031663050478217317, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch053605", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186175", + "bus2": "LVBus186176", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.761608195980402, 48.602420513668555], + [-0.761608195980402, 48.602420513668555], + [-0.761611033991671, 48.60241600435182], + [-0.761784550589528, 48.60214011579136], + [-0.762080812508729, 48.60185041883437], + [-0.762572178265289, 48.60149259897884], + [-0.762572178265289, 48.60149259897884] + ] + }, + "length": 0.12653087931322696, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch011205", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186176", + "bus2": "LVBus186177", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.762572178265289, 48.60149259897884], + [-0.762572178265289, 48.60149259897884], + [-0.763056545735551, 48.601105038736335], + [-0.763064743889263, 48.60109555819069], + [-0.763334331862579, 48.60078384019807], + [-0.763339776619962, 48.60077755334537], + [-0.763339776619962, 48.60077755334537] + ] + }, + "length": 0.09796160126133627, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch142467", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186172", + "bus2": "LVBus186173", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.76161692546682, 48.60244671901419], + [-0.761618127099877, 48.60244723335378], + [-0.761581642659447, 48.60243884952903], + [-0.761561617561471, 48.60247914514799], + [-0.761561617561471, 48.60247914514799] + ] + }, + "length": 0.007565816669528637, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch084743", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186173", + "bus2": "LVBus186174", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.761561617561471, 48.60247914514799], + [-0.761561617561471, 48.60247914514799], + [-0.761520647442155, 48.602475619578264], + [-0.761383492213318, 48.602446982220535], + [-0.761376976694745, 48.60243641122154], + [-0.761083717988509, 48.60238256423136], + [-0.760685935831135, 48.60230410109437], + [-0.760252195682717, 48.602218552095316], + [-0.76025296884848, 48.602216498758025], + [-0.760257742058163, 48.602203698430706], + [-0.760257742058163, 48.602203698430706] + ] + }, + "length": 0.10304715198115963, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch133746", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus127384", + "bus2": "LVBus187572", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.7634742960757851, 48.60299255811956], + [-0.763487632313834, 48.602994347216764], + [-0.763495991786513, 48.602983926839975], + [-0.76351501594019, 48.60298791808133], + [-0.763583381689584, 48.603005263821345], + [-0.763617691699799, 48.603019947269956], + [-0.763774698416599, 48.60304158535254], + [-0.763825753887716, 48.60303883678963], + [-0.76383854604323, 48.60304022026672], + [-0.763836680275793, 48.60304784384739], + [-0.763833687384132, 48.603060003993065], + [-0.763823658677378, 48.60305776103005] + ] + }, + "length": 0.02998363504572132, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch119296", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus187572", + "bus2": "LVBus195737", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.763823658677378, 48.60305776103005], + [-0.763813629970624, 48.60305551806704], + [-0.763819965204177, 48.603043450372134], + [-0.763768514113366, 48.603051175156025], + [-0.763653940547639, 48.60303666707492], + [-0.763622730363099, 48.60309116380199], + [-0.763575258811119, 48.60335539023291], + [-0.763493593646684, 48.60370764793883], + [-0.763399116709257, 48.60400898074912], + [-0.763320752821342, 48.60409330090699], + [-0.763347671223125, 48.60415905097723], + [-0.763239063000825, 48.60428403329993], + [-0.763276537372726, 48.604304238644815], + [-0.763276537372726, 48.604304238644815] + ] + }, + "length": 0.16203866991098098, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus127384_production", + "bus": "LVBus127384", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus127384_consumption", + "bus": "LVBus127384", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186172_production", + "bus": "LVBus186172", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186172_consumption", + "bus": "LVBus186172", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186175_production", + "bus": "LVBus186175", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus186175_consumption", + "bus": "LVBus186175", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186176_production", + "bus": "LVBus186176", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186176_consumption", + "bus": "LVBus186176", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186177_production", + "bus": "LVBus186177", + "phases": "abcn", + "powers": [ + [-3716.417910447761, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186177_consumption", + "bus": "LVBus186177", + "phases": "abcn", + "powers": [ + [1621.4517980406863, 532.9454333296618], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186173_production", + "bus": "LVBus186173", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186173_consumption", + "bus": "LVBus186173", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186174_production", + "bus": "LVBus186174", + "phases": "abcn", + "powers": [ + [-3716.417910447761, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186174_consumption", + "bus": "LVBus186174", + "phases": "abcn", + "powers": [ + [1621.4517980406863, 532.9454333296618], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus187572_production", + "bus": "LVBus187572", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus187572_consumption", + "bus": "LVBus187572", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195737_production", + "bus": "LVBus195737", + "phases": "abcn", + "powers": [ + [-3716.417910447761, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195737_consumption", + "bus": "LVBus195737", + "phases": "abcn", + "powers": [ + [1621.4517980406863, 532.9454333296618], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder27429_Winter.json b/roseau/load_flow/data/networks/LVFeeder27429_Winter.json new file mode 100644 index 00000000..b78935b2 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder27429_Winter.json @@ -0,0 +1,633 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV01157", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763275481768985, 48.60297718339383] + } + }, + { + "id": "MVLV01157", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763275481768985, 48.60297718339383] + } + }, + { + "id": "LVBus127384", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.7634742960757851, 48.60299255811956] + } + }, + { + "id": "LVBus186172", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.76161692546682, 48.60244671901419] + } + }, + { + "id": "LVBus186175", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.761608195980402, 48.602420513668555] + } + }, + { + "id": "LVBus186176", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.762572178265289, 48.60149259897884] + } + }, + { + "id": "LVBus186177", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763339776619962, 48.60077755334537] + } + }, + { + "id": "LVBus186173", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.761561617561471, 48.60247914514799] + } + }, + { + "id": "LVBus186174", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.760257742058163, 48.602203698430706] + } + }, + { + "id": "LVBus187572", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763823658677378, 48.60305776103005] + } + }, + { + "id": "LVBus195737", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.763276537372726, 48.604304238644815] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV01157", + "geometry": { + "type": "Point", + "coordinates": [-0.763275481768985, 48.60297718339383] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch119309", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV01157", + "bus2": "LVBus127384", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.763275481768985, 48.60297718339383], + [-0.763309940995956, 48.602959045107], + [-0.763309940995956, 48.602959045107], + [-0.763326191390601, 48.602949704710056], + [-0.763428319973567, 48.60297071910874], + [-0.76346568502553, 48.60298089655524], + [-0.763461159545054, 48.60299032598373], + [-0.7634742960757851, 48.60299255811956] + ] + }, + "length": 0.013551760479693866, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch158853", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus127384", + "bus2": "LVBus186172", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.7634742960757851, 48.60299255811956], + [-0.763474096368467, 48.60299300115818], + [-0.763480355768833, 48.60297965801517], + [-0.763433685309015, 48.60296241021414], + [-0.763330210793668, 48.602941116174414], + [-0.762715395127332, 48.602810277535205], + [-0.762577548674808, 48.60278372872246], + [-0.761924332648339, 48.602646666740235], + [-0.761891385762613, 48.60264439781511], + [-0.761864336788657, 48.602641173966475], + [-0.761569367773829, 48.60258094963647], + [-0.761555302568853, 48.60257526307455], + [-0.761554759760411, 48.602567504609844], + [-0.761582914991027, 48.60250836537728], + [-0.761581721761865, 48.60250039002285], + [-0.761577724811962, 48.602474693636765], + [-0.76159176927091, 48.60244878631047], + [-0.761612394695354, 48.60245370755538], + [-0.76161692546682, 48.60244671901419] + ] + }, + "length": 0.16687032258739654, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch133747", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186172", + "bus2": "LVBus186175", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.76161692546682, 48.60244671901419], + [-0.761620254605229, 48.60243921613341], + [-0.761599488501384, 48.60243215748877], + [-0.761608195980402, 48.602420513668555], + [-0.761608195980402, 48.602420513668555] + ] + }, + "length": 0.0031663050478217317, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch053605", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186175", + "bus2": "LVBus186176", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.761608195980402, 48.602420513668555], + [-0.761608195980402, 48.602420513668555], + [-0.761611033991671, 48.60241600435182], + [-0.761784550589528, 48.60214011579136], + [-0.762080812508729, 48.60185041883437], + [-0.762572178265289, 48.60149259897884], + [-0.762572178265289, 48.60149259897884] + ] + }, + "length": 0.12653087931322696, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch011205", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186176", + "bus2": "LVBus186177", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.762572178265289, 48.60149259897884], + [-0.762572178265289, 48.60149259897884], + [-0.763056545735551, 48.601105038736335], + [-0.763064743889263, 48.60109555819069], + [-0.763334331862579, 48.60078384019807], + [-0.763339776619962, 48.60077755334537], + [-0.763339776619962, 48.60077755334537] + ] + }, + "length": 0.09796160126133627, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch142467", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186172", + "bus2": "LVBus186173", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.76161692546682, 48.60244671901419], + [-0.761618127099877, 48.60244723335378], + [-0.761581642659447, 48.60243884952903], + [-0.761561617561471, 48.60247914514799], + [-0.761561617561471, 48.60247914514799] + ] + }, + "length": 0.007565816669528637, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch084743", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus186173", + "bus2": "LVBus186174", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.761561617561471, 48.60247914514799], + [-0.761561617561471, 48.60247914514799], + [-0.761520647442155, 48.602475619578264], + [-0.761383492213318, 48.602446982220535], + [-0.761376976694745, 48.60243641122154], + [-0.761083717988509, 48.60238256423136], + [-0.760685935831135, 48.60230410109437], + [-0.760252195682717, 48.602218552095316], + [-0.76025296884848, 48.602216498758025], + [-0.760257742058163, 48.602203698430706], + [-0.760257742058163, 48.602203698430706] + ] + }, + "length": 0.10304715198115963, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch133746", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus127384", + "bus2": "LVBus187572", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.7634742960757851, 48.60299255811956], + [-0.763487632313834, 48.602994347216764], + [-0.763495991786513, 48.602983926839975], + [-0.76351501594019, 48.60298791808133], + [-0.763583381689584, 48.603005263821345], + [-0.763617691699799, 48.603019947269956], + [-0.763774698416599, 48.60304158535254], + [-0.763825753887716, 48.60303883678963], + [-0.76383854604323, 48.60304022026672], + [-0.763836680275793, 48.60304784384739], + [-0.763833687384132, 48.603060003993065], + [-0.763823658677378, 48.60305776103005] + ] + }, + "length": 0.02998363504572132, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch119296", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus187572", + "bus2": "LVBus195737", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.763823658677378, 48.60305776103005], + [-0.763813629970624, 48.60305551806704], + [-0.763819965204177, 48.603043450372134], + [-0.763768514113366, 48.603051175156025], + [-0.763653940547639, 48.60303666707492], + [-0.763622730363099, 48.60309116380199], + [-0.763575258811119, 48.60335539023291], + [-0.763493593646684, 48.60370764793883], + [-0.763399116709257, 48.60400898074912], + [-0.763320752821342, 48.60409330090699], + [-0.763347671223125, 48.60415905097723], + [-0.763239063000825, 48.60428403329993], + [-0.763276537372726, 48.604304238644815], + [-0.763276537372726, 48.604304238644815] + ] + }, + "length": 0.16203866991098098, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus127384_production", + "bus": "LVBus127384", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus127384_consumption", + "bus": "LVBus127384", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186172_production", + "bus": "LVBus186172", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus186172_consumption", + "bus": "LVBus186172", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186175_production", + "bus": "LVBus186175", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus186175_consumption", + "bus": "LVBus186175", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186176_production", + "bus": "LVBus186176", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus186176_consumption", + "bus": "LVBus186176", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186177_production", + "bus": "LVBus186177", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186177_consumption", + "bus": "LVBus186177", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [8107.2589902034315, 2664.727166648309], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186173_production", + "bus": "LVBus186173", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus186173_consumption", + "bus": "LVBus186173", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186174_production", + "bus": "LVBus186174", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus186174_consumption", + "bus": "LVBus186174", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [8107.2589902034315, 2664.727166648309], + [0.0, 0.0] + ] + }, + { + "id": "LVBus187572_production", + "bus": "LVBus187572", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus187572_consumption", + "bus": "LVBus187572", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195737_production", + "bus": "LVBus195737", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus195737_consumption", + "bus": "LVBus195737", + "phases": "abcn", + "powers": [ + [8107.2589902034315, 2664.727166648309], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder27681_Summer.json b/roseau/load_flow/data/networks/LVFeeder27681_Summer.json new file mode 100644 index 00000000..d93e8e52 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder27681_Summer.json @@ -0,0 +1,170 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV11757", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.872844643374193, 49.325171742226196] + } + }, + { + "id": "MVLV11757", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.872844643374193, 49.325171742226196] + } + }, + { + "id": "LVBus128601", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.872690668569252, 49.325398961209295] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV11757", + "geometry": { + "type": "Point", + "coordinates": [-0.872844643374193, 49.325171742226196] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch101340", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV11757", + "bus2": "LVBus128601", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872844643374193, 49.325171742226196], + [-0.872930651440197, 49.32519231866675], + [-0.872930651440197, 49.32519231866675], + [-0.87290428119125, 49.32518725063606], + [-0.872779814214772, 49.325350015195575], + [-0.872699108874985, 49.325397108400445], + [-0.872690668569252, 49.325398961209295], + [-0.872690668569252, 49.325398961209295] + ] + }, + "length": 0.03074722558197331, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus128601_production", + "bus": "LVBus128601", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus128601_consumption", + "bus": "LVBus128601", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1817.3491965176008, 597.3337944549136], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder27681_Winter.json b/roseau/load_flow/data/networks/LVFeeder27681_Winter.json new file mode 100644 index 00000000..f4c9388c --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder27681_Winter.json @@ -0,0 +1,170 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV11757", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.872844643374193, 49.325171742226196] + } + }, + { + "id": "MVLV11757", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.872844643374193, 49.325171742226196] + } + }, + { + "id": "LVBus128601", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.872690668569252, 49.325398961209295] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV11757", + "geometry": { + "type": "Point", + "coordinates": [-0.872844643374193, 49.325171742226196] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch101340", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV11757", + "bus2": "LVBus128601", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872844643374193, 49.325171742226196], + [-0.872930651440197, 49.32519231866675], + [-0.872930651440197, 49.32519231866675], + [-0.87290428119125, 49.32518725063606], + [-0.872779814214772, 49.325350015195575], + [-0.872699108874985, 49.325397108400445], + [-0.872690668569252, 49.325398961209295], + [-0.872690668569252, 49.325398961209295] + ] + }, + "length": 0.03074722558197331, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus128601_production", + "bus": "LVBus128601", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus128601_consumption", + "bus": "LVBus128601", + "phases": "abcn", + "powers": [ + [9086.745982588003, 2986.6689722745677], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder30216_Summer.json b/roseau/load_flow/data/networks/LVFeeder30216_Summer.json new file mode 100644 index 00000000..9cfa08a6 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder30216_Summer.json @@ -0,0 +1,500 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV15088", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.22546628182438, 49.01938176375552] + } + }, + { + "id": "MVLV15088", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.22546628182438, 49.01938176375552] + } + }, + { + "id": "LVBus140700", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.225935460180821, 49.018863637691915] + } + }, + { + "id": "LVBus140705", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.228920824707651, 49.020350305877685] + } + }, + { + "id": "LVBus140701", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.224534711913636, 49.01646259384531] + } + }, + { + "id": "LVBus140706", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.226435067526595, 49.01831548317052] + } + }, + { + "id": "LVBus140702", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.222909448895307, 49.02051036142216] + } + }, + { + "id": "LVBus140703", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.221086648382608, 49.02059680576484] + } + }, + { + "id": "LVBus140704", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.220623536255886, 49.02039183220841] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV15088", + "geometry": { + "type": "Point", + "coordinates": [-1.22546628182438, 49.01938176375552] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch025818", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV15088", + "bus2": "LVBus140700", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.22546628182438, 49.01938176375552], + [-1.225478750130724, 49.01935650150671], + [-1.225478750130724, 49.01935650150671], + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915] + ] + }, + "length": 0.0641889524657676, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch052665", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.228909642306604, 49.02034404606114], + [-1.228920824707651, 49.020350305877685], + [-1.228920824707651, 49.020350305877685] + ] + }, + "length": 0.27389111538851374, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch023719", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140701", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.224547150720955, 49.01648174305013], + [-1.224534711913636, 49.01646259384531], + [-1.224534711913636, 49.01646259384531] + ] + }, + "length": 0.2860045677215042, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch006444", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140706", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.226403920467569, 49.01835149467934], + [-1.226435067526595, 49.01831548317052], + [-1.226435067526595, 49.01831548317052] + ] + }, + "length": 0.07107583387842016, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch075760", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140702", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.225971170647453, 49.01949684079831], + [-1.223130838994656, 49.020437079906266], + [-1.222939924435882, 49.020500277804885], + [-1.222909448895307, 49.02051036142216], + [-1.222909448895307, 49.02051036142216] + ] + }, + "length": 0.32117477810998835, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch006442", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140702", + "bus2": "LVBus140703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.222909448895307, 49.02051036142216], + [-1.222909448895307, 49.02051036142216], + [-1.221301625275321, 49.020586848514355], + [-1.221093482893436, 49.020596746100225], + [-1.221086648382608, 49.02059680576484], + [-1.221086648382608, 49.02059680576484] + ] + }, + "length": 0.13366970645423365, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch122978", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140703", + "bus2": "LVBus140704", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.221086648382608, 49.02059680576484], + [-1.221086648382608, 49.02059680576484], + [-1.221051527827593, 49.02055792136342], + [-1.220941305936017, 49.020553594534256], + [-1.220939022900478, 49.02055321276997], + [-1.220873987433548, 49.020542286568215], + [-1.220774544657315, 49.02048435874796], + [-1.220733365201761, 49.020390458944185], + [-1.220623536255886, 49.02039183220841], + [-1.220623536255886, 49.02039183220841] + ] + }, + "length": 0.04680679364902962, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus140700_production", + "bus": "LVBus140700", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus140700_consumption", + "bus": "LVBus140700", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140705_production", + "bus": "LVBus140705", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-500.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140705_consumption", + "bus": "LVBus140705", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1920.4281149590913, 631.21419652566], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140701_production", + "bus": "LVBus140701", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-500.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140701_consumption", + "bus": "LVBus140701", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1920.4281149590913, 631.21419652566], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140706_production", + "bus": "LVBus140706", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-500.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140706_consumption", + "bus": "LVBus140706", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1920.4281149590913, 631.21419652566], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140702_production", + "bus": "LVBus140702", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140702_consumption", + "bus": "LVBus140702", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140703_production", + "bus": "LVBus140703", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140703_consumption", + "bus": "LVBus140703", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140704_production", + "bus": "LVBus140704", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-500.0, 0.0] + ] + }, + { + "id": "LVBus140704_consumption", + "bus": "LVBus140704", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1920.4281149590913, 631.21419652566] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder30216_Winter.json b/roseau/load_flow/data/networks/LVFeeder30216_Winter.json new file mode 100644 index 00000000..63fcf21c --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder30216_Winter.json @@ -0,0 +1,500 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV15088", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.22546628182438, 49.01938176375552] + } + }, + { + "id": "MVLV15088", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.22546628182438, 49.01938176375552] + } + }, + { + "id": "LVBus140700", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.225935460180821, 49.018863637691915] + } + }, + { + "id": "LVBus140705", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.228920824707651, 49.020350305877685] + } + }, + { + "id": "LVBus140701", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.224534711913636, 49.01646259384531] + } + }, + { + "id": "LVBus140706", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.226435067526595, 49.01831548317052] + } + }, + { + "id": "LVBus140702", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.222909448895307, 49.02051036142216] + } + }, + { + "id": "LVBus140703", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.221086648382608, 49.02059680576484] + } + }, + { + "id": "LVBus140704", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.220623536255886, 49.02039183220841] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV15088", + "geometry": { + "type": "Point", + "coordinates": [-1.22546628182438, 49.01938176375552] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch025818", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV15088", + "bus2": "LVBus140700", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.22546628182438, 49.01938176375552], + [-1.225478750130724, 49.01935650150671], + [-1.225478750130724, 49.01935650150671], + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915] + ] + }, + "length": 0.0641889524657676, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch052665", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.228909642306604, 49.02034404606114], + [-1.228920824707651, 49.020350305877685], + [-1.228920824707651, 49.020350305877685] + ] + }, + "length": 0.27389111538851374, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch023719", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140701", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.224547150720955, 49.01648174305013], + [-1.224534711913636, 49.01646259384531], + [-1.224534711913636, 49.01646259384531] + ] + }, + "length": 0.2860045677215042, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch006444", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140706", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.226403920467569, 49.01835149467934], + [-1.226435067526595, 49.01831548317052], + [-1.226435067526595, 49.01831548317052] + ] + }, + "length": 0.07107583387842016, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch075760", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140700", + "bus2": "LVBus140702", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.225935460180821, 49.018863637691915], + [-1.225935460180821, 49.018863637691915], + [-1.225971170647453, 49.01949684079831], + [-1.223130838994656, 49.020437079906266], + [-1.222939924435882, 49.020500277804885], + [-1.222909448895307, 49.02051036142216], + [-1.222909448895307, 49.02051036142216] + ] + }, + "length": 0.32117477810998835, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch006442", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140702", + "bus2": "LVBus140703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.222909448895307, 49.02051036142216], + [-1.222909448895307, 49.02051036142216], + [-1.221301625275321, 49.020586848514355], + [-1.221093482893436, 49.020596746100225], + [-1.221086648382608, 49.02059680576484], + [-1.221086648382608, 49.02059680576484] + ] + }, + "length": 0.13366970645423365, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch122978", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus140703", + "bus2": "LVBus140704", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.221086648382608, 49.02059680576484], + [-1.221086648382608, 49.02059680576484], + [-1.221051527827593, 49.02055792136342], + [-1.220941305936017, 49.020553594534256], + [-1.220939022900478, 49.02055321276997], + [-1.220873987433548, 49.020542286568215], + [-1.220774544657315, 49.02048435874796], + [-1.220733365201761, 49.020390458944185], + [-1.220623536255886, 49.02039183220841], + [-1.220623536255886, 49.02039183220841] + ] + }, + "length": 0.04680679364902962, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus140700_production", + "bus": "LVBus140700", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus140700_consumption", + "bus": "LVBus140700", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140705_production", + "bus": "LVBus140705", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140705_consumption", + "bus": "LVBus140705", + "phases": "abcn", + "powers": [ + [9602.140574795456, 3156.0709826283], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140701_production", + "bus": "LVBus140701", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140701_consumption", + "bus": "LVBus140701", + "phases": "abcn", + "powers": [ + [9602.140574795456, 3156.0709826283], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140706_production", + "bus": "LVBus140706", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140706_consumption", + "bus": "LVBus140706", + "phases": "abcn", + "powers": [ + [9602.140574795456, 3156.0709826283], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140702_production", + "bus": "LVBus140702", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140702_consumption", + "bus": "LVBus140702", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140703_production", + "bus": "LVBus140703", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140703_consumption", + "bus": "LVBus140703", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140704_production", + "bus": "LVBus140704", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus140704_consumption", + "bus": "LVBus140704", + "phases": "abcn", + "powers": [ + [9602.140574795456, 3156.0709826283], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder31441_Summer.json b/roseau/load_flow/data/networks/LVFeeder31441_Summer.json new file mode 100644 index 00000000..8cf1af11 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder31441_Summer.json @@ -0,0 +1,232 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV08797", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3209120861294505, 49.410818512433636] + } + }, + { + "id": "MVLV08797", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3209120861294505, 49.410818512433636] + } + }, + { + "id": "LVBus146616", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.319946143514134, 49.411317210522704] + } + }, + { + "id": "LVBus146617", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320555614851936, 49.4120901502568] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV08797", + "geometry": { + "type": "Point", + "coordinates": [-1.3209120861294505, 49.410818512433636] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch095203", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV08797", + "bus2": "LVBus146616", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3209120861294505, 49.410818512433636], + [-1.320919045669726, 49.410808368581115], + [-1.320919045669726, 49.410808368581115], + [-1.320859505351289, 49.410793478690046], + [-1.32070866377652, 49.41088912187997], + [-1.320702616694573, 49.410905582284904], + [-1.320299531035, 49.41113059595499], + [-1.320141051505351, 49.411207495995455], + [-1.319929505124683, 49.41128336423494], + [-1.319946143514134, 49.411317210522704], + [-1.319946143514134, 49.411317210522704] + ] + }, + "length": 0.09607140707710016, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch159673", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus146616", + "bus2": "LVBus146617", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.319946143514134, 49.411317210522704], + [-1.319946143514134, 49.411317210522704], + [-1.319939839634443, 49.411315396690995], + [-1.319917945250196, 49.41130910158912], + [-1.319864222394435, 49.41132880889963], + [-1.319984608433865, 49.411473061920255], + [-1.320261117945677, 49.41180441067311], + [-1.320280861473836, 49.4118280728532], + [-1.320452041048922, 49.412033199802046], + [-1.320458626652415, 49.4120410840533], + [-1.320515657192603, 49.412109430561244], + [-1.320550085531638, 49.41209281821683], + [-1.320552590340302, 49.41209160903667], + [-1.320555614851936, 49.4120901502568], + [-1.320555614851936, 49.4120901502568] + ] + }, + "length": 0.10916949233215091, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus146616_production", + "bus": "LVBus146616", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus146616_consumption", + "bus": "LVBus146616", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus146617_production", + "bus": "LVBus146617", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-360.2305475504323, 0.0] + ] + }, + { + "id": "LVBus146617_consumption", + "bus": "LVBus146617", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [5423.8352258997575, 1782.728427862459] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder31441_Winter.json b/roseau/load_flow/data/networks/LVFeeder31441_Winter.json new file mode 100644 index 00000000..012db81a --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder31441_Winter.json @@ -0,0 +1,232 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV08797", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3209120861294505, 49.410818512433636] + } + }, + { + "id": "MVLV08797", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.3209120861294505, 49.410818512433636] + } + }, + { + "id": "LVBus146616", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.319946143514134, 49.411317210522704] + } + }, + { + "id": "LVBus146617", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.320555614851936, 49.4120901502568] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV08797", + "geometry": { + "type": "Point", + "coordinates": [-1.3209120861294505, 49.410818512433636] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch095203", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV08797", + "bus2": "LVBus146616", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3209120861294505, 49.410818512433636], + [-1.320919045669726, 49.410808368581115], + [-1.320919045669726, 49.410808368581115], + [-1.320859505351289, 49.410793478690046], + [-1.32070866377652, 49.41088912187997], + [-1.320702616694573, 49.410905582284904], + [-1.320299531035, 49.41113059595499], + [-1.320141051505351, 49.411207495995455], + [-1.319929505124683, 49.41128336423494], + [-1.319946143514134, 49.411317210522704], + [-1.319946143514134, 49.411317210522704] + ] + }, + "length": 0.09607140707710016, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch159673", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus146616", + "bus2": "LVBus146617", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.319946143514134, 49.411317210522704], + [-1.319946143514134, 49.411317210522704], + [-1.319939839634443, 49.411315396690995], + [-1.319917945250196, 49.41130910158912], + [-1.319864222394435, 49.41132880889963], + [-1.319984608433865, 49.411473061920255], + [-1.320261117945677, 49.41180441067311], + [-1.320280861473836, 49.4118280728532], + [-1.320452041048922, 49.412033199802046], + [-1.320458626652415, 49.4120410840533], + [-1.320515657192603, 49.412109430561244], + [-1.320550085531638, 49.41209281821683], + [-1.320552590340302, 49.41209160903667], + [-1.320555614851936, 49.4120901502568], + [-1.320555614851936, 49.4120901502568] + ] + }, + "length": 0.10916949233215091, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus146616_production", + "bus": "LVBus146616", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus146616_consumption", + "bus": "LVBus146616", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus146617_production", + "bus": "LVBus146617", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus146617_consumption", + "bus": "LVBus146617", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [27119.17612949879, 8913.642139312295], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder36284_Summer.json b/roseau/load_flow/data/networks/LVFeeder36284_Summer.json new file mode 100644 index 00000000..58e8b367 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder36284_Summer.json @@ -0,0 +1,272 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV03862", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.55883404863677, 49.11337818748383] + } + }, + { + "id": "MVLV03862", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.55883404863677, 49.11337818748383] + } + }, + { + "id": "LVBus169496", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.558405805582989, 49.113418096217345] + } + }, + { + "id": "LVBus169498", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562472292762036, 49.11401826802014] + } + }, + { + "id": "LVBus169497", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.557269493950637, 49.11274982554477] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV03862", + "geometry": { + "type": "Point", + "coordinates": [-1.55883404863677, 49.11337818748383] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch070099", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV03862", + "bus2": "LVBus169496", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.55883404863677, 49.11337818748383], + [-1.55879367996807, 49.113377531873525], + [-1.55879367996807, 49.113377531873525], + [-1.558405805582989, 49.113418096217345], + [-1.558405805582989, 49.113418096217345] + ] + }, + "length": 0.02867407323220623, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch070100", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169496", + "bus2": "LVBus169498", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558405805582989, 49.113418096217345], + [-1.558405805582989, 49.113418096217345], + [-1.558411053396724, 49.11342098412424], + [-1.559237508512948, 49.1138760900939], + [-1.560233610181569, 49.114157404119545], + [-1.562433962317121, 49.11402065095589], + [-1.562472292762036, 49.11401826802014], + [-1.562472292762036, 49.11401826802014] + ] + }, + "length": 0.3225822604299102, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch024186", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169496", + "bus2": "LVBus169497", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558405805582989, 49.113418096217345], + [-1.558405805582989, 49.113418096217345], + [-1.558400713685548, 49.11341509527622], + [-1.557896053286736, 49.11311831628713], + [-1.557834885622943, 49.11308234283196], + [-1.557274585716886, 49.112752826535804], + [-1.557274169603638, 49.11275257918506], + [-1.557269493950637, 49.11274982554477], + [-1.557269493950637, 49.11274982554477] + ] + }, + "length": 0.11137940014481557, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus169496_production", + "bus": "LVBus169496", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus169496_consumption", + "bus": "LVBus169496", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169498_production", + "bus": "LVBus169498", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus169498_consumption", + "bus": "LVBus169498", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1563.877479078187, 514.0216698201901] + ] + }, + { + "id": "LVBus169497_production", + "bus": "LVBus169497", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169497_consumption", + "bus": "LVBus169497", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1563.877479078187, 514.0216698201901], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder36284_Winter.json b/roseau/load_flow/data/networks/LVFeeder36284_Winter.json new file mode 100644 index 00000000..3cccee38 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder36284_Winter.json @@ -0,0 +1,272 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV03862", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.55883404863677, 49.11337818748383] + } + }, + { + "id": "MVLV03862", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.55883404863677, 49.11337818748383] + } + }, + { + "id": "LVBus169496", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.558405805582989, 49.113418096217345] + } + }, + { + "id": "LVBus169498", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.562472292762036, 49.11401826802014] + } + }, + { + "id": "LVBus169497", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.557269493950637, 49.11274982554477] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV03862", + "geometry": { + "type": "Point", + "coordinates": [-1.55883404863677, 49.11337818748383] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch070099", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV03862", + "bus2": "LVBus169496", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.55883404863677, 49.11337818748383], + [-1.55879367996807, 49.113377531873525], + [-1.55879367996807, 49.113377531873525], + [-1.558405805582989, 49.113418096217345], + [-1.558405805582989, 49.113418096217345] + ] + }, + "length": 0.02867407323220623, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch070100", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169496", + "bus2": "LVBus169498", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558405805582989, 49.113418096217345], + [-1.558405805582989, 49.113418096217345], + [-1.558411053396724, 49.11342098412424], + [-1.559237508512948, 49.1138760900939], + [-1.560233610181569, 49.114157404119545], + [-1.562433962317121, 49.11402065095589], + [-1.562472292762036, 49.11401826802014], + [-1.562472292762036, 49.11401826802014] + ] + }, + "length": 0.3225822604299102, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch024186", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169496", + "bus2": "LVBus169497", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558405805582989, 49.113418096217345], + [-1.558405805582989, 49.113418096217345], + [-1.558400713685548, 49.11341509527622], + [-1.557896053286736, 49.11311831628713], + [-1.557834885622943, 49.11308234283196], + [-1.557274585716886, 49.112752826535804], + [-1.557274169603638, 49.11275257918506], + [-1.557269493950637, 49.11274982554477], + [-1.557269493950637, 49.11274982554477] + ] + }, + "length": 0.11137940014481557, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus169496_production", + "bus": "LVBus169496", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169496_consumption", + "bus": "LVBus169496", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169498_production", + "bus": "LVBus169498", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169498_consumption", + "bus": "LVBus169498", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [7819.387395390935, 2570.108349100951], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169497_production", + "bus": "LVBus169497", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169497_consumption", + "bus": "LVBus169497", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [7819.387395390935, 2570.108349100951], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder36360_Summer.json b/roseau/load_flow/data/networks/LVFeeder36360_Summer.json new file mode 100644 index 00000000..c0aae9c8 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder36360_Summer.json @@ -0,0 +1,509 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV14716", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5931237327892096, 49.0456724037415] + } + }, + { + "id": "MVLV14716", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5931237327892096, 49.0456724037415] + } + }, + { + "id": "LVBus169862", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.593759159010116, 49.0462719064779] + } + }, + { + "id": "LVBus169863", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.593861680273659, 49.046653053701206] + } + }, + { + "id": "LVBus169864", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594364639974005, 49.04739706937517] + } + }, + { + "id": "LVBus169866", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594706660314081, 49.047929008246655] + } + }, + { + "id": "LVBus169865", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594721011508903, 49.04724435659555] + } + }, + { + "id": "LVBus169867", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.593922235812207, 49.04782025881052] + } + }, + { + "id": "LVBus169868", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594849255375854, 49.046306680920615] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV14716", + "geometry": { + "type": "Point", + "coordinates": [-1.5931237327892096, 49.0456724037415] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch124792", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV14716", + "bus2": "LVBus169862", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5931237327892096, 49.0456724037415], + [-1.593124791365058, 49.045690894063746], + [-1.593124791365058, 49.045690894063746], + [-1.59322930794992, 49.0457081851855], + [-1.593312448490486, 49.04582098250781], + [-1.593586673694338, 49.046226792512805], + [-1.593740502268292, 49.046209513234864], + [-1.593759159010116, 49.0462719064779], + [-1.593759159010116, 49.0462719064779] + ] + }, + "length": 0.08968070135743335, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch028144", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169862", + "bus2": "LVBus169863", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.593759159010116, 49.0462719064779], + [-1.593759159010116, 49.0462719064779], + [-1.593740055437059, 49.04645118253442], + [-1.593737972073063, 49.04647073891695], + [-1.593861680273659, 49.046653053701206], + [-1.593861680273659, 49.046653053701206] + ] + }, + "length": 0.04436724010618379, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch028145", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169863", + "bus2": "LVBus169864", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.593861680273659, 49.046653053701206], + [-1.593861680273659, 49.046653053701206], + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517] + ] + }, + "length": 0.09054384067800328, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch041668", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169864", + "bus2": "LVBus169866", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517], + [-1.594367469980203, 49.04740115992531], + [-1.594562105253604, 49.047713695035455], + [-1.594584222666464, 49.04774656255592], + [-1.594658921232359, 49.04785788231147], + [-1.594703324991698, 49.047924034619044], + [-1.594706660314081, 49.047929008246655], + [-1.594706660314081, 49.047929008246655] + ] + }, + "length": 0.06422966085250291, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch061323", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169864", + "bus2": "LVBus169865", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517], + [-1.594370365963903, 49.04739461367218], + [-1.594708194321439, 49.04724985279487], + [-1.594721011508903, 49.04724435659555], + [-1.594721011508903, 49.04724435659555] + ] + }, + "length": 0.031098546879261002, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch062605", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169864", + "bus2": "LVBus169867", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517], + [-1.593738297192804, 49.047579312052896], + [-1.593910361573165, 49.04780470655868], + [-1.593919164840746, 49.047816239160056], + [-1.593922235812207, 49.04782025881052], + [-1.593922235812207, 49.04782025881052] + ] + }, + "length": 0.08005243959261948, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch041667", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169863", + "bus2": "LVBus169868", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.593861680273659, 49.046653053701206], + [-1.593861680273659, 49.046653053701206], + [-1.593867111959461, 49.046650328790356], + [-1.594086957881231, 49.046539969692574], + [-1.59410263397379, 49.0465351712313], + [-1.594437236351119, 49.04643276765613], + [-1.594547838842712, 49.0463989244874], + [-1.594843062541497, 49.04630857619961], + [-1.594846206060687, 49.04630761801283], + [-1.594849255375854, 49.046306680920615], + [-1.594849255375854, 49.046306680920615] + ] + }, + "length": 0.08219148406259193, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus169862_production", + "bus": "LVBus169862", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus169862_consumption", + "bus": "LVBus169862", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169863_production", + "bus": "LVBus169863", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169863_consumption", + "bus": "LVBus169863", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169864_production", + "bus": "LVBus169864", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169864_consumption", + "bus": "LVBus169864", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169866_production", + "bus": "LVBus169866", + "phases": "abcn", + "powers": [ + [-105.5187637969095, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169866_consumption", + "bus": "LVBus169866", + "phases": "abcn", + "powers": [ + [3212.991140317627, 1056.0591179029145], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169865_production", + "bus": "LVBus169865", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-105.5187637969095, 0.0] + ] + }, + { + "id": "LVBus169865_consumption", + "bus": "LVBus169865", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3212.991140317627, 1056.0591179029145] + ] + }, + { + "id": "LVBus169867_production", + "bus": "LVBus169867", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-105.5187637969095, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169867_consumption", + "bus": "LVBus169867", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3212.991140317627, 1056.0591179029145], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169868_production", + "bus": "LVBus169868", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-105.5187637969095, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169868_consumption", + "bus": "LVBus169868", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3212.991140317627, 1056.0591179029145], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder36360_Winter.json b/roseau/load_flow/data/networks/LVFeeder36360_Winter.json new file mode 100644 index 00000000..e69163c3 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder36360_Winter.json @@ -0,0 +1,509 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV14716", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5931237327892096, 49.0456724037415] + } + }, + { + "id": "MVLV14716", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.5931237327892096, 49.0456724037415] + } + }, + { + "id": "LVBus169862", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.593759159010116, 49.0462719064779] + } + }, + { + "id": "LVBus169863", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.593861680273659, 49.046653053701206] + } + }, + { + "id": "LVBus169864", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594364639974005, 49.04739706937517] + } + }, + { + "id": "LVBus169866", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594706660314081, 49.047929008246655] + } + }, + { + "id": "LVBus169865", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594721011508903, 49.04724435659555] + } + }, + { + "id": "LVBus169867", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.593922235812207, 49.04782025881052] + } + }, + { + "id": "LVBus169868", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.594849255375854, 49.046306680920615] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV14716", + "geometry": { + "type": "Point", + "coordinates": [-1.5931237327892096, 49.0456724037415] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch124792", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV14716", + "bus2": "LVBus169862", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5931237327892096, 49.0456724037415], + [-1.593124791365058, 49.045690894063746], + [-1.593124791365058, 49.045690894063746], + [-1.59322930794992, 49.0457081851855], + [-1.593312448490486, 49.04582098250781], + [-1.593586673694338, 49.046226792512805], + [-1.593740502268292, 49.046209513234864], + [-1.593759159010116, 49.0462719064779], + [-1.593759159010116, 49.0462719064779] + ] + }, + "length": 0.08968070135743335, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "LVBranch028144", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169862", + "bus2": "LVBus169863", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.593759159010116, 49.0462719064779], + [-1.593759159010116, 49.0462719064779], + [-1.593740055437059, 49.04645118253442], + [-1.593737972073063, 49.04647073891695], + [-1.593861680273659, 49.046653053701206], + [-1.593861680273659, 49.046653053701206] + ] + }, + "length": 0.04436724010618379, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch028145", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169863", + "bus2": "LVBus169864", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.593861680273659, 49.046653053701206], + [-1.593861680273659, 49.046653053701206], + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517] + ] + }, + "length": 0.09054384067800328, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch041668", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169864", + "bus2": "LVBus169866", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517], + [-1.594367469980203, 49.04740115992531], + [-1.594562105253604, 49.047713695035455], + [-1.594584222666464, 49.04774656255592], + [-1.594658921232359, 49.04785788231147], + [-1.594703324991698, 49.047924034619044], + [-1.594706660314081, 49.047929008246655], + [-1.594706660314081, 49.047929008246655] + ] + }, + "length": 0.06422966085250291, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch061323", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169864", + "bus2": "LVBus169865", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517], + [-1.594370365963903, 49.04739461367218], + [-1.594708194321439, 49.04724985279487], + [-1.594721011508903, 49.04724435659555], + [-1.594721011508903, 49.04724435659555] + ] + }, + "length": 0.031098546879261002, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch062605", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169864", + "bus2": "LVBus169867", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594364639974005, 49.04739706937517], + [-1.594364639974005, 49.04739706937517], + [-1.593738297192804, 49.047579312052896], + [-1.593910361573165, 49.04780470655868], + [-1.593919164840746, 49.047816239160056], + [-1.593922235812207, 49.04782025881052], + [-1.593922235812207, 49.04782025881052] + ] + }, + "length": 0.08005243959261948, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch041667", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus169863", + "bus2": "LVBus169868", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.593861680273659, 49.046653053701206], + [-1.593861680273659, 49.046653053701206], + [-1.593867111959461, 49.046650328790356], + [-1.594086957881231, 49.046539969692574], + [-1.59410263397379, 49.0465351712313], + [-1.594437236351119, 49.04643276765613], + [-1.594547838842712, 49.0463989244874], + [-1.594843062541497, 49.04630857619961], + [-1.594846206060687, 49.04630761801283], + [-1.594849255375854, 49.046306680920615], + [-1.594849255375854, 49.046306680920615] + ] + }, + "length": 0.08219148406259193, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus169862_production", + "bus": "LVBus169862", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169862_consumption", + "bus": "LVBus169862", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169863_production", + "bus": "LVBus169863", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus169863_consumption", + "bus": "LVBus169863", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169864_production", + "bus": "LVBus169864", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus169864_consumption", + "bus": "LVBus169864", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169866_production", + "bus": "LVBus169866", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus169866_consumption", + "bus": "LVBus169866", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [16064.955701588135, 5280.295589514572] + ] + }, + { + "id": "LVBus169865_production", + "bus": "LVBus169865", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169865_consumption", + "bus": "LVBus169865", + "phases": "abcn", + "powers": [ + [16064.955701588135, 5280.295589514572], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169867_production", + "bus": "LVBus169867", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169867_consumption", + "bus": "LVBus169867", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [16064.955701588135, 5280.295589514572], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169868_production", + "bus": "LVBus169868", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus169868_consumption", + "bus": "LVBus169868", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [16064.955701588135, 5280.295589514572], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder37263_Summer.json b/roseau/load_flow/data/networks/LVFeeder37263_Summer.json new file mode 100644 index 00000000..bd503eb4 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder37263_Summer.json @@ -0,0 +1,176 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV17131", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.186472797718411, 48.48667576673907] + } + }, + { + "id": "MVLV17131", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.186472797718411, 48.48667576673907] + } + }, + { + "id": "LVBus173891", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.185774451606739, 48.48699078306235] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV17131", + "geometry": { + "type": "Point", + "coordinates": [-1.186472797718411, 48.48667576673907] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch142132", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV17131", + "bus2": "LVBus173891", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.186472797718411, 48.48667576673907], + [-1.186470974221073, 48.48670271006807], + [-1.186470974221073, 48.48670271006807], + [-1.186470776739339, 48.486707206448116], + [-1.18646888590348, 48.48674960303377], + [-1.186418625521345, 48.48676871272873], + [-1.186406892011057, 48.48677317513547], + [-1.186125139763946, 48.48688029493635], + [-1.18608992556666, 48.48689368246748], + [-1.186088763945046, 48.48689412205574], + [-1.186053155246573, 48.48690507361564], + [-1.185780592282937, 48.48698889918556], + [-1.185774451606739, 48.48699078306235], + [-1.185774451606739, 48.48699078306235] + ] + }, + "length": 0.06318652813386802, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus173891_production", + "bus": "LVBus173891", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-669.3548387096774, 0.0] + ] + }, + { + "id": "LVBus173891_consumption", + "bus": "LVBus173891", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1401.894279340287, 460.78036676032957] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder37263_Winter.json b/roseau/load_flow/data/networks/LVFeeder37263_Winter.json new file mode 100644 index 00000000..31ea6005 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder37263_Winter.json @@ -0,0 +1,176 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV17131", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.186472797718411, 48.48667576673907] + } + }, + { + "id": "MVLV17131", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.186472797718411, 48.48667576673907] + } + }, + { + "id": "LVBus173891", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.185774451606739, 48.48699078306235] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV17131", + "geometry": { + "type": "Point", + "coordinates": [-1.186472797718411, 48.48667576673907] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch142132", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV17131", + "bus2": "LVBus173891", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.186472797718411, 48.48667576673907], + [-1.186470974221073, 48.48670271006807], + [-1.186470974221073, 48.48670271006807], + [-1.186470776739339, 48.486707206448116], + [-1.18646888590348, 48.48674960303377], + [-1.186418625521345, 48.48676871272873], + [-1.186406892011057, 48.48677317513547], + [-1.186125139763946, 48.48688029493635], + [-1.18608992556666, 48.48689368246748], + [-1.186088763945046, 48.48689412205574], + [-1.186053155246573, 48.48690507361564], + [-1.185780592282937, 48.48698889918556], + [-1.185774451606739, 48.48699078306235], + [-1.185774451606739, 48.48699078306235] + ] + }, + "length": 0.06318652813386802, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus173891_production", + "bus": "LVBus173891", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus173891_consumption", + "bus": "LVBus173891", + "phases": "abcn", + "powers": [ + [7009.471396701436, 2303.9018338016476], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.188] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.32828402771266313] + ] + ], + "y_shunt": [ + [ + [4.063682544124005e-5, 0.0, 0.0, 0.0], + [0.0, 4.063682544124003e-5, 0.0, 0.0], + [0.0, 0.0, 4.063682544124003e-5, 0.0], + [0.0, 0.0, 0.0, 4.0636825441240034e-5] + ], + [ + [0.0009990656421805131, -0.000185181796574586, 4.8578374989324777e-5, -0.00018518179657458464], + [-0.00018518179657458608, 0.0009990656421805131, -0.00018518179657458462, 4.857837498932483e-5], + [4.85783749893248e-5, -0.00018518179657458453, 0.000999065642180513, -0.00018518179657458602], + [-0.00018518179657458456, 4.85783749893247e-5, -0.00018518179657458597, 0.0009990656421805131] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder38211_Summer.json b/roseau/load_flow/data/networks/LVFeeder38211_Summer.json new file mode 100644 index 00000000..65ee3d48 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder38211_Summer.json @@ -0,0 +1,320 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV09219", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737488811262479, 48.784238047637125] + } + }, + { + "id": "MVLV09219", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737488811262479, 48.784238047637125] + } + }, + { + "id": "LVBus178129", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737233734966708, 48.78398320956787] + } + }, + { + "id": "LVBus178132", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.736454496741027, 48.78358301932807] + } + }, + { + "id": "LVBus178130", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.738168776655936, 48.78262866378785] + } + }, + { + "id": "LVBus178131", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737186105479101, 48.78490970733192] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV09219", + "geometry": { + "type": "Point", + "coordinates": [-0.737488811262479, 48.784238047637125] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch015048", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV09219", + "bus2": "LVBus178129", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737488811262479, 48.784238047637125], + [-0.73745795989156, 48.784224588637635], + [-0.73745795989156, 48.784224588637635], + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787] + ] + }, + "length": 0.03149676075784545, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch070466", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus178129", + "bus2": "LVBus178132", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787], + [-0.737228372079206, 48.78398045190666], + [-0.736600115266889, 48.783657806594384], + [-0.736454496741027, 48.78358301932807], + [-0.736454496741027, 48.78358301932807] + ] + }, + "length": 0.07252441840882509, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch034894", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus178129", + "bus2": "LVBus178130", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787], + [-0.737233224413346, 48.78397872537546], + [-0.737188638248994, 48.78358391863414], + [-0.737615349140957, 48.78303960187657], + [-0.738164252336486, 48.78263201893271], + [-0.738168776655936, 48.78262866378785], + [-0.738168776655936, 48.78262866378785] + ] + }, + "length": 0.17387433044121148, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch004825", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus178129", + "bus2": "LVBus178131", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787], + [-0.736661745472538, 48.78453504866663], + [-0.737181486333263, 48.784906408741946], + [-0.737184271943447, 48.784908396525594], + [-0.737186105479101, 48.78490970733192], + [-0.737186105479101, 48.78490970733192] + ] + }, + "length": 0.13113446014467442, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus178129_production", + "bus": "LVBus178129", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus178129_consumption", + "bus": "LVBus178129", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178132_production", + "bus": "LVBus178132", + "phases": "abcn", + "powers": [ + [-1298.7012987012988, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178132_consumption", + "bus": "LVBus178132", + "phases": "abcn", + "powers": [ + [1008.2239960118372, 331.38720194900844], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178130_production", + "bus": "LVBus178130", + "phases": "abcn", + "powers": [ + [-1298.7012987012988, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178130_consumption", + "bus": "LVBus178130", + "phases": "abcn", + "powers": [ + [1008.2239960118372, 331.38720194900844], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178131_production", + "bus": "LVBus178131", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-1298.7012987012988, 0.0] + ] + }, + { + "id": "LVBus178131_consumption", + "bus": "LVBus178131", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1008.2239960118372, 331.38720194900844] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/LVFeeder38211_Winter.json b/roseau/load_flow/data/networks/LVFeeder38211_Winter.json new file mode 100644 index 00000000..c7b03996 --- /dev/null +++ b/roseau/load_flow/data/networks/LVFeeder38211_Winter.json @@ -0,0 +1,320 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + }, + { + "id": "MVLV09219", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737488811262479, 48.784238047637125] + } + }, + { + "id": "MVLV09219", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737488811262479, 48.784238047637125] + } + }, + { + "id": "LVBus178129", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737233734966708, 48.78398320956787] + } + }, + { + "id": "LVBus178132", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.736454496741027, 48.78358301932807] + } + }, + { + "id": "LVBus178130", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.738168776655936, 48.78262866378785] + } + }, + { + "id": "LVBus178131", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.737186105479101, 48.78490970733192] + } + } + ], + "branches": [ + { + "id": "Transformer", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": "VoltageSource", + "bus2": "MVLV09219", + "geometry": { + "type": "Point", + "coordinates": [-0.737488811262479, 48.784238047637125] + }, + "params_id": "Dyn11_160kVA", + "tap": 1.0 + }, + { + "id": "LVBranch015048", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "MVLV09219", + "bus2": "LVBus178129", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737488811262479, 48.784238047637125], + [-0.73745795989156, 48.784224588637635], + [-0.73745795989156, 48.784224588637635], + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787] + ] + }, + "length": 0.03149676075784545, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch070466", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus178129", + "bus2": "LVBus178132", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787], + [-0.737228372079206, 48.78398045190666], + [-0.736600115266889, 48.783657806594384], + [-0.736454496741027, 48.78358301932807], + [-0.736454496741027, 48.78358301932807] + ] + }, + "length": 0.07252441840882509, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch034894", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus178129", + "bus2": "LVBus178130", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787], + [-0.737233224413346, 48.78397872537546], + [-0.737188638248994, 48.78358391863414], + [-0.737615349140957, 48.78303960187657], + [-0.738164252336486, 48.78263201893271], + [-0.738168776655936, 48.78262866378785], + [-0.738168776655936, 48.78262866378785] + ] + }, + "length": 0.17387433044121148, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "LVBranch004825", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "LVBus178129", + "bus2": "LVBus178131", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.737233734966708, 48.78398320956787], + [-0.737233734966708, 48.78398320956787], + [-0.736661745472538, 48.78453504866663], + [-0.737181486333263, 48.784906408741946], + [-0.737184271943447, 48.784908396525594], + [-0.737186105479101, 48.78490970733192], + [-0.737186105479101, 48.78490970733192] + ] + }, + "length": 0.13113446014467442, + "params_id": "T_AL_70", + "ground": "ground" + } + ], + "loads": [ + { + "id": "LVBus178129_production", + "bus": "LVBus178129", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus178129_consumption", + "bus": "LVBus178129", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178132_production", + "bus": "LVBus178132", + "phases": "abcn", + "powers": [ + [-0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178132_consumption", + "bus": "LVBus178132", + "phases": "abcn", + "powers": [ + [5041.119980059186, 1656.9360097450422], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178130_production", + "bus": "LVBus178130", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [-0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178130_consumption", + "bus": "LVBus178130", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [5041.119980059186, 1656.9360097450422], + [0.0, 0.0] + ] + }, + { + "id": "LVBus178131_production", + "bus": "LVBus178131", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [-0.0, 0.0] + ] + }, + { + "id": "LVBus178131_consumption", + "bus": "LVBus178131", + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [5041.119980059186, 1656.9360097450422] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "T_AL_70", + "z_line": [ + [ + [0.40285714285714286, 0.0, 0.0, 0.0], + [0.0, 0.40285714285714286, 0.0, 0.0], + [0.0, 0.0, 0.40285714285714286, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.35222736359783396, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.35222736359783396, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.35222736359783396, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.428953946773096e-6, 0.0, 0.0, 0.0], + [0.0, 1.4289539467730959e-6, 0.0, 0.0], + [0.0, 0.0, 1.4290006903500336e-6, 0.0], + [0.0, 0.0, 0.0, 3.3346520826732896e-6] + ], + [ + [3.526313133382993e-5, -1.0568582137142852e-6, -1.056326491108107e-6, -9.334047516122599e-6], + [-1.0568582137142816e-6, 3.526313133382992e-5, -1.056326491108114e-6, -9.334047516122592e-6], + [-1.0563264911081043e-6, -1.0563264911081034e-6, 3.526362521753491e-5, -9.334294062818139e-6], + [-9.334047516122607e-6, -9.334047516122602e-6, -9.334294062818125e-6, 8.357992380628483e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "Dyn11_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" + } + ] +} diff --git a/roseau/load_flow/data/networks/MVFeeder004_Summer.json b/roseau/load_flow/data/networks/MVFeeder004_Summer.json new file mode 100644 index 00000000..01b7df3a --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder004_Summer.json @@ -0,0 +1,680 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "HVMV01", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBus00016", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617660253013841, 49.634080010906125] + } + }, + { + "id": "MVBus00017", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617217939712126, 49.63421062905867] + } + }, + { + "id": "MVBus00018", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.614801653845744, 49.63399813380452] + } + }, + { + "id": "MVBus00019", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.612529753809362, 49.634610259256284] + } + }, + { + "id": "MVLV07316", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.611308553027253, 49.63485085190276] + } + }, + { + "id": "MVLV10636", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6091089060821284, 49.63366901670905] + } + }, + { + "id": "MVBus06172", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.608692850402576, 49.632993691313935] + } + }, + { + "id": "MVBus06173", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607244051623987, 49.63403704941576] + } + }, + { + "id": "MVLV10651", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607170711891764, 49.63407487083771] + } + }, + { + "id": "MVBus06419", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607163426438677, 49.63400527546459] + } + }, + { + "id": "MVBus06420", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.604779537742919, 49.63399184277234] + } + }, + { + "id": "MVLV06791", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6044180896166784, 49.63411509195923] + } + }, + { + "id": "MVBus06622", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.604343039067938, 49.634071049044955] + } + }, + { + "id": "MVBus06623", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599941881499135, 49.634321490796964] + } + }, + { + "id": "MVLV00510", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599577737107229, 49.634401183142394] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV01", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBranch35563", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV01", + "bus2": "MVBus00016", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.624837162156209, 49.633717544204686], + [-1.624839461825155, 49.63373093025665], + [-1.624839461825155, 49.63373093025665], + [-1.624841761495308, 49.63374431630837], + [-1.62494196512127, 49.634328667586985], + [-1.624674088750918, 49.63427553315492], + [-1.62445716908385, 49.63474262953529], + [-1.623046084019437, 49.63462606572698], + [-1.622923599098108, 49.63509938175197], + [-1.621813615366869, 49.63498602572601], + [-1.621895230993093, 49.63428178891279], + [-1.619922868554035, 49.63403039165363], + [-1.618399159028619, 49.634012166216706], + [-1.617906669163438, 49.63409380224441], + [-1.617660253013841, 49.634080010906125], + [-1.617660253013841, 49.634080010906125] + ] + }, + "length": 0.7671110958135496, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47504", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00016", + "bus2": "MVBus00017", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617660253013841, 49.634080010906125], + [-1.617660253013841, 49.634080010906125], + [-1.617456832215165, 49.63406862560632], + [-1.617432072875792, 49.63417392480657], + [-1.617217550726612, 49.634212754947846], + [-1.617217939712126, 49.63421062905867], + [-1.617217939712126, 49.63421062905867] + ] + }, + "length": 0.04292200346911987, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00017", + "bus2": "MVBus00018", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617217939712126, 49.63421062905867], + [-1.617217939712126, 49.63421062905867], + [-1.617318355333896, 49.63365915313354], + [-1.616197122281556, 49.633594744609034], + [-1.61545963687917, 49.633715349729336], + [-1.61493159800062, 49.63397467043045], + [-1.614801653845744, 49.63399813380452], + [-1.614801653845744, 49.63399813380452] + ] + }, + "length": 0.25557935300814777, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00018", + "bus2": "MVBus00019", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.614801653845744, 49.63399813380452], + [-1.614801653845744, 49.63399813380452], + [-1.614685635897059, 49.63401907369233], + [-1.61439242908746, 49.63382197045764], + [-1.613884242543181, 49.63384649898407], + [-1.613369568146663, 49.633893088338525], + [-1.613607518101238, 49.63404320775328], + [-1.613915297217525, 49.63460754500526], + [-1.613485068641775, 49.634572603742164], + [-1.612529753809362, 49.634610259256284], + [-1.612529753809362, 49.634610259256284] + ] + }, + "length": 0.3045413703072708, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45584", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00019", + "bus2": "MVLV07316", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.612529753809362, 49.634610259256284], + [-1.612529753809362, 49.634610259256284], + [-1.611275645260447, 49.634711554264335], + [-1.611308635726308, 49.63483671801564], + [-1.61131212783002, 49.63484999331885], + [-1.611308553027253, 49.63485085190276] + ] + }, + "length": 0.10691300055589305, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39547", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07316", + "bus2": "MVLV10636", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.611308553027253, 49.63485085190276], + [-1.611304978224486, 49.63485171048667], + [-1.611294322708032, 49.63484015280147], + [-1.611178874638999, 49.63471485799629], + [-1.610917925436074, 49.63471114006497], + [-1.608900678111518, 49.63431520425145], + [-1.609114749402332, 49.633875713176295], + [-1.609112282167604, 49.63369565371533], + [-1.609112098156173, 49.63368218046848], + [-1.6091089060821284, 49.63366901670905] + ] + }, + "length": 0.2616184568617092, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47764", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10636", + "bus2": "MVBus06172", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6091089060821284, 49.63366901670905], + [-1.609105714008084, 49.633655852949616], + [-1.609099513874453, 49.633642998677246], + [-1.608795810665025, 49.63301335129265], + [-1.608692850402576, 49.632993691313935], + [-1.608692850402576, 49.632993691313935] + ] + }, + "length": 0.08263763272611883, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42323", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06172", + "bus2": "MVBus06173", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.608692850402576, 49.632993691313935], + [-1.608692850402576, 49.632993691313935], + [-1.608658413615531, 49.63303496511739], + [-1.608868696352634, 49.63354102490036], + [-1.608863547922095, 49.63371768208097], + [-1.608989598691497, 49.63387096724482], + [-1.60878716840876, 49.63428305675757], + [-1.607321693747171, 49.63400697371016], + [-1.607246366416668, 49.6340356520601], + [-1.607244051623987, 49.63403704941576], + [-1.607244051623987, 49.63403704941576] + ] + }, + "length": 0.2673721926264447, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36005", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06173", + "bus2": "MVLV10651", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607244051623987, 49.63403704941576], + [-1.607244051623987, 49.63403704941576], + [-1.607193418244601, 49.63406780867682], + [-1.607178263355795, 49.63407700742898], + [-1.607170711891764, 49.63407487083771] + ] + }, + "length": 0.006506668513477937, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40374", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10651", + "bus2": "MVBus06419", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607170711891764, 49.63407487083771], + [-1.607163160427733, 49.634072734246445], + [-1.60716321239391, 49.6340592623135], + [-1.607163426438677, 49.63400527546459], + [-1.607163426438677, 49.63400527546459] + ] + }, + "length": 0.007502925468738296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46030", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06419", + "bus2": "MVBus06420", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607163426438677, 49.63400527546459], + [-1.607163426438677, 49.63400527546459], + [-1.607163430921037, 49.63400425920557], + [-1.607171599667159, 49.633986359137964], + [-1.606390556293096, 49.63383575901765], + [-1.605898905024838, 49.63380717351391], + [-1.605452767789487, 49.6338189604294], + [-1.605189448184072, 49.63385328139816], + [-1.604767867386093, 49.633908371565255], + [-1.604779537742919, 49.63399184277234], + [-1.604779537742919, 49.63399184277234] + ] + }, + "length": 0.1887462209863619, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45446", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06420", + "bus2": "MVLV06791", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.604779537742919, 49.63399184277234], + [-1.604779537742919, 49.63399184277234], + [-1.604695716894153, 49.633950046263614], + [-1.604382342344694, 49.63401225421278], + [-1.604439018653925, 49.63409031082009], + [-1.604442426308327, 49.634094992546274], + [-1.604436402661865, 49.634108056641445], + [-1.6044180896166784, 49.63411509195923] + ] + }, + "length": 0.042996571688172475, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33656", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06791", + "bus2": "MVBus06622", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6044180896166784, 49.63411509195923], + [-1.604399776571492, 49.63412212727701], + [-1.604376055549936, 49.63411292823279], + [-1.604372218349542, 49.63410806267988], + [-1.604343039067938, 49.634071049044955], + [-1.604343039067938, 49.634071049044955] + ] + }, + "length": 0.0072287890020037385, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39558", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06622", + "bus2": "MVBus06623", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.604343039067938, 49.634071049044955], + [-1.604343039067938, 49.634071049044955], + [-1.604250170715592, 49.633931155246486], + [-1.603683213863427, 49.634047657515055], + [-1.602974927160749, 49.63427547187023], + [-1.601147061764153, 49.63512816777633], + [-1.599941881499135, 49.634321490796964], + [-1.599941881499135, 49.634321490796964] + ] + }, + "length": 0.4045828520484129, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46578", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06623", + "bus2": "MVLV00510", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.599941881499135, 49.634321490796964], + [-1.599941881499135, 49.634321490796964], + [-1.599930815205685, 49.63431408193551], + [-1.599597124422722, 49.634396397601726], + [-1.599577737107229, 49.634401183142394], + [-1.599577737107229, 49.634401183142394] + ] + }, + "length": 0.028431552474934698, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV07316_production", + "bus": "MVLV07316", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV07316_consumption", + "bus": "MVLV07316", + "phases": "abc", + "powers": [ + [14603.685266600072, 4799.999224166193], + [14603.685266600072, 4799.999224166193], + [14603.685266600072, 4799.999224166193] + ] + }, + { + "id": "MVLV10636_production", + "bus": "MVLV10636", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV10636_consumption", + "bus": "MVLV10636", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV10651_production", + "bus": "MVLV10651", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV10651_consumption", + "bus": "MVLV10651", + "phases": "abc", + "powers": [ + [14603.685266600072, 4799.999224166193], + [14603.685266600072, 4799.999224166193], + [14603.685266600072, 4799.999224166193] + ] + }, + { + "id": "MVLV06791_production", + "bus": "MVLV06791", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV06791_consumption", + "bus": "MVLV06791", + "phases": "abc", + "powers": [ + [14603.685266600072, 4799.999224166193], + [14603.685266600072, 4799.999224166193], + [14603.685266600072, 4799.999224166193] + ] + }, + { + "id": "MVLV00510_production", + "bus": "MVLV00510", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV00510_consumption", + "bus": "MVLV00510", + "phases": "abc", + "powers": [ + [6113.98161471995, 2009.5685761142483], + [6113.98161471995, 2009.5685761142483], + [6113.98161471995, 2009.5685761142483] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder004_Winter.json b/roseau/load_flow/data/networks/MVFeeder004_Winter.json new file mode 100644 index 00000000..dfc01e75 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder004_Winter.json @@ -0,0 +1,680 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "HVMV01", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBus00016", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617660253013841, 49.634080010906125] + } + }, + { + "id": "MVBus00017", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617217939712126, 49.63421062905867] + } + }, + { + "id": "MVBus00018", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.614801653845744, 49.63399813380452] + } + }, + { + "id": "MVBus00019", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.612529753809362, 49.634610259256284] + } + }, + { + "id": "MVLV07316", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.611308553027253, 49.63485085190276] + } + }, + { + "id": "MVLV10636", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6091089060821284, 49.63366901670905] + } + }, + { + "id": "MVBus06172", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.608692850402576, 49.632993691313935] + } + }, + { + "id": "MVBus06173", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607244051623987, 49.63403704941576] + } + }, + { + "id": "MVLV10651", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607170711891764, 49.63407487083771] + } + }, + { + "id": "MVBus06419", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607163426438677, 49.63400527546459] + } + }, + { + "id": "MVBus06420", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.604779537742919, 49.63399184277234] + } + }, + { + "id": "MVLV06791", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6044180896166784, 49.63411509195923] + } + }, + { + "id": "MVBus06622", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.604343039067938, 49.634071049044955] + } + }, + { + "id": "MVBus06623", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599941881499135, 49.634321490796964] + } + }, + { + "id": "MVLV00510", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599577737107229, 49.634401183142394] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV01", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBranch35563", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV01", + "bus2": "MVBus00016", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.624837162156209, 49.633717544204686], + [-1.624839461825155, 49.63373093025665], + [-1.624839461825155, 49.63373093025665], + [-1.624841761495308, 49.63374431630837], + [-1.62494196512127, 49.634328667586985], + [-1.624674088750918, 49.63427553315492], + [-1.62445716908385, 49.63474262953529], + [-1.623046084019437, 49.63462606572698], + [-1.622923599098108, 49.63509938175197], + [-1.621813615366869, 49.63498602572601], + [-1.621895230993093, 49.63428178891279], + [-1.619922868554035, 49.63403039165363], + [-1.618399159028619, 49.634012166216706], + [-1.617906669163438, 49.63409380224441], + [-1.617660253013841, 49.634080010906125], + [-1.617660253013841, 49.634080010906125] + ] + }, + "length": 0.7671110958135496, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47504", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00016", + "bus2": "MVBus00017", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617660253013841, 49.634080010906125], + [-1.617660253013841, 49.634080010906125], + [-1.617456832215165, 49.63406862560632], + [-1.617432072875792, 49.63417392480657], + [-1.617217550726612, 49.634212754947846], + [-1.617217939712126, 49.63421062905867], + [-1.617217939712126, 49.63421062905867] + ] + }, + "length": 0.04292200346911987, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00017", + "bus2": "MVBus00018", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617217939712126, 49.63421062905867], + [-1.617217939712126, 49.63421062905867], + [-1.617318355333896, 49.63365915313354], + [-1.616197122281556, 49.633594744609034], + [-1.61545963687917, 49.633715349729336], + [-1.61493159800062, 49.63397467043045], + [-1.614801653845744, 49.63399813380452], + [-1.614801653845744, 49.63399813380452] + ] + }, + "length": 0.25557935300814777, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00018", + "bus2": "MVBus00019", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.614801653845744, 49.63399813380452], + [-1.614801653845744, 49.63399813380452], + [-1.614685635897059, 49.63401907369233], + [-1.61439242908746, 49.63382197045764], + [-1.613884242543181, 49.63384649898407], + [-1.613369568146663, 49.633893088338525], + [-1.613607518101238, 49.63404320775328], + [-1.613915297217525, 49.63460754500526], + [-1.613485068641775, 49.634572603742164], + [-1.612529753809362, 49.634610259256284], + [-1.612529753809362, 49.634610259256284] + ] + }, + "length": 0.3045413703072708, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45584", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00019", + "bus2": "MVLV07316", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.612529753809362, 49.634610259256284], + [-1.612529753809362, 49.634610259256284], + [-1.611275645260447, 49.634711554264335], + [-1.611308635726308, 49.63483671801564], + [-1.61131212783002, 49.63484999331885], + [-1.611308553027253, 49.63485085190276] + ] + }, + "length": 0.10691300055589305, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39547", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07316", + "bus2": "MVLV10636", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.611308553027253, 49.63485085190276], + [-1.611304978224486, 49.63485171048667], + [-1.611294322708032, 49.63484015280147], + [-1.611178874638999, 49.63471485799629], + [-1.610917925436074, 49.63471114006497], + [-1.608900678111518, 49.63431520425145], + [-1.609114749402332, 49.633875713176295], + [-1.609112282167604, 49.63369565371533], + [-1.609112098156173, 49.63368218046848], + [-1.6091089060821284, 49.63366901670905] + ] + }, + "length": 0.2616184568617092, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47764", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10636", + "bus2": "MVBus06172", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6091089060821284, 49.63366901670905], + [-1.609105714008084, 49.633655852949616], + [-1.609099513874453, 49.633642998677246], + [-1.608795810665025, 49.63301335129265], + [-1.608692850402576, 49.632993691313935], + [-1.608692850402576, 49.632993691313935] + ] + }, + "length": 0.08263763272611883, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42323", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06172", + "bus2": "MVBus06173", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.608692850402576, 49.632993691313935], + [-1.608692850402576, 49.632993691313935], + [-1.608658413615531, 49.63303496511739], + [-1.608868696352634, 49.63354102490036], + [-1.608863547922095, 49.63371768208097], + [-1.608989598691497, 49.63387096724482], + [-1.60878716840876, 49.63428305675757], + [-1.607321693747171, 49.63400697371016], + [-1.607246366416668, 49.6340356520601], + [-1.607244051623987, 49.63403704941576], + [-1.607244051623987, 49.63403704941576] + ] + }, + "length": 0.2673721926264447, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36005", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06173", + "bus2": "MVLV10651", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607244051623987, 49.63403704941576], + [-1.607244051623987, 49.63403704941576], + [-1.607193418244601, 49.63406780867682], + [-1.607178263355795, 49.63407700742898], + [-1.607170711891764, 49.63407487083771] + ] + }, + "length": 0.006506668513477937, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40374", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10651", + "bus2": "MVBus06419", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607170711891764, 49.63407487083771], + [-1.607163160427733, 49.634072734246445], + [-1.60716321239391, 49.6340592623135], + [-1.607163426438677, 49.63400527546459], + [-1.607163426438677, 49.63400527546459] + ] + }, + "length": 0.007502925468738296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46030", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06419", + "bus2": "MVBus06420", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607163426438677, 49.63400527546459], + [-1.607163426438677, 49.63400527546459], + [-1.607163430921037, 49.63400425920557], + [-1.607171599667159, 49.633986359137964], + [-1.606390556293096, 49.63383575901765], + [-1.605898905024838, 49.63380717351391], + [-1.605452767789487, 49.6338189604294], + [-1.605189448184072, 49.63385328139816], + [-1.604767867386093, 49.633908371565255], + [-1.604779537742919, 49.63399184277234], + [-1.604779537742919, 49.63399184277234] + ] + }, + "length": 0.1887462209863619, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45446", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06420", + "bus2": "MVLV06791", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.604779537742919, 49.63399184277234], + [-1.604779537742919, 49.63399184277234], + [-1.604695716894153, 49.633950046263614], + [-1.604382342344694, 49.63401225421278], + [-1.604439018653925, 49.63409031082009], + [-1.604442426308327, 49.634094992546274], + [-1.604436402661865, 49.634108056641445], + [-1.6044180896166784, 49.63411509195923] + ] + }, + "length": 0.042996571688172475, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33656", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06791", + "bus2": "MVBus06622", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6044180896166784, 49.63411509195923], + [-1.604399776571492, 49.63412212727701], + [-1.604376055549936, 49.63411292823279], + [-1.604372218349542, 49.63410806267988], + [-1.604343039067938, 49.634071049044955], + [-1.604343039067938, 49.634071049044955] + ] + }, + "length": 0.0072287890020037385, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39558", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06622", + "bus2": "MVBus06623", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.604343039067938, 49.634071049044955], + [-1.604343039067938, 49.634071049044955], + [-1.604250170715592, 49.633931155246486], + [-1.603683213863427, 49.634047657515055], + [-1.602974927160749, 49.63427547187023], + [-1.601147061764153, 49.63512816777633], + [-1.599941881499135, 49.634321490796964], + [-1.599941881499135, 49.634321490796964] + ] + }, + "length": 0.4045828520484129, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46578", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06623", + "bus2": "MVLV00510", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.599941881499135, 49.634321490796964], + [-1.599941881499135, 49.634321490796964], + [-1.599930815205685, 49.63431408193551], + [-1.599597124422722, 49.634396397601726], + [-1.599577737107229, 49.634401183142394], + [-1.599577737107229, 49.634401183142394] + ] + }, + "length": 0.028431552474934698, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV07316_production", + "bus": "MVLV07316", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07316_consumption", + "bus": "MVLV07316", + "phases": "abc", + "powers": [ + [73018.42633300036, 23999.996120830965], + [73018.42633300036, 23999.996120830965], + [73018.42633300036, 23999.996120830965] + ] + }, + { + "id": "MVLV10636_production", + "bus": "MVLV10636", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10636_consumption", + "bus": "MVLV10636", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV10651_production", + "bus": "MVLV10651", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10651_consumption", + "bus": "MVLV10651", + "phases": "abc", + "powers": [ + [73018.42633300036, 23999.996120830965], + [73018.42633300036, 23999.996120830965], + [73018.42633300036, 23999.996120830965] + ] + }, + { + "id": "MVLV06791_production", + "bus": "MVLV06791", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06791_consumption", + "bus": "MVLV06791", + "phases": "abc", + "powers": [ + [73018.42633300036, 23999.996120830965], + [73018.42633300036, 23999.996120830965], + [73018.42633300036, 23999.996120830965] + ] + }, + { + "id": "MVLV00510_production", + "bus": "MVLV00510", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00510_consumption", + "bus": "MVLV00510", + "phases": "abc", + "powers": [ + [30569.908073599752, 10047.842880571241], + [30569.908073599752, 10047.842880571241], + [30569.908073599752, 10047.842880571241] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder011_Summer.json b/roseau/load_flow/data/networks/MVFeeder011_Summer.json new file mode 100644 index 00000000..915a39f8 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder011_Summer.json @@ -0,0 +1,2606 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "HVMV01", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBus00044", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.629037146508968, 49.631786313338594] + } + }, + { + "id": "MVLV02718", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.629721806268463, 49.63252940750905] + } + }, + { + "id": "MVBus04664", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.629054408189043, 49.63178058553094] + } + }, + { + "id": "MVLV15555", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6314148687770316, 49.63085635792388] + } + }, + { + "id": "MVLV07323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6316298971813121, 49.63271781685638] + } + }, + { + "id": "MVLV05293", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6353965365500425, 49.63201285071942] + } + }, + { + "id": "MVLV14999", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.635841049476694, 49.634773127302665] + } + }, + { + "id": "MVLV08398", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6390459138036424, 49.63402854933457] + } + }, + { + "id": "MVLV12652", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.638968848385021, 49.637357094424615] + } + }, + { + "id": "MVLV05297", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.639959248554075, 49.63879602948194] + } + }, + { + "id": "MVLV09570", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.63946043427207, 49.64121448711107] + } + }, + { + "id": "MVLV12653", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6443562607887543, 49.6389795586048] + } + }, + { + "id": "MVLV11399", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6460659248127212, 49.639737506922216] + } + }, + { + "id": "MVLV04231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.646312245039197, 49.64113108389712] + } + }, + { + "id": "MVLV11405", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.647550106185192, 49.64151825643697] + } + }, + { + "id": "MVBus12237", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.650496238664297, 49.63974470580285] + } + }, + { + "id": "MVLV18350", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.651074590691024, 49.63901863203041] + } + }, + { + "id": "MVBus14816", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.650618491574853, 49.63968679231682] + } + }, + { + "id": "MVLV03811", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6541252575873528, 49.638747481781465] + } + }, + { + "id": "MVBus16883", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.651432398001215, 49.63931205401539] + } + }, + { + "id": "MVLV13412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.65221236758308, 49.63967359517768] + } + }, + { + "id": "MVLV18345", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.649879448220405, 49.64153273332219] + } + }, + { + "id": "MVLV13415", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6508752731227425, 49.643005599995846] + } + }, + { + "id": "MVLV09698", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6529876825128729, 49.64213837494104] + } + }, + { + "id": "MVLV10769", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6541095942725872, 49.641301353664915] + } + }, + { + "id": "MVBus20991", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.655216166305802, 49.64128414309542] + } + }, + { + "id": "MVBus20992", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.65745195708432, 49.64188286054988] + } + }, + { + "id": "MVLV07448", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6597185284257365, 49.64053361589109] + } + }, + { + "id": "MVBus22688", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.659992378774546, 49.640794687101014] + } + }, + { + "id": "MVLV03816", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.662536295709962, 49.64016837911976] + } + }, + { + "id": "MVBus23620", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.659996802038395, 49.64083115791717] + } + }, + { + "id": "MVLV07432", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6575239274670255, 49.64192659162776] + } + }, + { + "id": "MVBus24548", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.656148855867594, 49.643410380628715] + } + }, + { + "id": "MVLV07449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6567571961044585, 49.643587777587335] + } + }, + { + "id": "MVLV09703", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.658996118190359, 49.643065130887315] + } + }, + { + "id": "MVLV18342", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6600719941933777, 49.64495201682858] + } + }, + { + "id": "MVBus27018", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.657634719606587, 49.644704226437895] + } + }, + { + "id": "MVLV09708", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.657412445196616, 49.644739889471886] + } + }, + { + "id": "MVLV09694", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6603547873034665, 49.64635177979386] + } + }, + { + "id": "MVLV07442", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6629655446157925, 49.64432178319872] + } + }, + { + "id": "MVBus30879", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.663253723380739, 49.643542139341996] + } + }, + { + "id": "MVLV18352", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.662616546426261, 49.642884936673234] + } + }, + { + "id": "MVBus31654", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.663289227604252, 49.64353346527948] + } + }, + { + "id": "MVLV10771", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6647535760701795, 49.643609126740216] + } + }, + { + "id": "MVLV07445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6655735383084749, 49.643426206784554] + } + }, + { + "id": "MVLV18348", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6663493738929815, 49.64417292395164] + } + }, + { + "id": "MVBus33535", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.668306361702929, 49.64380428993486] + } + }, + { + "id": "MVLV15132", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.667628303059409, 49.64179582568794] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV01", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBranch35532", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV01", + "bus2": "MVBus00044", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.624837162156209, 49.633717544204686], + [-1.624857219640409, 49.6337141083832], + [-1.624857219640409, 49.6337141083832], + [-1.624877277121907, 49.63371067255838], + [-1.626841753354714, 49.633374369702], + [-1.626970821395788, 49.632863001185015], + [-1.627065085349288, 49.63221326701406], + [-1.628389424343872, 49.63197887072164], + [-1.629037146508968, 49.631786313338594], + [-1.629037146508968, 49.631786313338594] + ] + }, + "length": 0.4290980676603243, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37188", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00044", + "bus2": "MVLV02718", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.629037146508968, 49.631786313338594], + [-1.629037146508968, 49.631786313338594], + [-1.629087268966014, 49.63183962110722], + [-1.629124914790215, 49.63188167512199], + [-1.629237382699548, 49.632007312962884], + [-1.629285671175313, 49.63205999739848], + [-1.629406587306548, 49.63216625831035], + [-1.629493192893915, 49.63224237849463], + [-1.62950876337733, 49.632253890385876], + [-1.629564221460388, 49.63228429039874], + [-1.629665246248013, 49.63253424404885], + [-1.629692017284508, 49.632533473668154], + [-1.629721178745731, 49.632532642841646], + [-1.629721806268463, 49.63252940750905] + ] + }, + "length": 0.10029828063164829, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35531", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02718", + "bus2": "MVBus04664", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.629721806268463, 49.63252940750905], + [-1.629722433791195, 49.63252617217645], + [-1.629693429524349, 49.63252581985572], + [-1.629671533905962, 49.6325255490427], + [-1.629578464447906, 49.63227944388576], + [-1.629504495049261, 49.63223834785071], + [-1.629287186398984, 49.63205064066636], + [-1.629140324102071, 49.63187883164821], + [-1.629054408189043, 49.63178058553094], + [-1.629054408189043, 49.63178058553094] + ] + }, + "length": 0.09943991949583805, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41689", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04664", + "bus2": "MVLV15555", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.629054408189043, 49.63178058553094], + [-1.629054408189043, 49.63178058553094], + [-1.629870759692084, 49.63150946533126], + [-1.63027631851721, 49.631450567390445], + [-1.630600109782255, 49.631443080677386], + [-1.631074676946586, 49.63151688103458], + [-1.631554981820415, 49.63162739569132], + [-1.631587939581892, 49.63152091498697], + [-1.63153580027118, 49.63123726426095], + [-1.631446068432871, 49.63113948661905], + [-1.63118012390842, 49.631090961348335], + [-1.631101680168486, 49.63102971744659], + [-1.631087767063798, 49.63096085231079], + [-1.631395105697174, 49.63086115655988], + [-1.631413659111113, 49.63085513420778], + [-1.6314148687770316, 49.63085635792388] + ] + }, + "length": 0.31109997665373856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44818", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15555", + "bus2": "MVLV07323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6314148687770316, 49.63085635792388], + [-1.63141607844295, 49.63085758163999], + [-1.631399944359874, 49.630866051425], + [-1.631195535837741, 49.630973375553545], + [-1.631224203720729, 49.63103632505266], + [-1.631498892849788, 49.631089949591676], + [-1.631567725847643, 49.6311353135501], + [-1.631630454198624, 49.63120790875985], + [-1.631686602970617, 49.6315409485384], + [-1.631665012619333, 49.63165064407811], + [-1.631963485824913, 49.63170705689989], + [-1.632002849551236, 49.63174802858317], + [-1.631537724766073, 49.632524828008705], + [-1.631616810933443, 49.63270603484414], + [-1.63162365659792, 49.63271875007037], + [-1.6316298971813121, 49.63271781685638] + ] + }, + "length": 0.2573909011875716, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36001", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07323", + "bus2": "MVLV05293", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6316298971813121, 49.63271781685638], + [-1.631636137764704, 49.63271688364239], + [-1.63163327830876, 49.63270166360753], + [-1.63163071600396, 49.63256037071055], + [-1.632093659469166, 49.63175662062328], + [-1.632171230775994, 49.631738661263284], + [-1.633199876177523, 49.63180697770677], + [-1.633823682906284, 49.631874751766034], + [-1.634897520452441, 49.63193610238032], + [-1.635384301904561, 49.631938328580226], + [-1.63540089567572, 49.63199300530112], + [-1.635404901302026, 49.63200621831591], + [-1.6353965365500425, 49.63201285071942] + ] + }, + "length": 0.3599441207244474, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36772", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05293", + "bus2": "MVLV14999", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6353965365500425, 49.63201285071942], + [-1.635388171798059, 49.632019483122924], + [-1.635367436665667, 49.632019534911876], + [-1.634926574478434, 49.632020655980526], + [-1.635143157896667, 49.63362863380854], + [-1.635298149022477, 49.63365934035967], + [-1.635340459302301, 49.63383888469], + [-1.635484774546945, 49.6339086716564], + [-1.636117163345289, 49.63385998098007], + [-1.636123211021794, 49.633900292647155], + [-1.635593609901471, 49.63448032507528], + [-1.635520649788752, 49.63462329891644], + [-1.63550721492175, 49.634748022982], + [-1.635820045418208, 49.63476911894884], + [-1.635840672493716, 49.63477050943911], + [-1.635841049476694, 49.634773127302665] + ] + }, + "length": 0.4381640551856535, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47618", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14999", + "bus2": "MVLV08398", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.635841049476694, 49.634773127302665], + [-1.635841426459672, 49.63477574516622], + [-1.635821553346, 49.634779590403326], + [-1.635550093268688, 49.634832095102794], + [-1.635664012652769, 49.6350055816361], + [-1.636591689691463, 49.63577518043326], + [-1.636679071056393, 49.635758676503016], + [-1.63708686538294, 49.6360337385233], + [-1.637361074302147, 49.6360981750974], + [-1.637589349554886, 49.63580219858483], + [-1.638039340086554, 49.63499347476092], + [-1.638289201666341, 49.634656240245576], + [-1.638634159332553, 49.634277930599175], + [-1.638958332950398, 49.63401918175254], + [-1.639021278278921, 49.634021913794186], + [-1.639041977160807, 49.63402280679316], + [-1.6390459138036424, 49.63402854933457] + ] + }, + "length": 0.48789488430663863, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48097", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08398", + "bus2": "MVLV12652", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6390459138036424, 49.63402854933457], + [-1.639049850446478, 49.63403429187598], + [-1.639037024145002, 49.63404487499249], + [-1.638665100343765, 49.63435160352485], + [-1.638307797931881, 49.63478256447805], + [-1.638106754627051, 49.635123526501125], + [-1.63801504687924, 49.63529146048344], + [-1.637702503657229, 49.635829835257084], + [-1.637346356100177, 49.63632648785034], + [-1.637316260918098, 49.63646799072023], + [-1.637344675655574, 49.63659578155421], + [-1.63806560372496, 49.63741387998031], + [-1.638297729308869, 49.637608521672696], + [-1.638389257041214, 49.63754055228617], + [-1.638575730788286, 49.637412593949755], + [-1.638704439188519, 49.637324437100574], + [-1.638848061837624, 49.637249278162365], + [-1.638958776005897, 49.63734467003524], + [-1.638971259222029, 49.637355428012505], + [-1.638968848385021, 49.637357094424615] + ] + }, + "length": 0.5184452215196655, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48098", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12652", + "bus2": "MVLV05297", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.638968848385021, 49.637357094424615], + [-1.638966437548013, 49.63735876083673], + [-1.638949132657638, 49.63735133568258], + [-1.638851579028358, 49.63730949186741], + [-1.63873813544902, 49.637363803543096], + [-1.638407823573902, 49.637598445767445], + [-1.638364613078203, 49.63766385553251], + [-1.638388647125302, 49.63772066103881], + [-1.638416429576165, 49.637925913978656], + [-1.638416192457304, 49.638144731209124], + [-1.638373306666615, 49.638282167480355], + [-1.638057440729805, 49.638694605385226], + [-1.637965199702405, 49.638822027792465], + [-1.637965430563779, 49.63891026145871], + [-1.638004818479327, 49.638951230424304], + [-1.638092889110663, 49.63899413302123], + [-1.63877915186501, 49.63904443623959], + [-1.63896371174802, 49.6390975373099], + [-1.639059793876908, 49.6391536732344], + [-1.639208799139909, 49.639315140023506], + [-1.639299087818756, 49.639197690359225], + [-1.639577103507555, 49.63903597601949], + [-1.639829066569106, 49.63889496374282], + [-1.6399397108025, 49.638805079838065], + [-1.639952667308894, 49.63879455537669], + [-1.639959248554075, 49.63879602948194] + ] + }, + "length": 0.3974522975554689, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46568", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05297", + "bus2": "MVLV09570", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.639959248554075, 49.63879602948194], + [-1.639965829799256, 49.638797503587185], + [-1.639966035788674, 49.63881097626038], + [-1.639967257525591, 49.63888932189757], + [-1.639645520265935, 49.639075944915106], + [-1.639366487642173, 49.639242197980224], + [-1.63927250887082, 49.63943361366409], + [-1.639396425730311, 49.63961035577717], + [-1.639652215381613, 49.63982309156921], + [-1.640108556896245, 49.64018292720363], + [-1.640533040445249, 49.64038987020893], + [-1.640546525482417, 49.640470447113145], + [-1.639675421587061, 49.64125040963323], + [-1.639481898437506, 49.641216011395976], + [-1.639461888769574, 49.641212451992445], + [-1.63946043427207, 49.64121448711107] + ] + }, + "length": 0.3650441293007164, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40361", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09570", + "bus2": "MVLV12653", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.63946043427207, 49.64121448711107], + [-1.639458979774566, 49.641216522229705], + [-1.639476080449809, 49.64122415187133], + [-1.639683600765282, 49.64131676438078], + [-1.64068150921359, 49.64040818677782], + [-1.640887587961767, 49.64014628790694], + [-1.644171208973684, 49.638927857599484], + [-1.64428673169505, 49.63897718078914], + [-1.644318920544687, 49.6389627584152], + [-1.644338413031792, 49.63895402355153], + [-1.644358078893798, 49.638975533132474], + [-1.6443562607887543, 49.6389795586048] + ] + }, + "length": 0.4669884179506195, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36627", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12653", + "bus2": "MVLV11399", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6443562607887543, 49.6389795586048], + [-1.644354442683711, 49.63898358407713], + [-1.644341484641298, 49.63897580972107], + [-1.64431221897523, 49.63898635009178], + [-1.644083251218079, 49.639068812430104], + [-1.644049925087927, 49.639066006932666], + [-1.643416793236225, 49.639300740312706], + [-1.64234071659645, 49.63969041694624], + [-1.642313656300076, 49.63969072292798], + [-1.642286559576219, 49.63971256665703], + [-1.642272274399176, 49.63973622787448], + [-1.642268508814327, 49.63976179099838], + [-1.642275307266666, 49.63978680866261], + [-1.64229381287406, 49.63985485589073], + [-1.642298229374185, 49.639891758820205], + [-1.6422963252767, 49.63993301518811], + [-1.642306709394434, 49.63997080081436], + [-1.642324215479645, 49.64000314553674], + [-1.642366244560662, 49.64003425164088], + [-1.643149472359707, 49.64027070854595], + [-1.643372968196262, 49.640315507596256], + [-1.644269956512475, 49.64042813873789], + [-1.644463330123872, 49.6405248149741], + [-1.644948851272993, 49.64077670026519], + [-1.64502448710858, 49.640815933974544], + [-1.645050424422166, 49.64082074503685], + [-1.645085687724743, 49.64082121145061], + [-1.645265479792314, 49.64067476811369], + [-1.645257810229435, 49.640625670900505], + [-1.645266095880195, 49.6405439906876], + [-1.645310002109757, 49.64046008533303], + [-1.645354514661471, 49.64040469258168], + [-1.646150853461462, 49.639782265379274], + [-1.646114346535756, 49.63976072629444], + [-1.646069898907712, 49.639734493983944], + [-1.6460659248127212, 49.639737506922216] + ] + }, + "length": 0.5787472439158112, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35327", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11399", + "bus2": "MVLV04231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6460659248127212, 49.639737506922216], + [-1.64606195071773, 49.639740519860496], + [-1.646093149700323, 49.639759518115184], + [-1.646124672057415, 49.6397817699229], + [-1.645328351952258, 49.640399475364944], + [-1.645239669058761, 49.64051641827852], + [-1.645219919945549, 49.640631459771726], + [-1.645267500765176, 49.64077299645827], + [-1.645427656290168, 49.64088365109329], + [-1.645567042801381, 49.640926585051105], + [-1.646070229610008, 49.640958822655975], + [-1.646493025667394, 49.64088936857456], + [-1.646578976558907, 49.641076409888626], + [-1.646332048174622, 49.641123660385475], + [-1.646312156764923, 49.641127471896915], + [-1.646312245039197, 49.64113108389712] + ] + }, + "length": 0.2773931594553408, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04231", + "bus2": "MVLV11405", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.646312245039197, 49.64113108389712], + [-1.646312333313471, 49.64113469589732], + [-1.646332400576789, 49.641138099417056], + [-1.64638929169922, 49.64114776257148], + [-1.646465911461812, 49.641135221264015], + [-1.647468170294519, 49.64157441542898], + [-1.647531228487287, 49.641526890592324], + [-1.647544763217454, 49.641516687975574], + [-1.647550106185192, 49.64151825643697] + ] + }, + "length": 0.10725795298864516, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40083", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11405", + "bus2": "MVBus12237", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.647550106185192, 49.64151825643697], + [-1.64755544915293, 49.64151982489835], + [-1.64755258655046, 49.641533164894355], + [-1.64753921110418, 49.6415953827838], + [-1.647802942966988, 49.64171779166659], + [-1.648518368419918, 49.640883683645974], + [-1.648709963215433, 49.64066549177969], + [-1.649108113422299, 49.64022588000555], + [-1.649304569597744, 49.640152492077895], + [-1.649857742140985, 49.6400326151903], + [-1.650244623831524, 49.639913956479624], + [-1.650460275625328, 49.63982099574473], + [-1.650496238664297, 49.63974470580285], + [-1.650496238664297, 49.63974470580285] + ] + }, + "length": 0.33971650173458107, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35711", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus12237", + "bus2": "MVLV18350", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.650496238664297, 49.63974470580285], + [-1.650496238664297, 49.63974470580285], + [-1.650660042441741, 49.639397217347735], + [-1.650760130258705, 49.639179458157635], + [-1.650898886543457, 49.638993695288484], + [-1.651054410995333, 49.6390140505196], + [-1.651074751689997, 49.63901670685257], + [-1.651074590691024, 49.63901863203041] + ] + }, + "length": 0.1016162327368625, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18350", + "bus2": "MVBus14816", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.651074590691024, 49.63901863203041], + [-1.651074429692051, 49.63902055720824], + [-1.651053766996355, 49.63902175123091], + [-1.650941908923001, 49.63902823688537], + [-1.650813048943413, 49.639199249705825], + [-1.650599191799031, 49.639671242519334], + [-1.650618491574853, 49.63968679231682], + [-1.650618491574853, 49.63968679231682] + ] + }, + "length": 0.08772869175221151, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42064", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14816", + "bus2": "MVLV03811", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.650618491574853, 49.63968679231682], + [-1.650618491574853, 49.63968679231682], + [-1.650649419530767, 49.63969203110701], + [-1.650896448212984, 49.63947372456891], + [-1.651060356855154, 49.63937533808456], + [-1.651340187279704, 49.639287371933406], + [-1.651882934967807, 49.63915883668519], + [-1.652252046266686, 49.63877154385866], + [-1.652732366453812, 49.63893150685109], + [-1.652776162489081, 49.63892459447715], + [-1.653214572297203, 49.63845206618083], + [-1.653474392560019, 49.6384926535827], + [-1.653595009370922, 49.63879825359426], + [-1.654104179475812, 49.638748231431165], + [-1.654123502483668, 49.63874283669681], + [-1.6541252575873528, 49.638747481781465] + ] + }, + "length": 0.3601161017125795, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45474", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03811", + "bus2": "MVBus16883", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6541252575873528, 49.638747481781465], + [-1.654127012691038, 49.638752126866116], + [-1.654105733162639, 49.63875251447646], + [-1.653552253645229, 49.63886906771035], + [-1.65341874946993, 49.6385413940442], + [-1.653241525771431, 49.63851057138921], + [-1.652808208186489, 49.63896040585052], + [-1.652719656668124, 49.638979666671084], + [-1.652283155193622, 49.6388299031483], + [-1.651915051041601, 49.63919555417702], + [-1.651432398001215, 49.63931205401539], + [-1.651432398001215, 49.63931205401539] + ] + }, + "length": 0.2817171104650044, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48001", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16883", + "bus2": "MVLV13412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.651432398001215, 49.63931205401539], + [-1.651432398001215, 49.63931205401539], + [-1.651539420756827, 49.63950292976816], + [-1.651638644275705, 49.63956344872928], + [-1.651840627490261, 49.63964294199691], + [-1.652201280681457, 49.639610722175355], + [-1.652215841766864, 49.63965295551304], + [-1.652220372963897, 49.639666096735695], + [-1.65221236758308, 49.63967359517768] + ] + }, + "length": 0.08209146022616265, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39121", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13412", + "bus2": "MVLV18345", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.65221236758308, 49.63967359517768], + [-1.652204362202263, 49.63968109361968], + [-1.652183820239769, 49.63968294927789], + [-1.651838125471654, 49.6397141630449], + [-1.65160775122422, 49.639626640852505], + [-1.651490287994571, 49.63963158531766], + [-1.650234707607045, 49.640863379787525], + [-1.650098091771922, 49.64099053961909], + [-1.649890696923969, 49.64115075058477], + [-1.649802102888521, 49.64123754284771], + [-1.649782416963892, 49.64131925768361], + [-1.649782682789002, 49.641407499610274], + [-1.649830687473214, 49.641503097052194], + [-1.649854628236146, 49.641514240581486], + [-1.649871484272061, 49.64152208369566], + [-1.649879448220405, 49.64153273332219] + ] + }, + "length": 0.3047157335410305, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48000", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18345", + "bus2": "MVLV13415", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.649879448220405, 49.64153273332219], + [-1.649887412168749, 49.64154338294871], + [-1.649886484023854, 49.641556839089816], + [-1.649885167545114, 49.64157595521354], + [-1.650640928915735, 49.64223971374455], + [-1.650616292508886, 49.64229458795612], + [-1.650935110580489, 49.642531246755496], + [-1.65090402460911, 49.64266017863752], + [-1.650711429521012, 49.64288291171144], + [-1.6507539664566, 49.642945381496], + [-1.650777366007957, 49.6430112159862], + [-1.65083402053864, 49.64300718963283], + [-1.650854635485899, 49.64300571851925], + [-1.6508752731227425, 49.643005599995846] + ] + }, + "length": 0.20042162447610118, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44048", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13415", + "bus2": "MVLV09698", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6508752731227425, 49.643005599995846], + [-1.650895910759586, 49.64300548147244], + [-1.650916571088205, 49.643006715539215], + [-1.650942129039795, 49.64300824670489], + [-1.650965250810021, 49.643104700169616], + [-1.65105923380534, 49.643134782551606], + [-1.651225575911102, 49.64321910320288], + [-1.651885317702551, 49.64294338287878], + [-1.652339564305473, 49.64276656413314], + [-1.652794186959223, 49.642594236296674], + [-1.653071176407749, 49.642437029759236], + [-1.652878698673592, 49.642236547595466], + [-1.652972324269701, 49.64214844501973], + [-1.652984113160115, 49.642137355177276], + [-1.6529876825128729, 49.64213837494104] + ] + }, + "length": 0.2362052800999093, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43580", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09698", + "bus2": "MVLV10769", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6529876825128729, 49.64213837494104], + [-1.652991251865631, 49.642139394704806], + [-1.652986615495288, 49.64215252362001], + [-1.652959841240036, 49.64222835813295], + [-1.653134824867502, 49.64240152317148], + [-1.65385911400153, 49.64201640970799], + [-1.65456601827232, 49.64157155351364], + [-1.654467619367898, 49.641453377631095], + [-1.654143751682042, 49.64130785185104], + [-1.654135222460471, 49.64130768373213], + [-1.654114489206905, 49.641307279935994], + [-1.6541095942725872, 49.641301353664915] + ] + }, + "length": 0.2173999289241804, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35246", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10769", + "bus2": "MVBus20991", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6541095942725872, 49.641301353664915], + [-1.654104699338269, 49.64129542739384], + [-1.65411564271796, 49.641283978650286], + [-1.654143582189238, 49.64125473062572], + [-1.654557771437561, 49.64141966611486], + [-1.654679164728723, 49.641547846775495], + [-1.654989499613677, 49.641323755515046], + [-1.655216166305802, 49.64128414309542], + [-1.655216166305802, 49.64128414309542] + ] + }, + "length": 0.10763084810328495, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48002", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20991", + "bus2": "MVBus20992", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.655216166305802, 49.64128414309542], + [-1.655216166305802, 49.64128414309542], + [-1.655220537558186, 49.64128337831457], + [-1.655491739086301, 49.64086883331258], + [-1.656129360184936, 49.64103596349636], + [-1.65593306820143, 49.64134888681329], + [-1.657084904119485, 49.64202236996449], + [-1.65745195708432, 49.64188286054988], + [-1.65745195708432, 49.64188286054988] + ] + }, + "length": 0.2803324611564285, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39122", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20992", + "bus2": "MVLV07448", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.65745195708432, 49.64188286054988], + [-1.65745195708432, 49.64188286054988], + [-1.658082785218181, 49.6416431026881], + [-1.658694681352662, 49.641308656606704], + [-1.659331818477574, 49.641079590959734], + [-1.659949508147983, 49.64081606719898], + [-1.659626206785389, 49.640575981894294], + [-1.659647198570433, 49.64051042599123], + [-1.659697348232264, 49.64052238300647], + [-1.659716821180919, 49.640527026938834], + [-1.6597185284257365, 49.64053361589109] + ] + }, + "length": 0.26481803791881875, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07448", + "bus2": "MVBus22688", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6597185284257365, 49.64053361589109], + [-1.659720235670554, 49.64054020484333], + [-1.659704177202618, 49.640548738816385], + [-1.659676486503199, 49.64056344833813], + [-1.6599921371994, 49.64079478500969], + [-1.659992378774546, 49.640794687101014], + [-1.659992378774546, 49.640794687101014] + ] + }, + "length": 0.03848083419059896, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32649", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22688", + "bus2": "MVLV03816", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.659992378774546, 49.640794687101014], + [-1.659992378774546, 49.640794687101014], + [-1.660116767884211, 49.64074186382945], + [-1.660193609082822, 49.64073201308521], + [-1.660286350546354, 49.640679282526726], + [-1.66138303867216, 49.64023715397212], + [-1.661681960126204, 49.64017912448387], + [-1.662031265553016, 49.64016076614031], + [-1.662205796455039, 49.6401754609696], + [-1.662308453266365, 49.64014220210014], + [-1.662475149163483, 49.64001038150107], + [-1.66253502367219, 49.64015392542268], + [-1.662540446858687, 49.640166928930896], + [-1.662536295709962, 49.64016837911976] + ] + }, + "length": 0.22438681816102976, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44041", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03816", + "bus2": "MVBus23620", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.662536295709962, 49.64016837911976], + [-1.662532144561237, 49.640169829308626], + [-1.662518419079961, 49.640159726176854], + [-1.662461766055652, 49.64011799571136], + [-1.662357033913708, 49.64019365063426], + [-1.662211427082928, 49.64022748468934], + [-1.662040547026729, 49.640206374442315], + [-1.661726821522564, 49.64021899711267], + [-1.661597576669094, 49.64023246110374], + [-1.661435397851312, 49.64026686915751], + [-1.661299412489788, 49.640316579269125], + [-1.660348294472718, 49.64069066057588], + [-1.660204469097215, 49.64076315446508], + [-1.660145158031175, 49.64076699436688], + [-1.659996802038395, 49.64083115791717], + [-1.659996802038395, 49.64083115791717] + ] + }, + "length": 0.20913294003905575, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23620", + "bus2": "MVLV07432", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.659996802038395, 49.64083115791717], + [-1.659996802038395, 49.64083115791717], + [-1.659380444626252, 49.64109772227726], + [-1.659140708717718, 49.64118432808581], + [-1.658728974744375, 49.64133808858412], + [-1.658105511078215, 49.64166664030131], + [-1.657531450704516, 49.64188722183268], + [-1.657532249951541, 49.64190343564625], + [-1.657532917082162, 49.64191690215948], + [-1.6575239274670255, 49.64192659162776] + ] + }, + "length": 0.2170797616003997, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42379", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07432", + "bus2": "MVBus24548", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6575239274670255, 49.64192659162776], + [-1.657514937851889, 49.64193628109604], + [-1.657496291486325, 49.64194219351673], + [-1.657444379034266, 49.64195865572616], + [-1.657058771295908, 49.64212682508635], + [-1.657141335844526, 49.64218700870806], + [-1.656003997670152, 49.643388681197486], + [-1.656148855867594, 49.643410380628715], + [-1.656148855867594, 49.643410380628715] + ] + }, + "length": 0.2158005688277706, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24548", + "bus2": "MVLV07449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.656148855867594, 49.643410380628715], + [-1.656148855867594, 49.643410380628715], + [-1.656194923354919, 49.643417222386894], + [-1.656738194632793, 49.64349845915087], + [-1.656790925572272, 49.643490126359595], + [-1.656827448007215, 49.643492849874725], + [-1.656814930263436, 49.643563583421624], + [-1.656779340903672, 49.64357401186656], + [-1.656748883420937, 49.64357481986947], + [-1.656753704082444, 49.64358792438161], + [-1.6567571961044585, 49.643587777587335] + ] + }, + "length": 0.06469131730334167, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38010", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07449", + "bus2": "MVLV09703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6567571961044585, 49.643587777587335], + [-1.656760688126473, 49.64358763079306], + [-1.656762865317555, 49.6435742322364], + [-1.656811325843143, 49.64345992178081], + [-1.657655775113307, 49.643459646661036], + [-1.657997146442916, 49.643496506180064], + [-1.658076443629988, 49.643567614923775], + [-1.658192438693261, 49.64354470118388], + [-1.658952598209877, 49.64298812852086], + [-1.658993654353312, 49.64304711966371], + [-1.659002204508429, 49.64305939048056], + [-1.658996118190359, 49.643065130887315] + ] + }, + "length": 0.21063109279689207, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46845", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09703", + "bus2": "MVLV18342", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.658996118190359, 49.643065130887315], + [-1.658990031872289, 49.64307087129407], + [-1.658969322186735, 49.643070071862404], + [-1.65892449989707, 49.643068342635594], + [-1.658208563053226, 49.643606278689674], + [-1.658100656760502, 49.6436262095341], + [-1.657659742520849, 49.644152861691424], + [-1.657510191598952, 49.6443930321688], + [-1.657506833422237, 49.644487697565665], + [-1.657539273902358, 49.64456222467523], + [-1.65761727152215, 49.644651379263685], + [-1.658074285600113, 49.644576205123684], + [-1.658251358808419, 49.64455389050545], + [-1.658579443128843, 49.644547089073704], + [-1.658855710209731, 49.6445339596879], + [-1.659092911526592, 49.64453479073927], + [-1.659495293136491, 49.6445038062746], + [-1.65970910613214, 49.64447302753859], + [-1.659825620984186, 49.64447351121549], + [-1.65990817220958, 49.64448237410184], + [-1.65995870086818, 49.64452384946089], + [-1.660042974487446, 49.64470644159026], + [-1.660060080500669, 49.64491565883973], + [-1.660070625879779, 49.64493694590819], + [-1.660076976245524, 49.644949765942705], + [-1.6600719941933777, 49.64495201682858] + ] + }, + "length": 0.4397899318735527, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44843", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18342", + "bus2": "MVBus27018", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6600719941933777, 49.64495201682858], + [-1.660067012141231, 49.64495426771445], + [-1.660050697673322, 49.64494594944991], + [-1.660013870035083, 49.64492715863281], + [-1.659978416466031, 49.644714069582434], + [-1.659927025332948, 49.644594281346066], + [-1.65988340142915, 49.64455255979306], + [-1.659816058827658, 49.64452607281718], + [-1.659724051170582, 49.64452023807497], + [-1.659495257327107, 49.64455423657293], + [-1.659111788171217, 49.644579164720945], + [-1.658397671655415, 49.64459657240175], + [-1.658070104652004, 49.64462677230284], + [-1.657851272124693, 49.644664026516146], + [-1.657633974862949, 49.644703028078986], + [-1.657634719606587, 49.644704226437895], + [-1.657634719606587, 49.644704226437895] + ] + }, + "length": 0.21357803317857346, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41421", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus27018", + "bus2": "MVLV09708", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.657634719606587, 49.644704226437895], + [-1.657634719606587, 49.644704226437895], + [-1.657664292338596, 49.64475151151773], + [-1.657580617679955, 49.644796719176455], + [-1.657442456397958, 49.64472939782915], + [-1.657439087271788, 49.64472775560201], + [-1.657423368284804, 49.64473109837805], + [-1.657412445196616, 49.644739889471886] + ] + }, + "length": 0.02751185685333837, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47229", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09708", + "bus2": "MVLV09694", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.657412445196616, 49.644739889471886], + [-1.657401522108428, 49.64474868056572], + [-1.657399414799996, 49.64476208580523], + [-1.65739907235909, 49.644764255276804], + [-1.657502906004958, 49.64483001279945], + [-1.657323372007246, 49.64495776176338], + [-1.657178261704638, 49.64509962451894], + [-1.656824109619514, 49.645890730458646], + [-1.656770728074614, 49.645950197012475], + [-1.656733121640904, 49.64598210269145], + [-1.656648951737143, 49.64615699517837], + [-1.656610729852612, 49.64636812006485], + [-1.656613523323564, 49.646419346981055], + [-1.656720240911991, 49.64665609773091], + [-1.656840043122258, 49.64700224839765], + [-1.656859339587067, 49.6471195363736], + [-1.656959627902545, 49.647107978602584], + [-1.658261104004475, 49.64647153496391], + [-1.658558577327586, 49.64637843870743], + [-1.658861895009906, 49.64630585791982], + [-1.660200893378413, 49.6460949103272], + [-1.660334739939459, 49.64633550982234], + [-1.660341785159396, 49.646348180972836], + [-1.6603547873034665, 49.64635177979386] + ] + }, + "length": 0.5855644909898856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38003", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09694", + "bus2": "MVLV07442", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6603547873034665, 49.64635177979386], + [-1.660367789447537, 49.64635537861489], + [-1.660386748508173, 49.646349905103975], + [-1.660440958669088, 49.6463342651152], + [-1.660302984589314, 49.646071582063726], + [-1.661443514821132, 49.645892682181376], + [-1.662697368394136, 49.64572606585913], + [-1.662609127743163, 49.64549498489922], + [-1.662581775291376, 49.64504209882583], + [-1.662679523020576, 49.644864036523124], + [-1.662904615461019, 49.64492020400318], + [-1.662971660037774, 49.64484135356547], + [-1.663063203528207, 49.644350138803354], + [-1.662984000159303, 49.6443292344434], + [-1.662964782453086, 49.64432415991343], + [-1.6629655446157925, 49.64432178319872] + ] + }, + "length": 0.4018757368413863, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44847", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07442", + "bus2": "MVBus30879", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6629655446157925, 49.64432178319872], + [-1.662966306778499, 49.644319406484016], + [-1.662987048806569, 49.64431972758408], + [-1.663071914837724, 49.64432102111243], + [-1.663101017778056, 49.64413452778075], + [-1.662930895909558, 49.64398732021816], + [-1.663034357139217, 49.643862186336314], + [-1.663225682295771, 49.64355662739682], + [-1.663255220394122, 49.643544805523845], + [-1.663253723380739, 49.643542139341996], + [-1.663253723380739, 49.643542139341996] + ] + }, + "length": 0.1042534145496487, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34679", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30879", + "bus2": "MVLV18352", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.663253723380739, 49.643542139341996], + [-1.663253723380739, 49.643542139341996], + [-1.66318867360354, 49.643426436848614], + [-1.66273674641831, 49.64308904504723], + [-1.66268344918048, 49.64296302598479], + [-1.662610795711255, 49.64290095346879], + [-1.662604427902253, 49.6428955078606], + [-1.662605725837441, 49.642888927468704], + [-1.662616546426261, 49.642884936673234] + ] + }, + "length": 0.08813950731615683, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48004", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18352", + "bus2": "MVBus31654", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.662616546426261, 49.642884936673234], + [-1.662627367015081, 49.642880945877764], + [-1.662633895413466, 49.64288278921881], + [-1.662642199918083, 49.64288979839457], + [-1.662712845657741, 49.64294940144363], + [-1.662769567540072, 49.64308341836134], + [-1.663214068013565, 49.64341475204477], + [-1.663289227604252, 49.64353346527948], + [-1.663289227604252, 49.64353346527948] + ] + }, + "length": 0.08847193216769035, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34678", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus31654", + "bus2": "MVLV10771", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.663289227604252, 49.64353346527948], + [-1.663289227604252, 49.64353346527948], + [-1.663290507510662, 49.643535482198466], + [-1.663364095862103, 49.64353654603603], + [-1.66420036870149, 49.643588723566374], + [-1.664338852350405, 49.64356953800206], + [-1.664384328483134, 49.64354905938166], + [-1.66445033596179, 49.64354228023878], + [-1.664737529852291, 49.64356117522943], + [-1.664744997595997, 49.64359527906002], + [-1.664747913803706, 49.643608617196286], + [-1.6647535760701795, 49.643609126740216] + ] + }, + "length": 0.11146509204153157, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35247", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10771", + "bus2": "MVLV07445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6647535760701795, 49.643609126740216], + [-1.664759238336653, 49.64360963628415], + [-1.664767646656303, 49.64359731723524], + [-1.664789219079585, 49.64356569653633], + [-1.664939594249154, 49.643590224468035], + [-1.665315946043783, 49.643681685798896], + [-1.665396237788029, 49.64344298709537], + [-1.665551887193883, 49.643426208480065], + [-1.665572347472744, 49.64342400259442], + [-1.6655735383084749, 49.643426206784554] + ] + }, + "length": 0.08563439623109449, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35248", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07445", + "bus2": "MVLV18348", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6655735383084749, 49.643426206784554], + [-1.665574729144206, 49.643428410974686], + [-1.665556650533887, 49.643435025241374], + [-1.665443360066482, 49.643476479903825], + [-1.665367480133459, 49.64368440452684], + [-1.665555777430121, 49.64371482561238], + [-1.665740438642227, 49.643734557898995], + [-1.665938981760998, 49.64373760813035], + [-1.666373159424007, 49.64370551200061], + [-1.666475707226651, 49.64370467108537], + [-1.66689483243525, 49.64375953333262], + [-1.666922424598168, 49.64377478815005], + [-1.666931105149032, 49.643796100505696], + [-1.666884304028332, 49.64388505615675], + [-1.666531193668102, 49.64416199514881], + [-1.666460689453163, 49.64418153160582], + [-1.666371583420357, 49.64417226967476], + [-1.666351101155336, 49.6441701420776], + [-1.6663493738929815, 49.64417292395164] + ] + }, + "length": 0.2154444704255203, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40081", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18348", + "bus2": "MVBus33535", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6663493738929815, 49.64417292395164], + [-1.666347646630627, 49.644175705825695], + [-1.666364674374363, 49.644183397172014], + [-1.666460209697166, 49.644226572418866], + [-1.666535687506332, 49.64421676295277], + [-1.666923648583876, 49.64392511858885], + [-1.666967969649731, 49.64383985099012], + [-1.666994279483576, 49.6438056180891], + [-1.667039036422541, 49.64379327340822], + [-1.667101478164154, 49.64379381379485], + [-1.667295385296576, 49.64382493672678], + [-1.667591685433351, 49.64383631159785], + [-1.668271134787657, 49.64380203052457], + [-1.668306361702929, 49.64380428993486], + [-1.668306361702929, 49.64380428993486] + ] + }, + "length": 0.16825509452722598, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39997", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus33535", + "bus2": "MVLV15132", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.668306361702929, 49.64380428993486], + [-1.668306361702929, 49.64380428993486], + [-1.668301560943159, 49.6437340023798], + [-1.668325485566482, 49.643730062657404], + [-1.668351170007161, 49.643717674723874], + [-1.668363070401259, 49.64370469120321], + [-1.668332734943276, 49.64352422901104], + [-1.668346182337516, 49.64346923564381], + [-1.668308740509139, 49.64342431765364], + [-1.668250024141815, 49.64338639894637], + [-1.668215654921807, 49.6433642019151], + [-1.668166609722962, 49.64331153903314], + [-1.668145027090293, 49.64326295740102], + [-1.668131708312377, 49.64316531821767], + [-1.668102411799664, 49.6429506413113], + [-1.667992576488419, 49.64218179386824], + [-1.668010879536981, 49.642146485933026], + [-1.667997117452306, 49.64212306681962], + [-1.667995968679526, 49.641906027680406], + [-1.667618794520165, 49.641833621000856], + [-1.667624429478351, 49.64181121411131], + [-1.667628303059409, 49.64179582568794], + [-1.667628303059409, 49.64179582568794] + ] + }, + "length": 0.25210504809617895, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV02718_production", + "bus": "MVLV02718", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV02718_consumption", + "bus": "MVLV02718", + "phases": "abc", + "powers": [ + [11775.30728580249, 3870.35633844014], + [11775.30728580249, 3870.35633844014], + [11775.30728580249, 3870.35633844014] + ] + }, + { + "id": "MVLV15555_production", + "bus": "MVLV15555", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV15555_consumption", + "bus": "MVLV15555", + "phases": "abc", + "powers": [ + [17555.516158160633, 5770.219119398102], + [17555.516158160633, 5770.219119398102], + [17555.516158160633, 5770.219119398102] + ] + }, + { + "id": "MVLV07323_production", + "bus": "MVLV07323", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV07323_consumption", + "bus": "MVLV07323", + "phases": "abc", + "powers": [ + [11775.30728580249, 3870.35633844014], + [11775.30728580249, 3870.35633844014], + [11775.30728580249, 3870.35633844014] + ] + }, + { + "id": "MVLV05293_production", + "bus": "MVLV05293", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV05293_consumption", + "bus": "MVLV05293", + "phases": "abc", + "powers": [ + [17555.516158160633, 5770.219119398102], + [17555.516158160633, 5770.219119398102], + [17555.516158160633, 5770.219119398102] + ] + }, + { + "id": "MVLV14999_production", + "bus": "MVLV14999", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV14999_consumption", + "bus": "MVLV14999", + "phases": "abc", + "powers": [ + [11775.30728580249, 3870.35633844014], + [11775.30728580249, 3870.35633844014], + [11775.30728580249, 3870.35633844014] + ] + }, + { + "id": "MVLV08398_production", + "bus": "MVLV08398", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV08398_consumption", + "bus": "MVLV08398", + "phases": "abc", + "powers": [ + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183] + ] + }, + { + "id": "MVLV12652_production", + "bus": "MVLV12652", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV12652_consumption", + "bus": "MVLV12652", + "phases": "abc", + "powers": [ + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183] + ] + }, + { + "id": "MVLV05297_production", + "bus": "MVLV05297", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV05297_consumption", + "bus": "MVLV05297", + "phases": "abc", + "powers": [ + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183] + ] + }, + { + "id": "MVLV09570_production", + "bus": "MVLV09570", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09570_consumption", + "bus": "MVLV09570", + "phases": "abc", + "powers": [ + [14973.828223667879, 4921.659330798283], + [14973.828223667879, 4921.659330798283], + [14973.828223667879, 4921.659330798283] + ] + }, + { + "id": "MVLV12653_production", + "bus": "MVLV12653", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV12653_consumption", + "bus": "MVLV12653", + "phases": "abc", + "powers": [ + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183] + ] + }, + { + "id": "MVLV11399_production", + "bus": "MVLV11399", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV11399_consumption", + "bus": "MVLV11399", + "phases": "abc", + "powers": [ + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183], + [10227.536204334823, 3361.6285855062183] + ] + }, + { + "id": "MVLV04231_production", + "bus": "MVLV04231", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV04231_consumption", + "bus": "MVLV04231", + "phases": "abc", + "powers": [ + [10095.567043529632, 3318.2524199757586], + [10095.567043529632, 3318.2524199757586], + [10095.567043529632, 3318.2524199757586] + ] + }, + { + "id": "MVLV11405_production", + "bus": "MVLV11405", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV11405_consumption", + "bus": "MVLV11405", + "phases": "abc", + "powers": [ + [10095.567043529632, 3318.2524199757586], + [10095.567043529632, 3318.2524199757586], + [10095.567043529632, 3318.2524199757586] + ] + }, + { + "id": "MVLV18350_production", + "bus": "MVLV18350", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV18350_consumption", + "bus": "MVLV18350", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV03811_production", + "bus": "MVLV03811", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV03811_consumption", + "bus": "MVLV03811", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV13412_production", + "bus": "MVLV13412", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV13412_consumption", + "bus": "MVLV13412", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV18345_production", + "bus": "MVLV18345", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV18345_consumption", + "bus": "MVLV18345", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV13415_production", + "bus": "MVLV13415", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV13415_consumption", + "bus": "MVLV13415", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV09698_production", + "bus": "MVLV09698", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09698_consumption", + "bus": "MVLV09698", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV10769_production", + "bus": "MVLV10769", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV10769_consumption", + "bus": "MVLV10769", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV07448_production", + "bus": "MVLV07448", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV07448_consumption", + "bus": "MVLV07448", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV03816_production", + "bus": "MVLV03816", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV03816_consumption", + "bus": "MVLV03816", + "phases": "abc", + "powers": [ + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005] + ] + }, + { + "id": "MVLV07432_production", + "bus": "MVLV07432", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV07432_consumption", + "bus": "MVLV07432", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV07449_production", + "bus": "MVLV07449", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV07449_consumption", + "bus": "MVLV07449", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV09703_production", + "bus": "MVLV09703", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09703_consumption", + "bus": "MVLV09703", + "phases": "abc", + "powers": [ + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005] + ] + }, + { + "id": "MVLV18342_production", + "bus": "MVLV18342", + "phases": "abc", + "powers": [ + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0] + ] + }, + { + "id": "MVLV18342_consumption", + "bus": "MVLV18342", + "phases": "abc", + "powers": [ + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666] + ] + }, + { + "id": "MVLV09708_production", + "bus": "MVLV09708", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09708_consumption", + "bus": "MVLV09708", + "phases": "abc", + "powers": [ + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983], + [3029.5983764685384, 995.7808314208983] + ] + }, + { + "id": "MVLV09694_production", + "bus": "MVLV09694", + "phases": "abc", + "powers": [ + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0] + ] + }, + { + "id": "MVLV09694_consumption", + "bus": "MVLV09694", + "phases": "abc", + "powers": [ + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666] + ] + }, + { + "id": "MVLV07442_production", + "bus": "MVLV07442", + "phases": "abc", + "powers": [ + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0] + ] + }, + { + "id": "MVLV07442_consumption", + "bus": "MVLV07442", + "phases": "abc", + "powers": [ + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666] + ] + }, + { + "id": "MVLV18352_production", + "bus": "MVLV18352", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV18352_consumption", + "bus": "MVLV18352", + "phases": "abc", + "powers": [ + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005] + ] + }, + { + "id": "MVLV10771_production", + "bus": "MVLV10771", + "phases": "abc", + "powers": [ + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0] + ] + }, + { + "id": "MVLV10771_consumption", + "bus": "MVLV10771", + "phases": "abc", + "powers": [ + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666] + ] + }, + { + "id": "MVLV07445_production", + "bus": "MVLV07445", + "phases": "abc", + "powers": [ + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0] + ] + }, + { + "id": "MVLV07445_consumption", + "bus": "MVLV07445", + "phases": "abc", + "powers": [ + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666] + ] + }, + { + "id": "MVLV18348_production", + "bus": "MVLV18348", + "phases": "abc", + "powers": [ + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0], + [-1209.9138804457953, 0.0] + ] + }, + { + "id": "MVLV18348_consumption", + "bus": "MVLV18348", + "phases": "abc", + "powers": [ + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666], + [5341.081411476661, 1755.528564418666] + ] + }, + { + "id": "MVLV15132_production", + "bus": "MVLV15132", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV15132_consumption", + "bus": "MVLV15132", + "phases": "abc", + "powers": [ + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005], + [5036.204550630183, 1655.3203862216005] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder011_Winter.json b/roseau/load_flow/data/networks/MVFeeder011_Winter.json new file mode 100644 index 00000000..017d8ea6 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder011_Winter.json @@ -0,0 +1,2606 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "HVMV01", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBus00044", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.629037146508968, 49.631786313338594] + } + }, + { + "id": "MVLV02718", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.629721806268463, 49.63252940750905] + } + }, + { + "id": "MVBus04664", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.629054408189043, 49.63178058553094] + } + }, + { + "id": "MVLV15555", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6314148687770316, 49.63085635792388] + } + }, + { + "id": "MVLV07323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6316298971813121, 49.63271781685638] + } + }, + { + "id": "MVLV05293", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6353965365500425, 49.63201285071942] + } + }, + { + "id": "MVLV14999", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.635841049476694, 49.634773127302665] + } + }, + { + "id": "MVLV08398", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6390459138036424, 49.63402854933457] + } + }, + { + "id": "MVLV12652", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.638968848385021, 49.637357094424615] + } + }, + { + "id": "MVLV05297", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.639959248554075, 49.63879602948194] + } + }, + { + "id": "MVLV09570", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.63946043427207, 49.64121448711107] + } + }, + { + "id": "MVLV12653", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6443562607887543, 49.6389795586048] + } + }, + { + "id": "MVLV11399", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6460659248127212, 49.639737506922216] + } + }, + { + "id": "MVLV04231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.646312245039197, 49.64113108389712] + } + }, + { + "id": "MVLV11405", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.647550106185192, 49.64151825643697] + } + }, + { + "id": "MVBus12237", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.650496238664297, 49.63974470580285] + } + }, + { + "id": "MVLV18350", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.651074590691024, 49.63901863203041] + } + }, + { + "id": "MVBus14816", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.650618491574853, 49.63968679231682] + } + }, + { + "id": "MVLV03811", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6541252575873528, 49.638747481781465] + } + }, + { + "id": "MVBus16883", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.651432398001215, 49.63931205401539] + } + }, + { + "id": "MVLV13412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.65221236758308, 49.63967359517768] + } + }, + { + "id": "MVLV18345", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.649879448220405, 49.64153273332219] + } + }, + { + "id": "MVLV13415", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6508752731227425, 49.643005599995846] + } + }, + { + "id": "MVLV09698", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6529876825128729, 49.64213837494104] + } + }, + { + "id": "MVLV10769", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6541095942725872, 49.641301353664915] + } + }, + { + "id": "MVBus20991", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.655216166305802, 49.64128414309542] + } + }, + { + "id": "MVBus20992", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.65745195708432, 49.64188286054988] + } + }, + { + "id": "MVLV07448", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6597185284257365, 49.64053361589109] + } + }, + { + "id": "MVBus22688", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.659992378774546, 49.640794687101014] + } + }, + { + "id": "MVLV03816", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.662536295709962, 49.64016837911976] + } + }, + { + "id": "MVBus23620", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.659996802038395, 49.64083115791717] + } + }, + { + "id": "MVLV07432", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6575239274670255, 49.64192659162776] + } + }, + { + "id": "MVBus24548", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.656148855867594, 49.643410380628715] + } + }, + { + "id": "MVLV07449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6567571961044585, 49.643587777587335] + } + }, + { + "id": "MVLV09703", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.658996118190359, 49.643065130887315] + } + }, + { + "id": "MVLV18342", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6600719941933777, 49.64495201682858] + } + }, + { + "id": "MVBus27018", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.657634719606587, 49.644704226437895] + } + }, + { + "id": "MVLV09708", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.657412445196616, 49.644739889471886] + } + }, + { + "id": "MVLV09694", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6603547873034665, 49.64635177979386] + } + }, + { + "id": "MVLV07442", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6629655446157925, 49.64432178319872] + } + }, + { + "id": "MVBus30879", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.663253723380739, 49.643542139341996] + } + }, + { + "id": "MVLV18352", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.662616546426261, 49.642884936673234] + } + }, + { + "id": "MVBus31654", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.663289227604252, 49.64353346527948] + } + }, + { + "id": "MVLV10771", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6647535760701795, 49.643609126740216] + } + }, + { + "id": "MVLV07445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6655735383084749, 49.643426206784554] + } + }, + { + "id": "MVLV18348", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6663493738929815, 49.64417292395164] + } + }, + { + "id": "MVBus33535", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.668306361702929, 49.64380428993486] + } + }, + { + "id": "MVLV15132", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.667628303059409, 49.64179582568794] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV01", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBranch35532", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV01", + "bus2": "MVBus00044", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.624837162156209, 49.633717544204686], + [-1.624857219640409, 49.6337141083832], + [-1.624857219640409, 49.6337141083832], + [-1.624877277121907, 49.63371067255838], + [-1.626841753354714, 49.633374369702], + [-1.626970821395788, 49.632863001185015], + [-1.627065085349288, 49.63221326701406], + [-1.628389424343872, 49.63197887072164], + [-1.629037146508968, 49.631786313338594], + [-1.629037146508968, 49.631786313338594] + ] + }, + "length": 0.4290980676603243, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37188", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00044", + "bus2": "MVLV02718", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.629037146508968, 49.631786313338594], + [-1.629037146508968, 49.631786313338594], + [-1.629087268966014, 49.63183962110722], + [-1.629124914790215, 49.63188167512199], + [-1.629237382699548, 49.632007312962884], + [-1.629285671175313, 49.63205999739848], + [-1.629406587306548, 49.63216625831035], + [-1.629493192893915, 49.63224237849463], + [-1.62950876337733, 49.632253890385876], + [-1.629564221460388, 49.63228429039874], + [-1.629665246248013, 49.63253424404885], + [-1.629692017284508, 49.632533473668154], + [-1.629721178745731, 49.632532642841646], + [-1.629721806268463, 49.63252940750905] + ] + }, + "length": 0.10029828063164829, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35531", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02718", + "bus2": "MVBus04664", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.629721806268463, 49.63252940750905], + [-1.629722433791195, 49.63252617217645], + [-1.629693429524349, 49.63252581985572], + [-1.629671533905962, 49.6325255490427], + [-1.629578464447906, 49.63227944388576], + [-1.629504495049261, 49.63223834785071], + [-1.629287186398984, 49.63205064066636], + [-1.629140324102071, 49.63187883164821], + [-1.629054408189043, 49.63178058553094], + [-1.629054408189043, 49.63178058553094] + ] + }, + "length": 0.09943991949583805, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41689", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04664", + "bus2": "MVLV15555", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.629054408189043, 49.63178058553094], + [-1.629054408189043, 49.63178058553094], + [-1.629870759692084, 49.63150946533126], + [-1.63027631851721, 49.631450567390445], + [-1.630600109782255, 49.631443080677386], + [-1.631074676946586, 49.63151688103458], + [-1.631554981820415, 49.63162739569132], + [-1.631587939581892, 49.63152091498697], + [-1.63153580027118, 49.63123726426095], + [-1.631446068432871, 49.63113948661905], + [-1.63118012390842, 49.631090961348335], + [-1.631101680168486, 49.63102971744659], + [-1.631087767063798, 49.63096085231079], + [-1.631395105697174, 49.63086115655988], + [-1.631413659111113, 49.63085513420778], + [-1.6314148687770316, 49.63085635792388] + ] + }, + "length": 0.31109997665373856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44818", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15555", + "bus2": "MVLV07323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6314148687770316, 49.63085635792388], + [-1.63141607844295, 49.63085758163999], + [-1.631399944359874, 49.630866051425], + [-1.631195535837741, 49.630973375553545], + [-1.631224203720729, 49.63103632505266], + [-1.631498892849788, 49.631089949591676], + [-1.631567725847643, 49.6311353135501], + [-1.631630454198624, 49.63120790875985], + [-1.631686602970617, 49.6315409485384], + [-1.631665012619333, 49.63165064407811], + [-1.631963485824913, 49.63170705689989], + [-1.632002849551236, 49.63174802858317], + [-1.631537724766073, 49.632524828008705], + [-1.631616810933443, 49.63270603484414], + [-1.63162365659792, 49.63271875007037], + [-1.6316298971813121, 49.63271781685638] + ] + }, + "length": 0.2573909011875716, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36001", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07323", + "bus2": "MVLV05293", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6316298971813121, 49.63271781685638], + [-1.631636137764704, 49.63271688364239], + [-1.63163327830876, 49.63270166360753], + [-1.63163071600396, 49.63256037071055], + [-1.632093659469166, 49.63175662062328], + [-1.632171230775994, 49.631738661263284], + [-1.633199876177523, 49.63180697770677], + [-1.633823682906284, 49.631874751766034], + [-1.634897520452441, 49.63193610238032], + [-1.635384301904561, 49.631938328580226], + [-1.63540089567572, 49.63199300530112], + [-1.635404901302026, 49.63200621831591], + [-1.6353965365500425, 49.63201285071942] + ] + }, + "length": 0.3599441207244474, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36772", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05293", + "bus2": "MVLV14999", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6353965365500425, 49.63201285071942], + [-1.635388171798059, 49.632019483122924], + [-1.635367436665667, 49.632019534911876], + [-1.634926574478434, 49.632020655980526], + [-1.635143157896667, 49.63362863380854], + [-1.635298149022477, 49.63365934035967], + [-1.635340459302301, 49.63383888469], + [-1.635484774546945, 49.6339086716564], + [-1.636117163345289, 49.63385998098007], + [-1.636123211021794, 49.633900292647155], + [-1.635593609901471, 49.63448032507528], + [-1.635520649788752, 49.63462329891644], + [-1.63550721492175, 49.634748022982], + [-1.635820045418208, 49.63476911894884], + [-1.635840672493716, 49.63477050943911], + [-1.635841049476694, 49.634773127302665] + ] + }, + "length": 0.4381640551856535, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47618", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14999", + "bus2": "MVLV08398", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.635841049476694, 49.634773127302665], + [-1.635841426459672, 49.63477574516622], + [-1.635821553346, 49.634779590403326], + [-1.635550093268688, 49.634832095102794], + [-1.635664012652769, 49.6350055816361], + [-1.636591689691463, 49.63577518043326], + [-1.636679071056393, 49.635758676503016], + [-1.63708686538294, 49.6360337385233], + [-1.637361074302147, 49.6360981750974], + [-1.637589349554886, 49.63580219858483], + [-1.638039340086554, 49.63499347476092], + [-1.638289201666341, 49.634656240245576], + [-1.638634159332553, 49.634277930599175], + [-1.638958332950398, 49.63401918175254], + [-1.639021278278921, 49.634021913794186], + [-1.639041977160807, 49.63402280679316], + [-1.6390459138036424, 49.63402854933457] + ] + }, + "length": 0.48789488430663863, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48097", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08398", + "bus2": "MVLV12652", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6390459138036424, 49.63402854933457], + [-1.639049850446478, 49.63403429187598], + [-1.639037024145002, 49.63404487499249], + [-1.638665100343765, 49.63435160352485], + [-1.638307797931881, 49.63478256447805], + [-1.638106754627051, 49.635123526501125], + [-1.63801504687924, 49.63529146048344], + [-1.637702503657229, 49.635829835257084], + [-1.637346356100177, 49.63632648785034], + [-1.637316260918098, 49.63646799072023], + [-1.637344675655574, 49.63659578155421], + [-1.63806560372496, 49.63741387998031], + [-1.638297729308869, 49.637608521672696], + [-1.638389257041214, 49.63754055228617], + [-1.638575730788286, 49.637412593949755], + [-1.638704439188519, 49.637324437100574], + [-1.638848061837624, 49.637249278162365], + [-1.638958776005897, 49.63734467003524], + [-1.638971259222029, 49.637355428012505], + [-1.638968848385021, 49.637357094424615] + ] + }, + "length": 0.5184452215196655, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48098", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12652", + "bus2": "MVLV05297", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.638968848385021, 49.637357094424615], + [-1.638966437548013, 49.63735876083673], + [-1.638949132657638, 49.63735133568258], + [-1.638851579028358, 49.63730949186741], + [-1.63873813544902, 49.637363803543096], + [-1.638407823573902, 49.637598445767445], + [-1.638364613078203, 49.63766385553251], + [-1.638388647125302, 49.63772066103881], + [-1.638416429576165, 49.637925913978656], + [-1.638416192457304, 49.638144731209124], + [-1.638373306666615, 49.638282167480355], + [-1.638057440729805, 49.638694605385226], + [-1.637965199702405, 49.638822027792465], + [-1.637965430563779, 49.63891026145871], + [-1.638004818479327, 49.638951230424304], + [-1.638092889110663, 49.63899413302123], + [-1.63877915186501, 49.63904443623959], + [-1.63896371174802, 49.6390975373099], + [-1.639059793876908, 49.6391536732344], + [-1.639208799139909, 49.639315140023506], + [-1.639299087818756, 49.639197690359225], + [-1.639577103507555, 49.63903597601949], + [-1.639829066569106, 49.63889496374282], + [-1.6399397108025, 49.638805079838065], + [-1.639952667308894, 49.63879455537669], + [-1.639959248554075, 49.63879602948194] + ] + }, + "length": 0.3974522975554689, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46568", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05297", + "bus2": "MVLV09570", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.639959248554075, 49.63879602948194], + [-1.639965829799256, 49.638797503587185], + [-1.639966035788674, 49.63881097626038], + [-1.639967257525591, 49.63888932189757], + [-1.639645520265935, 49.639075944915106], + [-1.639366487642173, 49.639242197980224], + [-1.63927250887082, 49.63943361366409], + [-1.639396425730311, 49.63961035577717], + [-1.639652215381613, 49.63982309156921], + [-1.640108556896245, 49.64018292720363], + [-1.640533040445249, 49.64038987020893], + [-1.640546525482417, 49.640470447113145], + [-1.639675421587061, 49.64125040963323], + [-1.639481898437506, 49.641216011395976], + [-1.639461888769574, 49.641212451992445], + [-1.63946043427207, 49.64121448711107] + ] + }, + "length": 0.3650441293007164, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40361", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09570", + "bus2": "MVLV12653", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.63946043427207, 49.64121448711107], + [-1.639458979774566, 49.641216522229705], + [-1.639476080449809, 49.64122415187133], + [-1.639683600765282, 49.64131676438078], + [-1.64068150921359, 49.64040818677782], + [-1.640887587961767, 49.64014628790694], + [-1.644171208973684, 49.638927857599484], + [-1.64428673169505, 49.63897718078914], + [-1.644318920544687, 49.6389627584152], + [-1.644338413031792, 49.63895402355153], + [-1.644358078893798, 49.638975533132474], + [-1.6443562607887543, 49.6389795586048] + ] + }, + "length": 0.4669884179506195, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36627", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12653", + "bus2": "MVLV11399", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6443562607887543, 49.6389795586048], + [-1.644354442683711, 49.63898358407713], + [-1.644341484641298, 49.63897580972107], + [-1.64431221897523, 49.63898635009178], + [-1.644083251218079, 49.639068812430104], + [-1.644049925087927, 49.639066006932666], + [-1.643416793236225, 49.639300740312706], + [-1.64234071659645, 49.63969041694624], + [-1.642313656300076, 49.63969072292798], + [-1.642286559576219, 49.63971256665703], + [-1.642272274399176, 49.63973622787448], + [-1.642268508814327, 49.63976179099838], + [-1.642275307266666, 49.63978680866261], + [-1.64229381287406, 49.63985485589073], + [-1.642298229374185, 49.639891758820205], + [-1.6422963252767, 49.63993301518811], + [-1.642306709394434, 49.63997080081436], + [-1.642324215479645, 49.64000314553674], + [-1.642366244560662, 49.64003425164088], + [-1.643149472359707, 49.64027070854595], + [-1.643372968196262, 49.640315507596256], + [-1.644269956512475, 49.64042813873789], + [-1.644463330123872, 49.6405248149741], + [-1.644948851272993, 49.64077670026519], + [-1.64502448710858, 49.640815933974544], + [-1.645050424422166, 49.64082074503685], + [-1.645085687724743, 49.64082121145061], + [-1.645265479792314, 49.64067476811369], + [-1.645257810229435, 49.640625670900505], + [-1.645266095880195, 49.6405439906876], + [-1.645310002109757, 49.64046008533303], + [-1.645354514661471, 49.64040469258168], + [-1.646150853461462, 49.639782265379274], + [-1.646114346535756, 49.63976072629444], + [-1.646069898907712, 49.639734493983944], + [-1.6460659248127212, 49.639737506922216] + ] + }, + "length": 0.5787472439158112, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35327", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11399", + "bus2": "MVLV04231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6460659248127212, 49.639737506922216], + [-1.64606195071773, 49.639740519860496], + [-1.646093149700323, 49.639759518115184], + [-1.646124672057415, 49.6397817699229], + [-1.645328351952258, 49.640399475364944], + [-1.645239669058761, 49.64051641827852], + [-1.645219919945549, 49.640631459771726], + [-1.645267500765176, 49.64077299645827], + [-1.645427656290168, 49.64088365109329], + [-1.645567042801381, 49.640926585051105], + [-1.646070229610008, 49.640958822655975], + [-1.646493025667394, 49.64088936857456], + [-1.646578976558907, 49.641076409888626], + [-1.646332048174622, 49.641123660385475], + [-1.646312156764923, 49.641127471896915], + [-1.646312245039197, 49.64113108389712] + ] + }, + "length": 0.2773931594553408, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04231", + "bus2": "MVLV11405", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.646312245039197, 49.64113108389712], + [-1.646312333313471, 49.64113469589732], + [-1.646332400576789, 49.641138099417056], + [-1.64638929169922, 49.64114776257148], + [-1.646465911461812, 49.641135221264015], + [-1.647468170294519, 49.64157441542898], + [-1.647531228487287, 49.641526890592324], + [-1.647544763217454, 49.641516687975574], + [-1.647550106185192, 49.64151825643697] + ] + }, + "length": 0.10725795298864516, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40083", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11405", + "bus2": "MVBus12237", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.647550106185192, 49.64151825643697], + [-1.64755544915293, 49.64151982489835], + [-1.64755258655046, 49.641533164894355], + [-1.64753921110418, 49.6415953827838], + [-1.647802942966988, 49.64171779166659], + [-1.648518368419918, 49.640883683645974], + [-1.648709963215433, 49.64066549177969], + [-1.649108113422299, 49.64022588000555], + [-1.649304569597744, 49.640152492077895], + [-1.649857742140985, 49.6400326151903], + [-1.650244623831524, 49.639913956479624], + [-1.650460275625328, 49.63982099574473], + [-1.650496238664297, 49.63974470580285], + [-1.650496238664297, 49.63974470580285] + ] + }, + "length": 0.33971650173458107, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35711", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus12237", + "bus2": "MVLV18350", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.650496238664297, 49.63974470580285], + [-1.650496238664297, 49.63974470580285], + [-1.650660042441741, 49.639397217347735], + [-1.650760130258705, 49.639179458157635], + [-1.650898886543457, 49.638993695288484], + [-1.651054410995333, 49.6390140505196], + [-1.651074751689997, 49.63901670685257], + [-1.651074590691024, 49.63901863203041] + ] + }, + "length": 0.1016162327368625, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18350", + "bus2": "MVBus14816", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.651074590691024, 49.63901863203041], + [-1.651074429692051, 49.63902055720824], + [-1.651053766996355, 49.63902175123091], + [-1.650941908923001, 49.63902823688537], + [-1.650813048943413, 49.639199249705825], + [-1.650599191799031, 49.639671242519334], + [-1.650618491574853, 49.63968679231682], + [-1.650618491574853, 49.63968679231682] + ] + }, + "length": 0.08772869175221151, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42064", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14816", + "bus2": "MVLV03811", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.650618491574853, 49.63968679231682], + [-1.650618491574853, 49.63968679231682], + [-1.650649419530767, 49.63969203110701], + [-1.650896448212984, 49.63947372456891], + [-1.651060356855154, 49.63937533808456], + [-1.651340187279704, 49.639287371933406], + [-1.651882934967807, 49.63915883668519], + [-1.652252046266686, 49.63877154385866], + [-1.652732366453812, 49.63893150685109], + [-1.652776162489081, 49.63892459447715], + [-1.653214572297203, 49.63845206618083], + [-1.653474392560019, 49.6384926535827], + [-1.653595009370922, 49.63879825359426], + [-1.654104179475812, 49.638748231431165], + [-1.654123502483668, 49.63874283669681], + [-1.6541252575873528, 49.638747481781465] + ] + }, + "length": 0.3601161017125795, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45474", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03811", + "bus2": "MVBus16883", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6541252575873528, 49.638747481781465], + [-1.654127012691038, 49.638752126866116], + [-1.654105733162639, 49.63875251447646], + [-1.653552253645229, 49.63886906771035], + [-1.65341874946993, 49.6385413940442], + [-1.653241525771431, 49.63851057138921], + [-1.652808208186489, 49.63896040585052], + [-1.652719656668124, 49.638979666671084], + [-1.652283155193622, 49.6388299031483], + [-1.651915051041601, 49.63919555417702], + [-1.651432398001215, 49.63931205401539], + [-1.651432398001215, 49.63931205401539] + ] + }, + "length": 0.2817171104650044, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48001", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16883", + "bus2": "MVLV13412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.651432398001215, 49.63931205401539], + [-1.651432398001215, 49.63931205401539], + [-1.651539420756827, 49.63950292976816], + [-1.651638644275705, 49.63956344872928], + [-1.651840627490261, 49.63964294199691], + [-1.652201280681457, 49.639610722175355], + [-1.652215841766864, 49.63965295551304], + [-1.652220372963897, 49.639666096735695], + [-1.65221236758308, 49.63967359517768] + ] + }, + "length": 0.08209146022616265, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39121", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13412", + "bus2": "MVLV18345", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.65221236758308, 49.63967359517768], + [-1.652204362202263, 49.63968109361968], + [-1.652183820239769, 49.63968294927789], + [-1.651838125471654, 49.6397141630449], + [-1.65160775122422, 49.639626640852505], + [-1.651490287994571, 49.63963158531766], + [-1.650234707607045, 49.640863379787525], + [-1.650098091771922, 49.64099053961909], + [-1.649890696923969, 49.64115075058477], + [-1.649802102888521, 49.64123754284771], + [-1.649782416963892, 49.64131925768361], + [-1.649782682789002, 49.641407499610274], + [-1.649830687473214, 49.641503097052194], + [-1.649854628236146, 49.641514240581486], + [-1.649871484272061, 49.64152208369566], + [-1.649879448220405, 49.64153273332219] + ] + }, + "length": 0.3047157335410305, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48000", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18345", + "bus2": "MVLV13415", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.649879448220405, 49.64153273332219], + [-1.649887412168749, 49.64154338294871], + [-1.649886484023854, 49.641556839089816], + [-1.649885167545114, 49.64157595521354], + [-1.650640928915735, 49.64223971374455], + [-1.650616292508886, 49.64229458795612], + [-1.650935110580489, 49.642531246755496], + [-1.65090402460911, 49.64266017863752], + [-1.650711429521012, 49.64288291171144], + [-1.6507539664566, 49.642945381496], + [-1.650777366007957, 49.6430112159862], + [-1.65083402053864, 49.64300718963283], + [-1.650854635485899, 49.64300571851925], + [-1.6508752731227425, 49.643005599995846] + ] + }, + "length": 0.20042162447610118, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44048", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13415", + "bus2": "MVLV09698", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6508752731227425, 49.643005599995846], + [-1.650895910759586, 49.64300548147244], + [-1.650916571088205, 49.643006715539215], + [-1.650942129039795, 49.64300824670489], + [-1.650965250810021, 49.643104700169616], + [-1.65105923380534, 49.643134782551606], + [-1.651225575911102, 49.64321910320288], + [-1.651885317702551, 49.64294338287878], + [-1.652339564305473, 49.64276656413314], + [-1.652794186959223, 49.642594236296674], + [-1.653071176407749, 49.642437029759236], + [-1.652878698673592, 49.642236547595466], + [-1.652972324269701, 49.64214844501973], + [-1.652984113160115, 49.642137355177276], + [-1.6529876825128729, 49.64213837494104] + ] + }, + "length": 0.2362052800999093, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43580", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09698", + "bus2": "MVLV10769", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6529876825128729, 49.64213837494104], + [-1.652991251865631, 49.642139394704806], + [-1.652986615495288, 49.64215252362001], + [-1.652959841240036, 49.64222835813295], + [-1.653134824867502, 49.64240152317148], + [-1.65385911400153, 49.64201640970799], + [-1.65456601827232, 49.64157155351364], + [-1.654467619367898, 49.641453377631095], + [-1.654143751682042, 49.64130785185104], + [-1.654135222460471, 49.64130768373213], + [-1.654114489206905, 49.641307279935994], + [-1.6541095942725872, 49.641301353664915] + ] + }, + "length": 0.2173999289241804, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35246", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10769", + "bus2": "MVBus20991", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6541095942725872, 49.641301353664915], + [-1.654104699338269, 49.64129542739384], + [-1.65411564271796, 49.641283978650286], + [-1.654143582189238, 49.64125473062572], + [-1.654557771437561, 49.64141966611486], + [-1.654679164728723, 49.641547846775495], + [-1.654989499613677, 49.641323755515046], + [-1.655216166305802, 49.64128414309542], + [-1.655216166305802, 49.64128414309542] + ] + }, + "length": 0.10763084810328495, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48002", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20991", + "bus2": "MVBus20992", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.655216166305802, 49.64128414309542], + [-1.655216166305802, 49.64128414309542], + [-1.655220537558186, 49.64128337831457], + [-1.655491739086301, 49.64086883331258], + [-1.656129360184936, 49.64103596349636], + [-1.65593306820143, 49.64134888681329], + [-1.657084904119485, 49.64202236996449], + [-1.65745195708432, 49.64188286054988], + [-1.65745195708432, 49.64188286054988] + ] + }, + "length": 0.2803324611564285, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39122", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20992", + "bus2": "MVLV07448", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.65745195708432, 49.64188286054988], + [-1.65745195708432, 49.64188286054988], + [-1.658082785218181, 49.6416431026881], + [-1.658694681352662, 49.641308656606704], + [-1.659331818477574, 49.641079590959734], + [-1.659949508147983, 49.64081606719898], + [-1.659626206785389, 49.640575981894294], + [-1.659647198570433, 49.64051042599123], + [-1.659697348232264, 49.64052238300647], + [-1.659716821180919, 49.640527026938834], + [-1.6597185284257365, 49.64053361589109] + ] + }, + "length": 0.26481803791881875, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07448", + "bus2": "MVBus22688", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6597185284257365, 49.64053361589109], + [-1.659720235670554, 49.64054020484333], + [-1.659704177202618, 49.640548738816385], + [-1.659676486503199, 49.64056344833813], + [-1.6599921371994, 49.64079478500969], + [-1.659992378774546, 49.640794687101014], + [-1.659992378774546, 49.640794687101014] + ] + }, + "length": 0.03848083419059896, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32649", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22688", + "bus2": "MVLV03816", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.659992378774546, 49.640794687101014], + [-1.659992378774546, 49.640794687101014], + [-1.660116767884211, 49.64074186382945], + [-1.660193609082822, 49.64073201308521], + [-1.660286350546354, 49.640679282526726], + [-1.66138303867216, 49.64023715397212], + [-1.661681960126204, 49.64017912448387], + [-1.662031265553016, 49.64016076614031], + [-1.662205796455039, 49.6401754609696], + [-1.662308453266365, 49.64014220210014], + [-1.662475149163483, 49.64001038150107], + [-1.66253502367219, 49.64015392542268], + [-1.662540446858687, 49.640166928930896], + [-1.662536295709962, 49.64016837911976] + ] + }, + "length": 0.22438681816102976, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44041", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03816", + "bus2": "MVBus23620", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.662536295709962, 49.64016837911976], + [-1.662532144561237, 49.640169829308626], + [-1.662518419079961, 49.640159726176854], + [-1.662461766055652, 49.64011799571136], + [-1.662357033913708, 49.64019365063426], + [-1.662211427082928, 49.64022748468934], + [-1.662040547026729, 49.640206374442315], + [-1.661726821522564, 49.64021899711267], + [-1.661597576669094, 49.64023246110374], + [-1.661435397851312, 49.64026686915751], + [-1.661299412489788, 49.640316579269125], + [-1.660348294472718, 49.64069066057588], + [-1.660204469097215, 49.64076315446508], + [-1.660145158031175, 49.64076699436688], + [-1.659996802038395, 49.64083115791717], + [-1.659996802038395, 49.64083115791717] + ] + }, + "length": 0.20913294003905575, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23620", + "bus2": "MVLV07432", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.659996802038395, 49.64083115791717], + [-1.659996802038395, 49.64083115791717], + [-1.659380444626252, 49.64109772227726], + [-1.659140708717718, 49.64118432808581], + [-1.658728974744375, 49.64133808858412], + [-1.658105511078215, 49.64166664030131], + [-1.657531450704516, 49.64188722183268], + [-1.657532249951541, 49.64190343564625], + [-1.657532917082162, 49.64191690215948], + [-1.6575239274670255, 49.64192659162776] + ] + }, + "length": 0.2170797616003997, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42379", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07432", + "bus2": "MVBus24548", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6575239274670255, 49.64192659162776], + [-1.657514937851889, 49.64193628109604], + [-1.657496291486325, 49.64194219351673], + [-1.657444379034266, 49.64195865572616], + [-1.657058771295908, 49.64212682508635], + [-1.657141335844526, 49.64218700870806], + [-1.656003997670152, 49.643388681197486], + [-1.656148855867594, 49.643410380628715], + [-1.656148855867594, 49.643410380628715] + ] + }, + "length": 0.2158005688277706, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24548", + "bus2": "MVLV07449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.656148855867594, 49.643410380628715], + [-1.656148855867594, 49.643410380628715], + [-1.656194923354919, 49.643417222386894], + [-1.656738194632793, 49.64349845915087], + [-1.656790925572272, 49.643490126359595], + [-1.656827448007215, 49.643492849874725], + [-1.656814930263436, 49.643563583421624], + [-1.656779340903672, 49.64357401186656], + [-1.656748883420937, 49.64357481986947], + [-1.656753704082444, 49.64358792438161], + [-1.6567571961044585, 49.643587777587335] + ] + }, + "length": 0.06469131730334167, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38010", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07449", + "bus2": "MVLV09703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6567571961044585, 49.643587777587335], + [-1.656760688126473, 49.64358763079306], + [-1.656762865317555, 49.6435742322364], + [-1.656811325843143, 49.64345992178081], + [-1.657655775113307, 49.643459646661036], + [-1.657997146442916, 49.643496506180064], + [-1.658076443629988, 49.643567614923775], + [-1.658192438693261, 49.64354470118388], + [-1.658952598209877, 49.64298812852086], + [-1.658993654353312, 49.64304711966371], + [-1.659002204508429, 49.64305939048056], + [-1.658996118190359, 49.643065130887315] + ] + }, + "length": 0.21063109279689207, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46845", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09703", + "bus2": "MVLV18342", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.658996118190359, 49.643065130887315], + [-1.658990031872289, 49.64307087129407], + [-1.658969322186735, 49.643070071862404], + [-1.65892449989707, 49.643068342635594], + [-1.658208563053226, 49.643606278689674], + [-1.658100656760502, 49.6436262095341], + [-1.657659742520849, 49.644152861691424], + [-1.657510191598952, 49.6443930321688], + [-1.657506833422237, 49.644487697565665], + [-1.657539273902358, 49.64456222467523], + [-1.65761727152215, 49.644651379263685], + [-1.658074285600113, 49.644576205123684], + [-1.658251358808419, 49.64455389050545], + [-1.658579443128843, 49.644547089073704], + [-1.658855710209731, 49.6445339596879], + [-1.659092911526592, 49.64453479073927], + [-1.659495293136491, 49.6445038062746], + [-1.65970910613214, 49.64447302753859], + [-1.659825620984186, 49.64447351121549], + [-1.65990817220958, 49.64448237410184], + [-1.65995870086818, 49.64452384946089], + [-1.660042974487446, 49.64470644159026], + [-1.660060080500669, 49.64491565883973], + [-1.660070625879779, 49.64493694590819], + [-1.660076976245524, 49.644949765942705], + [-1.6600719941933777, 49.64495201682858] + ] + }, + "length": 0.4397899318735527, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44843", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18342", + "bus2": "MVBus27018", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6600719941933777, 49.64495201682858], + [-1.660067012141231, 49.64495426771445], + [-1.660050697673322, 49.64494594944991], + [-1.660013870035083, 49.64492715863281], + [-1.659978416466031, 49.644714069582434], + [-1.659927025332948, 49.644594281346066], + [-1.65988340142915, 49.64455255979306], + [-1.659816058827658, 49.64452607281718], + [-1.659724051170582, 49.64452023807497], + [-1.659495257327107, 49.64455423657293], + [-1.659111788171217, 49.644579164720945], + [-1.658397671655415, 49.64459657240175], + [-1.658070104652004, 49.64462677230284], + [-1.657851272124693, 49.644664026516146], + [-1.657633974862949, 49.644703028078986], + [-1.657634719606587, 49.644704226437895], + [-1.657634719606587, 49.644704226437895] + ] + }, + "length": 0.21357803317857346, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41421", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus27018", + "bus2": "MVLV09708", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.657634719606587, 49.644704226437895], + [-1.657634719606587, 49.644704226437895], + [-1.657664292338596, 49.64475151151773], + [-1.657580617679955, 49.644796719176455], + [-1.657442456397958, 49.64472939782915], + [-1.657439087271788, 49.64472775560201], + [-1.657423368284804, 49.64473109837805], + [-1.657412445196616, 49.644739889471886] + ] + }, + "length": 0.02751185685333837, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47229", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09708", + "bus2": "MVLV09694", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.657412445196616, 49.644739889471886], + [-1.657401522108428, 49.64474868056572], + [-1.657399414799996, 49.64476208580523], + [-1.65739907235909, 49.644764255276804], + [-1.657502906004958, 49.64483001279945], + [-1.657323372007246, 49.64495776176338], + [-1.657178261704638, 49.64509962451894], + [-1.656824109619514, 49.645890730458646], + [-1.656770728074614, 49.645950197012475], + [-1.656733121640904, 49.64598210269145], + [-1.656648951737143, 49.64615699517837], + [-1.656610729852612, 49.64636812006485], + [-1.656613523323564, 49.646419346981055], + [-1.656720240911991, 49.64665609773091], + [-1.656840043122258, 49.64700224839765], + [-1.656859339587067, 49.6471195363736], + [-1.656959627902545, 49.647107978602584], + [-1.658261104004475, 49.64647153496391], + [-1.658558577327586, 49.64637843870743], + [-1.658861895009906, 49.64630585791982], + [-1.660200893378413, 49.6460949103272], + [-1.660334739939459, 49.64633550982234], + [-1.660341785159396, 49.646348180972836], + [-1.6603547873034665, 49.64635177979386] + ] + }, + "length": 0.5855644909898856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38003", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09694", + "bus2": "MVLV07442", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6603547873034665, 49.64635177979386], + [-1.660367789447537, 49.64635537861489], + [-1.660386748508173, 49.646349905103975], + [-1.660440958669088, 49.6463342651152], + [-1.660302984589314, 49.646071582063726], + [-1.661443514821132, 49.645892682181376], + [-1.662697368394136, 49.64572606585913], + [-1.662609127743163, 49.64549498489922], + [-1.662581775291376, 49.64504209882583], + [-1.662679523020576, 49.644864036523124], + [-1.662904615461019, 49.64492020400318], + [-1.662971660037774, 49.64484135356547], + [-1.663063203528207, 49.644350138803354], + [-1.662984000159303, 49.6443292344434], + [-1.662964782453086, 49.64432415991343], + [-1.6629655446157925, 49.64432178319872] + ] + }, + "length": 0.4018757368413863, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44847", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07442", + "bus2": "MVBus30879", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6629655446157925, 49.64432178319872], + [-1.662966306778499, 49.644319406484016], + [-1.662987048806569, 49.64431972758408], + [-1.663071914837724, 49.64432102111243], + [-1.663101017778056, 49.64413452778075], + [-1.662930895909558, 49.64398732021816], + [-1.663034357139217, 49.643862186336314], + [-1.663225682295771, 49.64355662739682], + [-1.663255220394122, 49.643544805523845], + [-1.663253723380739, 49.643542139341996], + [-1.663253723380739, 49.643542139341996] + ] + }, + "length": 0.1042534145496487, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34679", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30879", + "bus2": "MVLV18352", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.663253723380739, 49.643542139341996], + [-1.663253723380739, 49.643542139341996], + [-1.66318867360354, 49.643426436848614], + [-1.66273674641831, 49.64308904504723], + [-1.66268344918048, 49.64296302598479], + [-1.662610795711255, 49.64290095346879], + [-1.662604427902253, 49.6428955078606], + [-1.662605725837441, 49.642888927468704], + [-1.662616546426261, 49.642884936673234] + ] + }, + "length": 0.08813950731615683, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48004", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18352", + "bus2": "MVBus31654", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.662616546426261, 49.642884936673234], + [-1.662627367015081, 49.642880945877764], + [-1.662633895413466, 49.64288278921881], + [-1.662642199918083, 49.64288979839457], + [-1.662712845657741, 49.64294940144363], + [-1.662769567540072, 49.64308341836134], + [-1.663214068013565, 49.64341475204477], + [-1.663289227604252, 49.64353346527948], + [-1.663289227604252, 49.64353346527948] + ] + }, + "length": 0.08847193216769035, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34678", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus31654", + "bus2": "MVLV10771", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.663289227604252, 49.64353346527948], + [-1.663289227604252, 49.64353346527948], + [-1.663290507510662, 49.643535482198466], + [-1.663364095862103, 49.64353654603603], + [-1.66420036870149, 49.643588723566374], + [-1.664338852350405, 49.64356953800206], + [-1.664384328483134, 49.64354905938166], + [-1.66445033596179, 49.64354228023878], + [-1.664737529852291, 49.64356117522943], + [-1.664744997595997, 49.64359527906002], + [-1.664747913803706, 49.643608617196286], + [-1.6647535760701795, 49.643609126740216] + ] + }, + "length": 0.11146509204153157, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35247", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10771", + "bus2": "MVLV07445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6647535760701795, 49.643609126740216], + [-1.664759238336653, 49.64360963628415], + [-1.664767646656303, 49.64359731723524], + [-1.664789219079585, 49.64356569653633], + [-1.664939594249154, 49.643590224468035], + [-1.665315946043783, 49.643681685798896], + [-1.665396237788029, 49.64344298709537], + [-1.665551887193883, 49.643426208480065], + [-1.665572347472744, 49.64342400259442], + [-1.6655735383084749, 49.643426206784554] + ] + }, + "length": 0.08563439623109449, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35248", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07445", + "bus2": "MVLV18348", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6655735383084749, 49.643426206784554], + [-1.665574729144206, 49.643428410974686], + [-1.665556650533887, 49.643435025241374], + [-1.665443360066482, 49.643476479903825], + [-1.665367480133459, 49.64368440452684], + [-1.665555777430121, 49.64371482561238], + [-1.665740438642227, 49.643734557898995], + [-1.665938981760998, 49.64373760813035], + [-1.666373159424007, 49.64370551200061], + [-1.666475707226651, 49.64370467108537], + [-1.66689483243525, 49.64375953333262], + [-1.666922424598168, 49.64377478815005], + [-1.666931105149032, 49.643796100505696], + [-1.666884304028332, 49.64388505615675], + [-1.666531193668102, 49.64416199514881], + [-1.666460689453163, 49.64418153160582], + [-1.666371583420357, 49.64417226967476], + [-1.666351101155336, 49.6441701420776], + [-1.6663493738929815, 49.64417292395164] + ] + }, + "length": 0.2154444704255203, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40081", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18348", + "bus2": "MVBus33535", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6663493738929815, 49.64417292395164], + [-1.666347646630627, 49.644175705825695], + [-1.666364674374363, 49.644183397172014], + [-1.666460209697166, 49.644226572418866], + [-1.666535687506332, 49.64421676295277], + [-1.666923648583876, 49.64392511858885], + [-1.666967969649731, 49.64383985099012], + [-1.666994279483576, 49.6438056180891], + [-1.667039036422541, 49.64379327340822], + [-1.667101478164154, 49.64379381379485], + [-1.667295385296576, 49.64382493672678], + [-1.667591685433351, 49.64383631159785], + [-1.668271134787657, 49.64380203052457], + [-1.668306361702929, 49.64380428993486], + [-1.668306361702929, 49.64380428993486] + ] + }, + "length": 0.16825509452722598, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39997", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus33535", + "bus2": "MVLV15132", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.668306361702929, 49.64380428993486], + [-1.668306361702929, 49.64380428993486], + [-1.668301560943159, 49.6437340023798], + [-1.668325485566482, 49.643730062657404], + [-1.668351170007161, 49.643717674723874], + [-1.668363070401259, 49.64370469120321], + [-1.668332734943276, 49.64352422901104], + [-1.668346182337516, 49.64346923564381], + [-1.668308740509139, 49.64342431765364], + [-1.668250024141815, 49.64338639894637], + [-1.668215654921807, 49.6433642019151], + [-1.668166609722962, 49.64331153903314], + [-1.668145027090293, 49.64326295740102], + [-1.668131708312377, 49.64316531821767], + [-1.668102411799664, 49.6429506413113], + [-1.667992576488419, 49.64218179386824], + [-1.668010879536981, 49.642146485933026], + [-1.667997117452306, 49.64212306681962], + [-1.667995968679526, 49.641906027680406], + [-1.667618794520165, 49.641833621000856], + [-1.667624429478351, 49.64181121411131], + [-1.667628303059409, 49.64179582568794], + [-1.667628303059409, 49.64179582568794] + ] + }, + "length": 0.25210504809617895, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV02718_production", + "bus": "MVLV02718", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02718_consumption", + "bus": "MVLV02718", + "phases": "abc", + "powers": [ + [58876.53642901245, 19351.7816922007], + [58876.53642901245, 19351.7816922007], + [58876.53642901245, 19351.7816922007] + ] + }, + { + "id": "MVLV15555_production", + "bus": "MVLV15555", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15555_consumption", + "bus": "MVLV15555", + "phases": "abc", + "powers": [ + [87777.58079080317, 28851.095596990508], + [87777.58079080317, 28851.095596990508], + [87777.58079080317, 28851.095596990508] + ] + }, + { + "id": "MVLV07323_production", + "bus": "MVLV07323", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07323_consumption", + "bus": "MVLV07323", + "phases": "abc", + "powers": [ + [58876.53642901245, 19351.7816922007], + [58876.53642901245, 19351.7816922007], + [58876.53642901245, 19351.7816922007] + ] + }, + { + "id": "MVLV05293_production", + "bus": "MVLV05293", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05293_consumption", + "bus": "MVLV05293", + "phases": "abc", + "powers": [ + [87777.58079080317, 28851.095596990508], + [87777.58079080317, 28851.095596990508], + [87777.58079080317, 28851.095596990508] + ] + }, + { + "id": "MVLV14999_production", + "bus": "MVLV14999", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14999_consumption", + "bus": "MVLV14999", + "phases": "abc", + "powers": [ + [58876.53642901245, 19351.7816922007], + [58876.53642901245, 19351.7816922007], + [58876.53642901245, 19351.7816922007] + ] + }, + { + "id": "MVLV08398_production", + "bus": "MVLV08398", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08398_consumption", + "bus": "MVLV08398", + "phases": "abc", + "powers": [ + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109] + ] + }, + { + "id": "MVLV12652_production", + "bus": "MVLV12652", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12652_consumption", + "bus": "MVLV12652", + "phases": "abc", + "powers": [ + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109] + ] + }, + { + "id": "MVLV05297_production", + "bus": "MVLV05297", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05297_consumption", + "bus": "MVLV05297", + "phases": "abc", + "powers": [ + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109] + ] + }, + { + "id": "MVLV09570_production", + "bus": "MVLV09570", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09570_consumption", + "bus": "MVLV09570", + "phases": "abc", + "powers": [ + [74869.1411183394, 24608.296653991416], + [74869.1411183394, 24608.296653991416], + [74869.1411183394, 24608.296653991416] + ] + }, + { + "id": "MVLV12653_production", + "bus": "MVLV12653", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12653_consumption", + "bus": "MVLV12653", + "phases": "abc", + "powers": [ + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109] + ] + }, + { + "id": "MVLV11399_production", + "bus": "MVLV11399", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11399_consumption", + "bus": "MVLV11399", + "phases": "abc", + "powers": [ + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109], + [51137.68102167411, 16808.14292753109] + ] + }, + { + "id": "MVLV04231_production", + "bus": "MVLV04231", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04231_consumption", + "bus": "MVLV04231", + "phases": "abc", + "powers": [ + [50477.83521764816, 16591.262099878793], + [50477.83521764816, 16591.262099878793], + [50477.83521764816, 16591.262099878793] + ] + }, + { + "id": "MVLV11405_production", + "bus": "MVLV11405", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11405_consumption", + "bus": "MVLV11405", + "phases": "abc", + "powers": [ + [50477.83521764816, 16591.262099878793], + [50477.83521764816, 16591.262099878793], + [50477.83521764816, 16591.262099878793] + ] + }, + { + "id": "MVLV18350_production", + "bus": "MVLV18350", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18350_consumption", + "bus": "MVLV18350", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV03811_production", + "bus": "MVLV03811", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03811_consumption", + "bus": "MVLV03811", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV13412_production", + "bus": "MVLV13412", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13412_consumption", + "bus": "MVLV13412", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV18345_production", + "bus": "MVLV18345", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18345_consumption", + "bus": "MVLV18345", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV13415_production", + "bus": "MVLV13415", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13415_consumption", + "bus": "MVLV13415", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV09698_production", + "bus": "MVLV09698", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09698_consumption", + "bus": "MVLV09698", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV10769_production", + "bus": "MVLV10769", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10769_consumption", + "bus": "MVLV10769", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV07448_production", + "bus": "MVLV07448", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07448_consumption", + "bus": "MVLV07448", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV03816_production", + "bus": "MVLV03816", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03816_consumption", + "bus": "MVLV03816", + "phases": "abc", + "powers": [ + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002] + ] + }, + { + "id": "MVLV07432_production", + "bus": "MVLV07432", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07432_consumption", + "bus": "MVLV07432", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV07449_production", + "bus": "MVLV07449", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07449_consumption", + "bus": "MVLV07449", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV09703_production", + "bus": "MVLV09703", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09703_consumption", + "bus": "MVLV09703", + "phases": "abc", + "powers": [ + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002] + ] + }, + { + "id": "MVLV18342_production", + "bus": "MVLV18342", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18342_consumption", + "bus": "MVLV18342", + "phases": "abc", + "powers": [ + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329] + ] + }, + { + "id": "MVLV09708_production", + "bus": "MVLV09708", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09708_consumption", + "bus": "MVLV09708", + "phases": "abc", + "powers": [ + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491], + [15147.99188234269, 4978.904157104491] + ] + }, + { + "id": "MVLV09694_production", + "bus": "MVLV09694", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09694_consumption", + "bus": "MVLV09694", + "phases": "abc", + "powers": [ + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329] + ] + }, + { + "id": "MVLV07442_production", + "bus": "MVLV07442", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07442_consumption", + "bus": "MVLV07442", + "phases": "abc", + "powers": [ + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329] + ] + }, + { + "id": "MVLV18352_production", + "bus": "MVLV18352", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18352_consumption", + "bus": "MVLV18352", + "phases": "abc", + "powers": [ + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002] + ] + }, + { + "id": "MVLV10771_production", + "bus": "MVLV10771", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10771_consumption", + "bus": "MVLV10771", + "phases": "abc", + "powers": [ + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329] + ] + }, + { + "id": "MVLV07445_production", + "bus": "MVLV07445", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07445_consumption", + "bus": "MVLV07445", + "phases": "abc", + "powers": [ + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329] + ] + }, + { + "id": "MVLV18348_production", + "bus": "MVLV18348", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18348_consumption", + "bus": "MVLV18348", + "phases": "abc", + "powers": [ + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329], + [26705.4070573833, 8777.642822093329] + ] + }, + { + "id": "MVLV15132_production", + "bus": "MVLV15132", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15132_consumption", + "bus": "MVLV15132", + "phases": "abc", + "powers": [ + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002], + [25181.02275315091, 8276.601931108002] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder015_Summer.json b/roseau/load_flow/data/networks/MVFeeder015_Summer.json new file mode 100644 index 00000000..9ac90e8f --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder015_Summer.json @@ -0,0 +1,1228 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "HVMV01", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBus00053", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.623326183809773, 49.63226650711385] + } + }, + { + "id": "MVBus00054", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.622954639870388, 49.631939839160744] + } + }, + { + "id": "MVBus00055", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.622376716573707, 49.62858095368696] + } + }, + { + "id": "MVBus00056", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.620893120270645, 49.62893349771016] + } + }, + { + "id": "MVBus00057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619657875156477, 49.6305746241572] + } + }, + { + "id": "MVLV13304", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619666847988223, 49.630611324646196] + } + }, + { + "id": "MVBus05252", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619631373814167, 49.630590994074986] + } + }, + { + "id": "MVBus05253", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.62001066228858, 49.62832552372274] + } + }, + { + "id": "MVBus05254", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619704923601284, 49.62777414229089] + } + }, + { + "id": "MVLV18242", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6194617020978654, 49.62775867731261] + } + }, + { + "id": "MVBus05775", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617296198248987, 49.627827044271605] + } + }, + { + "id": "MVBus05776", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.618071703010131, 49.62876339045437] + } + }, + { + "id": "MVLV14995", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6175182258464154, 49.62827064068822] + } + }, + { + "id": "MVBus06340", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.61797185105183, 49.628856075992964] + } + }, + { + "id": "MVLV03678", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617288715725815, 49.63252690092534] + } + }, + { + "id": "MVBus06805", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617248593084641, 49.63351059928568] + } + }, + { + "id": "MVBus06806", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.615129260227989, 49.63365678307963] + } + }, + { + "id": "MVLV14994", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6148992023665274, 49.633246093376826] + } + }, + { + "id": "MVBus07237", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.614397172406862, 49.63374451855814] + } + }, + { + "id": "MVLV14997", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6125424847098795, 49.63319064348599] + } + }, + { + "id": "MVLV09569", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.614090551512768, 49.6320247630815] + } + }, + { + "id": "MVLV07320", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.615251585228688, 49.63138183809393] + } + }, + { + "id": "MVBus08445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.609878920214483, 49.63157028321388] + } + }, + { + "id": "MVLV03692", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6101069381645656, 49.63158911474942] + } + }, + { + "id": "MVBus09070", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.60990342767392, 49.63152112320213] + } + }, + { + "id": "MVBus09071", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607828921912095, 49.63040347671234] + } + }, + { + "id": "MVBus09072", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607975529120126, 49.63007036133769] + } + }, + { + "id": "MVLV01557", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607926725745514, 49.630057242522646] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV01", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBranch37115", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV01", + "bus2": "MVBus00053", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.624837162156209, 49.633717544204686], + [-1.624825310272577, 49.63370648540949], + [-1.624825310272577, 49.63370648540949], + [-1.62481345839408, 49.63369542661301], + [-1.623359933106955, 49.632339030267744], + [-1.623326183809773, 49.63226650711385], + [-1.623326183809773, 49.63226650711385] + ] + }, + "length": 0.19373117984134303, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38445", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00053", + "bus2": "MVBus00054", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.623326183809773, 49.63226650711385], + [-1.623326183809773, 49.63226650711385], + [-1.623256964886385, 49.6321205189783], + [-1.622954639870388, 49.631939839160744], + [-1.622954639870388, 49.631939839160744] + ] + }, + "length": 0.0466684979154946, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32902", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00054", + "bus2": "MVBus00055", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.622954639870388, 49.631939839160744], + [-1.622954639870388, 49.631939839160744], + [-1.622791667204805, 49.63187551371534], + [-1.622781372238395, 49.63186506017172], + [-1.622775680986269, 49.631852918176165], + [-1.622724782335082, 49.63148261125394], + [-1.622712141901039, 49.63115678587939], + [-1.622732661751757, 49.6307892742711], + [-1.622728783689761, 49.63078015722843], + [-1.62271851483728, 49.630770215379144], + [-1.622625005204506, 49.630737317786455], + [-1.622619251127881, 49.630732389632094], + [-1.622888503562517, 49.62983181631249], + [-1.623049843133065, 49.629485202799515], + [-1.622900206171288, 49.62943081787617], + [-1.622810625063383, 49.629216309504336], + [-1.62265649682463, 49.62901363574483], + [-1.6225117170979, 49.62869899837995], + [-1.622496693679498, 49.62863243491011], + [-1.622395892564589, 49.628646086284704], + [-1.622376716573707, 49.62858095368696], + [-1.622376716573707, 49.62858095368696] + ] + }, + "length": 0.4092063054473774, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34651", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00055", + "bus2": "MVBus00056", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.622376716573707, 49.62858095368696], + [-1.622376716573707, 49.62858095368696], + [-1.622372026717302, 49.628570649246114], + [-1.622356271165123, 49.62846682770215], + [-1.622261284436479, 49.62837060960379], + [-1.622207717498512, 49.62829989497923], + [-1.622180946060279, 49.62822768236052], + [-1.62216952883881, 49.62815495791898], + [-1.621062541920247, 49.628142475439006], + [-1.620930793007626, 49.628813836115214], + [-1.620913128650989, 49.628888771543224], + [-1.620893120270645, 49.62893349771016], + [-1.620893120270645, 49.62893349771016] + ] + }, + "length": 0.21954342456757106, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43063", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00056", + "bus2": "MVBus00057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.620893120270645, 49.62893349771016], + [-1.620893120270645, 49.62893349771016], + [-1.620803554835318, 49.62906395823792], + [-1.620701482976924, 49.62909389879037], + [-1.620544112067105, 49.629087522188925], + [-1.620457236135225, 49.62897876285862], + [-1.620431085758726, 49.62870182949241], + [-1.620313405703354, 49.628641386731516], + [-1.62017220296288, 49.62863872481972], + [-1.620091100464641, 49.628748738144985], + [-1.620024244254979, 49.62910272201935], + [-1.619657875156477, 49.6305746241572], + [-1.619657875156477, 49.6305746241572] + ] + }, + "length": 0.31996744840118263, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35882", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00057", + "bus2": "MVLV13304", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619657875156477, 49.6305746241572], + [-1.619657875156477, 49.6305746241572], + [-1.619653147688041, 49.630592385699686], + [-1.619650369889454, 49.630602799712065], + [-1.619668883774012, 49.63060481957001], + [-1.619666847988223, 49.630611324646196] + ] + }, + "length": 0.004536545893693076, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37432", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13304", + "bus2": "MVBus05252", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619666847988223, 49.630611324646196], + [-1.619664812202434, 49.63061782972238], + [-1.619625399750188, 49.630614101840614], + [-1.619627157114878, 49.63060730913235], + [-1.619631373814167, 49.630590994074986], + [-1.619631373814167, 49.630590994074986] + ] + }, + "length": 0.005483402606147038, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37555", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05252", + "bus2": "MVBus05253", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619631373814167, 49.630590994074986], + [-1.619631373814167, 49.630590994074986], + [-1.619982173901628, 49.628939081808056], + [-1.620081883775705, 49.6285953078882], + [-1.620126124809151, 49.628559581290794], + [-1.619975680096279, 49.62849898768144], + [-1.62001066228858, 49.62832552372274], + [-1.62001066228858, 49.62832552372274] + ] + }, + "length": 0.2617227298854735, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40864", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05253", + "bus2": "MVBus05254", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.62001066228858, 49.62832552372274], + [-1.62001066228858, 49.62832552372274], + [-1.619990032194904, 49.62831976946931], + [-1.619979781936978, 49.628246700998254], + [-1.619968985717971, 49.62807201066118], + [-1.619958965146112, 49.62800190210659], + [-1.619935847879893, 49.62775564076857], + [-1.619932187501521, 49.62771666212823], + [-1.619891596407082, 49.62768468325065], + [-1.619867669101086, 49.6276812130303], + [-1.61984556474374, 49.62768161276903], + [-1.619826237273845, 49.62768550953946], + [-1.619810072357286, 49.62769127210947], + [-1.619794696637928, 49.62770060576055], + [-1.619776178302717, 49.62771493406426], + [-1.619768985518702, 49.62773249760089], + [-1.619755589830324, 49.62775450850498], + [-1.61974310392571, 49.62777504187375], + [-1.619734678045402, 49.627783311776206], + [-1.619704923601284, 49.62777414229089], + [-1.619704923601284, 49.62777414229089] + ] + }, + "length": 0.09380842822624201, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38827", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05254", + "bus2": "MVLV18242", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619704923601284, 49.62777414229089], + [-1.619704923601284, 49.62777414229089], + [-1.619502549883901, 49.627762556044544], + [-1.619481886854964, 49.62776137086632], + [-1.6194617020978654, 49.62775867731261] + ] + }, + "length": 0.01617639679305394, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34050", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18242", + "bus2": "MVBus05775", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6194617020978654, 49.62775867731261], + [-1.619441517340767, 49.6277559837589], + [-1.619421810857793, 49.627751781830035], + [-1.619279261933552, 49.62772137686995], + [-1.61789222453811, 49.62783084692612], + [-1.61776078783689, 49.6275255786363], + [-1.617493837917352, 49.62760132122202], + [-1.617401565596081, 49.627728729446694], + [-1.617296198248987, 49.627827044271605], + [-1.617296198248987, 49.627827044271605] + ] + }, + "length": 0.19857131245149381, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38529", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05775", + "bus2": "MVBus05776", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617296198248987, 49.627827044271605], + [-1.617296198248987, 49.627827044271605], + [-1.61745357987417, 49.627754868164345], + [-1.61752818166992, 49.62763166179103], + [-1.617732050953237, 49.62758148843141], + [-1.618152228890945, 49.62854322427451], + [-1.618094597392389, 49.62858481049892], + [-1.618071703010131, 49.62876339045437], + [-1.618071703010131, 49.62876339045437] + ] + }, + "length": 0.18173893427682564, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47960", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05776", + "bus2": "MVLV14995", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.618071703010131, 49.62876339045437], + [-1.618071703010131, 49.62876339045437], + [-1.618071643905142, 49.62876387797005], + [-1.617724094908134, 49.62873432334502], + [-1.617708044496505, 49.628535867616634], + [-1.617532776088263, 49.62849413053917], + [-1.617574419981693, 49.62830631381738], + [-1.617540246203886, 49.628279600581955], + [-1.617526997350453, 49.6282692342394], + [-1.6175182258464154, 49.62827064068822] + ] + }, + "length": 0.08743391984267036, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35995", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14995", + "bus2": "MVBus06340", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6175182258464154, 49.62827064068822], + [-1.617509454342378, 49.628272047137045], + [-1.617505146371753, 49.628285226830165], + [-1.617420432131188, 49.628544789765364], + [-1.617601292848718, 49.62858723431532], + [-1.617615817601381, 49.62881815703151], + [-1.61797185105183, 49.628856075992964], + [-1.61797185105183, 49.628856075992964] + ] + }, + "length": 0.09667306913811433, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39548", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06340", + "bus2": "MVLV03678", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.61797185105183, 49.628856075992964], + [-1.61797185105183, 49.628856075992964], + [-1.617980756866947, 49.628857025589376], + [-1.617946172720699, 49.629029288624885], + [-1.618011211234624, 49.629079298145484], + [-1.617599980502613, 49.63150199718768], + [-1.617598150161725, 49.63161642026717], + [-1.617443098013907, 49.632527548362916], + [-1.617309019065242, 49.63252029754535], + [-1.617289930630933, 49.632519267261145], + [-1.617288603123362, 49.63251982323359], + [-1.617288715725815, 49.63252690092534] + ] + }, + "length": 0.42424395751102045, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39549", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03678", + "bus2": "MVBus06805", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617288715725815, 49.63252690092534], + [-1.617288828328268, 49.63253397861709], + [-1.617309305958128, 49.63253614144915], + [-1.617402996914094, 49.63254602605633], + [-1.617255070869215, 49.6335109359625], + [-1.617248593084641, 49.63351059928568], + [-1.617248593084641, 49.63351059928568] + ] + }, + "length": 0.1166751178584927, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42873", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06805", + "bus2": "MVBus06806", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617248593084641, 49.63351059928568], + [-1.617248593084641, 49.63351059928568], + [-1.61606756226302, 49.633449691918756], + [-1.615132562335555, 49.633665271687924], + [-1.615129260227989, 49.63365678307963], + [-1.615129260227989, 49.63365678307963] + ] + }, + "length": 0.15823242540325652, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32598", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06806", + "bus2": "MVLV14994", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.615129260227989, 49.63365678307963], + [-1.615129260227989, 49.63365678307963], + [-1.615038089161312, 49.63342267476121], + [-1.614921048301394, 49.63325706921345], + [-1.614911051602498, 49.63324526547287], + [-1.6148992023665274, 49.633246093376826] + ] + }, + "length": 0.04862324255083111, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36770", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14994", + "bus2": "MVBus07237", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6148992023665274, 49.633246093376826], + [-1.614887353130557, 49.63324692128078], + [-1.614893813584765, 49.63325972183895], + [-1.614985628553693, 49.63344247276457], + [-1.615059069374125, 49.6336821872727], + [-1.614397172406862, 49.63374451855814], + [-1.614397172406862, 49.63374451855814] + ] + }, + "length": 0.0983779462509927, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42879", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07237", + "bus2": "MVLV14997", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.614397172406862, 49.63374451855814], + [-1.614397172406862, 49.63374451855814], + [-1.613934968901359, 49.63378803779377], + [-1.613247679713893, 49.633878097028294], + [-1.61280289549296, 49.63343860308057], + [-1.612640095562403, 49.633187589871596], + [-1.612598231853735, 49.63319477532163], + [-1.612549873019654, 49.63319978999074], + [-1.6125424847098795, 49.63319064348599] + ] + }, + "length": 0.17984323786250975, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41315", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14997", + "bus2": "MVLV09569", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6125424847098795, 49.63319064348599], + [-1.612535096400105, 49.633181496981244], + [-1.61254896881741, 49.6331714851432], + [-1.612595884573013, 49.63313764369573], + [-1.612304891955625, 49.63262440582521], + [-1.611761822849687, 49.63225060514492], + [-1.611816996970732, 49.63207719617671], + [-1.613711604316259, 49.631884377363384], + [-1.613770868814423, 49.631929200324024], + [-1.614070583570374, 49.632020685703246], + [-1.614089815920525, 49.63202572230922], + [-1.614090551512768, 49.6320247630815] + ] + }, + "length": 0.31478369710551507, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43993", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09569", + "bus2": "MVLV07320", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.614090551512768, 49.6320247630815], + [-1.614091287105011, 49.63202380385378], + [-1.614073525940391, 49.63201684879276], + [-1.613794080665256, 49.6319073281487], + [-1.61394971151713, 49.63162019297836], + [-1.615121338857239, 49.63157123639807], + [-1.615244620685993, 49.63139469083286], + [-1.615253181208338, 49.63138242437115], + [-1.615251585228688, 49.63138183809393] + ] + }, + "length": 0.16680800473055252, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36771", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07320", + "bus2": "MVBus08445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.615251585228688, 49.63138183809393], + [-1.615249989249038, 49.631381251816705], + [-1.615238236766404, 49.631392345723505], + [-1.615086562399179, 49.63153550505344], + [-1.613912257270153, 49.631585448049165], + [-1.613762585802799, 49.63185068126129], + [-1.611803788254319, 49.63204606496801], + [-1.611627805842067, 49.632167586843345], + [-1.611311118667244, 49.631974831203785], + [-1.611278253899263, 49.63189401252384], + [-1.610958479131793, 49.631831069201276], + [-1.610736484856756, 49.631828732055354], + [-1.609852441443621, 49.63176518997786], + [-1.609829826166487, 49.631742548538995], + [-1.609822121528065, 49.63171579651127], + [-1.609876880381386, 49.63156986422409], + [-1.609878920214483, 49.63157028321388], + [-1.609878920214483, 49.63157028321388] + ] + }, + "length": 0.4669542724178578, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47616", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08445", + "bus2": "MVLV03692", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.609878920214483, 49.63157028321388], + [-1.609878920214483, 49.63157028321388], + [-1.610031933256469, 49.63160149969727], + [-1.610082941644438, 49.631603548277496], + [-1.610101839129751, 49.631598003635126], + [-1.6101069381645656, 49.63158911474942] + ] + }, + "length": 0.01677643016309775, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35109", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03692", + "bus2": "MVBus09070", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6101069381645656, 49.63158911474942], + [-1.61011203719938, 49.631580225863715], + [-1.610103337791975, 49.63156799273692], + [-1.610065559848792, 49.63155443387497], + [-1.60990342767392, 49.63152112320213], + [-1.60990342767392, 49.63152112320213] + ] + }, + "length": 0.016901585911935392, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45173", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09070", + "bus2": "MVBus09071", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.60990342767392, 49.63152112320213], + [-1.60990342767392, 49.63152112320213], + [-1.609896393916509, 49.63151968026674], + [-1.609971411687376, 49.63129831648937], + [-1.609938911009826, 49.631221990673836], + [-1.608935358453139, 49.63084556674166], + [-1.607751361150486, 49.630517591361695], + [-1.607828921912095, 49.63040347671234], + [-1.607828921912095, 49.63040347671234] + ] + }, + "length": 0.22513392788300826, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36665", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09071", + "bus2": "MVBus09072", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607828921912095, 49.63040347671234], + [-1.607828921912095, 49.63040347671234], + [-1.608014726389757, 49.63008779510236], + [-1.607975529120126, 49.63007036133769], + [-1.607975529120126, 49.63007036133769] + ] + }, + "length": 0.0410212088521344, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47856", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09072", + "bus2": "MVLV01557", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607975529120126, 49.63007036133769], + [-1.607975529120126, 49.63007036133769], + [-1.6079568102343, 49.63006478549265], + [-1.607926725745514, 49.630057242522646], + [-1.607926725745514, 49.630057242522646] + ] + }, + "length": 0.0038174820230672257, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV13304_production", + "bus": "MVLV13304", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV13304_consumption", + "bus": "MVLV13304", + "phases": "abc", + "powers": [ + [5921.330735520133, 1946.247294272535], + [5921.330735520133, 1946.247294272535], + [5921.330735520133, 1946.247294272535] + ] + }, + { + "id": "MVLV18242_production", + "bus": "MVLV18242", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV18242_consumption", + "bus": "MVLV18242", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV14995_production", + "bus": "MVLV14995", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV14995_consumption", + "bus": "MVLV14995", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV03678_production", + "bus": "MVLV03678", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV03678_consumption", + "bus": "MVLV03678", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV14994_production", + "bus": "MVLV14994", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV14994_consumption", + "bus": "MVLV14994", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV14997_production", + "bus": "MVLV14997", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV14997_consumption", + "bus": "MVLV14997", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV09569_production", + "bus": "MVLV09569", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09569_consumption", + "bus": "MVLV09569", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV07320_production", + "bus": "MVLV07320", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV07320_consumption", + "bus": "MVLV07320", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV03692_production", + "bus": "MVLV03692", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV03692_consumption", + "bus": "MVLV03692", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV01557_production", + "bus": "MVLV01557", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV01557_consumption", + "bus": "MVLV01557", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder015_Winter.json b/roseau/load_flow/data/networks/MVFeeder015_Winter.json new file mode 100644 index 00000000..e37483aa --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder015_Winter.json @@ -0,0 +1,1228 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "HVMV01", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBus00053", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.623326183809773, 49.63226650711385] + } + }, + { + "id": "MVBus00054", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.622954639870388, 49.631939839160744] + } + }, + { + "id": "MVBus00055", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.622376716573707, 49.62858095368696] + } + }, + { + "id": "MVBus00056", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.620893120270645, 49.62893349771016] + } + }, + { + "id": "MVBus00057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619657875156477, 49.6305746241572] + } + }, + { + "id": "MVLV13304", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619666847988223, 49.630611324646196] + } + }, + { + "id": "MVBus05252", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619631373814167, 49.630590994074986] + } + }, + { + "id": "MVBus05253", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.62001066228858, 49.62832552372274] + } + }, + { + "id": "MVBus05254", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.619704923601284, 49.62777414229089] + } + }, + { + "id": "MVLV18242", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6194617020978654, 49.62775867731261] + } + }, + { + "id": "MVBus05775", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617296198248987, 49.627827044271605] + } + }, + { + "id": "MVBus05776", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.618071703010131, 49.62876339045437] + } + }, + { + "id": "MVLV14995", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6175182258464154, 49.62827064068822] + } + }, + { + "id": "MVBus06340", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.61797185105183, 49.628856075992964] + } + }, + { + "id": "MVLV03678", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617288715725815, 49.63252690092534] + } + }, + { + "id": "MVBus06805", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.617248593084641, 49.63351059928568] + } + }, + { + "id": "MVBus06806", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.615129260227989, 49.63365678307963] + } + }, + { + "id": "MVLV14994", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6148992023665274, 49.633246093376826] + } + }, + { + "id": "MVBus07237", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.614397172406862, 49.63374451855814] + } + }, + { + "id": "MVLV14997", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6125424847098795, 49.63319064348599] + } + }, + { + "id": "MVLV09569", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.614090551512768, 49.6320247630815] + } + }, + { + "id": "MVLV07320", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.615251585228688, 49.63138183809393] + } + }, + { + "id": "MVBus08445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.609878920214483, 49.63157028321388] + } + }, + { + "id": "MVLV03692", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6101069381645656, 49.63158911474942] + } + }, + { + "id": "MVBus09070", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.60990342767392, 49.63152112320213] + } + }, + { + "id": "MVBus09071", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607828921912095, 49.63040347671234] + } + }, + { + "id": "MVBus09072", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607975529120126, 49.63007036133769] + } + }, + { + "id": "MVLV01557", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607926725745514, 49.630057242522646] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV01", + "geometry": { + "type": "Point", + "coordinates": [-1.624837162156209, 49.633717544204686] + } + }, + { + "id": "MVBranch37115", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV01", + "bus2": "MVBus00053", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.624837162156209, 49.633717544204686], + [-1.624825310272577, 49.63370648540949], + [-1.624825310272577, 49.63370648540949], + [-1.62481345839408, 49.63369542661301], + [-1.623359933106955, 49.632339030267744], + [-1.623326183809773, 49.63226650711385], + [-1.623326183809773, 49.63226650711385] + ] + }, + "length": 0.19373117984134303, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38445", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00053", + "bus2": "MVBus00054", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.623326183809773, 49.63226650711385], + [-1.623326183809773, 49.63226650711385], + [-1.623256964886385, 49.6321205189783], + [-1.622954639870388, 49.631939839160744], + [-1.622954639870388, 49.631939839160744] + ] + }, + "length": 0.0466684979154946, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32902", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00054", + "bus2": "MVBus00055", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.622954639870388, 49.631939839160744], + [-1.622954639870388, 49.631939839160744], + [-1.622791667204805, 49.63187551371534], + [-1.622781372238395, 49.63186506017172], + [-1.622775680986269, 49.631852918176165], + [-1.622724782335082, 49.63148261125394], + [-1.622712141901039, 49.63115678587939], + [-1.622732661751757, 49.6307892742711], + [-1.622728783689761, 49.63078015722843], + [-1.62271851483728, 49.630770215379144], + [-1.622625005204506, 49.630737317786455], + [-1.622619251127881, 49.630732389632094], + [-1.622888503562517, 49.62983181631249], + [-1.623049843133065, 49.629485202799515], + [-1.622900206171288, 49.62943081787617], + [-1.622810625063383, 49.629216309504336], + [-1.62265649682463, 49.62901363574483], + [-1.6225117170979, 49.62869899837995], + [-1.622496693679498, 49.62863243491011], + [-1.622395892564589, 49.628646086284704], + [-1.622376716573707, 49.62858095368696], + [-1.622376716573707, 49.62858095368696] + ] + }, + "length": 0.4092063054473774, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34651", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00055", + "bus2": "MVBus00056", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.622376716573707, 49.62858095368696], + [-1.622376716573707, 49.62858095368696], + [-1.622372026717302, 49.628570649246114], + [-1.622356271165123, 49.62846682770215], + [-1.622261284436479, 49.62837060960379], + [-1.622207717498512, 49.62829989497923], + [-1.622180946060279, 49.62822768236052], + [-1.62216952883881, 49.62815495791898], + [-1.621062541920247, 49.628142475439006], + [-1.620930793007626, 49.628813836115214], + [-1.620913128650989, 49.628888771543224], + [-1.620893120270645, 49.62893349771016], + [-1.620893120270645, 49.62893349771016] + ] + }, + "length": 0.21954342456757106, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43063", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00056", + "bus2": "MVBus00057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.620893120270645, 49.62893349771016], + [-1.620893120270645, 49.62893349771016], + [-1.620803554835318, 49.62906395823792], + [-1.620701482976924, 49.62909389879037], + [-1.620544112067105, 49.629087522188925], + [-1.620457236135225, 49.62897876285862], + [-1.620431085758726, 49.62870182949241], + [-1.620313405703354, 49.628641386731516], + [-1.62017220296288, 49.62863872481972], + [-1.620091100464641, 49.628748738144985], + [-1.620024244254979, 49.62910272201935], + [-1.619657875156477, 49.6305746241572], + [-1.619657875156477, 49.6305746241572] + ] + }, + "length": 0.31996744840118263, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35882", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00057", + "bus2": "MVLV13304", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619657875156477, 49.6305746241572], + [-1.619657875156477, 49.6305746241572], + [-1.619653147688041, 49.630592385699686], + [-1.619650369889454, 49.630602799712065], + [-1.619668883774012, 49.63060481957001], + [-1.619666847988223, 49.630611324646196] + ] + }, + "length": 0.004536545893693076, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37432", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13304", + "bus2": "MVBus05252", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619666847988223, 49.630611324646196], + [-1.619664812202434, 49.63061782972238], + [-1.619625399750188, 49.630614101840614], + [-1.619627157114878, 49.63060730913235], + [-1.619631373814167, 49.630590994074986], + [-1.619631373814167, 49.630590994074986] + ] + }, + "length": 0.005483402606147038, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37555", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05252", + "bus2": "MVBus05253", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619631373814167, 49.630590994074986], + [-1.619631373814167, 49.630590994074986], + [-1.619982173901628, 49.628939081808056], + [-1.620081883775705, 49.6285953078882], + [-1.620126124809151, 49.628559581290794], + [-1.619975680096279, 49.62849898768144], + [-1.62001066228858, 49.62832552372274], + [-1.62001066228858, 49.62832552372274] + ] + }, + "length": 0.2617227298854735, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40864", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05253", + "bus2": "MVBus05254", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.62001066228858, 49.62832552372274], + [-1.62001066228858, 49.62832552372274], + [-1.619990032194904, 49.62831976946931], + [-1.619979781936978, 49.628246700998254], + [-1.619968985717971, 49.62807201066118], + [-1.619958965146112, 49.62800190210659], + [-1.619935847879893, 49.62775564076857], + [-1.619932187501521, 49.62771666212823], + [-1.619891596407082, 49.62768468325065], + [-1.619867669101086, 49.6276812130303], + [-1.61984556474374, 49.62768161276903], + [-1.619826237273845, 49.62768550953946], + [-1.619810072357286, 49.62769127210947], + [-1.619794696637928, 49.62770060576055], + [-1.619776178302717, 49.62771493406426], + [-1.619768985518702, 49.62773249760089], + [-1.619755589830324, 49.62775450850498], + [-1.61974310392571, 49.62777504187375], + [-1.619734678045402, 49.627783311776206], + [-1.619704923601284, 49.62777414229089], + [-1.619704923601284, 49.62777414229089] + ] + }, + "length": 0.09380842822624201, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38827", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05254", + "bus2": "MVLV18242", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.619704923601284, 49.62777414229089], + [-1.619704923601284, 49.62777414229089], + [-1.619502549883901, 49.627762556044544], + [-1.619481886854964, 49.62776137086632], + [-1.6194617020978654, 49.62775867731261] + ] + }, + "length": 0.01617639679305394, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34050", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18242", + "bus2": "MVBus05775", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6194617020978654, 49.62775867731261], + [-1.619441517340767, 49.6277559837589], + [-1.619421810857793, 49.627751781830035], + [-1.619279261933552, 49.62772137686995], + [-1.61789222453811, 49.62783084692612], + [-1.61776078783689, 49.6275255786363], + [-1.617493837917352, 49.62760132122202], + [-1.617401565596081, 49.627728729446694], + [-1.617296198248987, 49.627827044271605], + [-1.617296198248987, 49.627827044271605] + ] + }, + "length": 0.19857131245149381, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38529", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05775", + "bus2": "MVBus05776", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617296198248987, 49.627827044271605], + [-1.617296198248987, 49.627827044271605], + [-1.61745357987417, 49.627754868164345], + [-1.61752818166992, 49.62763166179103], + [-1.617732050953237, 49.62758148843141], + [-1.618152228890945, 49.62854322427451], + [-1.618094597392389, 49.62858481049892], + [-1.618071703010131, 49.62876339045437], + [-1.618071703010131, 49.62876339045437] + ] + }, + "length": 0.18173893427682564, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47960", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05776", + "bus2": "MVLV14995", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.618071703010131, 49.62876339045437], + [-1.618071703010131, 49.62876339045437], + [-1.618071643905142, 49.62876387797005], + [-1.617724094908134, 49.62873432334502], + [-1.617708044496505, 49.628535867616634], + [-1.617532776088263, 49.62849413053917], + [-1.617574419981693, 49.62830631381738], + [-1.617540246203886, 49.628279600581955], + [-1.617526997350453, 49.6282692342394], + [-1.6175182258464154, 49.62827064068822] + ] + }, + "length": 0.08743391984267036, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35995", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14995", + "bus2": "MVBus06340", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6175182258464154, 49.62827064068822], + [-1.617509454342378, 49.628272047137045], + [-1.617505146371753, 49.628285226830165], + [-1.617420432131188, 49.628544789765364], + [-1.617601292848718, 49.62858723431532], + [-1.617615817601381, 49.62881815703151], + [-1.61797185105183, 49.628856075992964], + [-1.61797185105183, 49.628856075992964] + ] + }, + "length": 0.09667306913811433, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39548", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06340", + "bus2": "MVLV03678", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.61797185105183, 49.628856075992964], + [-1.61797185105183, 49.628856075992964], + [-1.617980756866947, 49.628857025589376], + [-1.617946172720699, 49.629029288624885], + [-1.618011211234624, 49.629079298145484], + [-1.617599980502613, 49.63150199718768], + [-1.617598150161725, 49.63161642026717], + [-1.617443098013907, 49.632527548362916], + [-1.617309019065242, 49.63252029754535], + [-1.617289930630933, 49.632519267261145], + [-1.617288603123362, 49.63251982323359], + [-1.617288715725815, 49.63252690092534] + ] + }, + "length": 0.42424395751102045, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39549", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03678", + "bus2": "MVBus06805", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617288715725815, 49.63252690092534], + [-1.617288828328268, 49.63253397861709], + [-1.617309305958128, 49.63253614144915], + [-1.617402996914094, 49.63254602605633], + [-1.617255070869215, 49.6335109359625], + [-1.617248593084641, 49.63351059928568], + [-1.617248593084641, 49.63351059928568] + ] + }, + "length": 0.1166751178584927, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42873", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06805", + "bus2": "MVBus06806", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.617248593084641, 49.63351059928568], + [-1.617248593084641, 49.63351059928568], + [-1.61606756226302, 49.633449691918756], + [-1.615132562335555, 49.633665271687924], + [-1.615129260227989, 49.63365678307963], + [-1.615129260227989, 49.63365678307963] + ] + }, + "length": 0.15823242540325652, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32598", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06806", + "bus2": "MVLV14994", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.615129260227989, 49.63365678307963], + [-1.615129260227989, 49.63365678307963], + [-1.615038089161312, 49.63342267476121], + [-1.614921048301394, 49.63325706921345], + [-1.614911051602498, 49.63324526547287], + [-1.6148992023665274, 49.633246093376826] + ] + }, + "length": 0.04862324255083111, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36770", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14994", + "bus2": "MVBus07237", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6148992023665274, 49.633246093376826], + [-1.614887353130557, 49.63324692128078], + [-1.614893813584765, 49.63325972183895], + [-1.614985628553693, 49.63344247276457], + [-1.615059069374125, 49.6336821872727], + [-1.614397172406862, 49.63374451855814], + [-1.614397172406862, 49.63374451855814] + ] + }, + "length": 0.0983779462509927, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42879", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07237", + "bus2": "MVLV14997", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.614397172406862, 49.63374451855814], + [-1.614397172406862, 49.63374451855814], + [-1.613934968901359, 49.63378803779377], + [-1.613247679713893, 49.633878097028294], + [-1.61280289549296, 49.63343860308057], + [-1.612640095562403, 49.633187589871596], + [-1.612598231853735, 49.63319477532163], + [-1.612549873019654, 49.63319978999074], + [-1.6125424847098795, 49.63319064348599] + ] + }, + "length": 0.17984323786250975, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41315", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14997", + "bus2": "MVLV09569", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6125424847098795, 49.63319064348599], + [-1.612535096400105, 49.633181496981244], + [-1.61254896881741, 49.6331714851432], + [-1.612595884573013, 49.63313764369573], + [-1.612304891955625, 49.63262440582521], + [-1.611761822849687, 49.63225060514492], + [-1.611816996970732, 49.63207719617671], + [-1.613711604316259, 49.631884377363384], + [-1.613770868814423, 49.631929200324024], + [-1.614070583570374, 49.632020685703246], + [-1.614089815920525, 49.63202572230922], + [-1.614090551512768, 49.6320247630815] + ] + }, + "length": 0.31478369710551507, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43993", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09569", + "bus2": "MVLV07320", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.614090551512768, 49.6320247630815], + [-1.614091287105011, 49.63202380385378], + [-1.614073525940391, 49.63201684879276], + [-1.613794080665256, 49.6319073281487], + [-1.61394971151713, 49.63162019297836], + [-1.615121338857239, 49.63157123639807], + [-1.615244620685993, 49.63139469083286], + [-1.615253181208338, 49.63138242437115], + [-1.615251585228688, 49.63138183809393] + ] + }, + "length": 0.16680800473055252, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36771", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07320", + "bus2": "MVBus08445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.615251585228688, 49.63138183809393], + [-1.615249989249038, 49.631381251816705], + [-1.615238236766404, 49.631392345723505], + [-1.615086562399179, 49.63153550505344], + [-1.613912257270153, 49.631585448049165], + [-1.613762585802799, 49.63185068126129], + [-1.611803788254319, 49.63204606496801], + [-1.611627805842067, 49.632167586843345], + [-1.611311118667244, 49.631974831203785], + [-1.611278253899263, 49.63189401252384], + [-1.610958479131793, 49.631831069201276], + [-1.610736484856756, 49.631828732055354], + [-1.609852441443621, 49.63176518997786], + [-1.609829826166487, 49.631742548538995], + [-1.609822121528065, 49.63171579651127], + [-1.609876880381386, 49.63156986422409], + [-1.609878920214483, 49.63157028321388], + [-1.609878920214483, 49.63157028321388] + ] + }, + "length": 0.4669542724178578, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47616", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08445", + "bus2": "MVLV03692", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.609878920214483, 49.63157028321388], + [-1.609878920214483, 49.63157028321388], + [-1.610031933256469, 49.63160149969727], + [-1.610082941644438, 49.631603548277496], + [-1.610101839129751, 49.631598003635126], + [-1.6101069381645656, 49.63158911474942] + ] + }, + "length": 0.01677643016309775, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35109", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03692", + "bus2": "MVBus09070", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6101069381645656, 49.63158911474942], + [-1.61011203719938, 49.631580225863715], + [-1.610103337791975, 49.63156799273692], + [-1.610065559848792, 49.63155443387497], + [-1.60990342767392, 49.63152112320213], + [-1.60990342767392, 49.63152112320213] + ] + }, + "length": 0.016901585911935392, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45173", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09070", + "bus2": "MVBus09071", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.60990342767392, 49.63152112320213], + [-1.60990342767392, 49.63152112320213], + [-1.609896393916509, 49.63151968026674], + [-1.609971411687376, 49.63129831648937], + [-1.609938911009826, 49.631221990673836], + [-1.608935358453139, 49.63084556674166], + [-1.607751361150486, 49.630517591361695], + [-1.607828921912095, 49.63040347671234], + [-1.607828921912095, 49.63040347671234] + ] + }, + "length": 0.22513392788300826, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36665", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09071", + "bus2": "MVBus09072", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607828921912095, 49.63040347671234], + [-1.607828921912095, 49.63040347671234], + [-1.608014726389757, 49.63008779510236], + [-1.607975529120126, 49.63007036133769], + [-1.607975529120126, 49.63007036133769] + ] + }, + "length": 0.0410212088521344, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47856", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09072", + "bus2": "MVLV01557", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607975529120126, 49.63007036133769], + [-1.607975529120126, 49.63007036133769], + [-1.6079568102343, 49.63006478549265], + [-1.607926725745514, 49.630057242522646], + [-1.607926725745514, 49.630057242522646] + ] + }, + "length": 0.0038174820230672257, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV13304_production", + "bus": "MVLV13304", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13304_consumption", + "bus": "MVLV13304", + "phases": "abc", + "powers": [ + [29606.65367760067, 9731.236471362676], + [29606.65367760067, 9731.236471362676], + [29606.65367760067, 9731.236471362676] + ] + }, + { + "id": "MVLV18242_production", + "bus": "MVLV18242", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18242_consumption", + "bus": "MVLV18242", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV14995_production", + "bus": "MVLV14995", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14995_consumption", + "bus": "MVLV14995", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV03678_production", + "bus": "MVLV03678", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03678_consumption", + "bus": "MVLV03678", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV14994_production", + "bus": "MVLV14994", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14994_consumption", + "bus": "MVLV14994", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV14997_production", + "bus": "MVLV14997", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14997_consumption", + "bus": "MVLV14997", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV09569_production", + "bus": "MVLV09569", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09569_consumption", + "bus": "MVLV09569", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV07320_production", + "bus": "MVLV07320", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07320_consumption", + "bus": "MVLV07320", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV03692_production", + "bus": "MVLV03692", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03692_consumption", + "bus": "MVLV03692", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV01557_production", + "bus": "MVLV01557", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01557_consumption", + "bus": "MVLV01557", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder032_Summer.json b/roseau/load_flow/data/networks/MVFeeder032_Summer.json new file mode 100644 index 00000000..05e3c6ef --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder032_Summer.json @@ -0,0 +1,2169 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.341143887616421, 49.649368152657914] + } + }, + { + "id": "HVMV02", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341143887616421, 49.649368152657914] + } + }, + { + "id": "MVBus00117", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363073414238841, 49.64304820544189] + } + }, + { + "id": "MVLV10578", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363057844882403, 49.64298359804093] + } + }, + { + "id": "MVBus00118", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38131751047128, 49.64725252932783] + } + }, + { + "id": "MVLV10667", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381823290728951, 49.64701700842836] + } + }, + { + "id": "MVBus08728", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381535312882208, 49.64733699083525] + } + }, + { + "id": "MVBus08729", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396450904235974, 49.66024788508449] + } + }, + { + "id": "MVLV11999", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3964057126467686, 49.660262531967966] + } + }, + { + "id": "MVBus13497", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396160700810953, 49.6605270561942] + } + }, + { + "id": "MVBus13498", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387432288168403, 49.66315379586582] + } + }, + { + "id": "MVBus13500", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.385535507316819, 49.66475968041158] + } + }, + { + "id": "MVBus13502", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381131381360064, 49.665651484021154] + } + }, + { + "id": "MVBus13504", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38122396426964, 49.66615036764246] + } + }, + { + "id": "MVBus13505", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381285976129816, 49.66779511294239] + } + }, + { + "id": "MVBus13506", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381534586991432, 49.6696998371898] + } + }, + { + "id": "MVBus13507", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.378508982637205, 49.67049492628741] + } + }, + { + "id": "MVBus13508", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3732913242456, 49.67126845912352] + } + }, + { + "id": "MVBus13509", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371996551240058, 49.6715045934133] + } + }, + { + "id": "MVLV18939", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371520169196079, 49.67063246231633] + } + }, + { + "id": "MVBus13511", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367021341986308, 49.67251972372232] + } + }, + { + "id": "MVLV16210", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365446752865551, 49.670169257631514] + } + }, + { + "id": "MVLV10341", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364568388218211, 49.67301865165213] + } + }, + { + "id": "MVLV09036", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.378678571365429, 49.6700702299779] + } + }, + { + "id": "MVLV05842", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37861523666604, 49.66583210459457] + } + }, + { + "id": "MVLV13624", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3873025941583055, 49.66617902194447] + } + }, + { + "id": "MVBus19216", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.383768918139199, 49.6761669133056] + } + }, + { + "id": "MVBus19217", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387473067955328, 49.67977113339019] + } + }, + { + "id": "MVBus19219", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.390165074821639, 49.68435695606896] + } + }, + { + "id": "MVLV00333", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387482823059862, 49.679565823143825] + } + }, + { + "id": "MVLV16879", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.383661956464301, 49.67615070129675] + } + }, + { + "id": "MVLV00559", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38732578741805, 49.66311035879193] + } + }, + { + "id": "MVBus16238", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396407487666482, 49.66030127215695] + } + }, + { + "id": "MVBus16239", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396174122247448, 49.660517606384] + } + }, + { + "id": "MVBus16240", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387251985079024, 49.65826499708912] + } + }, + { + "id": "MVLV06250", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38978771053233, 49.657963688996865] + } + }, + { + "id": "MVBus16242", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.377957689760006, 49.658651945322525] + } + }, + { + "id": "MVBus16243", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.377014665176524, 49.65869498771795] + } + }, + { + "id": "MVBus16244", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.376121721428708, 49.65874279740818] + } + }, + { + "id": "MVLV12099", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.377335684181196, 49.657807942425116] + } + }, + { + "id": "MVBus16245", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372533815677704, 49.65884745330522] + } + }, + { + "id": "MVBus16248", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37052573334111, 49.65888465426676] + } + }, + { + "id": "MVLV03705", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.373821100953172, 49.661964717931106] + } + }, + { + "id": "MVBus16250", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366195557635843, 49.65902809491562] + } + }, + { + "id": "MVBus16251", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364874290710226, 49.65897516480102] + } + }, + { + "id": "MVBus16255", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363211977478477, 49.65814335267942] + } + }, + { + "id": "MVLV15015", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362188979845099, 49.6571000586743] + } + }, + { + "id": "MVBus16252", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363212064086434, 49.65900120223403] + } + }, + { + "id": "MVLV03703", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.359611241149069, 49.65929698067572] + } + }, + { + "id": "MVLV18263", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.353621166734196, 49.66271170637617] + } + }, + { + "id": "MVBus16246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372298178279623, 49.658299751045696] + } + }, + { + "id": "MVLV09595", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371150419839853, 49.655825871851405] + } + }, + { + "id": "MVLV15016", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379425423456413, 49.64836189737522] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV02", + "geometry": { + "type": "Point", + "coordinates": [-1.341143887616421, 49.649368152657914] + } + }, + { + "id": "MVBranch46833", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV02", + "bus2": "MVBus00117", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341143887616421, 49.649368152657914], + [-1.341155125505547, 49.649298961446966], + [-1.341155125505547, 49.649298961446966], + [-1.341171924590065, 49.64930687473048], + [-1.34153220499483, 49.64947661010156], + [-1.342281461172416, 49.64959418164936], + [-1.343082352557444, 49.64993697293146], + [-1.343716300356949, 49.64995916606215], + [-1.348459393130546, 49.64758213012024], + [-1.348846309075413, 49.64714257669268], + [-1.349060213719286, 49.64701837110458], + [-1.351136248206694, 49.64621592139255], + [-1.351392627106781, 49.64580421775384], + [-1.351912479370751, 49.64540850044688], + [-1.352134962424792, 49.645330158011404], + [-1.353353500184246, 49.64504433859896], + [-1.35515369511343, 49.64492399855778], + [-1.355584164988894, 49.64478605736917], + [-1.35829665370363, 49.643602195615294], + [-1.360301933076271, 49.64329788143403], + [-1.361665073179857, 49.643247201167185], + [-1.363073414238841, 49.64304820544189], + [-1.363073414238841, 49.64304820544189] + ] + }, + "length": 1.8605918592243234, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38809", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00117", + "bus2": "MVLV10578", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363073414238841, 49.64304820544189], + [-1.363073414238841, 49.64304820544189], + [-1.363057844882403, 49.64298359804093], + [-1.363057844882403, 49.64298359804093] + ] + }, + "length": 0.007273229980418355, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39531", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00117", + "bus2": "MVBus00118", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363073414238841, 49.64304820544189], + [-1.363073414238841, 49.64304820544189], + [-1.365165590719229, 49.6428094259041], + [-1.366704338086834, 49.64277107820396], + [-1.3674497862878, 49.642637427072906], + [-1.368933782102799, 49.642699832847896], + [-1.369682822291606, 49.642741610998094], + [-1.370990146237126, 49.64292397561041], + [-1.371729533556553, 49.64300295323173], + [-1.372107421239513, 49.64337889282862], + [-1.372457416775075, 49.64366118497363], + [-1.373208516268967, 49.644040481439404], + [-1.379249044382182, 49.646483061635756], + [-1.381316654975673, 49.647253140027196], + [-1.38131751047128, 49.64725252932783], + [-1.38131751047128, 49.64725252932783] + ] + }, + "length": 1.478026424760914, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47589", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00118", + "bus2": "MVLV10667", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.38131751047128, 49.64725252932783], + [-1.38131751047128, 49.64725252932783], + [-1.381724259956072, 49.646960977864396], + [-1.381805648342918, 49.64699913177372], + [-1.381822465513448, 49.64700702107947], + [-1.381823290728951, 49.64701700842836] + ] + }, + "length": 0.052501881798752856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34841", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10667", + "bus2": "MVBus08728", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381823290728951, 49.64701700842836], + [-1.381828447398985, 49.64702639208406], + [-1.381817612103909, 49.64703787378427], + [-1.381535312882208, 49.64733699083525], + [-1.381535312882208, 49.64733699083525] + ] + }, + "length": 0.040516118763759885, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38666", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08728", + "bus2": "MVBus08729", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381535312882208, 49.64733699083525], + [-1.381535312882208, 49.64733699083525], + [-1.381532613079363, 49.647339842993034], + [-1.387352677781882, 49.64960724622622], + [-1.388318011605513, 49.650356785906034], + [-1.389201217086399, 49.65086187162395], + [-1.390226223721301, 49.65125494435587], + [-1.391904432767028, 49.65255395121468], + [-1.392331753348779, 49.65302028258035], + [-1.392600201816321, 49.65326189559758], + [-1.393508995490428, 49.65405997151168], + [-1.394724211770671, 49.65625667615101], + [-1.394467101458887, 49.657815195376415], + [-1.394726723388684, 49.658258917718264], + [-1.394998401781996, 49.65841886170976], + [-1.397531312501535, 49.6592875234264], + [-1.396450904235974, 49.66024788508449], + [-1.396450904235974, 49.66024788508449] + ] + }, + "length": 2.014917579745296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33480", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08729", + "bus2": "MVLV11999", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396450904235974, 49.66024788508449], + [-1.396450904235974, 49.66024788508449], + [-1.396443075890358, 49.660255220339025], + [-1.396439420030837, 49.66025863274994], + [-1.396418911804348, 49.66025112001627], + [-1.3964057126467686, 49.660262531967966] + ] + }, + "length": 0.0031549875681026926, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46912", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11999", + "bus2": "MVBus13497", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3964057126467686, 49.660262531967966], + [-1.396407132163299, 49.66026161606427], + [-1.396439489721871, 49.66027452619542], + [-1.396434283961451, 49.66029497889806], + [-1.396202967387727, 49.66051470239752], + [-1.396180631662906, 49.66052725036166], + [-1.396160700810953, 49.6605270561942], + [-1.396160700810953, 49.6605270561942] + ] + }, + "length": 0.03821945416796346, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44703", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13497", + "bus2": "MVBus13498", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396160700810953, 49.6605270561942], + [-1.396160700810953, 49.6605270561942], + [-1.395555468685765, 49.66107580437764], + [-1.395169438387523, 49.661520714559], + [-1.394968188098091, 49.661874880556596], + [-1.394807025928492, 49.66252413376084], + [-1.392529045215136, 49.662455180555675], + [-1.392118170720751, 49.66249125685826], + [-1.391235804967413, 49.66261505445563], + [-1.390545214101071, 49.66259849088318], + [-1.389547806756696, 49.662632389251975], + [-1.38911700419036, 49.66267593791021], + [-1.388473184803178, 49.662836170822466], + [-1.387815332627581, 49.66272135864561], + [-1.387432288168403, 49.66315379586582], + [-1.387432288168403, 49.66315379586582] + ] + }, + "length": 0.8146527229250738, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34586", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13498", + "bus2": "MVBus13500", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387432288168403, 49.66315379586582], + [-1.387432288168403, 49.66315379586582], + [-1.387039886554878, 49.6635881108234], + [-1.386484900543847, 49.66413155710462], + [-1.386120329144697, 49.66439543052622], + [-1.385711827363929, 49.66462187773843], + [-1.385544211792423, 49.66472371984935], + [-1.385535507316819, 49.66475968041158], + [-1.385535507316819, 49.66475968041158] + ] + }, + "length": 0.22734508024316832, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33867", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13500", + "bus2": "MVBus13502", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.385535507316819, 49.66475968041158], + [-1.385535507316819, 49.66475968041158], + [-1.385140982061642, 49.66488642106181], + [-1.384579259595707, 49.6650282107324], + [-1.384074713754928, 49.665188800833455], + [-1.383904502841845, 49.66522877499533], + [-1.383538182686781, 49.66529929660482], + [-1.383391757068411, 49.665320143868925], + [-1.383195978619326, 49.66533567551236], + [-1.382353919959743, 49.665463408079425], + [-1.38198670372907, 49.66554314978261], + [-1.381720671427023, 49.665607508456965], + [-1.381131381360064, 49.665651484021154], + [-1.381131381360064, 49.665651484021154] + ] + }, + "length": 0.3352713149048944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44720", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13502", + "bus2": "MVBus13504", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381131381360064, 49.665651484021154], + [-1.381131381360064, 49.665651484021154], + [-1.381131291762427, 49.665640949805756], + [-1.381156061810941, 49.66563928958973], + [-1.381175292863904, 49.66579850632216], + [-1.381173381494978, 49.665922140657614], + [-1.381170640360787, 49.66604085565299], + [-1.381194184326156, 49.66614753368187], + [-1.38122396426964, 49.66615036764246], + [-1.38122396426964, 49.66615036764246] + ] + }, + "length": 0.061848062572889766, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch04352", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13504", + "bus2": "MVBus13505", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.38122396426964, 49.66615036764246], + [-1.38122396426964, 49.66615036764246], + [-1.381285976129816, 49.66779511294239], + [-1.381285976129816, 49.66779511294239] + ] + }, + "length": 0.1829876796288891, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25753", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13505", + "bus2": "MVBus13506", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381285976129816, 49.66779511294239], + [-1.381285976129816, 49.66779511294239], + [-1.381541559413578, 49.669695532229206], + [-1.381534586991432, 49.6696998371898], + [-1.381534586991432, 49.6696998371898] + ] + }, + "length": 0.21286808031255783, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15088", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13506", + "bus2": "MVBus13507", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381534586991432, 49.6696998371898], + [-1.381534586991432, 49.6696998371898], + [-1.380402066293798, 49.670398261588275], + [-1.378508982637205, 49.67049492628741], + [-1.378508982637205, 49.67049492628741] + ] + }, + "length": 0.24984598448858025, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08590", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13507", + "bus2": "MVBus13508", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.378508982637205, 49.67049492628741], + [-1.378508982637205, 49.67049492628741], + [-1.37678537080522, 49.670631142484865], + [-1.3732913242456, 49.67126845912352], + [-1.3732913242456, 49.67126845912352] + ] + }, + "length": 0.3873225502112333, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08589", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13508", + "bus2": "MVBus13509", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3732913242456, 49.67126845912352], + [-1.3732913242456, 49.67126845912352], + [-1.371996551240058, 49.6715045934133], + [-1.371996551240058, 49.6715045934133] + ] + }, + "length": 0.09708097808053277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25752", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13509", + "bus2": "MVLV18939", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371996551240058, 49.6715045934133], + [-1.371996551240058, 49.6715045934133], + [-1.371520169196079, 49.67063246231633], + [-1.371520169196079, 49.67063246231633] + ] + }, + "length": 0.10291560301491072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15087", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13509", + "bus2": "MVBus13511", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371996551240058, 49.6715045934133], + [-1.371996551240058, 49.6715045934133], + [-1.367021341986308, 49.67251972372232], + [-1.367021341986308, 49.67251972372232] + ] + }, + "length": 0.37645239932160457, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15089", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13511", + "bus2": "MVLV16210", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367021341986308, 49.67251972372232], + [-1.367021341986308, 49.67251972372232], + [-1.366187541297301, 49.67211601147649], + [-1.365713580465351, 49.671078713192856], + [-1.365660273578199, 49.67055825961095], + [-1.365446752865551, 49.670169257631514], + [-1.365446752865551, 49.670169257631514] + ] + }, + "length": 0.2993697297327617, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04353", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13511", + "bus2": "MVLV10341", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367021341986308, 49.67251972372232], + [-1.367021341986308, 49.67251972372232], + [-1.364568388218211, 49.67301865165213], + [-1.364568388218211, 49.67301865165213] + ] + }, + "length": 0.18554949799224277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23450", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13507", + "bus2": "MVLV09036", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.378508982637205, 49.67049492628741], + [-1.378508982637205, 49.67049492628741], + [-1.378678571365429, 49.6700702299779], + [-1.378678571365429, 49.6700702299779] + ] + }, + "length": 0.04879639165804694, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch40852", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13502", + "bus2": "MVLV05842", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381131381360064, 49.665651484021154], + [-1.381131381360064, 49.665651484021154], + [-1.381029501125795, 49.66565904699777], + [-1.380400863813919, 49.66568999592873], + [-1.379404242975954, 49.66576193144422], + [-1.379175224813729, 49.66579180145957], + [-1.379014098968625, 49.66583372817085], + [-1.3788643143604, 49.66589746813244], + [-1.378812474507873, 49.66583807706209], + [-1.378623181633065, 49.66580408874287], + [-1.37861523666604, 49.66583210459457], + [-1.37861523666604, 49.66583210459457] + ] + }, + "length": 0.19257122220997205, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41902", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13500", + "bus2": "MVLV13624", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.385535507316819, 49.66475968041158], + [-1.385535507316819, 49.66475968041158], + [-1.38554535141413, 49.66477631587685], + [-1.385580019595954, 49.66480683332069], + [-1.385712315401383, 49.66486376436848], + [-1.386932371014009, 49.6648547027574], + [-1.387659258928473, 49.66496216257432], + [-1.387813498654389, 49.66500127975286], + [-1.38784507547882, 49.66502662324394], + [-1.3878531652238, 49.66506321780228], + [-1.387464730571561, 49.66570593028453], + [-1.387232752063884, 49.66616392313844], + [-1.387273311325704, 49.66617001110036], + [-1.387304696852681, 49.666174718149186], + [-1.3873025941583055, 49.66617902194447] + ] + }, + "length": 0.31499506964743823, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46758", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13624", + "bus2": "MVBus19216", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3873025941583055, 49.66617902194447], + [-1.38730049146393, 49.66618332573975], + [-1.387281621527715, 49.6661802383753], + [-1.387273595999855, 49.66619874533568], + [-1.387126789522058, 49.66653748988062], + [-1.387068218349722, 49.66662254561626], + [-1.386871015445751, 49.66764372595973], + [-1.386711588591889, 49.66822679044968], + [-1.386729959983745, 49.6685182934495], + [-1.386657288580173, 49.66916813070097], + [-1.386478897791872, 49.66969099197584], + [-1.386286617109939, 49.67025454872399], + [-1.385444441146551, 49.671713913094244], + [-1.385347198037088, 49.672013340742716], + [-1.385044711731814, 49.67262800506158], + [-1.384743229885515, 49.673240587263976], + [-1.384541321821446, 49.67374217477279], + [-1.384465340320264, 49.67439041755782], + [-1.384426869459528, 49.674718693637956], + [-1.384401660405118, 49.67481686309496], + [-1.38421143267843, 49.67522277234288], + [-1.383972504907403, 49.67579928977712], + [-1.383768918139199, 49.6761669133056], + [-1.383768918139199, 49.6761669133056] + ] + }, + "length": 1.147392428120071, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45999", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19216", + "bus2": "MVBus19217", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.383768918139199, 49.6761669133056], + [-1.383768918139199, 49.6761669133056], + [-1.38327036785506, 49.67701266461312], + [-1.383309387303449, 49.67707783296498], + [-1.383401257515831, 49.67712680308007], + [-1.384713669679374, 49.67735186928863], + [-1.384914378253134, 49.67739544152049], + [-1.385480855189906, 49.67745290133123], + [-1.386003702970066, 49.677431244661044], + [-1.386450059053588, 49.67739252854847], + [-1.386510323164695, 49.67741864393641], + [-1.386663950339315, 49.67770771798039], + [-1.386643690403553, 49.67805847630034], + [-1.386702345928535, 49.6784207687566], + [-1.38692992343025, 49.67878002142394], + [-1.387042240259506, 49.67914360233237], + [-1.387329243230438, 49.67950524220256], + [-1.387473067955328, 49.67977113339019], + [-1.387473067955328, 49.67977113339019] + ] + }, + "length": 0.6218432211306393, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44224", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19217", + "bus2": "MVBus19219", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387473067955328, 49.67977113339019], + [-1.387473067955328, 49.67977113339019], + [-1.387806168205325, 49.680327750656254], + [-1.388025554686639, 49.68073489364812], + [-1.388096987643314, 49.68102766376753], + [-1.387994507938074, 49.68159422369477], + [-1.388090698237654, 49.68172638112344], + [-1.38850637036157, 49.68232864353209], + [-1.389254229626828, 49.68330725934507], + [-1.389453424615921, 49.68376935909893], + [-1.389969215781849, 49.68434015999343], + [-1.390073797353083, 49.68440161719534], + [-1.390144320137423, 49.684357370379296], + [-1.390165074821639, 49.68435695606896], + [-1.390165074821639, 49.68435695606896] + ] + }, + "length": 0.5676631752803123, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19217", + "bus2": "MVLV00333", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387473067955328, 49.67977113339019], + [-1.387473067955328, 49.67977113339019], + [-1.387482823059862, 49.679565823143825], + [-1.387482823059862, 49.679565823143825] + ] + }, + "length": 0.02284604834606541, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40555", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19216", + "bus2": "MVLV16879", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.383768918139199, 49.6761669133056], + [-1.383768918139199, 49.6761669133056], + [-1.383661956464301, 49.67615070129675], + [-1.383661956464301, 49.67615070129675] + ] + }, + "length": 0.007927866285498594, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13498", + "bus2": "MVLV00559", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387432288168403, 49.66315379586582], + [-1.387432288168403, 49.66315379586582], + [-1.38732578741805, 49.66311035879193], + [-1.38732578741805, 49.66311035879193] + ] + }, + "length": 0.009080697744007212, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45712", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11999", + "bus2": "MVBus16238", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3964057126467686, 49.660262531967966], + [-1.396391093972659, 49.66027485982339], + [-1.396414518635273, 49.66028758709], + [-1.396419437158045, 49.66029025839718], + [-1.396407487666482, 49.66030127215695], + [-1.396407487666482, 49.66030127215695] + ] + }, + "length": 0.004166795103980359, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39559", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16238", + "bus2": "MVBus16239", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396407487666482, 49.66030127215695], + [-1.396407487666482, 49.66030127215695], + [-1.396174122247448, 49.660517606384], + [-1.396174122247448, 49.660517606384] + ] + }, + "length": 0.029373923231384276, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47672", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16239", + "bus2": "MVBus16240", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396174122247448, 49.660517606384], + [-1.396174122247448, 49.660517606384], + [-1.396111766175311, 49.66050073986271], + [-1.396100144253099, 49.660516796261895], + [-1.396071478395184, 49.66055638580858], + [-1.396011060269304, 49.66052493943121], + [-1.395443563088109, 49.66034353777329], + [-1.394209841555353, 49.659972937785184], + [-1.392963518902197, 49.65959870427206], + [-1.392072147680209, 49.65935175016693], + [-1.391686879205834, 49.65923140750466], + [-1.390093925500851, 49.65872042555155], + [-1.389931312419627, 49.658591914207356], + [-1.389942084642362, 49.65856705571873], + [-1.389948463325861, 49.65852131231217], + [-1.389947776643327, 49.65847895128867], + [-1.389925395580485, 49.65843726757665], + [-1.389883695657536, 49.65839617000445], + [-1.389770329439416, 49.658366702372874], + [-1.389470629259052, 49.6583351254436], + [-1.387636360812467, 49.658316880841426], + [-1.387287809835395, 49.65832580415053], + [-1.387277722611223, 49.65829957415882], + [-1.387251985079024, 49.65826499708912], + [-1.387251985079024, 49.65826499708912] + ] + }, + "length": 0.7266361804865676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch26848", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16240", + "bus2": "MVLV06250", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387251985079024, 49.65826499708912], + [-1.387251985079024, 49.65826499708912], + [-1.38978771053233, 49.657963688996865], + [-1.38978771053233, 49.657963688996865] + ] + }, + "length": 0.18612848590421097, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28780", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16240", + "bus2": "MVBus16242", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387251985079024, 49.65826499708912], + [-1.387251985079024, 49.65826499708912], + [-1.385153802659122, 49.658479102553656], + [-1.377957689760006, 49.658651945322525], + [-1.377957689760006, 49.658651945322525] + ] + }, + "length": 0.6732851019557871, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch06777", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16242", + "bus2": "MVBus16243", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.377957689760006, 49.658651945322525], + [-1.377957689760006, 49.658651945322525], + [-1.377014665176524, 49.65869498771795], + [-1.377014665176524, 49.65869498771795] + ] + }, + "length": 0.06825641112094445, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03344", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16243", + "bus2": "MVBus16244", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.377014665176524, 49.65869498771795], + [-1.377014665176524, 49.65869498771795], + [-1.377010067488537, 49.65869518281012], + [-1.37656422189707, 49.65892372742128], + [-1.376121721428708, 49.65874279740818], + [-1.376121721428708, 49.65874279740818] + ] + }, + "length": 0.07910830682295543, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38652", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16244", + "bus2": "MVLV12099", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.376121721428708, 49.65874279740818], + [-1.376121721428708, 49.65874279740818], + [-1.376128822931988, 49.6587537817668], + [-1.37619260878575, 49.65873640507586], + [-1.376230947417102, 49.65873948989785], + [-1.376444185706649, 49.65855100133291], + [-1.376641338280473, 49.65835407839132], + [-1.376650882341169, 49.65820198754478], + [-1.376681323438947, 49.65812403030884], + [-1.377281246452525, 49.65776350980456], + [-1.377335684181196, 49.657807942425116], + [-1.377335684181196, 49.657807942425116] + ] + }, + "length": 0.15245677642841116, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch03345", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16244", + "bus2": "MVBus16245", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.376121721428708, 49.65874279740818], + [-1.376121721428708, 49.65874279740818], + [-1.376119094518961, 49.658741718243604], + [-1.372533815677704, 49.65884745330522], + [-1.372533815677704, 49.65884745330522] + ] + }, + "length": 0.25935534014258776, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12129", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16245", + "bus2": "MVBus16248", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372533815677704, 49.65884745330522], + [-1.372533815677704, 49.65884745330522], + [-1.37052573334111, 49.65888465426676], + [-1.37052573334111, 49.65888465426676] + ] + }, + "length": 0.14504614489335685, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21189", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16248", + "bus2": "MVLV03705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37052573334111, 49.65888465426676], + [-1.37052573334111, 49.65888465426676], + [-1.372613731669212, 49.6609965695583], + [-1.373821100953172, 49.661964717931106], + [-1.373821100953172, 49.661964717931106] + ] + }, + "length": 0.4176484825338185, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12127", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16248", + "bus2": "MVBus16250", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37052573334111, 49.65888465426676], + [-1.37052573334111, 49.65888465426676], + [-1.366195557635843, 49.65902809491562], + [-1.366195557635843, 49.65902809491562] + ] + }, + "length": 0.3130525985206985, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16250", + "bus2": "MVBus16251", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366195557635843, 49.65902809491562], + [-1.366195557635843, 49.65902809491562], + [-1.364874290710226, 49.65897516480102], + [-1.364874290710226, 49.65897516480102] + ] + }, + "length": 0.09557903096634539, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03347", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16251", + "bus2": "MVBus16255", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364874290710226, 49.65897516480102], + [-1.364874290710226, 49.65897516480102], + [-1.363211977478477, 49.65814335267942], + [-1.363211977478477, 49.65814335267942] + ] + }, + "length": 0.15154109479720265, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch46579", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16255", + "bus2": "MVLV15015", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363211977478477, 49.65814335267942], + [-1.363211977478477, 49.65814335267942], + [-1.362705928317699, 49.657775040494265], + [-1.361999708149692, 49.65727533626031], + [-1.362123100582489, 49.65707333926866], + [-1.362188979845099, 49.6571000586743], + [-1.362188979845099, 49.6571000586743] + ] + }, + "length": 0.16009582724380417, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch17174", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16251", + "bus2": "MVBus16252", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364874290710226, 49.65897516480102], + [-1.364874290710226, 49.65897516480102], + [-1.363212064086434, 49.65900120223403], + [-1.363212064086434, 49.65900120223403] + ] + }, + "length": 0.12005035444768837, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch26847", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16252", + "bus2": "MVLV03703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363212064086434, 49.65900120223403], + [-1.363212064086434, 49.65900120223403], + [-1.359611241149069, 49.65929698067572], + [-1.359611241149069, 49.65929698067572] + ] + }, + "length": 0.26205738228368264, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch17175", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16252", + "bus2": "MVLV18263", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363212064086434, 49.65900120223403], + [-1.363212064086434, 49.65900120223403], + [-1.362202405174957, 49.66056110037333], + [-1.354854791926472, 49.66325901700029], + [-1.353621166734196, 49.66271170637617], + [-1.353621166734196, 49.66271170637617] + ] + }, + "length": 0.9055318059977351, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03346", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16245", + "bus2": "MVBus16246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372533815677704, 49.65884745330522], + [-1.372533815677704, 49.65884745330522], + [-1.372298178279623, 49.658299751045696], + [-1.372298178279623, 49.658299751045696] + ] + }, + "length": 0.0632480621227142, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32611", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16246", + "bus2": "MVLV09595", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372298178279623, 49.658299751045696], + [-1.372298178279623, 49.658299751045696], + [-1.372298077747431, 49.65829951138166], + [-1.372231266154901, 49.65829624642845], + [-1.371985631255131, 49.65805652670265], + [-1.371624906888681, 49.65805455809356], + [-1.371306822773066, 49.657664109747394], + [-1.371203402876501, 49.65737931953817], + [-1.371238334599025, 49.65701719464847], + [-1.371086890486818, 49.65692210387349], + [-1.370972942661989, 49.6566448554951], + [-1.370961928314556, 49.65582325231682], + [-1.371124025505802, 49.65578475761738], + [-1.371150419839853, 49.655825871851405], + [-1.371150419839853, 49.655825871851405] + ] + }, + "length": 0.3408872288632633, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10667", + "bus2": "MVLV15016", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381823290728951, 49.64701700842836], + [-1.38181895927442, 49.647017612121545], + [-1.381798635857504, 49.647020313856906], + [-1.38169652530833, 49.64703389159774], + [-1.381367479305764, 49.647337942868106], + [-1.381201793368014, 49.647328848899605], + [-1.379649402879508, 49.648666940149624], + [-1.379569215225331, 49.64863349504422], + [-1.379502688386823, 49.64834213523793], + [-1.37947066256251, 49.64835032984476], + [-1.379425423456413, 49.64836189737522], + [-1.379425423456413, 49.64836189737522] + ] + }, + "length": 0.2943324039112835, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV10578_production", + "bus": "MVLV10578", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10578_consumption", + "bus": "MVLV10578", + "phases": "abc", + "powers": [ + [1369.6485669397962, 450.18171363411926], + [1369.6485669397962, 450.18171363411926], + [1369.6485669397962, 450.18171363411926] + ] + }, + { + "id": "MVLV10667_production", + "bus": "MVLV10667", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10667_consumption", + "bus": "MVLV10667", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV11999_production", + "bus": "MVLV11999", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11999_consumption", + "bus": "MVLV11999", + "phases": "abc", + "powers": [ + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497] + ] + }, + { + "id": "MVLV18939_production", + "bus": "MVLV18939", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18939_consumption", + "bus": "MVLV18939", + "phases": "abc", + "powers": [ + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299] + ] + }, + { + "id": "MVLV16210_production", + "bus": "MVLV16210", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16210_consumption", + "bus": "MVLV16210", + "phases": "abc", + "powers": [ + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299] + ] + }, + { + "id": "MVLV10341_production", + "bus": "MVLV10341", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10341_consumption", + "bus": "MVLV10341", + "phases": "abc", + "powers": [ + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299] + ] + }, + { + "id": "MVLV09036_production", + "bus": "MVLV09036", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09036_consumption", + "bus": "MVLV09036", + "phases": "abc", + "powers": [ + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299] + ] + }, + { + "id": "MVLV05842_production", + "bus": "MVLV05842", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05842_consumption", + "bus": "MVLV05842", + "phases": "abc", + "powers": [ + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299] + ] + }, + { + "id": "MVLV13624_production", + "bus": "MVLV13624", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13624_consumption", + "bus": "MVLV13624", + "phases": "abc", + "powers": [ + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497] + ] + }, + { + "id": "MVLV00333_production", + "bus": "MVLV00333", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00333_consumption", + "bus": "MVLV00333", + "phases": "abc", + "powers": [ + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497] + ] + }, + { + "id": "MVLV16879_production", + "bus": "MVLV16879", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16879_consumption", + "bus": "MVLV16879", + "phases": "abc", + "powers": [ + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497] + ] + }, + { + "id": "MVLV00559_production", + "bus": "MVLV00559", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00559_consumption", + "bus": "MVLV00559", + "phases": "abc", + "powers": [ + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299], + [2197.2451859864764, 722.1995678145299] + ] + }, + { + "id": "MVLV06250_production", + "bus": "MVLV06250", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06250_consumption", + "bus": "MVLV06250", + "phases": "abc", + "powers": [ + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497], + [6369.904414748488, 2093.686332636497] + ] + }, + { + "id": "MVLV12099_production", + "bus": "MVLV12099", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12099_consumption", + "bus": "MVLV12099", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV03705_production", + "bus": "MVLV03705", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03705_consumption", + "bus": "MVLV03705", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV15015_production", + "bus": "MVLV15015", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15015_consumption", + "bus": "MVLV15015", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV03703_production", + "bus": "MVLV03703", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03703_consumption", + "bus": "MVLV03703", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV18263_production", + "bus": "MVLV18263", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18263_consumption", + "bus": "MVLV18263", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV09595_production", + "bus": "MVLV09595", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09595_consumption", + "bus": "MVLV09595", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + }, + { + "id": "MVLV15016_production", + "bus": "MVLV15016", + "phases": "abc", + "powers": [ + [-1100000.0, 0.0], + [-1100000.0, 0.0], + [-1100000.0, 0.0] + ] + }, + { + "id": "MVLV15016_consumption", + "bus": "MVLV15016", + "phases": "abc", + "powers": [ + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784], + [1627.9332232193008, 535.0757747647784] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder032_Winter.json b/roseau/load_flow/data/networks/MVFeeder032_Winter.json new file mode 100644 index 00000000..1b138d4f --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder032_Winter.json @@ -0,0 +1,2169 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.341143887616421, 49.649368152657914] + } + }, + { + "id": "HVMV02", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341143887616421, 49.649368152657914] + } + }, + { + "id": "MVBus00117", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363073414238841, 49.64304820544189] + } + }, + { + "id": "MVLV10578", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363057844882403, 49.64298359804093] + } + }, + { + "id": "MVBus00118", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38131751047128, 49.64725252932783] + } + }, + { + "id": "MVLV10667", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381823290728951, 49.64701700842836] + } + }, + { + "id": "MVBus08728", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381535312882208, 49.64733699083525] + } + }, + { + "id": "MVBus08729", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396450904235974, 49.66024788508449] + } + }, + { + "id": "MVLV11999", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3964057126467686, 49.660262531967966] + } + }, + { + "id": "MVBus13497", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396160700810953, 49.6605270561942] + } + }, + { + "id": "MVBus13498", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387432288168403, 49.66315379586582] + } + }, + { + "id": "MVBus13500", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.385535507316819, 49.66475968041158] + } + }, + { + "id": "MVBus13502", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381131381360064, 49.665651484021154] + } + }, + { + "id": "MVBus13504", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38122396426964, 49.66615036764246] + } + }, + { + "id": "MVBus13505", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381285976129816, 49.66779511294239] + } + }, + { + "id": "MVBus13506", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381534586991432, 49.6696998371898] + } + }, + { + "id": "MVBus13507", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.378508982637205, 49.67049492628741] + } + }, + { + "id": "MVBus13508", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3732913242456, 49.67126845912352] + } + }, + { + "id": "MVBus13509", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371996551240058, 49.6715045934133] + } + }, + { + "id": "MVLV18939", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371520169196079, 49.67063246231633] + } + }, + { + "id": "MVBus13511", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367021341986308, 49.67251972372232] + } + }, + { + "id": "MVLV16210", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365446752865551, 49.670169257631514] + } + }, + { + "id": "MVLV10341", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364568388218211, 49.67301865165213] + } + }, + { + "id": "MVLV09036", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.378678571365429, 49.6700702299779] + } + }, + { + "id": "MVLV05842", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37861523666604, 49.66583210459457] + } + }, + { + "id": "MVLV13624", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3873025941583055, 49.66617902194447] + } + }, + { + "id": "MVBus19216", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.383768918139199, 49.6761669133056] + } + }, + { + "id": "MVBus19217", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387473067955328, 49.67977113339019] + } + }, + { + "id": "MVBus19219", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.390165074821639, 49.68435695606896] + } + }, + { + "id": "MVLV00333", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387482823059862, 49.679565823143825] + } + }, + { + "id": "MVLV16879", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.383661956464301, 49.67615070129675] + } + }, + { + "id": "MVLV00559", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38732578741805, 49.66311035879193] + } + }, + { + "id": "MVBus16238", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396407487666482, 49.66030127215695] + } + }, + { + "id": "MVBus16239", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396174122247448, 49.660517606384] + } + }, + { + "id": "MVBus16240", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387251985079024, 49.65826499708912] + } + }, + { + "id": "MVLV06250", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38978771053233, 49.657963688996865] + } + }, + { + "id": "MVBus16242", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.377957689760006, 49.658651945322525] + } + }, + { + "id": "MVBus16243", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.377014665176524, 49.65869498771795] + } + }, + { + "id": "MVBus16244", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.376121721428708, 49.65874279740818] + } + }, + { + "id": "MVLV12099", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.377335684181196, 49.657807942425116] + } + }, + { + "id": "MVBus16245", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372533815677704, 49.65884745330522] + } + }, + { + "id": "MVBus16248", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37052573334111, 49.65888465426676] + } + }, + { + "id": "MVLV03705", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.373821100953172, 49.661964717931106] + } + }, + { + "id": "MVBus16250", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366195557635843, 49.65902809491562] + } + }, + { + "id": "MVBus16251", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364874290710226, 49.65897516480102] + } + }, + { + "id": "MVBus16255", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363211977478477, 49.65814335267942] + } + }, + { + "id": "MVLV15015", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362188979845099, 49.6571000586743] + } + }, + { + "id": "MVBus16252", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363212064086434, 49.65900120223403] + } + }, + { + "id": "MVLV03703", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.359611241149069, 49.65929698067572] + } + }, + { + "id": "MVLV18263", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.353621166734196, 49.66271170637617] + } + }, + { + "id": "MVBus16246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372298178279623, 49.658299751045696] + } + }, + { + "id": "MVLV09595", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371150419839853, 49.655825871851405] + } + }, + { + "id": "MVLV15016", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379425423456413, 49.64836189737522] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV02", + "geometry": { + "type": "Point", + "coordinates": [-1.341143887616421, 49.649368152657914] + } + }, + { + "id": "MVBranch46833", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV02", + "bus2": "MVBus00117", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341143887616421, 49.649368152657914], + [-1.341155125505547, 49.649298961446966], + [-1.341155125505547, 49.649298961446966], + [-1.341171924590065, 49.64930687473048], + [-1.34153220499483, 49.64947661010156], + [-1.342281461172416, 49.64959418164936], + [-1.343082352557444, 49.64993697293146], + [-1.343716300356949, 49.64995916606215], + [-1.348459393130546, 49.64758213012024], + [-1.348846309075413, 49.64714257669268], + [-1.349060213719286, 49.64701837110458], + [-1.351136248206694, 49.64621592139255], + [-1.351392627106781, 49.64580421775384], + [-1.351912479370751, 49.64540850044688], + [-1.352134962424792, 49.645330158011404], + [-1.353353500184246, 49.64504433859896], + [-1.35515369511343, 49.64492399855778], + [-1.355584164988894, 49.64478605736917], + [-1.35829665370363, 49.643602195615294], + [-1.360301933076271, 49.64329788143403], + [-1.361665073179857, 49.643247201167185], + [-1.363073414238841, 49.64304820544189], + [-1.363073414238841, 49.64304820544189] + ] + }, + "length": 1.8605918592243234, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38809", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00117", + "bus2": "MVLV10578", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363073414238841, 49.64304820544189], + [-1.363073414238841, 49.64304820544189], + [-1.363057844882403, 49.64298359804093], + [-1.363057844882403, 49.64298359804093] + ] + }, + "length": 0.007273229980418355, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39531", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00117", + "bus2": "MVBus00118", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363073414238841, 49.64304820544189], + [-1.363073414238841, 49.64304820544189], + [-1.365165590719229, 49.6428094259041], + [-1.366704338086834, 49.64277107820396], + [-1.3674497862878, 49.642637427072906], + [-1.368933782102799, 49.642699832847896], + [-1.369682822291606, 49.642741610998094], + [-1.370990146237126, 49.64292397561041], + [-1.371729533556553, 49.64300295323173], + [-1.372107421239513, 49.64337889282862], + [-1.372457416775075, 49.64366118497363], + [-1.373208516268967, 49.644040481439404], + [-1.379249044382182, 49.646483061635756], + [-1.381316654975673, 49.647253140027196], + [-1.38131751047128, 49.64725252932783], + [-1.38131751047128, 49.64725252932783] + ] + }, + "length": 1.478026424760914, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47589", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00118", + "bus2": "MVLV10667", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.38131751047128, 49.64725252932783], + [-1.38131751047128, 49.64725252932783], + [-1.381724259956072, 49.646960977864396], + [-1.381805648342918, 49.64699913177372], + [-1.381822465513448, 49.64700702107947], + [-1.381823290728951, 49.64701700842836] + ] + }, + "length": 0.052501881798752856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34841", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10667", + "bus2": "MVBus08728", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381823290728951, 49.64701700842836], + [-1.381828447398985, 49.64702639208406], + [-1.381817612103909, 49.64703787378427], + [-1.381535312882208, 49.64733699083525], + [-1.381535312882208, 49.64733699083525] + ] + }, + "length": 0.040516118763759885, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38666", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08728", + "bus2": "MVBus08729", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381535312882208, 49.64733699083525], + [-1.381535312882208, 49.64733699083525], + [-1.381532613079363, 49.647339842993034], + [-1.387352677781882, 49.64960724622622], + [-1.388318011605513, 49.650356785906034], + [-1.389201217086399, 49.65086187162395], + [-1.390226223721301, 49.65125494435587], + [-1.391904432767028, 49.65255395121468], + [-1.392331753348779, 49.65302028258035], + [-1.392600201816321, 49.65326189559758], + [-1.393508995490428, 49.65405997151168], + [-1.394724211770671, 49.65625667615101], + [-1.394467101458887, 49.657815195376415], + [-1.394726723388684, 49.658258917718264], + [-1.394998401781996, 49.65841886170976], + [-1.397531312501535, 49.6592875234264], + [-1.396450904235974, 49.66024788508449], + [-1.396450904235974, 49.66024788508449] + ] + }, + "length": 2.014917579745296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33480", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08729", + "bus2": "MVLV11999", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396450904235974, 49.66024788508449], + [-1.396450904235974, 49.66024788508449], + [-1.396443075890358, 49.660255220339025], + [-1.396439420030837, 49.66025863274994], + [-1.396418911804348, 49.66025112001627], + [-1.3964057126467686, 49.660262531967966] + ] + }, + "length": 0.0031549875681026926, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46912", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11999", + "bus2": "MVBus13497", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3964057126467686, 49.660262531967966], + [-1.396407132163299, 49.66026161606427], + [-1.396439489721871, 49.66027452619542], + [-1.396434283961451, 49.66029497889806], + [-1.396202967387727, 49.66051470239752], + [-1.396180631662906, 49.66052725036166], + [-1.396160700810953, 49.6605270561942], + [-1.396160700810953, 49.6605270561942] + ] + }, + "length": 0.03821945416796346, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44703", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13497", + "bus2": "MVBus13498", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396160700810953, 49.6605270561942], + [-1.396160700810953, 49.6605270561942], + [-1.395555468685765, 49.66107580437764], + [-1.395169438387523, 49.661520714559], + [-1.394968188098091, 49.661874880556596], + [-1.394807025928492, 49.66252413376084], + [-1.392529045215136, 49.662455180555675], + [-1.392118170720751, 49.66249125685826], + [-1.391235804967413, 49.66261505445563], + [-1.390545214101071, 49.66259849088318], + [-1.389547806756696, 49.662632389251975], + [-1.38911700419036, 49.66267593791021], + [-1.388473184803178, 49.662836170822466], + [-1.387815332627581, 49.66272135864561], + [-1.387432288168403, 49.66315379586582], + [-1.387432288168403, 49.66315379586582] + ] + }, + "length": 0.8146527229250738, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34586", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13498", + "bus2": "MVBus13500", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387432288168403, 49.66315379586582], + [-1.387432288168403, 49.66315379586582], + [-1.387039886554878, 49.6635881108234], + [-1.386484900543847, 49.66413155710462], + [-1.386120329144697, 49.66439543052622], + [-1.385711827363929, 49.66462187773843], + [-1.385544211792423, 49.66472371984935], + [-1.385535507316819, 49.66475968041158], + [-1.385535507316819, 49.66475968041158] + ] + }, + "length": 0.22734508024316832, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33867", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13500", + "bus2": "MVBus13502", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.385535507316819, 49.66475968041158], + [-1.385535507316819, 49.66475968041158], + [-1.385140982061642, 49.66488642106181], + [-1.384579259595707, 49.6650282107324], + [-1.384074713754928, 49.665188800833455], + [-1.383904502841845, 49.66522877499533], + [-1.383538182686781, 49.66529929660482], + [-1.383391757068411, 49.665320143868925], + [-1.383195978619326, 49.66533567551236], + [-1.382353919959743, 49.665463408079425], + [-1.38198670372907, 49.66554314978261], + [-1.381720671427023, 49.665607508456965], + [-1.381131381360064, 49.665651484021154], + [-1.381131381360064, 49.665651484021154] + ] + }, + "length": 0.3352713149048944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44720", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13502", + "bus2": "MVBus13504", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381131381360064, 49.665651484021154], + [-1.381131381360064, 49.665651484021154], + [-1.381131291762427, 49.665640949805756], + [-1.381156061810941, 49.66563928958973], + [-1.381175292863904, 49.66579850632216], + [-1.381173381494978, 49.665922140657614], + [-1.381170640360787, 49.66604085565299], + [-1.381194184326156, 49.66614753368187], + [-1.38122396426964, 49.66615036764246], + [-1.38122396426964, 49.66615036764246] + ] + }, + "length": 0.061848062572889766, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch04352", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13504", + "bus2": "MVBus13505", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.38122396426964, 49.66615036764246], + [-1.38122396426964, 49.66615036764246], + [-1.381285976129816, 49.66779511294239], + [-1.381285976129816, 49.66779511294239] + ] + }, + "length": 0.1829876796288891, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25753", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13505", + "bus2": "MVBus13506", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381285976129816, 49.66779511294239], + [-1.381285976129816, 49.66779511294239], + [-1.381541559413578, 49.669695532229206], + [-1.381534586991432, 49.6696998371898], + [-1.381534586991432, 49.6696998371898] + ] + }, + "length": 0.21286808031255783, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15088", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13506", + "bus2": "MVBus13507", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381534586991432, 49.6696998371898], + [-1.381534586991432, 49.6696998371898], + [-1.380402066293798, 49.670398261588275], + [-1.378508982637205, 49.67049492628741], + [-1.378508982637205, 49.67049492628741] + ] + }, + "length": 0.24984598448858025, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08590", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13507", + "bus2": "MVBus13508", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.378508982637205, 49.67049492628741], + [-1.378508982637205, 49.67049492628741], + [-1.37678537080522, 49.670631142484865], + [-1.3732913242456, 49.67126845912352], + [-1.3732913242456, 49.67126845912352] + ] + }, + "length": 0.3873225502112333, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08589", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13508", + "bus2": "MVBus13509", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3732913242456, 49.67126845912352], + [-1.3732913242456, 49.67126845912352], + [-1.371996551240058, 49.6715045934133], + [-1.371996551240058, 49.6715045934133] + ] + }, + "length": 0.09708097808053277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25752", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13509", + "bus2": "MVLV18939", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371996551240058, 49.6715045934133], + [-1.371996551240058, 49.6715045934133], + [-1.371520169196079, 49.67063246231633], + [-1.371520169196079, 49.67063246231633] + ] + }, + "length": 0.10291560301491072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15087", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13509", + "bus2": "MVBus13511", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371996551240058, 49.6715045934133], + [-1.371996551240058, 49.6715045934133], + [-1.367021341986308, 49.67251972372232], + [-1.367021341986308, 49.67251972372232] + ] + }, + "length": 0.37645239932160457, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15089", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13511", + "bus2": "MVLV16210", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367021341986308, 49.67251972372232], + [-1.367021341986308, 49.67251972372232], + [-1.366187541297301, 49.67211601147649], + [-1.365713580465351, 49.671078713192856], + [-1.365660273578199, 49.67055825961095], + [-1.365446752865551, 49.670169257631514], + [-1.365446752865551, 49.670169257631514] + ] + }, + "length": 0.2993697297327617, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04353", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13511", + "bus2": "MVLV10341", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367021341986308, 49.67251972372232], + [-1.367021341986308, 49.67251972372232], + [-1.364568388218211, 49.67301865165213], + [-1.364568388218211, 49.67301865165213] + ] + }, + "length": 0.18554949799224277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23450", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13507", + "bus2": "MVLV09036", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.378508982637205, 49.67049492628741], + [-1.378508982637205, 49.67049492628741], + [-1.378678571365429, 49.6700702299779], + [-1.378678571365429, 49.6700702299779] + ] + }, + "length": 0.04879639165804694, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch40852", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13502", + "bus2": "MVLV05842", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381131381360064, 49.665651484021154], + [-1.381131381360064, 49.665651484021154], + [-1.381029501125795, 49.66565904699777], + [-1.380400863813919, 49.66568999592873], + [-1.379404242975954, 49.66576193144422], + [-1.379175224813729, 49.66579180145957], + [-1.379014098968625, 49.66583372817085], + [-1.3788643143604, 49.66589746813244], + [-1.378812474507873, 49.66583807706209], + [-1.378623181633065, 49.66580408874287], + [-1.37861523666604, 49.66583210459457], + [-1.37861523666604, 49.66583210459457] + ] + }, + "length": 0.19257122220997205, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41902", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13500", + "bus2": "MVLV13624", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.385535507316819, 49.66475968041158], + [-1.385535507316819, 49.66475968041158], + [-1.38554535141413, 49.66477631587685], + [-1.385580019595954, 49.66480683332069], + [-1.385712315401383, 49.66486376436848], + [-1.386932371014009, 49.6648547027574], + [-1.387659258928473, 49.66496216257432], + [-1.387813498654389, 49.66500127975286], + [-1.38784507547882, 49.66502662324394], + [-1.3878531652238, 49.66506321780228], + [-1.387464730571561, 49.66570593028453], + [-1.387232752063884, 49.66616392313844], + [-1.387273311325704, 49.66617001110036], + [-1.387304696852681, 49.666174718149186], + [-1.3873025941583055, 49.66617902194447] + ] + }, + "length": 0.31499506964743823, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46758", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13624", + "bus2": "MVBus19216", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3873025941583055, 49.66617902194447], + [-1.38730049146393, 49.66618332573975], + [-1.387281621527715, 49.6661802383753], + [-1.387273595999855, 49.66619874533568], + [-1.387126789522058, 49.66653748988062], + [-1.387068218349722, 49.66662254561626], + [-1.386871015445751, 49.66764372595973], + [-1.386711588591889, 49.66822679044968], + [-1.386729959983745, 49.6685182934495], + [-1.386657288580173, 49.66916813070097], + [-1.386478897791872, 49.66969099197584], + [-1.386286617109939, 49.67025454872399], + [-1.385444441146551, 49.671713913094244], + [-1.385347198037088, 49.672013340742716], + [-1.385044711731814, 49.67262800506158], + [-1.384743229885515, 49.673240587263976], + [-1.384541321821446, 49.67374217477279], + [-1.384465340320264, 49.67439041755782], + [-1.384426869459528, 49.674718693637956], + [-1.384401660405118, 49.67481686309496], + [-1.38421143267843, 49.67522277234288], + [-1.383972504907403, 49.67579928977712], + [-1.383768918139199, 49.6761669133056], + [-1.383768918139199, 49.6761669133056] + ] + }, + "length": 1.147392428120071, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45999", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19216", + "bus2": "MVBus19217", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.383768918139199, 49.6761669133056], + [-1.383768918139199, 49.6761669133056], + [-1.38327036785506, 49.67701266461312], + [-1.383309387303449, 49.67707783296498], + [-1.383401257515831, 49.67712680308007], + [-1.384713669679374, 49.67735186928863], + [-1.384914378253134, 49.67739544152049], + [-1.385480855189906, 49.67745290133123], + [-1.386003702970066, 49.677431244661044], + [-1.386450059053588, 49.67739252854847], + [-1.386510323164695, 49.67741864393641], + [-1.386663950339315, 49.67770771798039], + [-1.386643690403553, 49.67805847630034], + [-1.386702345928535, 49.6784207687566], + [-1.38692992343025, 49.67878002142394], + [-1.387042240259506, 49.67914360233237], + [-1.387329243230438, 49.67950524220256], + [-1.387473067955328, 49.67977113339019], + [-1.387473067955328, 49.67977113339019] + ] + }, + "length": 0.6218432211306393, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44224", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19217", + "bus2": "MVBus19219", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387473067955328, 49.67977113339019], + [-1.387473067955328, 49.67977113339019], + [-1.387806168205325, 49.680327750656254], + [-1.388025554686639, 49.68073489364812], + [-1.388096987643314, 49.68102766376753], + [-1.387994507938074, 49.68159422369477], + [-1.388090698237654, 49.68172638112344], + [-1.38850637036157, 49.68232864353209], + [-1.389254229626828, 49.68330725934507], + [-1.389453424615921, 49.68376935909893], + [-1.389969215781849, 49.68434015999343], + [-1.390073797353083, 49.68440161719534], + [-1.390144320137423, 49.684357370379296], + [-1.390165074821639, 49.68435695606896], + [-1.390165074821639, 49.68435695606896] + ] + }, + "length": 0.5676631752803123, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19217", + "bus2": "MVLV00333", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387473067955328, 49.67977113339019], + [-1.387473067955328, 49.67977113339019], + [-1.387482823059862, 49.679565823143825], + [-1.387482823059862, 49.679565823143825] + ] + }, + "length": 0.02284604834606541, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40555", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus19216", + "bus2": "MVLV16879", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.383768918139199, 49.6761669133056], + [-1.383768918139199, 49.6761669133056], + [-1.383661956464301, 49.67615070129675], + [-1.383661956464301, 49.67615070129675] + ] + }, + "length": 0.007927866285498594, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13498", + "bus2": "MVLV00559", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387432288168403, 49.66315379586582], + [-1.387432288168403, 49.66315379586582], + [-1.38732578741805, 49.66311035879193], + [-1.38732578741805, 49.66311035879193] + ] + }, + "length": 0.009080697744007212, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45712", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11999", + "bus2": "MVBus16238", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3964057126467686, 49.660262531967966], + [-1.396391093972659, 49.66027485982339], + [-1.396414518635273, 49.66028758709], + [-1.396419437158045, 49.66029025839718], + [-1.396407487666482, 49.66030127215695], + [-1.396407487666482, 49.66030127215695] + ] + }, + "length": 0.004166795103980359, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39559", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16238", + "bus2": "MVBus16239", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396407487666482, 49.66030127215695], + [-1.396407487666482, 49.66030127215695], + [-1.396174122247448, 49.660517606384], + [-1.396174122247448, 49.660517606384] + ] + }, + "length": 0.029373923231384276, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47672", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16239", + "bus2": "MVBus16240", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396174122247448, 49.660517606384], + [-1.396174122247448, 49.660517606384], + [-1.396111766175311, 49.66050073986271], + [-1.396100144253099, 49.660516796261895], + [-1.396071478395184, 49.66055638580858], + [-1.396011060269304, 49.66052493943121], + [-1.395443563088109, 49.66034353777329], + [-1.394209841555353, 49.659972937785184], + [-1.392963518902197, 49.65959870427206], + [-1.392072147680209, 49.65935175016693], + [-1.391686879205834, 49.65923140750466], + [-1.390093925500851, 49.65872042555155], + [-1.389931312419627, 49.658591914207356], + [-1.389942084642362, 49.65856705571873], + [-1.389948463325861, 49.65852131231217], + [-1.389947776643327, 49.65847895128867], + [-1.389925395580485, 49.65843726757665], + [-1.389883695657536, 49.65839617000445], + [-1.389770329439416, 49.658366702372874], + [-1.389470629259052, 49.6583351254436], + [-1.387636360812467, 49.658316880841426], + [-1.387287809835395, 49.65832580415053], + [-1.387277722611223, 49.65829957415882], + [-1.387251985079024, 49.65826499708912], + [-1.387251985079024, 49.65826499708912] + ] + }, + "length": 0.7266361804865676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch26848", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16240", + "bus2": "MVLV06250", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387251985079024, 49.65826499708912], + [-1.387251985079024, 49.65826499708912], + [-1.38978771053233, 49.657963688996865], + [-1.38978771053233, 49.657963688996865] + ] + }, + "length": 0.18612848590421097, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28780", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16240", + "bus2": "MVBus16242", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387251985079024, 49.65826499708912], + [-1.387251985079024, 49.65826499708912], + [-1.385153802659122, 49.658479102553656], + [-1.377957689760006, 49.658651945322525], + [-1.377957689760006, 49.658651945322525] + ] + }, + "length": 0.6732851019557871, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch06777", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16242", + "bus2": "MVBus16243", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.377957689760006, 49.658651945322525], + [-1.377957689760006, 49.658651945322525], + [-1.377014665176524, 49.65869498771795], + [-1.377014665176524, 49.65869498771795] + ] + }, + "length": 0.06825641112094445, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03344", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16243", + "bus2": "MVBus16244", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.377014665176524, 49.65869498771795], + [-1.377014665176524, 49.65869498771795], + [-1.377010067488537, 49.65869518281012], + [-1.37656422189707, 49.65892372742128], + [-1.376121721428708, 49.65874279740818], + [-1.376121721428708, 49.65874279740818] + ] + }, + "length": 0.07910830682295543, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38652", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16244", + "bus2": "MVLV12099", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.376121721428708, 49.65874279740818], + [-1.376121721428708, 49.65874279740818], + [-1.376128822931988, 49.6587537817668], + [-1.37619260878575, 49.65873640507586], + [-1.376230947417102, 49.65873948989785], + [-1.376444185706649, 49.65855100133291], + [-1.376641338280473, 49.65835407839132], + [-1.376650882341169, 49.65820198754478], + [-1.376681323438947, 49.65812403030884], + [-1.377281246452525, 49.65776350980456], + [-1.377335684181196, 49.657807942425116], + [-1.377335684181196, 49.657807942425116] + ] + }, + "length": 0.15245677642841116, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch03345", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16244", + "bus2": "MVBus16245", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.376121721428708, 49.65874279740818], + [-1.376121721428708, 49.65874279740818], + [-1.376119094518961, 49.658741718243604], + [-1.372533815677704, 49.65884745330522], + [-1.372533815677704, 49.65884745330522] + ] + }, + "length": 0.25935534014258776, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12129", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16245", + "bus2": "MVBus16248", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372533815677704, 49.65884745330522], + [-1.372533815677704, 49.65884745330522], + [-1.37052573334111, 49.65888465426676], + [-1.37052573334111, 49.65888465426676] + ] + }, + "length": 0.14504614489335685, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21189", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16248", + "bus2": "MVLV03705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37052573334111, 49.65888465426676], + [-1.37052573334111, 49.65888465426676], + [-1.372613731669212, 49.6609965695583], + [-1.373821100953172, 49.661964717931106], + [-1.373821100953172, 49.661964717931106] + ] + }, + "length": 0.4176484825338185, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12127", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16248", + "bus2": "MVBus16250", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37052573334111, 49.65888465426676], + [-1.37052573334111, 49.65888465426676], + [-1.366195557635843, 49.65902809491562], + [-1.366195557635843, 49.65902809491562] + ] + }, + "length": 0.3130525985206985, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16250", + "bus2": "MVBus16251", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366195557635843, 49.65902809491562], + [-1.366195557635843, 49.65902809491562], + [-1.364874290710226, 49.65897516480102], + [-1.364874290710226, 49.65897516480102] + ] + }, + "length": 0.09557903096634539, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03347", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16251", + "bus2": "MVBus16255", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364874290710226, 49.65897516480102], + [-1.364874290710226, 49.65897516480102], + [-1.363211977478477, 49.65814335267942], + [-1.363211977478477, 49.65814335267942] + ] + }, + "length": 0.15154109479720265, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch46579", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16255", + "bus2": "MVLV15015", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363211977478477, 49.65814335267942], + [-1.363211977478477, 49.65814335267942], + [-1.362705928317699, 49.657775040494265], + [-1.361999708149692, 49.65727533626031], + [-1.362123100582489, 49.65707333926866], + [-1.362188979845099, 49.6571000586743], + [-1.362188979845099, 49.6571000586743] + ] + }, + "length": 0.16009582724380417, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch17174", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16251", + "bus2": "MVBus16252", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364874290710226, 49.65897516480102], + [-1.364874290710226, 49.65897516480102], + [-1.363212064086434, 49.65900120223403], + [-1.363212064086434, 49.65900120223403] + ] + }, + "length": 0.12005035444768837, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch26847", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16252", + "bus2": "MVLV03703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363212064086434, 49.65900120223403], + [-1.363212064086434, 49.65900120223403], + [-1.359611241149069, 49.65929698067572], + [-1.359611241149069, 49.65929698067572] + ] + }, + "length": 0.26205738228368264, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch17175", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16252", + "bus2": "MVLV18263", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363212064086434, 49.65900120223403], + [-1.363212064086434, 49.65900120223403], + [-1.362202405174957, 49.66056110037333], + [-1.354854791926472, 49.66325901700029], + [-1.353621166734196, 49.66271170637617], + [-1.353621166734196, 49.66271170637617] + ] + }, + "length": 0.9055318059977351, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03346", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16245", + "bus2": "MVBus16246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372533815677704, 49.65884745330522], + [-1.372533815677704, 49.65884745330522], + [-1.372298178279623, 49.658299751045696], + [-1.372298178279623, 49.658299751045696] + ] + }, + "length": 0.0632480621227142, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32611", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16246", + "bus2": "MVLV09595", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372298178279623, 49.658299751045696], + [-1.372298178279623, 49.658299751045696], + [-1.372298077747431, 49.65829951138166], + [-1.372231266154901, 49.65829624642845], + [-1.371985631255131, 49.65805652670265], + [-1.371624906888681, 49.65805455809356], + [-1.371306822773066, 49.657664109747394], + [-1.371203402876501, 49.65737931953817], + [-1.371238334599025, 49.65701719464847], + [-1.371086890486818, 49.65692210387349], + [-1.370972942661989, 49.6566448554951], + [-1.370961928314556, 49.65582325231682], + [-1.371124025505802, 49.65578475761738], + [-1.371150419839853, 49.655825871851405], + [-1.371150419839853, 49.655825871851405] + ] + }, + "length": 0.3408872288632633, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10667", + "bus2": "MVLV15016", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381823290728951, 49.64701700842836], + [-1.38181895927442, 49.647017612121545], + [-1.381798635857504, 49.647020313856906], + [-1.38169652530833, 49.64703389159774], + [-1.381367479305764, 49.647337942868106], + [-1.381201793368014, 49.647328848899605], + [-1.379649402879508, 49.648666940149624], + [-1.379569215225331, 49.64863349504422], + [-1.379502688386823, 49.64834213523793], + [-1.37947066256251, 49.64835032984476], + [-1.379425423456413, 49.64836189737522], + [-1.379425423456413, 49.64836189737522] + ] + }, + "length": 0.2943324039112835, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV10578_production", + "bus": "MVLV10578", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10578_consumption", + "bus": "MVLV10578", + "phases": "abc", + "powers": [ + [6848.242834698981, 2250.908568170596], + [6848.242834698981, 2250.908568170596], + [6848.242834698981, 2250.908568170596] + ] + }, + { + "id": "MVLV10667_production", + "bus": "MVLV10667", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10667_consumption", + "bus": "MVLV10667", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV11999_production", + "bus": "MVLV11999", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11999_consumption", + "bus": "MVLV11999", + "phases": "abc", + "powers": [ + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486] + ] + }, + { + "id": "MVLV18939_production", + "bus": "MVLV18939", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18939_consumption", + "bus": "MVLV18939", + "phases": "abc", + "powers": [ + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496] + ] + }, + { + "id": "MVLV16210_production", + "bus": "MVLV16210", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16210_consumption", + "bus": "MVLV16210", + "phases": "abc", + "powers": [ + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496] + ] + }, + { + "id": "MVLV10341_production", + "bus": "MVLV10341", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10341_consumption", + "bus": "MVLV10341", + "phases": "abc", + "powers": [ + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496] + ] + }, + { + "id": "MVLV09036_production", + "bus": "MVLV09036", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09036_consumption", + "bus": "MVLV09036", + "phases": "abc", + "powers": [ + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496] + ] + }, + { + "id": "MVLV05842_production", + "bus": "MVLV05842", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05842_consumption", + "bus": "MVLV05842", + "phases": "abc", + "powers": [ + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496] + ] + }, + { + "id": "MVLV13624_production", + "bus": "MVLV13624", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13624_consumption", + "bus": "MVLV13624", + "phases": "abc", + "powers": [ + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486] + ] + }, + { + "id": "MVLV00333_production", + "bus": "MVLV00333", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00333_consumption", + "bus": "MVLV00333", + "phases": "abc", + "powers": [ + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486] + ] + }, + { + "id": "MVLV16879_production", + "bus": "MVLV16879", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16879_consumption", + "bus": "MVLV16879", + "phases": "abc", + "powers": [ + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486] + ] + }, + { + "id": "MVLV00559_production", + "bus": "MVLV00559", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00559_consumption", + "bus": "MVLV00559", + "phases": "abc", + "powers": [ + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496], + [10986.225929932383, 3610.9978390726496] + ] + }, + { + "id": "MVLV06250_production", + "bus": "MVLV06250", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06250_consumption", + "bus": "MVLV06250", + "phases": "abc", + "powers": [ + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486], + [31849.52207374244, 10468.431663182486] + ] + }, + { + "id": "MVLV12099_production", + "bus": "MVLV12099", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12099_consumption", + "bus": "MVLV12099", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV03705_production", + "bus": "MVLV03705", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03705_consumption", + "bus": "MVLV03705", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV15015_production", + "bus": "MVLV15015", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15015_consumption", + "bus": "MVLV15015", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV03703_production", + "bus": "MVLV03703", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03703_consumption", + "bus": "MVLV03703", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV18263_production", + "bus": "MVLV18263", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18263_consumption", + "bus": "MVLV18263", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV09595_production", + "bus": "MVLV09595", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09595_consumption", + "bus": "MVLV09595", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + }, + { + "id": "MVLV15016_production", + "bus": "MVLV15016", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15016_consumption", + "bus": "MVLV15016", + "phases": "abc", + "powers": [ + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923], + [8139.666116096504, 2675.3788738238923] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder041_Summer.json b/roseau/load_flow/data/networks/MVFeeder041_Summer.json new file mode 100644 index 00000000..ef25d1e3 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder041_Summer.json @@ -0,0 +1,3407 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.433951450433353, 49.499857308582335] + } + }, + { + "id": "HVMV03", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.433951450433353, 49.499857308582335] + } + }, + { + "id": "MVBus00140", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.433147262174232, 49.49986669937966] + } + }, + { + "id": "MVBus00141", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.432278274736275, 49.5016495516555] + } + }, + { + "id": "MVBus00159", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.432001091043338, 49.50164058103889] + } + }, + { + "id": "MVLV15305", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.429865092470705, 49.50129097345488] + } + }, + { + "id": "MVBus00142", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.426049500668638, 49.510987347109946] + } + }, + { + "id": "MVLV11121", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.426184734665892, 49.51129034911221] + } + }, + { + "id": "MVBus00143", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.412228466426174, 49.51460911594352] + } + }, + { + "id": "MVBus00144", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.412088304372246, 49.515126844272686] + } + }, + { + "id": "MVBus00145", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.412885744293428, 49.519224509065616] + } + }, + { + "id": "MVBus00147", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409262437362678, 49.5215231527115] + } + }, + { + "id": "MVLV01169", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.408590245322735, 49.522215742086814] + } + }, + { + "id": "MVBus00149", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.40853396112505, 49.521971789837664] + } + }, + { + "id": "MVLV05857", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.404682215948554, 49.522898591448595] + } + }, + { + "id": "MVLV05564", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.414107643211931, 49.518812348878335] + } + }, + { + "id": "MVBus00151", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.394277047474696, 49.5192952387995] + } + }, + { + "id": "MVBus00152", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.394833996691817, 49.51880010232737] + } + }, + { + "id": "MVLV11614", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396058529632034, 49.516044410422516] + } + }, + { + "id": "MVBus00154", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.392224691891333, 49.519893527602804] + } + }, + { + "id": "MVBus00156", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391548060075391, 49.51863419448631] + } + }, + { + "id": "MVLV01171", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391472629972477, 49.51846877062308] + } + }, + { + "id": "MVBus00155", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379825737532433, 49.52314398510525] + } + }, + { + "id": "MVBus11466", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380536944462787, 49.52066867702094] + } + }, + { + "id": "MVLV08663", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381398873619378, 49.517696058278425] + } + }, + { + "id": "MVBus14429", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375882006468234, 49.52411966657223] + } + }, + { + "id": "MVLV16705", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3745101402666364, 49.52361539960028] + } + }, + { + "id": "MVBus16340", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372942820931247, 49.52194020096842] + } + }, + { + "id": "MVBus16342", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372488966223399, 49.52151975882387] + } + }, + { + "id": "MVBus16343", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369627420347444, 49.51833205671369] + } + }, + { + "id": "MVLV00567", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371051896813271, 49.51839548894923] + } + }, + { + "id": "MVBus16344", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369179793174285, 49.51719786668166] + } + }, + { + "id": "MVBus16345", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364298189147717, 49.51584715543139] + } + }, + { + "id": "MVBus16347", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360357982063541, 49.5154563553893] + } + }, + { + "id": "MVLV02233", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360706878808562, 49.51449465101565] + } + }, + { + "id": "MVBus16348", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.349385326128443, 49.515722401635294] + } + }, + { + "id": "MVBus16349", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.347835381760062, 49.515790916675066] + } + }, + { + "id": "MVBus16351", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.346685250216569, 49.51574896728357] + } + }, + { + "id": "MVBus16352", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3400486972785, 49.51536127727438] + } + }, + { + "id": "MVBus16353", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.338617730114011, 49.514835961962596] + } + }, + { + "id": "MVBus16354", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3360183377539, 49.51521983680558] + } + }, + { + "id": "MVLV06734", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3359918598331, 49.51522978767321] + } + }, + { + "id": "MVLV12126", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.347829572300763, 49.515809383494506] + } + }, + { + "id": "MVLV00568", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364595749065816, 49.51960541885178] + } + }, + { + "id": "MVLV16704", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.373158136976772, 49.52188870975591] + } + }, + { + "id": "MVBus14431", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37587187309291, 49.52410908925157] + } + }, + { + "id": "MVBus14432", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366071624233616, 49.52669305801903] + } + }, + { + "id": "MVBus14448", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36167574752003, 49.527824051865075] + } + }, + { + "id": "MVBus14462", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360329890364137, 49.52776804669114] + } + }, + { + "id": "MVBus14463", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35732245597545, 49.52750403221727] + } + }, + { + "id": "MVLV06199", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.353213735809931, 49.52741485604408] + } + }, + { + "id": "MVLV08768", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.358129295755885, 49.52661622300191] + } + }, + { + "id": "MVBus14449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345705596674752, 49.53304217442521] + } + }, + { + "id": "MVBus14452", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.334195997784767, 49.538694624646375] + } + }, + { + "id": "MVBus14455", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331985896645413, 49.53865037729998] + } + }, + { + "id": "MVLV01295", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329752701008355, 49.53871148844501] + } + }, + { + "id": "MVBus14453", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331577872310593, 49.54559897556209] + } + }, + { + "id": "MVBus14454", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331348127293804, 49.54573723346734] + } + }, + { + "id": "MVBus14457", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.335112820629712, 49.53873292685697] + } + }, + { + "id": "MVBus14458", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344046592491646, 49.54079005423513] + } + }, + { + "id": "MVBus14459", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344193679792921, 49.540904805026614] + } + }, + { + "id": "MVBus14461", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351486916478262, 49.54663244728472] + } + }, + { + "id": "MVBus32094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351358802263283, 49.54603333478093] + } + }, + { + "id": "MVBus32095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35090701896399, 49.54475576292609] + } + }, + { + "id": "MVLV15565", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.350948561983008, 49.544691867315635] + } + }, + { + "id": "MVLV08413", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.354432689275723, 49.54500115532038] + } + }, + { + "id": "MVBus30327", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.350802154413356, 49.54801832256416] + } + }, + { + "id": "MVLV05831", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351647522126318, 49.549963147222336] + } + }, + { + "id": "MVBus30329", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35002322071283, 49.54846396469262] + } + }, + { + "id": "MVLV01638", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344546726140774, 49.55119579873367] + } + }, + { + "id": "MVLV08412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344261878545574, 49.540375827962926] + } + }, + { + "id": "MVBus14450", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345470629602277, 49.53286059260983] + } + }, + { + "id": "MVLV00730", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345389875331179, 49.53196736281189] + } + }, + { + "id": "MVBus14433", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366703140991816, 49.526996947409266] + } + }, + { + "id": "MVBus14434", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367945629924356, 49.52751533948379] + } + }, + { + "id": "MVBus14435", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375174481199995, 49.5270854765628] + } + }, + { + "id": "MVLV10064", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375391878107113, 49.52819089114238] + } + }, + { + "id": "MVBus14437", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379330368071129, 49.52709876679234] + } + }, + { + "id": "MVLV18656", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379133341172738, 49.5266303066747] + } + }, + { + "id": "MVBus14439", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.382038512535075, 49.52786431943707] + } + }, + { + "id": "MVBus14441", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.382092074428459, 49.529368574793686] + } + }, + { + "id": "MVLV18655", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38420748791955, 49.53207045919828] + } + }, + { + "id": "MVLV11613", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391929859299305, 49.52688747798622] + } + }, + { + "id": "MVBus14443", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.368408922341095, 49.528337782455814] + } + }, + { + "id": "MVBus14445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367532317945696, 49.53266031009273] + } + }, + { + "id": "MVLV10065", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363929569632286, 49.53103421357823] + } + }, + { + "id": "MVLV06198", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366949565087487, 49.53458353417382] + } + }, + { + "id": "MVLV10063", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367321186591, 49.52829954489343] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV03", + "geometry": { + "type": "Point", + "coordinates": [-1.433951450433353, 49.499857308582335] + } + }, + { + "id": "MVBranch45202", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV03", + "bus2": "MVBus00140", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.433951450433353, 49.499857308582335], + [-1.433878199259997, 49.49986473391184], + [-1.433878199259997, 49.49986473391184], + [-1.433829533032811, 49.49986272171756], + [-1.433147262174232, 49.49986669937966], + [-1.433147262174232, 49.49986669937966] + ] + }, + "length": 0.05295578763904262, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch10459", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00140", + "bus2": "MVBus00141", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.433147262174232, 49.49986669937966], + [-1.433147262174232, 49.49986669937966], + [-1.432278274736275, 49.5016495516555], + [-1.432278274736275, 49.5016495516555] + ] + }, + "length": 0.20803891457861706, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch17661", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00141", + "bus2": "MVBus00159", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.432278274736275, 49.5016495516555], + [-1.432278274736275, 49.5016495516555], + [-1.432001091043338, 49.50164058103889], + [-1.432001091043338, 49.50164058103889] + ] + }, + "length": 0.020102333060506964, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch17664", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00159", + "bus2": "MVLV15305", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.432001091043338, 49.50164058103889], + [-1.432001091043338, 49.50164058103889], + [-1.429865092470705, 49.50129097345488], + [-1.429865092470705, 49.50129097345488] + ] + }, + "length": 0.15953088680777358, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10461", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00141", + "bus2": "MVBus00142", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.432278274736275, 49.5016495516555], + [-1.432278274736275, 49.5016495516555], + [-1.427844175772212, 49.51051836185911], + [-1.426049500668638, 49.510987347109946], + [-1.426049500668638, 49.510987347109946] + ] + }, + "length": 1.1773966746299238, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch39160", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00142", + "bus2": "MVLV11121", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.426049500668638, 49.510987347109946], + [-1.426049500668638, 49.510987347109946], + [-1.426145890215806, 49.51130653318748], + [-1.426184734665892, 49.51129034911221], + [-1.426184734665892, 49.51129034911221] + ] + }, + "length": 0.03951925397195987, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch16719", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00142", + "bus2": "MVBus00143", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.426049500668638, 49.510987347109946], + [-1.426049500668638, 49.510987347109946], + [-1.412228466426174, 49.51460911594352], + [-1.412228466426174, 49.51460911594352] + ] + }, + "length": 1.07890324604735, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch18677", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00143", + "bus2": "MVBus00144", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412228466426174, 49.51460911594352], + [-1.412228466426174, 49.51460911594352], + [-1.412088304372246, 49.515126844272686], + [-1.412088304372246, 49.515126844272686] + ] + }, + "length": 0.05846928714576897, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22249", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00144", + "bus2": "MVBus00145", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412088304372246, 49.515126844272686], + [-1.412088304372246, 49.515126844272686], + [-1.412583977554435, 49.51582203449529], + [-1.41361636582413, 49.51612167831818], + [-1.41328256482144, 49.51844635798189], + [-1.412885744293428, 49.519224509065616], + [-1.412885744293428, 49.519224509065616] + ] + }, + "length": 0.5179627421421704, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00957", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00145", + "bus2": "MVBus00147", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412885744293428, 49.519224509065616], + [-1.412885744293428, 49.519224509065616], + [-1.409309956799744, 49.52147418984571], + [-1.409262437362678, 49.5215231527115], + [-1.409262437362678, 49.5215231527115] + ] + }, + "length": 0.3664958381602493, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12739", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00147", + "bus2": "MVLV01169", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409262437362678, 49.5215231527115], + [-1.409262437362678, 49.5215231527115], + [-1.408590245322735, 49.522215742086814], + [-1.408590245322735, 49.522215742086814] + ] + }, + "length": 0.091116949891685, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch26350", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00147", + "bus2": "MVBus00149", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409262437362678, 49.5215231527115], + [-1.409262437362678, 49.5215231527115], + [-1.40853396112505, 49.521971789837664], + [-1.40853396112505, 49.521971789837664] + ] + }, + "length": 0.07260696893063866, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch39970", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00149", + "bus2": "MVLV05857", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40853396112505, 49.521971789837664], + [-1.40853396112505, 49.521971789837664], + [-1.408557168947826, 49.52199444873275], + [-1.408557367825913, 49.52201319105377], + [-1.408403565162502, 49.52205320599162], + [-1.408333163194044, 49.5220715234229], + [-1.407791656966289, 49.52221236988192], + [-1.407353244970395, 49.52232640097521], + [-1.406856586421732, 49.522455582175034], + [-1.406025918145544, 49.52263782777185], + [-1.405375331855827, 49.52278054543903], + [-1.404841603060225, 49.522897631598234], + [-1.404731375867821, 49.52291273994714], + [-1.404682215948554, 49.522898591448595], + [-1.404682215948554, 49.522898591448595] + ] + }, + "length": 0.30372207120162004, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch22250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00145", + "bus2": "MVLV05564", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412885744293428, 49.519224509065616], + [-1.412885744293428, 49.519224509065616], + [-1.414107643211931, 49.518812348878335], + [-1.414107643211931, 49.518812348878335] + ] + }, + "length": 0.09964594277049314, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12736", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00143", + "bus2": "MVBus00151", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412228466426174, 49.51460911594352], + [-1.412228466426174, 49.51460911594352], + [-1.394277047474696, 49.5192952387995], + [-1.394277047474696, 49.5192952387995] + ] + }, + "length": 1.4004826400271495, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch14577", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00151", + "bus2": "MVBus00152", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394277047474696, 49.5192952387995], + [-1.394277047474696, 49.5192952387995], + [-1.394833996691817, 49.51880010232737], + [-1.394833996691817, 49.51880010232737] + ] + }, + "length": 0.06825631635105202, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14579", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00152", + "bus2": "MVLV11614", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394833996691817, 49.51880010232737], + [-1.394833996691817, 49.51880010232737], + [-1.396496479783142, 49.517386950319356], + [-1.396694165154007, 49.516714330965854], + [-1.396058529632034, 49.516044410422516], + [-1.396058529632034, 49.516044410422516] + ] + }, + "length": 0.361719258634167, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12737", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00151", + "bus2": "MVBus00154", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394277047474696, 49.5192952387995], + [-1.394277047474696, 49.5192952387995], + [-1.392224691891333, 49.519893527602804], + [-1.392224691891333, 49.519893527602804] + ] + }, + "length": 0.16282377592133623, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch07833", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00154", + "bus2": "MVBus00156", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.392224691891333, 49.519893527602804], + [-1.392224691891333, 49.519893527602804], + [-1.391548060075391, 49.51863419448631], + [-1.391548060075391, 49.51863419448631] + ] + }, + "length": 0.1483844769179519, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24905", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00156", + "bus2": "MVLV01171", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391548060075391, 49.51863419448631], + [-1.391548060075391, 49.51863419448631], + [-1.391472629972477, 49.51846877062308], + [-1.391472629972477, 49.51846877062308] + ] + }, + "length": 0.019192000479414006, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22252", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00154", + "bus2": "MVBus00155", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.392224691891333, 49.519893527602804], + [-1.392224691891333, 49.519893527602804], + [-1.379825737532433, 49.52314398510525], + [-1.379825737532433, 49.52314398510525] + ] + }, + "length": 0.9678000868795191, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch03063", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00155", + "bus2": "MVBus11466", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379825737532433, 49.52314398510525], + [-1.379825737532433, 49.52314398510525], + [-1.380536944462787, 49.52066867702094], + [-1.380536944462787, 49.52066867702094] + ] + }, + "length": 0.2800778679443321, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22253", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11466", + "bus2": "MVLV08663", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380536944462787, 49.52066867702094], + [-1.380536944462787, 49.52066867702094], + [-1.380135338012356, 49.51790772555488], + [-1.381398873619378, 49.517696058278425], + [-1.381398873619378, 49.517696058278425] + ] + }, + "length": 0.4029193743641605, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25030", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00155", + "bus2": "MVBus14429", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379825737532433, 49.52314398510525], + [-1.379825737532433, 49.52314398510525], + [-1.375882006468234, 49.52411966657223], + [-1.375882006468234, 49.52411966657223] + ] + }, + "length": 0.30545779992426125, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch34113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14429", + "bus2": "MVLV16705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.375882006468234, 49.52411966657223], + [-1.375882006468234, 49.52411966657223], + [-1.37588641915197, 49.52412374796654], + [-1.375880860165431, 49.524127848501855], + [-1.37586540338666, 49.52412880075812], + [-1.37584554885683, 49.52412720877028], + [-1.375807411328535, 49.5241110460851], + [-1.375750303320852, 49.52408473087652], + [-1.375670428398973, 49.52404924317009], + [-1.375587919400292, 49.52400981709691], + [-1.375491459283816, 49.52396411232768], + [-1.375402070908907, 49.523920680630056], + [-1.375311702430374, 49.52387440162309], + [-1.375223539956287, 49.52382920563422], + [-1.3751398718712, 49.523785220077464], + [-1.375060876097653, 49.5237410907041], + [-1.374975165607978, 49.523692941692595], + [-1.374892583496152, 49.52364412088988], + [-1.374869077046494, 49.5236293241206], + [-1.374810869794574, 49.52359413134504], + [-1.374748457020092, 49.52355447307586], + [-1.374715753686123, 49.523532289150474], + [-1.374699457210854, 49.523521101071765], + [-1.374691087832194, 49.52351959615264], + [-1.3746827809573, 49.52352370924028], + [-1.374658902324847, 49.52354107887513], + [-1.37463508477158, 49.52355833872262], + [-1.374596825073989, 49.5235861497596], + [-1.374564695357433, 49.523613349576806], + [-1.374545439534793, 49.52363065789267], + [-1.374538729849515, 49.52363508150769], + [-1.374533093694201, 49.523635075063176], + [-1.374528655814153, 49.52363406962236], + [-1.374508686984242, 49.52362956756616], + [-1.3745101402666364, 49.52361539960028] + ] + }, + "length": 0.1307080187271019, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38547", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16705", + "bus2": "MVBus16340", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3745101402666364, 49.52361539960028], + [-1.374507803738187, 49.52360122533593], + [-1.374526066806178, 49.52360468285858], + [-1.374533394116747, 49.52360248821487], + [-1.374539225399954, 49.52359623929475], + [-1.374542902791684, 49.52359228662578], + [-1.374559665418577, 49.52357374219606], + [-1.37458468390078, 49.52355666122352], + [-1.374608644482612, 49.523538326951446], + [-1.374651289781291, 49.52350985046158], + [-1.374672885292921, 49.52349585109228], + [-1.374676983694804, 49.523490087087836], + [-1.374675508775088, 49.52348346947519], + [-1.374645625305597, 49.52346645003947], + [-1.374594819624124, 49.523431793761624], + [-1.374545544583284, 49.52339691053581], + [-1.374484529202116, 49.523347192181014], + [-1.374424784057626, 49.52329708403555], + [-1.374366781857894, 49.52324624785112], + [-1.374314764190819, 49.52320154883666], + [-1.374218840636028, 49.52311923858923], + [-1.374161365825145, 49.52306957301507], + [-1.374093239530904, 49.52301341022246], + [-1.374031806559135, 49.5229575450475], + [-1.373976459418936, 49.5229073103936], + [-1.373914556492944, 49.52285315009208], + [-1.373851545391469, 49.522799896059894], + [-1.373794617475623, 49.52275223667008], + [-1.373736040825428, 49.522699367710544], + [-1.373671172141087, 49.522648490631525], + [-1.373627609187473, 49.5226138809479], + [-1.373598507155725, 49.522595245664114], + [-1.373557897638867, 49.52256041023802], + [-1.373512963824633, 49.522522515678276], + [-1.373446574410371, 49.52246476149907], + [-1.373382657503204, 49.52241005142744], + [-1.373343808464295, 49.52238748067885], + [-1.373314118545625, 49.52237577817476], + [-1.373275284016497, 49.5223509320102], + [-1.373233341010657, 49.52231560696845], + [-1.373190513691656, 49.522275327600745], + [-1.373154672440506, 49.52224166720789], + [-1.373136387757179, 49.522224578446945], + [-1.373123259338372, 49.52220640494466], + [-1.373118218963762, 49.52219119281035], + [-1.373108839541907, 49.522172337521894], + [-1.373085338914012, 49.522151893331866], + [-1.373046910551303, 49.5221008502141], + [-1.373031009517598, 49.522070353155485], + [-1.37302099477644, 49.52204388328013], + [-1.373012536318817, 49.52202363289315], + [-1.373003933586273, 49.522007676075425], + [-1.372986026152343, 49.5219820783508], + [-1.372969911433426, 49.52196462609999], + [-1.372952597679086, 49.52194949466127], + [-1.372942820931247, 49.52194020096842], + [-1.372942820931247, 49.52194020096842] + ] + }, + "length": 0.2333369549446221, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16340", + "bus2": "MVBus16342", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372942820931247, 49.52194020096842], + [-1.372942820931247, 49.52194020096842], + [-1.372943410384867, 49.52194109102263], + [-1.372930900080305, 49.521938859101546], + [-1.372913668407632, 49.52194256315057], + [-1.372878715660855, 49.521955219572796], + [-1.372860737457037, 49.521960628055034], + [-1.372845794192618, 49.52196427071355], + [-1.372839374207697, 49.52196278665339], + [-1.37283301309268, 49.521958306482176], + [-1.372822490727311, 49.52194368553268], + [-1.372801732098594, 49.521906773739765], + [-1.372768560110694, 49.52185697163041], + [-1.372735754008908, 49.52181221170446], + [-1.372703875088077, 49.521764428957376], + [-1.372667218162021, 49.52171418547647], + [-1.372641986656806, 49.5216828243158], + [-1.37260852656744, 49.52164123162739], + [-1.37256983265634, 49.521590133579544], + [-1.372542243755531, 49.521553692530375], + [-1.372519614001016, 49.521530775658654], + [-1.372509356188701, 49.52152398747884], + [-1.372488966223399, 49.52151975882387], + [-1.372488966223399, 49.52151975882387] + ] + }, + "length": 0.06437146766534582, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch22395", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16342", + "bus2": "MVBus16343", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372488966223399, 49.52151975882387], + [-1.372488966223399, 49.52151975882387], + [-1.370799313389356, 49.520959938596874], + [-1.369627420347444, 49.51833205671369], + [-1.369627420347444, 49.51833205671369] + ] + }, + "length": 0.44161320889387423, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch35548", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16343", + "bus2": "MVLV00567", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369627420347444, 49.51833205671369], + [-1.369627420347444, 49.51833205671369], + [-1.370153177222226, 49.518215011350115], + [-1.370280097133333, 49.518456661999856], + [-1.371051896813271, 49.51839548894923], + [-1.371051896813271, 49.51839548894923] + ] + }, + "length": 0.12493630621683054, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch04360", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16343", + "bus2": "MVBus16344", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369627420347444, 49.51833205671369], + [-1.369627420347444, 49.51833205671369], + [-1.369179793174285, 49.51719786668166], + [-1.369179793174285, 49.51719786668166] + ] + }, + "length": 0.1302420288824289, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08604", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16344", + "bus2": "MVBus16345", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369179793174285, 49.51719786668166], + [-1.369179793174285, 49.51719786668166], + [-1.369179100725938, 49.51719612554071], + [-1.367196176574971, 49.51595242305164], + [-1.365805638447048, 49.51603297208332], + [-1.364298189147717, 49.51584715543139], + [-1.364298189147717, 49.51584715543139] + ] + }, + "length": 0.41176539826094094, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15099", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16345", + "bus2": "MVBus16347", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364298189147717, 49.51584715543139], + [-1.364298189147717, 49.51584715543139], + [-1.360357982063541, 49.5154563553893], + [-1.360357982063541, 49.5154563553893] + ] + }, + "length": 0.28861558620082556, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00874", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16347", + "bus2": "MVLV02233", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360357982063541, 49.5154563553893], + [-1.360357982063541, 49.5154563553893], + [-1.360706878808562, 49.51449465101565], + [-1.360706878808562, 49.51449465101565] + ] + }, + "length": 0.10990392063323207, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20001", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16347", + "bus2": "MVBus16348", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360357982063541, 49.5154563553893], + [-1.360357982063541, 49.5154563553893], + [-1.352723288785866, 49.51564989220757], + [-1.349385326128443, 49.515722401635294], + [-1.349385326128443, 49.515722401635294] + ] + }, + "length": 0.7951221854101156, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch26213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16348", + "bus2": "MVBus16349", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.349385326128443, 49.515722401635294], + [-1.349385326128443, 49.515722401635294], + [-1.347835381760062, 49.515790916675066], + [-1.347835381760062, 49.515790916675066] + ] + }, + "length": 0.11249496678995423, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01486", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16349", + "bus2": "MVBus16351", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.347835381760062, 49.515790916675066], + [-1.347835381760062, 49.515790916675066], + [-1.346685250216569, 49.51574896728357], + [-1.346685250216569, 49.51574896728357] + ] + }, + "length": 0.08341537329519629, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28729", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16351", + "bus2": "MVBus16352", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.346685250216569, 49.51574896728357], + [-1.346685250216569, 49.51574896728357], + [-1.340642618246887, 49.51552839280092], + [-1.3400486972785, 49.51536127727438], + [-1.3400486972785, 49.51536127727438] + ] + }, + "length": 0.48510755176973774, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16352", + "bus2": "MVBus16353", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3400486972785, 49.51536127727438], + [-1.3400486972785, 49.51536127727438], + [-1.339548472842566, 49.515220517430414], + [-1.338617730114011, 49.514835961962596], + [-1.338617730114011, 49.514835961962596] + ] + }, + "length": 0.11928588448450714, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch47808", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16353", + "bus2": "MVBus16354", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.338617730114011, 49.514835961962596], + [-1.338617730114011, 49.514835961962596], + [-1.33860772919924, 49.51483093458505], + [-1.338591176200925, 49.51482140416053], + [-1.338581071794949, 49.5148193562122], + [-1.338550329434943, 49.514820499785266], + [-1.33845698047586, 49.51482638342893], + [-1.33836632594848, 49.51483209498343], + [-1.338288462348311, 49.51483918812175], + [-1.338230881837932, 49.51484506975668], + [-1.338156861354124, 49.51485529174458], + [-1.338055079246872, 49.51486989327254], + [-1.337941740973143, 49.51488780507821], + [-1.337838147258127, 49.51490275834012], + [-1.337731725569168, 49.51491602628484], + [-1.337623456722069, 49.51492876593977], + [-1.337508577536453, 49.51494407169888], + [-1.337396314098531, 49.514958110753135], + [-1.337280355107842, 49.5149710753565], + [-1.337199987887071, 49.51498119334215], + [-1.337103748490176, 49.5149974055893], + [-1.337015680584837, 49.51501394434039], + [-1.336897388255749, 49.51503230276296], + [-1.336789224659492, 49.51504651309811], + [-1.336693312140127, 49.515060934684634], + [-1.336620413002566, 49.51507274007547], + [-1.336538658908484, 49.51508393390104], + [-1.336413934797562, 49.51510100407356], + [-1.33634765230967, 49.515111870471856], + [-1.336284683884853, 49.51512292364849], + [-1.33623904418787, 49.51513258589135], + [-1.336183704848684, 49.51514429687771], + [-1.336146787344298, 49.515153684489306], + [-1.33611996042109, 49.515165120663546], + [-1.336092385343603, 49.515178638726006], + [-1.336082830655308, 49.515184243801556], + [-1.336065868606185, 49.51519420165097], + [-1.336036174270159, 49.51520955560797], + [-1.3360183377539, 49.51521983680558], + [-1.3360183377539, 49.51521983680558] + ] + }, + "length": 0.19558721650133015, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40917", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16354", + "bus2": "MVLV06734", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3360183377539, 49.51521983680558], + [-1.3360183377539, 49.51521983680558], + [-1.336006595808891, 49.515224600308706], + [-1.3359918598331, 49.51522978767321], + [-1.3359918598331, 49.51522978767321] + ] + }, + "length": 0.002214901144747097, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch01485", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16349", + "bus2": "MVLV12126", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.347835381760062, 49.515790916675066], + [-1.347835381760062, 49.515790916675066], + [-1.347829572300763, 49.515809383494506], + [-1.347829572300763, 49.515809383494506] + ] + }, + "length": 0.002096514595334105, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20002", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16345", + "bus2": "MVLV00568", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364298189147717, 49.51584715543139], + [-1.364298189147717, 49.51584715543139], + [-1.364595749065816, 49.51960541885178], + [-1.364595749065816, 49.51960541885178] + ] + }, + "length": 0.41854810346143656, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch45665", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16340", + "bus2": "MVLV16704", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372942820931247, 49.52194020096842], + [-1.372942820931247, 49.52194020096842], + [-1.372960790542537, 49.52194933262995], + [-1.37297912032715, 49.521958669018105], + [-1.37299203962875, 49.5219617785541], + [-1.373003481763346, 49.52195918769556], + [-1.373033297401945, 49.52194407257697], + [-1.373070427262384, 49.5219252526504], + [-1.373110421866682, 49.52190498683359], + [-1.373134258711034, 49.521895801378406], + [-1.373158136976772, 49.52188870975591], + [-1.373158136976772, 49.52188870975591] + ] + }, + "length": 0.01892881924963116, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45844", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16705", + "bus2": "MVBus14431", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3745101402666364, 49.52361539960028], + [-1.37451393007748, 49.52361540589875], + [-1.374530283887948, 49.52361558616777], + [-1.374535695636503, 49.52361668753441], + [-1.374538542263336, 49.52361727435096], + [-1.374547008584166, 49.52361326427178], + [-1.374571696044895, 49.52358610458954], + [-1.374606709717908, 49.5235607672836], + [-1.37464203112261, 49.523535483441506], + [-1.374687886736525, 49.523504992898964], + [-1.374695917146592, 49.523503540923635], + [-1.374704410920078, 49.52350675946603], + [-1.374730660697725, 49.523528332675575], + [-1.374794570832627, 49.523569590400534], + [-1.374868005746312, 49.52361551856498], + [-1.374941582024805, 49.523658825697574], + [-1.375009358926943, 49.52369721282365], + [-1.375091843397271, 49.523743734630685], + [-1.375172926178832, 49.52378788069514], + [-1.375265722313568, 49.52383716032764], + [-1.375355923548697, 49.523883039878754], + [-1.375449131737633, 49.52392828732245], + [-1.375532168682095, 49.52396794901314], + [-1.375619517431518, 49.524010301414194], + [-1.375687451458401, 49.52404265877466], + [-1.375775253436141, 49.524082308545225], + [-1.375845075140324, 49.52411098399693], + [-1.37585939388824, 49.52411376243272], + [-1.37587187309291, 49.52410908925157], + [-1.37587187309291, 49.52410908925157] + ] + }, + "length": 0.12857411755433706, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch12883", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14431", + "bus2": "MVBus14432", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37587187309291, 49.52410908925157], + [-1.37587187309291, 49.52410908925157], + [-1.366071624233616, 49.52669305801903], + [-1.366071624233616, 49.52669305801903] + ] + }, + "length": 0.7655216243145522, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch14738", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14432", + "bus2": "MVBus14448", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366071624233616, 49.52669305801903], + [-1.366071624233616, 49.52669305801903], + [-1.36167574752003, 49.527824051865075], + [-1.36167574752003, 49.527824051865075] + ] + }, + "length": 0.34220306486037083, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch03062", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14448", + "bus2": "MVBus14462", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36167574752003, 49.527824051865075], + [-1.36167574752003, 49.527824051865075], + [-1.360329890364137, 49.52776804669114], + [-1.360329890364137, 49.52776804669114] + ] + }, + "length": 0.09763292837199693, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07967", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14462", + "bus2": "MVBus14463", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360329890364137, 49.52776804669114], + [-1.360329890364137, 49.52776804669114], + [-1.359678002415967, 49.52774387175989], + [-1.35732245597545, 49.52750403221727], + [-1.35732245597545, 49.52750403221727] + ] + }, + "length": 0.21987560879011972, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25029", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14463", + "bus2": "MVLV06199", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35732245597545, 49.52750403221727], + [-1.35732245597545, 49.52750403221727], + [-1.354008785323559, 49.52721369613046], + [-1.353213735809931, 49.52741485604408], + [-1.353213735809931, 49.52741485604408] + ] + }, + "length": 0.30381443432191135, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07968", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14463", + "bus2": "MVLV08768", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35732245597545, 49.52750403221727], + [-1.35732245597545, 49.52750403221727], + [-1.358129295755885, 49.52661622300191], + [-1.358129295755885, 49.52661622300191] + ] + }, + "length": 0.11472582493055589, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08746", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14448", + "bus2": "MVBus14449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36167574752003, 49.527824051865075], + [-1.36167574752003, 49.527824051865075], + [-1.353218624113, 49.530128858750494], + [-1.345705596674752, 49.53304217442521], + [-1.345705596674752, 49.53304217442521] + ] + }, + "length": 1.2968129892721059, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13016", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14449", + "bus2": "MVBus14452", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.345705596674752, 49.53304217442521], + [-1.345705596674752, 49.53304217442521], + [-1.334576919054313, 49.53737519883158], + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375] + ] + }, + "length": 1.0880093751534499, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13015", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14452", + "bus2": "MVBus14455", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375], + [-1.333329995911496, 49.53871656867157], + [-1.332537745687778, 49.538981184015455], + [-1.331985896645413, 49.53865037729998], + [-1.331985896645413, 49.53865037729998] + ] + }, + "length": 0.18148755103329137, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01893", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14455", + "bus2": "MVLV01295", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331985896645413, 49.53865037729998], + [-1.331985896645413, 49.53865037729998], + [-1.329752701008355, 49.53871148844501], + [-1.329752701008355, 49.53871148844501] + ] + }, + "length": 0.1617802964828953, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29784", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14452", + "bus2": "MVBus14453", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375], + [-1.331580741928486, 49.545581777605285], + [-1.331577872310593, 49.54559897556209], + [-1.331577872310593, 49.54559897556209] + ] + }, + "length": 0.7909536117120637, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42897", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14453", + "bus2": "MVBus14454", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331577872310593, 49.54559897556209], + [-1.331577872310593, 49.54559897556209], + [-1.331446712578302, 49.54558423279413], + [-1.331356134499559, 49.54572480669329], + [-1.331348127293804, 49.54573723346734], + [-1.331348127293804, 49.54573723346734] + ] + }, + "length": 0.028084407069707818, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20295", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14452", + "bus2": "MVBus14457", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375], + [-1.335112820629712, 49.53873292685697], + [-1.335112820629712, 49.53873292685697] + ] + }, + "length": 0.06649567910863435, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch27130", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14457", + "bus2": "MVBus14458", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.335112820629712, 49.53873292685697], + [-1.335112820629712, 49.53873292685697], + [-1.342342016364906, 49.539460227675846], + [-1.344046592491646, 49.54079005423513], + [-1.344046592491646, 49.54079005423513] + ] + }, + "length": 0.7220603766026933, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29785", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14458", + "bus2": "MVBus14459", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.344046592491646, 49.54079005423513], + [-1.344046592491646, 49.54079005423513], + [-1.344193679792921, 49.540904805026614], + [-1.344193679792921, 49.540904805026614] + ] + }, + "length": 0.01661967154464987, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31721", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14459", + "bus2": "MVBus14461", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.344193679792921, 49.540904805026614], + [-1.344193679792921, 49.540904805026614], + [-1.350119394602715, 49.54555967300069], + [-1.351486916478262, 49.54663244728472], + [-1.351486916478262, 49.54663244728472] + ] + }, + "length": 0.8272889165536899, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10711", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14461", + "bus2": "MVBus32094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351486916478262, 49.54663244728472], + [-1.351486916478262, 49.54663244728472], + [-1.351358802263283, 49.54603333478093], + [-1.351358802263283, 49.54603333478093] + ] + }, + "length": 0.06727539665020081, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23338", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32094", + "bus2": "MVBus32095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351358802263283, 49.54603333478093], + [-1.351358802263283, 49.54603333478093], + [-1.35090701896399, 49.54475576292609], + [-1.35090701896399, 49.54475576292609] + ] + }, + "length": 0.14580499771374306, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch48105", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32095", + "bus2": "MVLV15565", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35090701896399, 49.54475576292609], + [-1.35090701896399, 49.54475576292609], + [-1.350948561983008, 49.544691867315635], + [-1.350948561983008, 49.544691867315635] + ] + }, + "length": 0.007716290976880467, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch15770", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32094", + "bus2": "MVLV08413", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351358802263283, 49.54603333478093], + [-1.351358802263283, 49.54603333478093], + [-1.352989065702942, 49.54545018022141], + [-1.354432689275723, 49.54500115532038], + [-1.354432689275723, 49.54500115532038] + ] + }, + "length": 0.25043043244191004, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14461", + "bus2": "MVBus30327", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351486916478262, 49.54663244728472], + [-1.351486916478262, 49.54663244728472], + [-1.351373989478891, 49.54713720387661], + [-1.350802154413356, 49.54801832256416], + [-1.350802154413356, 49.54801832256416] + ] + }, + "length": 0.1631080748627394, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02230", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30327", + "bus2": "MVLV05831", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.350802154413356, 49.54801832256416], + [-1.350802154413356, 49.54801832256416], + [-1.351765849407517, 49.548416585119746], + [-1.351647522126318, 49.549963147222336], + [-1.351647522126318, 49.549963147222336] + ] + }, + "length": 0.2548384459288032, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10172", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30327", + "bus2": "MVBus30329", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.350802154413356, 49.54801832256416], + [-1.350802154413356, 49.54801832256416], + [-1.35002322071283, 49.54846396469262], + [-1.35002322071283, 49.54846396469262] + ] + }, + "length": 0.07505973949217395, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12212", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30329", + "bus2": "MVLV01638", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35002322071283, 49.54846396469262], + [-1.35002322071283, 49.54846396469262], + [-1.344546726140774, 49.55119579873367], + [-1.344546726140774, 49.55119579873367] + ] + }, + "length": 0.49936575784781284, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15766", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14459", + "bus2": "MVLV08412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.344193679792921, 49.540904805026614], + [-1.344193679792921, 49.540904805026614], + [-1.344261878545574, 49.540375827962926], + [-1.344261878545574, 49.540375827962926] + ] + }, + "length": 0.05903963211217331, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32042", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14449", + "bus2": "MVBus14450", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.345705596674752, 49.53304217442521], + [-1.345705596674752, 49.53304217442521], + [-1.345470629602277, 49.53286059260983], + [-1.345470629602277, 49.53286059260983] + ] + }, + "length": 0.026403753223718827, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11453", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14450", + "bus2": "MVLV00730", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.345470629602277, 49.53286059260983], + [-1.345470629602277, 49.53286059260983], + [-1.345389875331179, 49.53196736281189], + [-1.345389875331179, 49.53196736281189] + ] + }, + "length": 0.09951689256607632, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12882", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14432", + "bus2": "MVBus14433", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366071624233616, 49.52669305801903], + [-1.366071624233616, 49.52669305801903], + [-1.366703140991816, 49.526996947409266], + [-1.366703140991816, 49.526996947409266] + ] + }, + "length": 0.05685638938740189, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22394", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14433", + "bus2": "MVBus14434", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366703140991816, 49.526996947409266], + [-1.366703140991816, 49.526996947409266], + [-1.367945629924356, 49.52751533948379], + [-1.367945629924356, 49.52751533948379] + ] + }, + "length": 0.10684313253987544, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07966", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14434", + "bus2": "MVBus14435", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367945629924356, 49.52751533948379], + [-1.367945629924356, 49.52751533948379], + [-1.375174481199995, 49.5270854765628], + [-1.375174481199995, 49.5270854765628] + ] + }, + "length": 0.5255209762938511, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12885", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14435", + "bus2": "MVLV10064", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.375174481199995, 49.5270854765628], + [-1.375174481199995, 49.5270854765628], + [-1.374848871805876, 49.527717146130406], + [-1.375391878107113, 49.52819089114238], + [-1.375391878107113, 49.52819089114238] + ] + }, + "length": 0.13984235587319505, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30737", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14435", + "bus2": "MVBus14437", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.375174481199995, 49.5270854765628], + [-1.375174481199995, 49.5270854765628], + [-1.378363959690256, 49.52693985262299], + [-1.379330368071129, 49.52709876679234], + [-1.379330368071129, 49.52709876679234] + ] + }, + "length": 0.30363762939058403, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03064", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14437", + "bus2": "MVLV18656", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379330368071129, 49.52709876679234], + [-1.379330368071129, 49.52709876679234], + [-1.379133341172738, 49.5266303066747], + [-1.379133341172738, 49.5266303066747] + ] + }, + "length": 0.05401939170307853, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03061", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14437", + "bus2": "MVBus14439", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379330368071129, 49.52709876679234], + [-1.379330368071129, 49.52709876679234], + [-1.380320389819758, 49.52722270478576], + [-1.380798267149782, 49.52757827573299], + [-1.382038512535075, 49.52786431943707], + [-1.382038512535075, 49.52786431943707] + ] + }, + "length": 0.2207891744342707, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18779", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14439", + "bus2": "MVBus14441", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.382038512535075, 49.52786431943707], + [-1.382038512535075, 49.52786431943707], + [-1.382294386907641, 49.5286843782084], + [-1.382092074428459, 49.529368574793686], + [-1.382092074428459, 49.529368574793686] + ] + }, + "length": 0.17056196230911183, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18780", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14441", + "bus2": "MVLV18655", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.382092074428459, 49.529368574793686], + [-1.382092074428459, 49.529368574793686], + [-1.38420748791955, 49.53207045919828], + [-1.38420748791955, 49.53207045919828] + ] + }, + "length": 0.33727356210494547, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14580", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14439", + "bus2": "MVLV11613", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.382038512535075, 49.52786431943707], + [-1.382038512535075, 49.52786431943707], + [-1.383473837209671, 49.52818728997186], + [-1.384664541026206, 49.52820300095466], + [-1.390149365906288, 49.52684697064178], + [-1.391929859299305, 49.52688747798622], + [-1.391929859299305, 49.52688747798622] + ] + }, + "length": 0.749899621490495, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22392", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14434", + "bus2": "MVBus14443", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367945629924356, 49.52751533948379], + [-1.367945629924356, 49.52751533948379], + [-1.368408922341095, 49.528337782455814], + [-1.368408922341095, 49.528337782455814] + ] + }, + "length": 0.09742733081950168, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12884", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14443", + "bus2": "MVBus14445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.368408922341095, 49.528337782455814], + [-1.368408922341095, 49.528337782455814], + [-1.367532317945696, 49.53266031009273], + [-1.367532317945696, 49.53266031009273] + ] + }, + "length": 0.4849216955773983, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18782", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14445", + "bus2": "MVLV10065", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367532317945696, 49.53266031009273], + [-1.367532317945696, 49.53266031009273], + [-1.364515741451122, 49.53173053874581], + [-1.363929569632286, 49.53103421357823], + [-1.363929569632286, 49.53103421357823] + ] + }, + "length": 0.32992283723741367, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18781", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14445", + "bus2": "MVLV06198", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367532317945696, 49.53266031009273], + [-1.367532317945696, 49.53266031009273], + [-1.366949565087487, 49.53458353417382], + [-1.366949565087487, 49.53458353417382] + ] + }, + "length": 0.2180209746965883, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22393", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14443", + "bus2": "MVLV10063", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.368408922341095, 49.528337782455814], + [-1.368408922341095, 49.528337782455814], + [-1.367321186591, 49.52829954489343], + [-1.367321186591, 49.52829954489343] + ] + }, + "length": 0.07886110873021954, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV15305_production", + "bus": "MVLV15305", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15305_consumption", + "bus": "MVLV15305", + "phases": "abc", + "powers": [ + [1945.7740196894156, 639.5449925418953], + [1945.7740196894156, 639.5449925418953], + [1945.7740196894156, 639.5449925418953] + ] + }, + { + "id": "MVLV11121_production", + "bus": "MVLV11121", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11121_consumption", + "bus": "MVLV11121", + "phases": "abc", + "powers": [ + [1945.7740196894156, 639.5449925418953], + [1945.7740196894156, 639.5449925418953], + [1945.7740196894156, 639.5449925418953] + ] + }, + { + "id": "MVLV01169_production", + "bus": "MVLV01169", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01169_consumption", + "bus": "MVLV01169", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV05857_production", + "bus": "MVLV05857", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05857_consumption", + "bus": "MVLV05857", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV05564_production", + "bus": "MVLV05564", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05564_consumption", + "bus": "MVLV05564", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV11614_production", + "bus": "MVLV11614", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11614_consumption", + "bus": "MVLV11614", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV01171_production", + "bus": "MVLV01171", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01171_consumption", + "bus": "MVLV01171", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV08663_production", + "bus": "MVLV08663", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08663_consumption", + "bus": "MVLV08663", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV16705_production", + "bus": "MVLV16705", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16705_consumption", + "bus": "MVLV16705", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV00567_production", + "bus": "MVLV00567", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00567_consumption", + "bus": "MVLV00567", + "phases": "abc", + "powers": [ + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747] + ] + }, + { + "id": "MVLV02233_production", + "bus": "MVLV02233", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02233_consumption", + "bus": "MVLV02233", + "phases": "abc", + "powers": [ + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747] + ] + }, + { + "id": "MVLV06734_production", + "bus": "MVLV06734", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06734_consumption", + "bus": "MVLV06734", + "phases": "abc", + "powers": [ + [1991.3632401928019, 654.5294446888527], + [1991.3632401928019, 654.5294446888527], + [1991.3632401928019, 654.5294446888527] + ] + }, + { + "id": "MVLV12126_production", + "bus": "MVLV12126", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12126_consumption", + "bus": "MVLV12126", + "phases": "abc", + "powers": [ + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747] + ] + }, + { + "id": "MVLV00568_production", + "bus": "MVLV00568", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00568_consumption", + "bus": "MVLV00568", + "phases": "abc", + "powers": [ + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747], + [1660.0128728913114, 545.6198457116747] + ] + }, + { + "id": "MVLV16704_production", + "bus": "MVLV16704", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16704_consumption", + "bus": "MVLV16704", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV06199_production", + "bus": "MVLV06199", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06199_consumption", + "bus": "MVLV06199", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV08768_production", + "bus": "MVLV08768", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08768_consumption", + "bus": "MVLV08768", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV01295_production", + "bus": "MVLV01295", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01295_consumption", + "bus": "MVLV01295", + "phases": "abc", + "powers": [ + [4926.209441601012, 1619.1667422362962], + [4926.209441601012, 1619.1667422362962], + [4926.209441601012, 1619.1667422362962] + ] + }, + { + "id": "MVLV15565_production", + "bus": "MVLV15565", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15565_consumption", + "bus": "MVLV15565", + "phases": "abc", + "powers": [ + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701] + ] + }, + { + "id": "MVLV08413_production", + "bus": "MVLV08413", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08413_consumption", + "bus": "MVLV08413", + "phases": "abc", + "powers": [ + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701] + ] + }, + { + "id": "MVLV05831_production", + "bus": "MVLV05831", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05831_consumption", + "bus": "MVLV05831", + "phases": "abc", + "powers": [ + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701] + ] + }, + { + "id": "MVLV01638_production", + "bus": "MVLV01638", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01638_consumption", + "bus": "MVLV01638", + "phases": "abc", + "powers": [ + [1285.1733057056856, 422.4160379856349], + [1285.1733057056856, 422.4160379856349], + [1285.1733057056856, 422.4160379856349] + ] + }, + { + "id": "MVLV08412_production", + "bus": "MVLV08412", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08412_consumption", + "bus": "MVLV08412", + "phases": "abc", + "powers": [ + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701], + [1672.4823237394596, 549.7183560057701] + ] + }, + { + "id": "MVLV00730_production", + "bus": "MVLV00730", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00730_consumption", + "bus": "MVLV00730", + "phases": "abc", + "powers": [ + [1991.3632401928019, 654.5294446888527], + [1991.3632401928019, 654.5294446888527], + [1991.3632401928019, 654.5294446888527] + ] + }, + { + "id": "MVLV10064_production", + "bus": "MVLV10064", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10064_consumption", + "bus": "MVLV10064", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV18656_production", + "bus": "MVLV18656", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18656_consumption", + "bus": "MVLV18656", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV18655_production", + "bus": "MVLV18655", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18655_consumption", + "bus": "MVLV18655", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV11613_production", + "bus": "MVLV11613", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11613_consumption", + "bus": "MVLV11613", + "phases": "abc", + "powers": [ + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868], + [1837.4913281940637, 603.9541929813868] + ] + }, + { + "id": "MVLV10065_production", + "bus": "MVLV10065", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10065_consumption", + "bus": "MVLV10065", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV06198_production", + "bus": "MVLV06198", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06198_consumption", + "bus": "MVLV06198", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + }, + { + "id": "MVLV10063_production", + "bus": "MVLV10063", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10063_consumption", + "bus": "MVLV10063", + "phases": "abc", + "powers": [ + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865], + [1130.5731249515418, 371.60141591396865] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder041_Winter.json b/roseau/load_flow/data/networks/MVFeeder041_Winter.json new file mode 100644 index 00000000..1ae5ea0e --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder041_Winter.json @@ -0,0 +1,3407 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.433951450433353, 49.499857308582335] + } + }, + { + "id": "HVMV03", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.433951450433353, 49.499857308582335] + } + }, + { + "id": "MVBus00140", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.433147262174232, 49.49986669937966] + } + }, + { + "id": "MVBus00141", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.432278274736275, 49.5016495516555] + } + }, + { + "id": "MVBus00159", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.432001091043338, 49.50164058103889] + } + }, + { + "id": "MVLV15305", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.429865092470705, 49.50129097345488] + } + }, + { + "id": "MVBus00142", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.426049500668638, 49.510987347109946] + } + }, + { + "id": "MVLV11121", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.426184734665892, 49.51129034911221] + } + }, + { + "id": "MVBus00143", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.412228466426174, 49.51460911594352] + } + }, + { + "id": "MVBus00144", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.412088304372246, 49.515126844272686] + } + }, + { + "id": "MVBus00145", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.412885744293428, 49.519224509065616] + } + }, + { + "id": "MVBus00147", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409262437362678, 49.5215231527115] + } + }, + { + "id": "MVLV01169", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.408590245322735, 49.522215742086814] + } + }, + { + "id": "MVBus00149", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.40853396112505, 49.521971789837664] + } + }, + { + "id": "MVLV05857", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.404682215948554, 49.522898591448595] + } + }, + { + "id": "MVLV05564", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.414107643211931, 49.518812348878335] + } + }, + { + "id": "MVBus00151", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.394277047474696, 49.5192952387995] + } + }, + { + "id": "MVBus00152", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.394833996691817, 49.51880010232737] + } + }, + { + "id": "MVLV11614", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396058529632034, 49.516044410422516] + } + }, + { + "id": "MVBus00154", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.392224691891333, 49.519893527602804] + } + }, + { + "id": "MVBus00156", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391548060075391, 49.51863419448631] + } + }, + { + "id": "MVLV01171", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391472629972477, 49.51846877062308] + } + }, + { + "id": "MVBus00155", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379825737532433, 49.52314398510525] + } + }, + { + "id": "MVBus11466", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380536944462787, 49.52066867702094] + } + }, + { + "id": "MVLV08663", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381398873619378, 49.517696058278425] + } + }, + { + "id": "MVBus14429", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375882006468234, 49.52411966657223] + } + }, + { + "id": "MVLV16705", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3745101402666364, 49.52361539960028] + } + }, + { + "id": "MVBus16340", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372942820931247, 49.52194020096842] + } + }, + { + "id": "MVBus16342", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372488966223399, 49.52151975882387] + } + }, + { + "id": "MVBus16343", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369627420347444, 49.51833205671369] + } + }, + { + "id": "MVLV00567", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371051896813271, 49.51839548894923] + } + }, + { + "id": "MVBus16344", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369179793174285, 49.51719786668166] + } + }, + { + "id": "MVBus16345", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364298189147717, 49.51584715543139] + } + }, + { + "id": "MVBus16347", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360357982063541, 49.5154563553893] + } + }, + { + "id": "MVLV02233", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360706878808562, 49.51449465101565] + } + }, + { + "id": "MVBus16348", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.349385326128443, 49.515722401635294] + } + }, + { + "id": "MVBus16349", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.347835381760062, 49.515790916675066] + } + }, + { + "id": "MVBus16351", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.346685250216569, 49.51574896728357] + } + }, + { + "id": "MVBus16352", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3400486972785, 49.51536127727438] + } + }, + { + "id": "MVBus16353", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.338617730114011, 49.514835961962596] + } + }, + { + "id": "MVBus16354", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3360183377539, 49.51521983680558] + } + }, + { + "id": "MVLV06734", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3359918598331, 49.51522978767321] + } + }, + { + "id": "MVLV12126", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.347829572300763, 49.515809383494506] + } + }, + { + "id": "MVLV00568", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364595749065816, 49.51960541885178] + } + }, + { + "id": "MVLV16704", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.373158136976772, 49.52188870975591] + } + }, + { + "id": "MVBus14431", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37587187309291, 49.52410908925157] + } + }, + { + "id": "MVBus14432", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366071624233616, 49.52669305801903] + } + }, + { + "id": "MVBus14448", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36167574752003, 49.527824051865075] + } + }, + { + "id": "MVBus14462", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360329890364137, 49.52776804669114] + } + }, + { + "id": "MVBus14463", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35732245597545, 49.52750403221727] + } + }, + { + "id": "MVLV06199", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.353213735809931, 49.52741485604408] + } + }, + { + "id": "MVLV08768", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.358129295755885, 49.52661622300191] + } + }, + { + "id": "MVBus14449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345705596674752, 49.53304217442521] + } + }, + { + "id": "MVBus14452", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.334195997784767, 49.538694624646375] + } + }, + { + "id": "MVBus14455", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331985896645413, 49.53865037729998] + } + }, + { + "id": "MVLV01295", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329752701008355, 49.53871148844501] + } + }, + { + "id": "MVBus14453", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331577872310593, 49.54559897556209] + } + }, + { + "id": "MVBus14454", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331348127293804, 49.54573723346734] + } + }, + { + "id": "MVBus14457", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.335112820629712, 49.53873292685697] + } + }, + { + "id": "MVBus14458", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344046592491646, 49.54079005423513] + } + }, + { + "id": "MVBus14459", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344193679792921, 49.540904805026614] + } + }, + { + "id": "MVBus14461", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351486916478262, 49.54663244728472] + } + }, + { + "id": "MVBus32094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351358802263283, 49.54603333478093] + } + }, + { + "id": "MVBus32095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35090701896399, 49.54475576292609] + } + }, + { + "id": "MVLV15565", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.350948561983008, 49.544691867315635] + } + }, + { + "id": "MVLV08413", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.354432689275723, 49.54500115532038] + } + }, + { + "id": "MVBus30327", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.350802154413356, 49.54801832256416] + } + }, + { + "id": "MVLV05831", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351647522126318, 49.549963147222336] + } + }, + { + "id": "MVBus30329", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35002322071283, 49.54846396469262] + } + }, + { + "id": "MVLV01638", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344546726140774, 49.55119579873367] + } + }, + { + "id": "MVLV08412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344261878545574, 49.540375827962926] + } + }, + { + "id": "MVBus14450", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345470629602277, 49.53286059260983] + } + }, + { + "id": "MVLV00730", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345389875331179, 49.53196736281189] + } + }, + { + "id": "MVBus14433", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366703140991816, 49.526996947409266] + } + }, + { + "id": "MVBus14434", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367945629924356, 49.52751533948379] + } + }, + { + "id": "MVBus14435", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375174481199995, 49.5270854765628] + } + }, + { + "id": "MVLV10064", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375391878107113, 49.52819089114238] + } + }, + { + "id": "MVBus14437", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379330368071129, 49.52709876679234] + } + }, + { + "id": "MVLV18656", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379133341172738, 49.5266303066747] + } + }, + { + "id": "MVBus14439", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.382038512535075, 49.52786431943707] + } + }, + { + "id": "MVBus14441", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.382092074428459, 49.529368574793686] + } + }, + { + "id": "MVLV18655", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38420748791955, 49.53207045919828] + } + }, + { + "id": "MVLV11613", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391929859299305, 49.52688747798622] + } + }, + { + "id": "MVBus14443", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.368408922341095, 49.528337782455814] + } + }, + { + "id": "MVBus14445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367532317945696, 49.53266031009273] + } + }, + { + "id": "MVLV10065", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363929569632286, 49.53103421357823] + } + }, + { + "id": "MVLV06198", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366949565087487, 49.53458353417382] + } + }, + { + "id": "MVLV10063", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367321186591, 49.52829954489343] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV03", + "geometry": { + "type": "Point", + "coordinates": [-1.433951450433353, 49.499857308582335] + } + }, + { + "id": "MVBranch45202", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV03", + "bus2": "MVBus00140", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.433951450433353, 49.499857308582335], + [-1.433878199259997, 49.49986473391184], + [-1.433878199259997, 49.49986473391184], + [-1.433829533032811, 49.49986272171756], + [-1.433147262174232, 49.49986669937966], + [-1.433147262174232, 49.49986669937966] + ] + }, + "length": 0.05295578763904262, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch10459", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00140", + "bus2": "MVBus00141", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.433147262174232, 49.49986669937966], + [-1.433147262174232, 49.49986669937966], + [-1.432278274736275, 49.5016495516555], + [-1.432278274736275, 49.5016495516555] + ] + }, + "length": 0.20803891457861706, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch17661", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00141", + "bus2": "MVBus00159", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.432278274736275, 49.5016495516555], + [-1.432278274736275, 49.5016495516555], + [-1.432001091043338, 49.50164058103889], + [-1.432001091043338, 49.50164058103889] + ] + }, + "length": 0.020102333060506964, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch17664", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00159", + "bus2": "MVLV15305", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.432001091043338, 49.50164058103889], + [-1.432001091043338, 49.50164058103889], + [-1.429865092470705, 49.50129097345488], + [-1.429865092470705, 49.50129097345488] + ] + }, + "length": 0.15953088680777358, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10461", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00141", + "bus2": "MVBus00142", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.432278274736275, 49.5016495516555], + [-1.432278274736275, 49.5016495516555], + [-1.427844175772212, 49.51051836185911], + [-1.426049500668638, 49.510987347109946], + [-1.426049500668638, 49.510987347109946] + ] + }, + "length": 1.1773966746299238, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch39160", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00142", + "bus2": "MVLV11121", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.426049500668638, 49.510987347109946], + [-1.426049500668638, 49.510987347109946], + [-1.426145890215806, 49.51130653318748], + [-1.426184734665892, 49.51129034911221], + [-1.426184734665892, 49.51129034911221] + ] + }, + "length": 0.03951925397195987, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch16719", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00142", + "bus2": "MVBus00143", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.426049500668638, 49.510987347109946], + [-1.426049500668638, 49.510987347109946], + [-1.412228466426174, 49.51460911594352], + [-1.412228466426174, 49.51460911594352] + ] + }, + "length": 1.07890324604735, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch18677", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00143", + "bus2": "MVBus00144", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412228466426174, 49.51460911594352], + [-1.412228466426174, 49.51460911594352], + [-1.412088304372246, 49.515126844272686], + [-1.412088304372246, 49.515126844272686] + ] + }, + "length": 0.05846928714576897, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22249", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00144", + "bus2": "MVBus00145", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412088304372246, 49.515126844272686], + [-1.412088304372246, 49.515126844272686], + [-1.412583977554435, 49.51582203449529], + [-1.41361636582413, 49.51612167831818], + [-1.41328256482144, 49.51844635798189], + [-1.412885744293428, 49.519224509065616], + [-1.412885744293428, 49.519224509065616] + ] + }, + "length": 0.5179627421421704, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00957", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00145", + "bus2": "MVBus00147", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412885744293428, 49.519224509065616], + [-1.412885744293428, 49.519224509065616], + [-1.409309956799744, 49.52147418984571], + [-1.409262437362678, 49.5215231527115], + [-1.409262437362678, 49.5215231527115] + ] + }, + "length": 0.3664958381602493, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12739", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00147", + "bus2": "MVLV01169", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409262437362678, 49.5215231527115], + [-1.409262437362678, 49.5215231527115], + [-1.408590245322735, 49.522215742086814], + [-1.408590245322735, 49.522215742086814] + ] + }, + "length": 0.091116949891685, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch26350", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00147", + "bus2": "MVBus00149", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409262437362678, 49.5215231527115], + [-1.409262437362678, 49.5215231527115], + [-1.40853396112505, 49.521971789837664], + [-1.40853396112505, 49.521971789837664] + ] + }, + "length": 0.07260696893063866, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch39970", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00149", + "bus2": "MVLV05857", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40853396112505, 49.521971789837664], + [-1.40853396112505, 49.521971789837664], + [-1.408557168947826, 49.52199444873275], + [-1.408557367825913, 49.52201319105377], + [-1.408403565162502, 49.52205320599162], + [-1.408333163194044, 49.5220715234229], + [-1.407791656966289, 49.52221236988192], + [-1.407353244970395, 49.52232640097521], + [-1.406856586421732, 49.522455582175034], + [-1.406025918145544, 49.52263782777185], + [-1.405375331855827, 49.52278054543903], + [-1.404841603060225, 49.522897631598234], + [-1.404731375867821, 49.52291273994714], + [-1.404682215948554, 49.522898591448595], + [-1.404682215948554, 49.522898591448595] + ] + }, + "length": 0.30372207120162004, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch22250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00145", + "bus2": "MVLV05564", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412885744293428, 49.519224509065616], + [-1.412885744293428, 49.519224509065616], + [-1.414107643211931, 49.518812348878335], + [-1.414107643211931, 49.518812348878335] + ] + }, + "length": 0.09964594277049314, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12736", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00143", + "bus2": "MVBus00151", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.412228466426174, 49.51460911594352], + [-1.412228466426174, 49.51460911594352], + [-1.394277047474696, 49.5192952387995], + [-1.394277047474696, 49.5192952387995] + ] + }, + "length": 1.4004826400271495, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch14577", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00151", + "bus2": "MVBus00152", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394277047474696, 49.5192952387995], + [-1.394277047474696, 49.5192952387995], + [-1.394833996691817, 49.51880010232737], + [-1.394833996691817, 49.51880010232737] + ] + }, + "length": 0.06825631635105202, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14579", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00152", + "bus2": "MVLV11614", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394833996691817, 49.51880010232737], + [-1.394833996691817, 49.51880010232737], + [-1.396496479783142, 49.517386950319356], + [-1.396694165154007, 49.516714330965854], + [-1.396058529632034, 49.516044410422516], + [-1.396058529632034, 49.516044410422516] + ] + }, + "length": 0.361719258634167, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12737", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00151", + "bus2": "MVBus00154", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394277047474696, 49.5192952387995], + [-1.394277047474696, 49.5192952387995], + [-1.392224691891333, 49.519893527602804], + [-1.392224691891333, 49.519893527602804] + ] + }, + "length": 0.16282377592133623, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch07833", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00154", + "bus2": "MVBus00156", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.392224691891333, 49.519893527602804], + [-1.392224691891333, 49.519893527602804], + [-1.391548060075391, 49.51863419448631], + [-1.391548060075391, 49.51863419448631] + ] + }, + "length": 0.1483844769179519, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24905", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00156", + "bus2": "MVLV01171", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391548060075391, 49.51863419448631], + [-1.391548060075391, 49.51863419448631], + [-1.391472629972477, 49.51846877062308], + [-1.391472629972477, 49.51846877062308] + ] + }, + "length": 0.019192000479414006, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22252", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00154", + "bus2": "MVBus00155", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.392224691891333, 49.519893527602804], + [-1.392224691891333, 49.519893527602804], + [-1.379825737532433, 49.52314398510525], + [-1.379825737532433, 49.52314398510525] + ] + }, + "length": 0.9678000868795191, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch03063", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00155", + "bus2": "MVBus11466", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379825737532433, 49.52314398510525], + [-1.379825737532433, 49.52314398510525], + [-1.380536944462787, 49.52066867702094], + [-1.380536944462787, 49.52066867702094] + ] + }, + "length": 0.2800778679443321, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22253", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11466", + "bus2": "MVLV08663", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380536944462787, 49.52066867702094], + [-1.380536944462787, 49.52066867702094], + [-1.380135338012356, 49.51790772555488], + [-1.381398873619378, 49.517696058278425], + [-1.381398873619378, 49.517696058278425] + ] + }, + "length": 0.4029193743641605, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25030", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00155", + "bus2": "MVBus14429", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379825737532433, 49.52314398510525], + [-1.379825737532433, 49.52314398510525], + [-1.375882006468234, 49.52411966657223], + [-1.375882006468234, 49.52411966657223] + ] + }, + "length": 0.30545779992426125, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch34113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14429", + "bus2": "MVLV16705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.375882006468234, 49.52411966657223], + [-1.375882006468234, 49.52411966657223], + [-1.37588641915197, 49.52412374796654], + [-1.375880860165431, 49.524127848501855], + [-1.37586540338666, 49.52412880075812], + [-1.37584554885683, 49.52412720877028], + [-1.375807411328535, 49.5241110460851], + [-1.375750303320852, 49.52408473087652], + [-1.375670428398973, 49.52404924317009], + [-1.375587919400292, 49.52400981709691], + [-1.375491459283816, 49.52396411232768], + [-1.375402070908907, 49.523920680630056], + [-1.375311702430374, 49.52387440162309], + [-1.375223539956287, 49.52382920563422], + [-1.3751398718712, 49.523785220077464], + [-1.375060876097653, 49.5237410907041], + [-1.374975165607978, 49.523692941692595], + [-1.374892583496152, 49.52364412088988], + [-1.374869077046494, 49.5236293241206], + [-1.374810869794574, 49.52359413134504], + [-1.374748457020092, 49.52355447307586], + [-1.374715753686123, 49.523532289150474], + [-1.374699457210854, 49.523521101071765], + [-1.374691087832194, 49.52351959615264], + [-1.3746827809573, 49.52352370924028], + [-1.374658902324847, 49.52354107887513], + [-1.37463508477158, 49.52355833872262], + [-1.374596825073989, 49.5235861497596], + [-1.374564695357433, 49.523613349576806], + [-1.374545439534793, 49.52363065789267], + [-1.374538729849515, 49.52363508150769], + [-1.374533093694201, 49.523635075063176], + [-1.374528655814153, 49.52363406962236], + [-1.374508686984242, 49.52362956756616], + [-1.3745101402666364, 49.52361539960028] + ] + }, + "length": 0.1307080187271019, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38547", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16705", + "bus2": "MVBus16340", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3745101402666364, 49.52361539960028], + [-1.374507803738187, 49.52360122533593], + [-1.374526066806178, 49.52360468285858], + [-1.374533394116747, 49.52360248821487], + [-1.374539225399954, 49.52359623929475], + [-1.374542902791684, 49.52359228662578], + [-1.374559665418577, 49.52357374219606], + [-1.37458468390078, 49.52355666122352], + [-1.374608644482612, 49.523538326951446], + [-1.374651289781291, 49.52350985046158], + [-1.374672885292921, 49.52349585109228], + [-1.374676983694804, 49.523490087087836], + [-1.374675508775088, 49.52348346947519], + [-1.374645625305597, 49.52346645003947], + [-1.374594819624124, 49.523431793761624], + [-1.374545544583284, 49.52339691053581], + [-1.374484529202116, 49.523347192181014], + [-1.374424784057626, 49.52329708403555], + [-1.374366781857894, 49.52324624785112], + [-1.374314764190819, 49.52320154883666], + [-1.374218840636028, 49.52311923858923], + [-1.374161365825145, 49.52306957301507], + [-1.374093239530904, 49.52301341022246], + [-1.374031806559135, 49.5229575450475], + [-1.373976459418936, 49.5229073103936], + [-1.373914556492944, 49.52285315009208], + [-1.373851545391469, 49.522799896059894], + [-1.373794617475623, 49.52275223667008], + [-1.373736040825428, 49.522699367710544], + [-1.373671172141087, 49.522648490631525], + [-1.373627609187473, 49.5226138809479], + [-1.373598507155725, 49.522595245664114], + [-1.373557897638867, 49.52256041023802], + [-1.373512963824633, 49.522522515678276], + [-1.373446574410371, 49.52246476149907], + [-1.373382657503204, 49.52241005142744], + [-1.373343808464295, 49.52238748067885], + [-1.373314118545625, 49.52237577817476], + [-1.373275284016497, 49.5223509320102], + [-1.373233341010657, 49.52231560696845], + [-1.373190513691656, 49.522275327600745], + [-1.373154672440506, 49.52224166720789], + [-1.373136387757179, 49.522224578446945], + [-1.373123259338372, 49.52220640494466], + [-1.373118218963762, 49.52219119281035], + [-1.373108839541907, 49.522172337521894], + [-1.373085338914012, 49.522151893331866], + [-1.373046910551303, 49.5221008502141], + [-1.373031009517598, 49.522070353155485], + [-1.37302099477644, 49.52204388328013], + [-1.373012536318817, 49.52202363289315], + [-1.373003933586273, 49.522007676075425], + [-1.372986026152343, 49.5219820783508], + [-1.372969911433426, 49.52196462609999], + [-1.372952597679086, 49.52194949466127], + [-1.372942820931247, 49.52194020096842], + [-1.372942820931247, 49.52194020096842] + ] + }, + "length": 0.2333369549446221, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16340", + "bus2": "MVBus16342", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372942820931247, 49.52194020096842], + [-1.372942820931247, 49.52194020096842], + [-1.372943410384867, 49.52194109102263], + [-1.372930900080305, 49.521938859101546], + [-1.372913668407632, 49.52194256315057], + [-1.372878715660855, 49.521955219572796], + [-1.372860737457037, 49.521960628055034], + [-1.372845794192618, 49.52196427071355], + [-1.372839374207697, 49.52196278665339], + [-1.37283301309268, 49.521958306482176], + [-1.372822490727311, 49.52194368553268], + [-1.372801732098594, 49.521906773739765], + [-1.372768560110694, 49.52185697163041], + [-1.372735754008908, 49.52181221170446], + [-1.372703875088077, 49.521764428957376], + [-1.372667218162021, 49.52171418547647], + [-1.372641986656806, 49.5216828243158], + [-1.37260852656744, 49.52164123162739], + [-1.37256983265634, 49.521590133579544], + [-1.372542243755531, 49.521553692530375], + [-1.372519614001016, 49.521530775658654], + [-1.372509356188701, 49.52152398747884], + [-1.372488966223399, 49.52151975882387], + [-1.372488966223399, 49.52151975882387] + ] + }, + "length": 0.06437146766534582, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch22395", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16342", + "bus2": "MVBus16343", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372488966223399, 49.52151975882387], + [-1.372488966223399, 49.52151975882387], + [-1.370799313389356, 49.520959938596874], + [-1.369627420347444, 49.51833205671369], + [-1.369627420347444, 49.51833205671369] + ] + }, + "length": 0.44161320889387423, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch35548", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16343", + "bus2": "MVLV00567", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369627420347444, 49.51833205671369], + [-1.369627420347444, 49.51833205671369], + [-1.370153177222226, 49.518215011350115], + [-1.370280097133333, 49.518456661999856], + [-1.371051896813271, 49.51839548894923], + [-1.371051896813271, 49.51839548894923] + ] + }, + "length": 0.12493630621683054, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch04360", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16343", + "bus2": "MVBus16344", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369627420347444, 49.51833205671369], + [-1.369627420347444, 49.51833205671369], + [-1.369179793174285, 49.51719786668166], + [-1.369179793174285, 49.51719786668166] + ] + }, + "length": 0.1302420288824289, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08604", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16344", + "bus2": "MVBus16345", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369179793174285, 49.51719786668166], + [-1.369179793174285, 49.51719786668166], + [-1.369179100725938, 49.51719612554071], + [-1.367196176574971, 49.51595242305164], + [-1.365805638447048, 49.51603297208332], + [-1.364298189147717, 49.51584715543139], + [-1.364298189147717, 49.51584715543139] + ] + }, + "length": 0.41176539826094094, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15099", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16345", + "bus2": "MVBus16347", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364298189147717, 49.51584715543139], + [-1.364298189147717, 49.51584715543139], + [-1.360357982063541, 49.5154563553893], + [-1.360357982063541, 49.5154563553893] + ] + }, + "length": 0.28861558620082556, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00874", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16347", + "bus2": "MVLV02233", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360357982063541, 49.5154563553893], + [-1.360357982063541, 49.5154563553893], + [-1.360706878808562, 49.51449465101565], + [-1.360706878808562, 49.51449465101565] + ] + }, + "length": 0.10990392063323207, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20001", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16347", + "bus2": "MVBus16348", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360357982063541, 49.5154563553893], + [-1.360357982063541, 49.5154563553893], + [-1.352723288785866, 49.51564989220757], + [-1.349385326128443, 49.515722401635294], + [-1.349385326128443, 49.515722401635294] + ] + }, + "length": 0.7951221854101156, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch26213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16348", + "bus2": "MVBus16349", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.349385326128443, 49.515722401635294], + [-1.349385326128443, 49.515722401635294], + [-1.347835381760062, 49.515790916675066], + [-1.347835381760062, 49.515790916675066] + ] + }, + "length": 0.11249496678995423, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01486", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16349", + "bus2": "MVBus16351", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.347835381760062, 49.515790916675066], + [-1.347835381760062, 49.515790916675066], + [-1.346685250216569, 49.51574896728357], + [-1.346685250216569, 49.51574896728357] + ] + }, + "length": 0.08341537329519629, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28729", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16351", + "bus2": "MVBus16352", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.346685250216569, 49.51574896728357], + [-1.346685250216569, 49.51574896728357], + [-1.340642618246887, 49.51552839280092], + [-1.3400486972785, 49.51536127727438], + [-1.3400486972785, 49.51536127727438] + ] + }, + "length": 0.48510755176973774, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16352", + "bus2": "MVBus16353", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3400486972785, 49.51536127727438], + [-1.3400486972785, 49.51536127727438], + [-1.339548472842566, 49.515220517430414], + [-1.338617730114011, 49.514835961962596], + [-1.338617730114011, 49.514835961962596] + ] + }, + "length": 0.11928588448450714, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch47808", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16353", + "bus2": "MVBus16354", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.338617730114011, 49.514835961962596], + [-1.338617730114011, 49.514835961962596], + [-1.33860772919924, 49.51483093458505], + [-1.338591176200925, 49.51482140416053], + [-1.338581071794949, 49.5148193562122], + [-1.338550329434943, 49.514820499785266], + [-1.33845698047586, 49.51482638342893], + [-1.33836632594848, 49.51483209498343], + [-1.338288462348311, 49.51483918812175], + [-1.338230881837932, 49.51484506975668], + [-1.338156861354124, 49.51485529174458], + [-1.338055079246872, 49.51486989327254], + [-1.337941740973143, 49.51488780507821], + [-1.337838147258127, 49.51490275834012], + [-1.337731725569168, 49.51491602628484], + [-1.337623456722069, 49.51492876593977], + [-1.337508577536453, 49.51494407169888], + [-1.337396314098531, 49.514958110753135], + [-1.337280355107842, 49.5149710753565], + [-1.337199987887071, 49.51498119334215], + [-1.337103748490176, 49.5149974055893], + [-1.337015680584837, 49.51501394434039], + [-1.336897388255749, 49.51503230276296], + [-1.336789224659492, 49.51504651309811], + [-1.336693312140127, 49.515060934684634], + [-1.336620413002566, 49.51507274007547], + [-1.336538658908484, 49.51508393390104], + [-1.336413934797562, 49.51510100407356], + [-1.33634765230967, 49.515111870471856], + [-1.336284683884853, 49.51512292364849], + [-1.33623904418787, 49.51513258589135], + [-1.336183704848684, 49.51514429687771], + [-1.336146787344298, 49.515153684489306], + [-1.33611996042109, 49.515165120663546], + [-1.336092385343603, 49.515178638726006], + [-1.336082830655308, 49.515184243801556], + [-1.336065868606185, 49.51519420165097], + [-1.336036174270159, 49.51520955560797], + [-1.3360183377539, 49.51521983680558], + [-1.3360183377539, 49.51521983680558] + ] + }, + "length": 0.19558721650133015, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40917", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16354", + "bus2": "MVLV06734", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3360183377539, 49.51521983680558], + [-1.3360183377539, 49.51521983680558], + [-1.336006595808891, 49.515224600308706], + [-1.3359918598331, 49.51522978767321], + [-1.3359918598331, 49.51522978767321] + ] + }, + "length": 0.002214901144747097, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch01485", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16349", + "bus2": "MVLV12126", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.347835381760062, 49.515790916675066], + [-1.347835381760062, 49.515790916675066], + [-1.347829572300763, 49.515809383494506], + [-1.347829572300763, 49.515809383494506] + ] + }, + "length": 0.002096514595334105, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20002", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16345", + "bus2": "MVLV00568", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364298189147717, 49.51584715543139], + [-1.364298189147717, 49.51584715543139], + [-1.364595749065816, 49.51960541885178], + [-1.364595749065816, 49.51960541885178] + ] + }, + "length": 0.41854810346143656, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch45665", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16340", + "bus2": "MVLV16704", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372942820931247, 49.52194020096842], + [-1.372942820931247, 49.52194020096842], + [-1.372960790542537, 49.52194933262995], + [-1.37297912032715, 49.521958669018105], + [-1.37299203962875, 49.5219617785541], + [-1.373003481763346, 49.52195918769556], + [-1.373033297401945, 49.52194407257697], + [-1.373070427262384, 49.5219252526504], + [-1.373110421866682, 49.52190498683359], + [-1.373134258711034, 49.521895801378406], + [-1.373158136976772, 49.52188870975591], + [-1.373158136976772, 49.52188870975591] + ] + }, + "length": 0.01892881924963116, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45844", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16705", + "bus2": "MVBus14431", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3745101402666364, 49.52361539960028], + [-1.37451393007748, 49.52361540589875], + [-1.374530283887948, 49.52361558616777], + [-1.374535695636503, 49.52361668753441], + [-1.374538542263336, 49.52361727435096], + [-1.374547008584166, 49.52361326427178], + [-1.374571696044895, 49.52358610458954], + [-1.374606709717908, 49.5235607672836], + [-1.37464203112261, 49.523535483441506], + [-1.374687886736525, 49.523504992898964], + [-1.374695917146592, 49.523503540923635], + [-1.374704410920078, 49.52350675946603], + [-1.374730660697725, 49.523528332675575], + [-1.374794570832627, 49.523569590400534], + [-1.374868005746312, 49.52361551856498], + [-1.374941582024805, 49.523658825697574], + [-1.375009358926943, 49.52369721282365], + [-1.375091843397271, 49.523743734630685], + [-1.375172926178832, 49.52378788069514], + [-1.375265722313568, 49.52383716032764], + [-1.375355923548697, 49.523883039878754], + [-1.375449131737633, 49.52392828732245], + [-1.375532168682095, 49.52396794901314], + [-1.375619517431518, 49.524010301414194], + [-1.375687451458401, 49.52404265877466], + [-1.375775253436141, 49.524082308545225], + [-1.375845075140324, 49.52411098399693], + [-1.37585939388824, 49.52411376243272], + [-1.37587187309291, 49.52410908925157], + [-1.37587187309291, 49.52410908925157] + ] + }, + "length": 0.12857411755433706, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch12883", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14431", + "bus2": "MVBus14432", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37587187309291, 49.52410908925157], + [-1.37587187309291, 49.52410908925157], + [-1.366071624233616, 49.52669305801903], + [-1.366071624233616, 49.52669305801903] + ] + }, + "length": 0.7655216243145522, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch14738", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14432", + "bus2": "MVBus14448", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366071624233616, 49.52669305801903], + [-1.366071624233616, 49.52669305801903], + [-1.36167574752003, 49.527824051865075], + [-1.36167574752003, 49.527824051865075] + ] + }, + "length": 0.34220306486037083, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch03062", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14448", + "bus2": "MVBus14462", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36167574752003, 49.527824051865075], + [-1.36167574752003, 49.527824051865075], + [-1.360329890364137, 49.52776804669114], + [-1.360329890364137, 49.52776804669114] + ] + }, + "length": 0.09763292837199693, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07967", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14462", + "bus2": "MVBus14463", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360329890364137, 49.52776804669114], + [-1.360329890364137, 49.52776804669114], + [-1.359678002415967, 49.52774387175989], + [-1.35732245597545, 49.52750403221727], + [-1.35732245597545, 49.52750403221727] + ] + }, + "length": 0.21987560879011972, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25029", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14463", + "bus2": "MVLV06199", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35732245597545, 49.52750403221727], + [-1.35732245597545, 49.52750403221727], + [-1.354008785323559, 49.52721369613046], + [-1.353213735809931, 49.52741485604408], + [-1.353213735809931, 49.52741485604408] + ] + }, + "length": 0.30381443432191135, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07968", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14463", + "bus2": "MVLV08768", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35732245597545, 49.52750403221727], + [-1.35732245597545, 49.52750403221727], + [-1.358129295755885, 49.52661622300191], + [-1.358129295755885, 49.52661622300191] + ] + }, + "length": 0.11472582493055589, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08746", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14448", + "bus2": "MVBus14449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36167574752003, 49.527824051865075], + [-1.36167574752003, 49.527824051865075], + [-1.353218624113, 49.530128858750494], + [-1.345705596674752, 49.53304217442521], + [-1.345705596674752, 49.53304217442521] + ] + }, + "length": 1.2968129892721059, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13016", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14449", + "bus2": "MVBus14452", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.345705596674752, 49.53304217442521], + [-1.345705596674752, 49.53304217442521], + [-1.334576919054313, 49.53737519883158], + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375] + ] + }, + "length": 1.0880093751534499, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13015", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14452", + "bus2": "MVBus14455", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375], + [-1.333329995911496, 49.53871656867157], + [-1.332537745687778, 49.538981184015455], + [-1.331985896645413, 49.53865037729998], + [-1.331985896645413, 49.53865037729998] + ] + }, + "length": 0.18148755103329137, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01893", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14455", + "bus2": "MVLV01295", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331985896645413, 49.53865037729998], + [-1.331985896645413, 49.53865037729998], + [-1.329752701008355, 49.53871148844501], + [-1.329752701008355, 49.53871148844501] + ] + }, + "length": 0.1617802964828953, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29784", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14452", + "bus2": "MVBus14453", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375], + [-1.331580741928486, 49.545581777605285], + [-1.331577872310593, 49.54559897556209], + [-1.331577872310593, 49.54559897556209] + ] + }, + "length": 0.7909536117120637, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42897", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14453", + "bus2": "MVBus14454", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331577872310593, 49.54559897556209], + [-1.331577872310593, 49.54559897556209], + [-1.331446712578302, 49.54558423279413], + [-1.331356134499559, 49.54572480669329], + [-1.331348127293804, 49.54573723346734], + [-1.331348127293804, 49.54573723346734] + ] + }, + "length": 0.028084407069707818, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20295", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14452", + "bus2": "MVBus14457", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334195997784767, 49.538694624646375], + [-1.334195997784767, 49.538694624646375], + [-1.335112820629712, 49.53873292685697], + [-1.335112820629712, 49.53873292685697] + ] + }, + "length": 0.06649567910863435, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch27130", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14457", + "bus2": "MVBus14458", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.335112820629712, 49.53873292685697], + [-1.335112820629712, 49.53873292685697], + [-1.342342016364906, 49.539460227675846], + [-1.344046592491646, 49.54079005423513], + [-1.344046592491646, 49.54079005423513] + ] + }, + "length": 0.7220603766026933, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29785", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14458", + "bus2": "MVBus14459", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.344046592491646, 49.54079005423513], + [-1.344046592491646, 49.54079005423513], + [-1.344193679792921, 49.540904805026614], + [-1.344193679792921, 49.540904805026614] + ] + }, + "length": 0.01661967154464987, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31721", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14459", + "bus2": "MVBus14461", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.344193679792921, 49.540904805026614], + [-1.344193679792921, 49.540904805026614], + [-1.350119394602715, 49.54555967300069], + [-1.351486916478262, 49.54663244728472], + [-1.351486916478262, 49.54663244728472] + ] + }, + "length": 0.8272889165536899, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10711", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14461", + "bus2": "MVBus32094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351486916478262, 49.54663244728472], + [-1.351486916478262, 49.54663244728472], + [-1.351358802263283, 49.54603333478093], + [-1.351358802263283, 49.54603333478093] + ] + }, + "length": 0.06727539665020081, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23338", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32094", + "bus2": "MVBus32095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351358802263283, 49.54603333478093], + [-1.351358802263283, 49.54603333478093], + [-1.35090701896399, 49.54475576292609], + [-1.35090701896399, 49.54475576292609] + ] + }, + "length": 0.14580499771374306, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch48105", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32095", + "bus2": "MVLV15565", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35090701896399, 49.54475576292609], + [-1.35090701896399, 49.54475576292609], + [-1.350948561983008, 49.544691867315635], + [-1.350948561983008, 49.544691867315635] + ] + }, + "length": 0.007716290976880467, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch15770", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32094", + "bus2": "MVLV08413", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351358802263283, 49.54603333478093], + [-1.351358802263283, 49.54603333478093], + [-1.352989065702942, 49.54545018022141], + [-1.354432689275723, 49.54500115532038], + [-1.354432689275723, 49.54500115532038] + ] + }, + "length": 0.25043043244191004, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14461", + "bus2": "MVBus30327", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351486916478262, 49.54663244728472], + [-1.351486916478262, 49.54663244728472], + [-1.351373989478891, 49.54713720387661], + [-1.350802154413356, 49.54801832256416], + [-1.350802154413356, 49.54801832256416] + ] + }, + "length": 0.1631080748627394, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02230", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30327", + "bus2": "MVLV05831", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.350802154413356, 49.54801832256416], + [-1.350802154413356, 49.54801832256416], + [-1.351765849407517, 49.548416585119746], + [-1.351647522126318, 49.549963147222336], + [-1.351647522126318, 49.549963147222336] + ] + }, + "length": 0.2548384459288032, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10172", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30327", + "bus2": "MVBus30329", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.350802154413356, 49.54801832256416], + [-1.350802154413356, 49.54801832256416], + [-1.35002322071283, 49.54846396469262], + [-1.35002322071283, 49.54846396469262] + ] + }, + "length": 0.07505973949217395, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12212", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30329", + "bus2": "MVLV01638", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35002322071283, 49.54846396469262], + [-1.35002322071283, 49.54846396469262], + [-1.344546726140774, 49.55119579873367], + [-1.344546726140774, 49.55119579873367] + ] + }, + "length": 0.49936575784781284, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15766", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14459", + "bus2": "MVLV08412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.344193679792921, 49.540904805026614], + [-1.344193679792921, 49.540904805026614], + [-1.344261878545574, 49.540375827962926], + [-1.344261878545574, 49.540375827962926] + ] + }, + "length": 0.05903963211217331, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32042", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14449", + "bus2": "MVBus14450", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.345705596674752, 49.53304217442521], + [-1.345705596674752, 49.53304217442521], + [-1.345470629602277, 49.53286059260983], + [-1.345470629602277, 49.53286059260983] + ] + }, + "length": 0.026403753223718827, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11453", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14450", + "bus2": "MVLV00730", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.345470629602277, 49.53286059260983], + [-1.345470629602277, 49.53286059260983], + [-1.345389875331179, 49.53196736281189], + [-1.345389875331179, 49.53196736281189] + ] + }, + "length": 0.09951689256607632, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12882", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14432", + "bus2": "MVBus14433", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366071624233616, 49.52669305801903], + [-1.366071624233616, 49.52669305801903], + [-1.366703140991816, 49.526996947409266], + [-1.366703140991816, 49.526996947409266] + ] + }, + "length": 0.05685638938740189, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22394", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14433", + "bus2": "MVBus14434", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366703140991816, 49.526996947409266], + [-1.366703140991816, 49.526996947409266], + [-1.367945629924356, 49.52751533948379], + [-1.367945629924356, 49.52751533948379] + ] + }, + "length": 0.10684313253987544, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07966", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14434", + "bus2": "MVBus14435", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367945629924356, 49.52751533948379], + [-1.367945629924356, 49.52751533948379], + [-1.375174481199995, 49.5270854765628], + [-1.375174481199995, 49.5270854765628] + ] + }, + "length": 0.5255209762938511, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12885", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14435", + "bus2": "MVLV10064", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.375174481199995, 49.5270854765628], + [-1.375174481199995, 49.5270854765628], + [-1.374848871805876, 49.527717146130406], + [-1.375391878107113, 49.52819089114238], + [-1.375391878107113, 49.52819089114238] + ] + }, + "length": 0.13984235587319505, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30737", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14435", + "bus2": "MVBus14437", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.375174481199995, 49.5270854765628], + [-1.375174481199995, 49.5270854765628], + [-1.378363959690256, 49.52693985262299], + [-1.379330368071129, 49.52709876679234], + [-1.379330368071129, 49.52709876679234] + ] + }, + "length": 0.30363762939058403, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03064", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14437", + "bus2": "MVLV18656", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379330368071129, 49.52709876679234], + [-1.379330368071129, 49.52709876679234], + [-1.379133341172738, 49.5266303066747], + [-1.379133341172738, 49.5266303066747] + ] + }, + "length": 0.05401939170307853, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03061", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14437", + "bus2": "MVBus14439", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379330368071129, 49.52709876679234], + [-1.379330368071129, 49.52709876679234], + [-1.380320389819758, 49.52722270478576], + [-1.380798267149782, 49.52757827573299], + [-1.382038512535075, 49.52786431943707], + [-1.382038512535075, 49.52786431943707] + ] + }, + "length": 0.2207891744342707, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18779", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14439", + "bus2": "MVBus14441", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.382038512535075, 49.52786431943707], + [-1.382038512535075, 49.52786431943707], + [-1.382294386907641, 49.5286843782084], + [-1.382092074428459, 49.529368574793686], + [-1.382092074428459, 49.529368574793686] + ] + }, + "length": 0.17056196230911183, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18780", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14441", + "bus2": "MVLV18655", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.382092074428459, 49.529368574793686], + [-1.382092074428459, 49.529368574793686], + [-1.38420748791955, 49.53207045919828], + [-1.38420748791955, 49.53207045919828] + ] + }, + "length": 0.33727356210494547, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14580", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14439", + "bus2": "MVLV11613", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.382038512535075, 49.52786431943707], + [-1.382038512535075, 49.52786431943707], + [-1.383473837209671, 49.52818728997186], + [-1.384664541026206, 49.52820300095466], + [-1.390149365906288, 49.52684697064178], + [-1.391929859299305, 49.52688747798622], + [-1.391929859299305, 49.52688747798622] + ] + }, + "length": 0.749899621490495, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22392", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14434", + "bus2": "MVBus14443", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367945629924356, 49.52751533948379], + [-1.367945629924356, 49.52751533948379], + [-1.368408922341095, 49.528337782455814], + [-1.368408922341095, 49.528337782455814] + ] + }, + "length": 0.09742733081950168, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12884", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14443", + "bus2": "MVBus14445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.368408922341095, 49.528337782455814], + [-1.368408922341095, 49.528337782455814], + [-1.367532317945696, 49.53266031009273], + [-1.367532317945696, 49.53266031009273] + ] + }, + "length": 0.4849216955773983, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18782", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14445", + "bus2": "MVLV10065", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367532317945696, 49.53266031009273], + [-1.367532317945696, 49.53266031009273], + [-1.364515741451122, 49.53173053874581], + [-1.363929569632286, 49.53103421357823], + [-1.363929569632286, 49.53103421357823] + ] + }, + "length": 0.32992283723741367, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18781", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14445", + "bus2": "MVLV06198", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367532317945696, 49.53266031009273], + [-1.367532317945696, 49.53266031009273], + [-1.366949565087487, 49.53458353417382], + [-1.366949565087487, 49.53458353417382] + ] + }, + "length": 0.2180209746965883, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22393", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14443", + "bus2": "MVLV10063", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.368408922341095, 49.528337782455814], + [-1.368408922341095, 49.528337782455814], + [-1.367321186591, 49.52829954489343], + [-1.367321186591, 49.52829954489343] + ] + }, + "length": 0.07886110873021954, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV15305_production", + "bus": "MVLV15305", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15305_consumption", + "bus": "MVLV15305", + "phases": "abc", + "powers": [ + [9728.870098447078, 3197.7249627094766], + [9728.870098447078, 3197.7249627094766], + [9728.870098447078, 3197.7249627094766] + ] + }, + { + "id": "MVLV11121_production", + "bus": "MVLV11121", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11121_consumption", + "bus": "MVLV11121", + "phases": "abc", + "powers": [ + [9728.870098447078, 3197.7249627094766], + [9728.870098447078, 3197.7249627094766], + [9728.870098447078, 3197.7249627094766] + ] + }, + { + "id": "MVLV01169_production", + "bus": "MVLV01169", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01169_consumption", + "bus": "MVLV01169", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV05857_production", + "bus": "MVLV05857", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05857_consumption", + "bus": "MVLV05857", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV05564_production", + "bus": "MVLV05564", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05564_consumption", + "bus": "MVLV05564", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV11614_production", + "bus": "MVLV11614", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11614_consumption", + "bus": "MVLV11614", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV01171_production", + "bus": "MVLV01171", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01171_consumption", + "bus": "MVLV01171", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV08663_production", + "bus": "MVLV08663", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08663_consumption", + "bus": "MVLV08663", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV16705_production", + "bus": "MVLV16705", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16705_consumption", + "bus": "MVLV16705", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV00567_production", + "bus": "MVLV00567", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00567_consumption", + "bus": "MVLV00567", + "phases": "abc", + "powers": [ + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373] + ] + }, + { + "id": "MVLV02233_production", + "bus": "MVLV02233", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02233_consumption", + "bus": "MVLV02233", + "phases": "abc", + "powers": [ + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373] + ] + }, + { + "id": "MVLV06734_production", + "bus": "MVLV06734", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06734_consumption", + "bus": "MVLV06734", + "phases": "abc", + "powers": [ + [9956.81620096401, 3272.647223444263], + [9956.81620096401, 3272.647223444263], + [9956.81620096401, 3272.647223444263] + ] + }, + { + "id": "MVLV12126_production", + "bus": "MVLV12126", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12126_consumption", + "bus": "MVLV12126", + "phases": "abc", + "powers": [ + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373] + ] + }, + { + "id": "MVLV00568_production", + "bus": "MVLV00568", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00568_consumption", + "bus": "MVLV00568", + "phases": "abc", + "powers": [ + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373], + [8300.064364456555, 2728.099228558373] + ] + }, + { + "id": "MVLV16704_production", + "bus": "MVLV16704", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16704_consumption", + "bus": "MVLV16704", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV06199_production", + "bus": "MVLV06199", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06199_consumption", + "bus": "MVLV06199", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV08768_production", + "bus": "MVLV08768", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08768_consumption", + "bus": "MVLV08768", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV01295_production", + "bus": "MVLV01295", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01295_consumption", + "bus": "MVLV01295", + "phases": "abc", + "powers": [ + [24631.047208005057, 8095.83371118148], + [24631.047208005057, 8095.83371118148], + [24631.047208005057, 8095.83371118148] + ] + }, + { + "id": "MVLV15565_production", + "bus": "MVLV15565", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15565_consumption", + "bus": "MVLV15565", + "phases": "abc", + "powers": [ + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503] + ] + }, + { + "id": "MVLV08413_production", + "bus": "MVLV08413", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08413_consumption", + "bus": "MVLV08413", + "phases": "abc", + "powers": [ + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503] + ] + }, + { + "id": "MVLV05831_production", + "bus": "MVLV05831", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05831_consumption", + "bus": "MVLV05831", + "phases": "abc", + "powers": [ + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503] + ] + }, + { + "id": "MVLV01638_production", + "bus": "MVLV01638", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01638_consumption", + "bus": "MVLV01638", + "phases": "abc", + "powers": [ + [6425.866528528429, 2112.0801899281746], + [6425.866528528429, 2112.0801899281746], + [6425.866528528429, 2112.0801899281746] + ] + }, + { + "id": "MVLV08412_production", + "bus": "MVLV08412", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08412_consumption", + "bus": "MVLV08412", + "phases": "abc", + "powers": [ + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503], + [8362.411618697299, 2748.5917800288503] + ] + }, + { + "id": "MVLV00730_production", + "bus": "MVLV00730", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00730_consumption", + "bus": "MVLV00730", + "phases": "abc", + "powers": [ + [9956.81620096401, 3272.647223444263], + [9956.81620096401, 3272.647223444263], + [9956.81620096401, 3272.647223444263] + ] + }, + { + "id": "MVLV10064_production", + "bus": "MVLV10064", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10064_consumption", + "bus": "MVLV10064", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV18656_production", + "bus": "MVLV18656", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18656_consumption", + "bus": "MVLV18656", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV18655_production", + "bus": "MVLV18655", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18655_consumption", + "bus": "MVLV18655", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV11613_production", + "bus": "MVLV11613", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11613_consumption", + "bus": "MVLV11613", + "phases": "abc", + "powers": [ + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334], + [9187.456640970318, 3019.7709649069334] + ] + }, + { + "id": "MVLV10065_production", + "bus": "MVLV10065", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10065_consumption", + "bus": "MVLV10065", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV06198_production", + "bus": "MVLV06198", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06198_consumption", + "bus": "MVLV06198", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + }, + { + "id": "MVLV10063_production", + "bus": "MVLV10063", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10063_consumption", + "bus": "MVLV10063", + "phases": "abc", + "powers": [ + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432], + [5652.865624757709, 1858.0070795698432] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder063_Summer.json b/roseau/load_flow/data/networks/MVFeeder063_Summer.json new file mode 100644 index 00000000..8c5cfddf --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder063_Summer.json @@ -0,0 +1,1685 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.582499629951565, 49.63030130599146] + } + }, + { + "id": "HVMV04", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.582499629951565, 49.63030130599146] + } + }, + { + "id": "MVBus00398", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.585887124774393, 49.63117410335776] + } + }, + { + "id": "MVLV10302", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5881686185764852, 49.631323645160805] + } + }, + { + "id": "MVLV18891", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5892748994771195, 49.6310861815891] + } + }, + { + "id": "MVBus04692", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.590032629340467, 49.63102752444015] + } + }, + { + "id": "MVLV06425", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.590081200363509, 49.63141304674876] + } + }, + { + "id": "MVBus04777", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.590078988075034, 49.63102584785101] + } + }, + { + "id": "MVBus04778", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.59131012900034, 49.63097303093617] + } + }, + { + "id": "MVLV06406", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5932946079935264, 49.630656322771706] + } + }, + { + "id": "MVBus05110", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.594956260344823, 49.630665631479914] + } + }, + { + "id": "MVLV08988", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5965269482967035, 49.631562422194115] + } + }, + { + "id": "MVBus05359", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.595457274166531, 49.63050713567418] + } + }, + { + "id": "MVLV09578", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5965383406246354, 49.6303996452076] + } + }, + { + "id": "MVLV14988", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5994057208656425, 49.63034836409935] + } + }, + { + "id": "MVLV09576", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600991203513488, 49.63095610639915] + } + }, + { + "id": "MVBus06628", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600131825692311, 49.63110713336656] + } + }, + { + "id": "MVLV12146", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600219567506464, 49.63112047547915] + } + }, + { + "id": "MVBus06630", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600133878496521, 49.63114054424035] + } + }, + { + "id": "MVLV18248", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.601926754639998, 49.632405314831374] + } + }, + { + "id": "MVBus06677", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.598351272185645, 49.633132540303215] + } + }, + { + "id": "MVBus06264", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599741036707661, 49.630149264843865] + } + }, + { + "id": "MVLV10652", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5964751196953948, 49.62873807421219] + } + }, + { + "id": "MVBus06579", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599824989847082, 49.63025102890478] + } + }, + { + "id": "MVLV03675", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.604575713187041, 49.630129604828134] + } + }, + { + "id": "MVBus07545", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.605865051710045, 49.63009983843237] + } + }, + { + "id": "MVBus07546", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.605903527330651, 49.630104005951786] + } + }, + { + "id": "MVLV01569", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6061308511170715, 49.6298018240317] + } + }, + { + "id": "MVBus07763", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.60603073728943, 49.6301220859694] + } + }, + { + "id": "MVBus07764", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.606844381112045, 49.630642083548835] + } + }, + { + "id": "MVLV13299", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6068386972174165, 49.63067770263442] + } + }, + { + "id": "MVLV01559", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6052536577382486, 49.631471343367366] + } + }, + { + "id": "MVLV03697", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.606013751391186, 49.63197746387231] + } + }, + { + "id": "MVLV14993", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6059420225212007, 49.63270438210968] + } + }, + { + "id": "MVLV10647", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6074521494066876, 49.63158659606066] + } + }, + { + "id": "MVBus09044", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607809567268233, 49.630398631969165] + } + }, + { + "id": "MVBus09045", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607963282202793, 49.63008098506603] + } + }, + { + "id": "MVBus09046", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607922857761914, 49.63006092963809] + } + }, + { + "id": "MVLV18429", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.592232380383244, 49.62734036551845] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV04", + "geometry": { + "type": "Point", + "coordinates": [-1.582499629951565, 49.63030130599146] + } + }, + { + "id": "MVBranch43857", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV04", + "bus2": "MVBus00398", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.582499629951565, 49.63030130599146], + [-1.582457614736368, 49.630431568941255], + [-1.582457614736368, 49.630431568941255], + [-1.582473246228667, 49.630440422918284], + [-1.582578484333074, 49.63050003650204], + [-1.583369908056276, 49.63117289685149], + [-1.583891877875295, 49.631026476614196], + [-1.584268296346088, 49.63100114072498], + [-1.584659143737118, 49.63103473710885], + [-1.585577291539704, 49.63114413204489], + [-1.585887124774393, 49.63117410335776], + [-1.585887124774393, 49.63117410335776] + ] + }, + "length": 0.29272696710627666, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47151", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00398", + "bus2": "MVLV10302", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.585887124774393, 49.63117410335776], + [-1.585887124774393, 49.63117410335776], + [-1.585894433355167, 49.631174810392274], + [-1.586060807467087, 49.63120970556265], + [-1.588012421086478, 49.631120216905174], + [-1.58815331318397, 49.6313120297285], + [-1.588162236523714, 49.631324185056314], + [-1.5881686185764852, 49.631323645160805] + ] + }, + "length": 0.1796403071794525, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36458", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10302", + "bus2": "MVLV18891", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5881686185764852, 49.631323645160805], + [-1.588175000629256, 49.6313231052653], + [-1.58817884138881, 49.631309870147], + [-1.588238497198527, 49.63110445197659], + [-1.589229311013137, 49.63106549205088], + [-1.589242795801626, 49.63107845234356], + [-1.589252235847672, 49.63108760545372], + [-1.5892748994771195, 49.6310861815891] + ] + }, + "length": 0.09942329994366059, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18891", + "bus2": "MVBus04692", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5892748994771195, 49.6310861815891], + [-1.589297563106567, 49.631084757724466], + [-1.589312210074494, 49.631075227062105], + [-1.589336929625482, 49.6310591467841], + [-1.590032629340467, 49.63102752444015], + [-1.590032629340467, 49.63102752444015] + ] + }, + "length": 0.05440747326591015, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04692", + "bus2": "MVLV06425", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.590032629340467, 49.63102752444015], + [-1.590032629340467, 49.63102752444015], + [-1.59003720921662, 49.63102731274123], + [-1.590061795161727, 49.631400962237706], + [-1.590062397349204, 49.63141004265828], + [-1.59006707050888, 49.631413199957606], + [-1.590081200363509, 49.63141304674876] + ] + }, + "length": 0.04342566480759927, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06425", + "bus2": "MVBus04777", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.590081200363509, 49.63141304674876], + [-1.590095330218138, 49.631412893539924], + [-1.590098491181968, 49.63141061478891], + [-1.590097801973846, 49.631400224351815], + [-1.590073151546796, 49.63102610036799], + [-1.590078988075034, 49.63102584785101], + [-1.590078988075034, 49.63102584785101] + ] + }, + "length": 0.043569334620479676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43814", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04777", + "bus2": "MVBus04778", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.590078988075034, 49.63102584785101], + [-1.590078988075034, 49.63102584785101], + [-1.59131012900034, 49.63097303093617], + [-1.59131012900034, 49.63097303093617] + ] + }, + "length": 0.0891351018547783, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39808", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04778", + "bus2": "MVLV06406", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.59131012900034, 49.63097303093617], + [-1.59131012900034, 49.63097303093617], + [-1.59217025879419, 49.63093611661641], + [-1.592359942925573, 49.631053944114726], + [-1.592712554378385, 49.63104288863784], + [-1.592667504616526, 49.6308274095797], + [-1.593231716327097, 49.63079297442431], + [-1.593276712268867, 49.63067587334755], + [-1.593281727528354, 49.63066280665203], + [-1.5932946079935264, 49.630656322771706] + ] + }, + "length": 0.1867858831234055, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32865", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06406", + "bus2": "MVBus05110", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5932946079935264, 49.630656322771706], + [-1.593307488458699, 49.63064983889138], + [-1.593328233441076, 49.63064992885346], + [-1.593661170228589, 49.63065145159545], + [-1.593807807362896, 49.630716705797546], + [-1.594006946568672, 49.630727963754794], + [-1.594956260344823, 49.630665631479914], + [-1.594956260344823, 49.630665631479914] + ] + }, + "length": 0.12176520566195435, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46784", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05110", + "bus2": "MVLV08988", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594956260344823, 49.630665631479914], + [-1.594956260344823, 49.630665631479914], + [-1.595283878116689, 49.630644123093084], + [-1.595485369975571, 49.630615682851264], + [-1.595832592176104, 49.630968569411536], + [-1.596514512394846, 49.63147602143405], + [-1.596521580252994, 49.631547746364326], + [-1.596523301958769, 49.63156037821939], + [-1.5965269482967035, 49.631562422194115] + ] + }, + "length": 0.16958490464876844, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41322", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08988", + "bus2": "MVBus05359", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5965269482967035, 49.631562422194115], + [-1.596530594634638, 49.63156446616884], + [-1.596538935694694, 49.63154516749901], + [-1.596568202693209, 49.63146367299588], + [-1.595893646808499, 49.630952088121326], + [-1.595457274166531, 49.63050713567418], + [-1.595457274166531, 49.63050713567418] + ] + }, + "length": 0.1451287670349226, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40369", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05359", + "bus2": "MVLV09578", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.595457274166531, 49.63050713567418], + [-1.595457274166531, 49.63050713567418], + [-1.595070655749525, 49.63011290668581], + [-1.595014596452464, 49.629915815242335], + [-1.59556662626041, 49.629919594817196], + [-1.595887238387095, 49.630096903492536], + [-1.596170633553712, 49.630242160226175], + [-1.596328495422259, 49.63029173273002], + [-1.596484912519411, 49.63030622881062], + [-1.596508270547654, 49.63039065125154], + [-1.596510327067297, 49.63039811075034], + [-1.596518918723145, 49.630400016314034], + [-1.5965383406246354, 49.6303996452076] + ] + }, + "length": 0.20578413900606038, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44814", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09578", + "bus2": "MVLV14988", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5965383406246354, 49.6303996452076], + [-1.596557762526126, 49.63039927410117], + [-1.596569769188971, 49.63039609591247], + [-1.596570419598952, 49.63039106613977], + [-1.59658169022995, 49.63030294533156], + [-1.599353488655153, 49.63027727030881], + [-1.599389324445609, 49.63033603617886], + [-1.599396963345673, 49.63034855630855], + [-1.5994057208656425, 49.63034836409935] + ] + }, + "length": 0.2201270935428412, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35110", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14988", + "bus2": "MVLV09576", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5994057208656425, 49.63034836409935], + [-1.599413321767373, 49.63034885098645], + [-1.599422041281082, 49.6303366255345], + [-1.5994506868453, 49.63029647816279], + [-1.599742169728719, 49.63030098832903], + [-1.59988048956103, 49.63041784236984], + [-1.59999356868067, 49.630978569811646], + [-1.600860498221293, 49.63101935195073], + [-1.600971677869119, 49.63096266818522], + [-1.600987994515759, 49.63095434954539], + [-1.600991203513488, 49.63095610639915] + ] + }, + "length": 0.18127899117716112, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37968", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09576", + "bus2": "MVBus06628", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600991203513488, 49.63095610639915], + [-1.600994412511217, 49.6309578632529], + [-1.600984513860767, 49.630969695601515], + [-1.600898086848737, 49.63107299773739], + [-1.600198873343388, 49.63104903693187], + [-1.600131825692311, 49.63110713336656], + [-1.600131825692311, 49.63110713336656] + ] + }, + "length": 0.07323313243705727, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34317", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06628", + "bus2": "MVLV12146", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600131825692311, 49.63110713336656], + [-1.600131825692311, 49.63110713336656], + [-1.600141397631577, 49.63111689286139], + [-1.600197159594712, 49.631115077034636], + [-1.60021664451948, 49.6311144425235], + [-1.600219567506464, 49.63112047547915] + ] + }, + "length": 0.006729896400067992, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41829", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12146", + "bus2": "MVBus06630", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600219567506464, 49.63112047547915], + [-1.600222490493448, 49.63112650843481], + [-1.600202597628942, 49.63112777668832], + [-1.60013764391163, 49.631131933049055], + [-1.600133878496521, 49.63114054424035], + [-1.600133878496521, 49.63114054424035] + ] + }, + "length": 0.0071548122839469085, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46365", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06630", + "bus2": "MVLV18248", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600133878496521, 49.63114054424035], + [-1.600133878496521, 49.63114054424035], + [-1.600132989738073, 49.6316251322541], + [-1.600127607633422, 49.63197169331527], + [-1.600124745619519, 49.632005102342184], + [-1.600144456326674, 49.632026041607276], + [-1.600189279469739, 49.632031721768584], + [-1.602111456145106, 49.631852054064865], + [-1.601931564151185, 49.63239220947645], + [-1.601927181375222, 49.632405372866444], + [-1.601926754639998, 49.632405314831374] + ] + }, + "length": 0.30545062371481124, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42877", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18248", + "bus2": "MVBus06677", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.601926754639998, 49.632405314831374], + [-1.601926327904774, 49.632405256796304], + [-1.601929857210709, 49.63239197733624], + [-1.602058963254476, 49.631906071519865], + [-1.599877734329078, 49.63210534175751], + [-1.598957576101803, 49.632660636772], + [-1.598867923178912, 49.6328212588667], + [-1.598839977011486, 49.63297347881945], + [-1.598381917760524, 49.633104287789024], + [-1.598363215189414, 49.63312153191067], + [-1.598351272185645, 49.633132540303215], + [-1.598351272185645, 49.633132540303215] + ] + }, + "length": 0.3822476021700914, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41317", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14988", + "bus2": "MVBus06264", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5994057208656425, 49.63034836409935], + [-1.599406877483881, 49.63034768500303], + [-1.599409152717084, 49.630334293568175], + [-1.59942247928665, 49.63025601472934], + [-1.59974197387622, 49.630246969920925], + [-1.599741036707661, 49.630149264843865], + [-1.599741036707661, 49.630149264843865] + ] + }, + "length": 0.044228529691174134, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32599", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06264", + "bus2": "MVLV10652", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.599741036707661, 49.630149264843865], + [-1.599741036707661, 49.630149264843865], + [-1.599736383418121, 49.629660981036345], + [-1.599512540866027, 49.62875734663733], + [-1.599370851231332, 49.62866761429518], + [-1.596554863870048, 49.62876323245091], + [-1.596499269421502, 49.628750312113155], + [-1.596479745983694, 49.62874576783746], + [-1.5964751196953948, 49.62873807421219] + ] + }, + "length": 0.37988895822058255, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42871", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10652", + "bus2": "MVBus06579", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5964751196953948, 49.62873807421219], + [-1.596480922446136, 49.62874037923972], + [-1.596501621650563, 49.62873952594771], + [-1.59941685670076, 49.6286192313008], + [-1.599579636349769, 49.62872985806198], + [-1.599817214111654, 49.62966633408429], + [-1.599819905230955, 49.630250618970976], + [-1.599824989847082, 49.63025102890478], + [-1.599824989847082, 49.63025102890478] + ] + }, + "length": 0.4004758816236516, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32596", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06579", + "bus2": "MVLV03675", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.599824989847082, 49.63025102890478], + [-1.599824989847082, 49.63025102890478], + [-1.601896244129133, 49.63041958472674], + [-1.601996260348348, 49.6303189412671], + [-1.602233863374785, 49.63039461125765], + [-1.602300391981994, 49.63032571285353], + [-1.602347024907456, 49.630336737503946], + [-1.602419502921724, 49.630341470781], + [-1.602475087898543, 49.63032608148295], + [-1.602544597902495, 49.63029399858802], + [-1.60270357876518, 49.630288602418], + [-1.602700319036958, 49.63024818997145], + [-1.602705435140406, 49.630191291729695], + [-1.60274286249122, 49.630139590148964], + [-1.602831724381774, 49.63008974640218], + [-1.60303394609506, 49.63003605555776], + [-1.603338750099672, 49.62999957723929], + [-1.604465431683123, 49.63001258808894], + [-1.604557972114728, 49.630118583304885], + [-1.604568208129951, 49.63013029910956], + [-1.604575713187041, 49.630129604828134] + ] + }, + "length": 0.3834768388448617, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42629", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03675", + "bus2": "MVBus07545", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.604575713187041, 49.630129604828134], + [-1.604583218244131, 49.63012891054671], + [-1.604588006144933, 49.63011580572965], + [-1.604624993570211, 49.630014364153666], + [-1.605202766983136, 49.63002803316902], + [-1.605865051710045, 49.63009983843237], + [-1.605865051710045, 49.63009983843237] + ] + }, + "length": 0.1033695620553855, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36766", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07545", + "bus2": "MVBus07546", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.605865051710045, 49.63009983843237], + [-1.605865051710045, 49.63009983843237], + [-1.605903527330651, 49.630104005951786], + [-1.605903527330651, 49.630104005951786] + ] + }, + "length": 0.00281802750527586, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42870", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07546", + "bus2": "MVLV01569", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.605903527330651, 49.630104005951786], + [-1.605903527330651, 49.630104005951786], + [-1.605983448277625, 49.63011673120155], + [-1.606110822631136, 49.62982246236862], + [-1.6061154985613, 49.629814540622036], + [-1.606122915451323, 49.629801961452436], + [-1.6061308511170715, 49.6298018240317] + ] + }, + "length": 0.04238473359688498, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32603", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01569", + "bus2": "MVBus07763", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6061308511170715, 49.6298018240317], + [-1.60613878678282, 49.62980168661096], + [-1.606147227423134, 49.629813991389355], + [-1.606161750381372, 49.629835134939675], + [-1.60603073728943, 49.6301220859694], + [-1.60603073728943, 49.6301220859694] + ] + }, + "length": 0.037362505005135126, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41319", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07763", + "bus2": "MVBus07764", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.60603073728943, 49.6301220859694], + [-1.60603073728943, 49.6301220859694], + [-1.606029789962838, 49.63012415808932], + [-1.606534054795468, 49.6302060498832], + [-1.607160392552816, 49.630374724477], + [-1.606937151074058, 49.630597522523814], + [-1.606869119336498, 49.63059623477136], + [-1.606844381112045, 49.630642083548835], + [-1.606844381112045, 49.630642083548835] + ] + }, + "length": 0.12666260023360498, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37175", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07764", + "bus2": "MVLV13299", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.606844381112045, 49.630642083548835], + [-1.606844381112045, 49.630642083548835], + [-1.606835820605765, 49.630657955226134], + [-1.606828954112441, 49.63067066934315], + [-1.6068386972174165, 49.63067770263442] + ] + }, + "length": 0.003369048735334049, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40365", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13299", + "bus2": "MVLV01559", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6068386972174165, 49.63067770263442], + [-1.606848440322392, 49.6306847359257], + [-1.606863725864885, 49.63068082028975], + [-1.606901323807323, 49.63066897408878], + [-1.606898480804468, 49.630702391842064], + [-1.606749736545868, 49.631127052493035], + [-1.606541079339864, 49.63108372701454], + [-1.606255466377593, 49.6317021359408], + [-1.605337646054881, 49.63154607230891], + [-1.605269489275635, 49.63148138396481], + [-1.605257776087073, 49.63147026490842], + [-1.6052536577382486, 49.631471343367366] + ] + }, + "length": 0.22275764658959776, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36000", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01559", + "bus2": "MVLV03697", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6052536577382486, 49.631471343367366], + [-1.605249539389424, 49.6314724218263], + [-1.605253015877039, 49.6314856978016], + [-1.605278106199127, 49.63158141056193], + [-1.606243734949964, 49.63174576187006], + [-1.60614978519823, 49.63197316238006], + [-1.606036071381895, 49.63197374158696], + [-1.606015326590593, 49.631973842614265], + [-1.606013751391186, 49.63197746387231] + ] + }, + "length": 0.12031108048261688, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38837", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03697", + "bus2": "MVLV14993", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.606013751391186, 49.63197746387231], + [-1.606012176191779, 49.631981085130356], + [-1.606029769895893, 49.631988217650516], + [-1.606137908075605, 49.63203209769212], + [-1.605854040183553, 49.632654943879984], + [-1.605925965848163, 49.63269582365155], + [-1.605941575873448, 49.63270469341623], + [-1.6059420225212007, 49.63270438210968] + ] + }, + "length": 0.09135789011304539, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32605", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14993", + "bus2": "MVLV10647", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6059420225212007, 49.63270438210968], + [-1.605942469168953, 49.63270407080312], + [-1.605927752439219, 49.63269457842556], + [-1.605885542280693, 49.63266737784878], + [-1.606587112041124, 49.63113889424461], + [-1.607629270838647, 49.63135824320703], + [-1.607565088252944, 49.63159363916435], + [-1.607473667267332, 49.63158619979585], + [-1.607453089798027, 49.63158452415805], + [-1.6074521494066876, 49.63158659606066] + ] + }, + "length": 0.2970741181967918, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37965", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10647", + "bus2": "MVBus09044", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6074521494066876, 49.63158659606066], + [-1.607451209015348, 49.63158866796327], + [-1.607469905704893, 49.63159448740688], + [-1.607604571721994, 49.63163642166085], + [-1.607707070225681, 49.63130877476193], + [-1.60682293860637, 49.63114076972017], + [-1.606979497719956, 49.63077887123005], + [-1.607005849684557, 49.630761771737134], + [-1.60702755753267, 49.63070430497387], + [-1.606983703433533, 49.63064186407979], + [-1.607233441120983, 49.63038664800551], + [-1.607732825676685, 49.63051170376156], + [-1.607809567268233, 49.630398631969165], + [-1.607809567268233, 49.630398631969165] + ] + }, + "length": 0.2607811328062301, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35858", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09044", + "bus2": "MVBus09045", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607809567268233, 49.630398631969165], + [-1.607809567268233, 49.630398631969165], + [-1.607989467903642, 49.63009289056437], + [-1.607963282202793, 49.63008098506603], + [-1.607963282202793, 49.63008098506603] + ] + }, + "length": 0.03871335222757685, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36664", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09045", + "bus2": "MVBus09046", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607963282202793, 49.63008098506603], + [-1.607963282202793, 49.63008098506603], + [-1.607949074963442, 49.630072168694824], + [-1.607922857761914, 49.63006092963809], + [-1.607922857761914, 49.63006092963809] + ] + }, + "length": 0.003688866872294023, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44819", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10652", + "bus2": "MVLV18429", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5964751196953948, 49.62873807421219], + [-1.596464690656354, 49.6287280755594], + [-1.596469158069387, 49.62871491859022], + [-1.596549865784263, 49.628477067386115], + [-1.596503431317334, 49.62824453071181], + [-1.59626923888142, 49.62809039940601], + [-1.593442751994083, 49.627934175396426], + [-1.593380231363017, 49.627846250703925], + [-1.592712351077759, 49.62781488103925], + [-1.592425766957521, 49.62769854000063], + [-1.592274541262333, 49.627541587835616], + [-1.592232380383244, 49.62734036551845], + [-1.592232380383244, 49.62734036551845] + ] + }, + "length": 0.41044522166928754, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV10302_production", + "bus": "MVLV10302", + "phases": "abc", + "powers": [ + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0] + ] + }, + { + "id": "MVLV10302_consumption", + "bus": "MVLV10302", + "phases": "abc", + "powers": [ + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496] + ] + }, + { + "id": "MVLV18891_production", + "bus": "MVLV18891", + "phases": "abc", + "powers": [ + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0] + ] + }, + { + "id": "MVLV18891_consumption", + "bus": "MVLV18891", + "phases": "abc", + "powers": [ + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496] + ] + }, + { + "id": "MVLV06425_production", + "bus": "MVLV06425", + "phases": "abc", + "powers": [ + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0] + ] + }, + { + "id": "MVLV06425_consumption", + "bus": "MVLV06425", + "phases": "abc", + "powers": [ + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496] + ] + }, + { + "id": "MVLV06406_production", + "bus": "MVLV06406", + "phases": "abc", + "powers": [ + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0] + ] + }, + { + "id": "MVLV06406_consumption", + "bus": "MVLV06406", + "phases": "abc", + "powers": [ + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496] + ] + }, + { + "id": "MVLV08988_production", + "bus": "MVLV08988", + "phases": "abc", + "powers": [ + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0], + [-515.4694360013509, 0.0] + ] + }, + { + "id": "MVLV08988_consumption", + "bus": "MVLV08988", + "phases": "abc", + "powers": [ + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496], + [7448.5676611738645, 2448.2257965771496] + ] + }, + { + "id": "MVLV09578_production", + "bus": "MVLV09578", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09578_consumption", + "bus": "MVLV09578", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV14988_production", + "bus": "MVLV14988", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV14988_consumption", + "bus": "MVLV14988", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV09576_production", + "bus": "MVLV09576", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09576_consumption", + "bus": "MVLV09576", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV12146_production", + "bus": "MVLV12146", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV12146_consumption", + "bus": "MVLV12146", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV18248_production", + "bus": "MVLV18248", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV18248_consumption", + "bus": "MVLV18248", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV10652_production", + "bus": "MVLV10652", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV10652_consumption", + "bus": "MVLV10652", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV03675_production", + "bus": "MVLV03675", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV03675_consumption", + "bus": "MVLV03675", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV01569_production", + "bus": "MVLV01569", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV01569_consumption", + "bus": "MVLV01569", + "phases": "abc", + "powers": [ + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438], + [13586.610797541593, 4465.703012403438] + ] + }, + { + "id": "MVLV13299_production", + "bus": "MVLV13299", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV13299_consumption", + "bus": "MVLV13299", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV01559_production", + "bus": "MVLV01559", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV01559_consumption", + "bus": "MVLV01559", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV03697_production", + "bus": "MVLV03697", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV03697_consumption", + "bus": "MVLV03697", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV14993_production", + "bus": "MVLV14993", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV14993_consumption", + "bus": "MVLV14993", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV10647_production", + "bus": "MVLV10647", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV10647_consumption", + "bus": "MVLV10647", + "phases": "abc", + "powers": [ + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634], + [7813.441318636708, 2568.1539681836634] + ] + }, + { + "id": "MVLV18429_production", + "bus": "MVLV18429", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV18429_consumption", + "bus": "MVLV18429", + "phases": "abc", + "powers": [ + [1790.0939030163242, 588.3754126990592], + [1790.0939030163242, 588.3754126990592], + [1790.0939030163242, 588.3754126990592] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder063_Winter.json b/roseau/load_flow/data/networks/MVFeeder063_Winter.json new file mode 100644 index 00000000..505ae97e --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder063_Winter.json @@ -0,0 +1,1685 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.582499629951565, 49.63030130599146] + } + }, + { + "id": "HVMV04", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.582499629951565, 49.63030130599146] + } + }, + { + "id": "MVBus00398", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.585887124774393, 49.63117410335776] + } + }, + { + "id": "MVLV10302", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5881686185764852, 49.631323645160805] + } + }, + { + "id": "MVLV18891", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5892748994771195, 49.6310861815891] + } + }, + { + "id": "MVBus04692", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.590032629340467, 49.63102752444015] + } + }, + { + "id": "MVLV06425", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.590081200363509, 49.63141304674876] + } + }, + { + "id": "MVBus04777", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.590078988075034, 49.63102584785101] + } + }, + { + "id": "MVBus04778", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.59131012900034, 49.63097303093617] + } + }, + { + "id": "MVLV06406", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5932946079935264, 49.630656322771706] + } + }, + { + "id": "MVBus05110", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.594956260344823, 49.630665631479914] + } + }, + { + "id": "MVLV08988", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5965269482967035, 49.631562422194115] + } + }, + { + "id": "MVBus05359", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.595457274166531, 49.63050713567418] + } + }, + { + "id": "MVLV09578", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5965383406246354, 49.6303996452076] + } + }, + { + "id": "MVLV14988", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5994057208656425, 49.63034836409935] + } + }, + { + "id": "MVLV09576", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600991203513488, 49.63095610639915] + } + }, + { + "id": "MVBus06628", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600131825692311, 49.63110713336656] + } + }, + { + "id": "MVLV12146", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600219567506464, 49.63112047547915] + } + }, + { + "id": "MVBus06630", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.600133878496521, 49.63114054424035] + } + }, + { + "id": "MVLV18248", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.601926754639998, 49.632405314831374] + } + }, + { + "id": "MVBus06677", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.598351272185645, 49.633132540303215] + } + }, + { + "id": "MVBus06264", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599741036707661, 49.630149264843865] + } + }, + { + "id": "MVLV10652", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5964751196953948, 49.62873807421219] + } + }, + { + "id": "MVBus06579", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.599824989847082, 49.63025102890478] + } + }, + { + "id": "MVLV03675", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.604575713187041, 49.630129604828134] + } + }, + { + "id": "MVBus07545", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.605865051710045, 49.63009983843237] + } + }, + { + "id": "MVBus07546", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.605903527330651, 49.630104005951786] + } + }, + { + "id": "MVLV01569", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6061308511170715, 49.6298018240317] + } + }, + { + "id": "MVBus07763", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.60603073728943, 49.6301220859694] + } + }, + { + "id": "MVBus07764", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.606844381112045, 49.630642083548835] + } + }, + { + "id": "MVLV13299", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6068386972174165, 49.63067770263442] + } + }, + { + "id": "MVLV01559", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6052536577382486, 49.631471343367366] + } + }, + { + "id": "MVLV03697", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.606013751391186, 49.63197746387231] + } + }, + { + "id": "MVLV14993", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6059420225212007, 49.63270438210968] + } + }, + { + "id": "MVLV10647", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6074521494066876, 49.63158659606066] + } + }, + { + "id": "MVBus09044", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607809567268233, 49.630398631969165] + } + }, + { + "id": "MVBus09045", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607963282202793, 49.63008098506603] + } + }, + { + "id": "MVBus09046", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.607922857761914, 49.63006092963809] + } + }, + { + "id": "MVLV18429", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.592232380383244, 49.62734036551845] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV04", + "geometry": { + "type": "Point", + "coordinates": [-1.582499629951565, 49.63030130599146] + } + }, + { + "id": "MVBranch43857", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV04", + "bus2": "MVBus00398", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.582499629951565, 49.63030130599146], + [-1.582457614736368, 49.630431568941255], + [-1.582457614736368, 49.630431568941255], + [-1.582473246228667, 49.630440422918284], + [-1.582578484333074, 49.63050003650204], + [-1.583369908056276, 49.63117289685149], + [-1.583891877875295, 49.631026476614196], + [-1.584268296346088, 49.63100114072498], + [-1.584659143737118, 49.63103473710885], + [-1.585577291539704, 49.63114413204489], + [-1.585887124774393, 49.63117410335776], + [-1.585887124774393, 49.63117410335776] + ] + }, + "length": 0.29272696710627666, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47151", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00398", + "bus2": "MVLV10302", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.585887124774393, 49.63117410335776], + [-1.585887124774393, 49.63117410335776], + [-1.585894433355167, 49.631174810392274], + [-1.586060807467087, 49.63120970556265], + [-1.588012421086478, 49.631120216905174], + [-1.58815331318397, 49.6313120297285], + [-1.588162236523714, 49.631324185056314], + [-1.5881686185764852, 49.631323645160805] + ] + }, + "length": 0.1796403071794525, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36458", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10302", + "bus2": "MVLV18891", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5881686185764852, 49.631323645160805], + [-1.588175000629256, 49.6313231052653], + [-1.58817884138881, 49.631309870147], + [-1.588238497198527, 49.63110445197659], + [-1.589229311013137, 49.63106549205088], + [-1.589242795801626, 49.63107845234356], + [-1.589252235847672, 49.63108760545372], + [-1.5892748994771195, 49.6310861815891] + ] + }, + "length": 0.09942329994366059, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18891", + "bus2": "MVBus04692", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5892748994771195, 49.6310861815891], + [-1.589297563106567, 49.631084757724466], + [-1.589312210074494, 49.631075227062105], + [-1.589336929625482, 49.6310591467841], + [-1.590032629340467, 49.63102752444015], + [-1.590032629340467, 49.63102752444015] + ] + }, + "length": 0.05440747326591015, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04692", + "bus2": "MVLV06425", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.590032629340467, 49.63102752444015], + [-1.590032629340467, 49.63102752444015], + [-1.59003720921662, 49.63102731274123], + [-1.590061795161727, 49.631400962237706], + [-1.590062397349204, 49.63141004265828], + [-1.59006707050888, 49.631413199957606], + [-1.590081200363509, 49.63141304674876] + ] + }, + "length": 0.04342566480759927, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06425", + "bus2": "MVBus04777", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.590081200363509, 49.63141304674876], + [-1.590095330218138, 49.631412893539924], + [-1.590098491181968, 49.63141061478891], + [-1.590097801973846, 49.631400224351815], + [-1.590073151546796, 49.63102610036799], + [-1.590078988075034, 49.63102584785101], + [-1.590078988075034, 49.63102584785101] + ] + }, + "length": 0.043569334620479676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43814", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04777", + "bus2": "MVBus04778", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.590078988075034, 49.63102584785101], + [-1.590078988075034, 49.63102584785101], + [-1.59131012900034, 49.63097303093617], + [-1.59131012900034, 49.63097303093617] + ] + }, + "length": 0.0891351018547783, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39808", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04778", + "bus2": "MVLV06406", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.59131012900034, 49.63097303093617], + [-1.59131012900034, 49.63097303093617], + [-1.59217025879419, 49.63093611661641], + [-1.592359942925573, 49.631053944114726], + [-1.592712554378385, 49.63104288863784], + [-1.592667504616526, 49.6308274095797], + [-1.593231716327097, 49.63079297442431], + [-1.593276712268867, 49.63067587334755], + [-1.593281727528354, 49.63066280665203], + [-1.5932946079935264, 49.630656322771706] + ] + }, + "length": 0.1867858831234055, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32865", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06406", + "bus2": "MVBus05110", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5932946079935264, 49.630656322771706], + [-1.593307488458699, 49.63064983889138], + [-1.593328233441076, 49.63064992885346], + [-1.593661170228589, 49.63065145159545], + [-1.593807807362896, 49.630716705797546], + [-1.594006946568672, 49.630727963754794], + [-1.594956260344823, 49.630665631479914], + [-1.594956260344823, 49.630665631479914] + ] + }, + "length": 0.12176520566195435, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46784", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05110", + "bus2": "MVLV08988", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.594956260344823, 49.630665631479914], + [-1.594956260344823, 49.630665631479914], + [-1.595283878116689, 49.630644123093084], + [-1.595485369975571, 49.630615682851264], + [-1.595832592176104, 49.630968569411536], + [-1.596514512394846, 49.63147602143405], + [-1.596521580252994, 49.631547746364326], + [-1.596523301958769, 49.63156037821939], + [-1.5965269482967035, 49.631562422194115] + ] + }, + "length": 0.16958490464876844, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41322", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08988", + "bus2": "MVBus05359", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5965269482967035, 49.631562422194115], + [-1.596530594634638, 49.63156446616884], + [-1.596538935694694, 49.63154516749901], + [-1.596568202693209, 49.63146367299588], + [-1.595893646808499, 49.630952088121326], + [-1.595457274166531, 49.63050713567418], + [-1.595457274166531, 49.63050713567418] + ] + }, + "length": 0.1451287670349226, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40369", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05359", + "bus2": "MVLV09578", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.595457274166531, 49.63050713567418], + [-1.595457274166531, 49.63050713567418], + [-1.595070655749525, 49.63011290668581], + [-1.595014596452464, 49.629915815242335], + [-1.59556662626041, 49.629919594817196], + [-1.595887238387095, 49.630096903492536], + [-1.596170633553712, 49.630242160226175], + [-1.596328495422259, 49.63029173273002], + [-1.596484912519411, 49.63030622881062], + [-1.596508270547654, 49.63039065125154], + [-1.596510327067297, 49.63039811075034], + [-1.596518918723145, 49.630400016314034], + [-1.5965383406246354, 49.6303996452076] + ] + }, + "length": 0.20578413900606038, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44814", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09578", + "bus2": "MVLV14988", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5965383406246354, 49.6303996452076], + [-1.596557762526126, 49.63039927410117], + [-1.596569769188971, 49.63039609591247], + [-1.596570419598952, 49.63039106613977], + [-1.59658169022995, 49.63030294533156], + [-1.599353488655153, 49.63027727030881], + [-1.599389324445609, 49.63033603617886], + [-1.599396963345673, 49.63034855630855], + [-1.5994057208656425, 49.63034836409935] + ] + }, + "length": 0.2201270935428412, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35110", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14988", + "bus2": "MVLV09576", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5994057208656425, 49.63034836409935], + [-1.599413321767373, 49.63034885098645], + [-1.599422041281082, 49.6303366255345], + [-1.5994506868453, 49.63029647816279], + [-1.599742169728719, 49.63030098832903], + [-1.59988048956103, 49.63041784236984], + [-1.59999356868067, 49.630978569811646], + [-1.600860498221293, 49.63101935195073], + [-1.600971677869119, 49.63096266818522], + [-1.600987994515759, 49.63095434954539], + [-1.600991203513488, 49.63095610639915] + ] + }, + "length": 0.18127899117716112, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37968", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09576", + "bus2": "MVBus06628", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600991203513488, 49.63095610639915], + [-1.600994412511217, 49.6309578632529], + [-1.600984513860767, 49.630969695601515], + [-1.600898086848737, 49.63107299773739], + [-1.600198873343388, 49.63104903693187], + [-1.600131825692311, 49.63110713336656], + [-1.600131825692311, 49.63110713336656] + ] + }, + "length": 0.07323313243705727, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34317", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06628", + "bus2": "MVLV12146", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600131825692311, 49.63110713336656], + [-1.600131825692311, 49.63110713336656], + [-1.600141397631577, 49.63111689286139], + [-1.600197159594712, 49.631115077034636], + [-1.60021664451948, 49.6311144425235], + [-1.600219567506464, 49.63112047547915] + ] + }, + "length": 0.006729896400067992, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41829", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12146", + "bus2": "MVBus06630", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600219567506464, 49.63112047547915], + [-1.600222490493448, 49.63112650843481], + [-1.600202597628942, 49.63112777668832], + [-1.60013764391163, 49.631131933049055], + [-1.600133878496521, 49.63114054424035], + [-1.600133878496521, 49.63114054424035] + ] + }, + "length": 0.0071548122839469085, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46365", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06630", + "bus2": "MVLV18248", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.600133878496521, 49.63114054424035], + [-1.600133878496521, 49.63114054424035], + [-1.600132989738073, 49.6316251322541], + [-1.600127607633422, 49.63197169331527], + [-1.600124745619519, 49.632005102342184], + [-1.600144456326674, 49.632026041607276], + [-1.600189279469739, 49.632031721768584], + [-1.602111456145106, 49.631852054064865], + [-1.601931564151185, 49.63239220947645], + [-1.601927181375222, 49.632405372866444], + [-1.601926754639998, 49.632405314831374] + ] + }, + "length": 0.30545062371481124, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42877", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18248", + "bus2": "MVBus06677", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.601926754639998, 49.632405314831374], + [-1.601926327904774, 49.632405256796304], + [-1.601929857210709, 49.63239197733624], + [-1.602058963254476, 49.631906071519865], + [-1.599877734329078, 49.63210534175751], + [-1.598957576101803, 49.632660636772], + [-1.598867923178912, 49.6328212588667], + [-1.598839977011486, 49.63297347881945], + [-1.598381917760524, 49.633104287789024], + [-1.598363215189414, 49.63312153191067], + [-1.598351272185645, 49.633132540303215], + [-1.598351272185645, 49.633132540303215] + ] + }, + "length": 0.3822476021700914, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41317", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14988", + "bus2": "MVBus06264", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5994057208656425, 49.63034836409935], + [-1.599406877483881, 49.63034768500303], + [-1.599409152717084, 49.630334293568175], + [-1.59942247928665, 49.63025601472934], + [-1.59974197387622, 49.630246969920925], + [-1.599741036707661, 49.630149264843865], + [-1.599741036707661, 49.630149264843865] + ] + }, + "length": 0.044228529691174134, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32599", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06264", + "bus2": "MVLV10652", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.599741036707661, 49.630149264843865], + [-1.599741036707661, 49.630149264843865], + [-1.599736383418121, 49.629660981036345], + [-1.599512540866027, 49.62875734663733], + [-1.599370851231332, 49.62866761429518], + [-1.596554863870048, 49.62876323245091], + [-1.596499269421502, 49.628750312113155], + [-1.596479745983694, 49.62874576783746], + [-1.5964751196953948, 49.62873807421219] + ] + }, + "length": 0.37988895822058255, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42871", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10652", + "bus2": "MVBus06579", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5964751196953948, 49.62873807421219], + [-1.596480922446136, 49.62874037923972], + [-1.596501621650563, 49.62873952594771], + [-1.59941685670076, 49.6286192313008], + [-1.599579636349769, 49.62872985806198], + [-1.599817214111654, 49.62966633408429], + [-1.599819905230955, 49.630250618970976], + [-1.599824989847082, 49.63025102890478], + [-1.599824989847082, 49.63025102890478] + ] + }, + "length": 0.4004758816236516, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32596", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06579", + "bus2": "MVLV03675", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.599824989847082, 49.63025102890478], + [-1.599824989847082, 49.63025102890478], + [-1.601896244129133, 49.63041958472674], + [-1.601996260348348, 49.6303189412671], + [-1.602233863374785, 49.63039461125765], + [-1.602300391981994, 49.63032571285353], + [-1.602347024907456, 49.630336737503946], + [-1.602419502921724, 49.630341470781], + [-1.602475087898543, 49.63032608148295], + [-1.602544597902495, 49.63029399858802], + [-1.60270357876518, 49.630288602418], + [-1.602700319036958, 49.63024818997145], + [-1.602705435140406, 49.630191291729695], + [-1.60274286249122, 49.630139590148964], + [-1.602831724381774, 49.63008974640218], + [-1.60303394609506, 49.63003605555776], + [-1.603338750099672, 49.62999957723929], + [-1.604465431683123, 49.63001258808894], + [-1.604557972114728, 49.630118583304885], + [-1.604568208129951, 49.63013029910956], + [-1.604575713187041, 49.630129604828134] + ] + }, + "length": 0.3834768388448617, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42629", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03675", + "bus2": "MVBus07545", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.604575713187041, 49.630129604828134], + [-1.604583218244131, 49.63012891054671], + [-1.604588006144933, 49.63011580572965], + [-1.604624993570211, 49.630014364153666], + [-1.605202766983136, 49.63002803316902], + [-1.605865051710045, 49.63009983843237], + [-1.605865051710045, 49.63009983843237] + ] + }, + "length": 0.1033695620553855, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36766", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07545", + "bus2": "MVBus07546", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.605865051710045, 49.63009983843237], + [-1.605865051710045, 49.63009983843237], + [-1.605903527330651, 49.630104005951786], + [-1.605903527330651, 49.630104005951786] + ] + }, + "length": 0.00281802750527586, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42870", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07546", + "bus2": "MVLV01569", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.605903527330651, 49.630104005951786], + [-1.605903527330651, 49.630104005951786], + [-1.605983448277625, 49.63011673120155], + [-1.606110822631136, 49.62982246236862], + [-1.6061154985613, 49.629814540622036], + [-1.606122915451323, 49.629801961452436], + [-1.6061308511170715, 49.6298018240317] + ] + }, + "length": 0.04238473359688498, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32603", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01569", + "bus2": "MVBus07763", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6061308511170715, 49.6298018240317], + [-1.60613878678282, 49.62980168661096], + [-1.606147227423134, 49.629813991389355], + [-1.606161750381372, 49.629835134939675], + [-1.60603073728943, 49.6301220859694], + [-1.60603073728943, 49.6301220859694] + ] + }, + "length": 0.037362505005135126, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41319", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07763", + "bus2": "MVBus07764", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.60603073728943, 49.6301220859694], + [-1.60603073728943, 49.6301220859694], + [-1.606029789962838, 49.63012415808932], + [-1.606534054795468, 49.6302060498832], + [-1.607160392552816, 49.630374724477], + [-1.606937151074058, 49.630597522523814], + [-1.606869119336498, 49.63059623477136], + [-1.606844381112045, 49.630642083548835], + [-1.606844381112045, 49.630642083548835] + ] + }, + "length": 0.12666260023360498, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37175", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07764", + "bus2": "MVLV13299", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.606844381112045, 49.630642083548835], + [-1.606844381112045, 49.630642083548835], + [-1.606835820605765, 49.630657955226134], + [-1.606828954112441, 49.63067066934315], + [-1.6068386972174165, 49.63067770263442] + ] + }, + "length": 0.003369048735334049, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40365", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13299", + "bus2": "MVLV01559", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6068386972174165, 49.63067770263442], + [-1.606848440322392, 49.6306847359257], + [-1.606863725864885, 49.63068082028975], + [-1.606901323807323, 49.63066897408878], + [-1.606898480804468, 49.630702391842064], + [-1.606749736545868, 49.631127052493035], + [-1.606541079339864, 49.63108372701454], + [-1.606255466377593, 49.6317021359408], + [-1.605337646054881, 49.63154607230891], + [-1.605269489275635, 49.63148138396481], + [-1.605257776087073, 49.63147026490842], + [-1.6052536577382486, 49.631471343367366] + ] + }, + "length": 0.22275764658959776, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36000", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01559", + "bus2": "MVLV03697", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6052536577382486, 49.631471343367366], + [-1.605249539389424, 49.6314724218263], + [-1.605253015877039, 49.6314856978016], + [-1.605278106199127, 49.63158141056193], + [-1.606243734949964, 49.63174576187006], + [-1.60614978519823, 49.63197316238006], + [-1.606036071381895, 49.63197374158696], + [-1.606015326590593, 49.631973842614265], + [-1.606013751391186, 49.63197746387231] + ] + }, + "length": 0.12031108048261688, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38837", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03697", + "bus2": "MVLV14993", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.606013751391186, 49.63197746387231], + [-1.606012176191779, 49.631981085130356], + [-1.606029769895893, 49.631988217650516], + [-1.606137908075605, 49.63203209769212], + [-1.605854040183553, 49.632654943879984], + [-1.605925965848163, 49.63269582365155], + [-1.605941575873448, 49.63270469341623], + [-1.6059420225212007, 49.63270438210968] + ] + }, + "length": 0.09135789011304539, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32605", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14993", + "bus2": "MVLV10647", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6059420225212007, 49.63270438210968], + [-1.605942469168953, 49.63270407080312], + [-1.605927752439219, 49.63269457842556], + [-1.605885542280693, 49.63266737784878], + [-1.606587112041124, 49.63113889424461], + [-1.607629270838647, 49.63135824320703], + [-1.607565088252944, 49.63159363916435], + [-1.607473667267332, 49.63158619979585], + [-1.607453089798027, 49.63158452415805], + [-1.6074521494066876, 49.63158659606066] + ] + }, + "length": 0.2970741181967918, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37965", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10647", + "bus2": "MVBus09044", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6074521494066876, 49.63158659606066], + [-1.607451209015348, 49.63158866796327], + [-1.607469905704893, 49.63159448740688], + [-1.607604571721994, 49.63163642166085], + [-1.607707070225681, 49.63130877476193], + [-1.60682293860637, 49.63114076972017], + [-1.606979497719956, 49.63077887123005], + [-1.607005849684557, 49.630761771737134], + [-1.60702755753267, 49.63070430497387], + [-1.606983703433533, 49.63064186407979], + [-1.607233441120983, 49.63038664800551], + [-1.607732825676685, 49.63051170376156], + [-1.607809567268233, 49.630398631969165], + [-1.607809567268233, 49.630398631969165] + ] + }, + "length": 0.2607811328062301, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35858", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09044", + "bus2": "MVBus09045", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607809567268233, 49.630398631969165], + [-1.607809567268233, 49.630398631969165], + [-1.607989467903642, 49.63009289056437], + [-1.607963282202793, 49.63008098506603], + [-1.607963282202793, 49.63008098506603] + ] + }, + "length": 0.03871335222757685, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36664", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09045", + "bus2": "MVBus09046", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.607963282202793, 49.63008098506603], + [-1.607963282202793, 49.63008098506603], + [-1.607949074963442, 49.630072168694824], + [-1.607922857761914, 49.63006092963809], + [-1.607922857761914, 49.63006092963809] + ] + }, + "length": 0.003688866872294023, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44819", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10652", + "bus2": "MVLV18429", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5964751196953948, 49.62873807421219], + [-1.596464690656354, 49.6287280755594], + [-1.596469158069387, 49.62871491859022], + [-1.596549865784263, 49.628477067386115], + [-1.596503431317334, 49.62824453071181], + [-1.59626923888142, 49.62809039940601], + [-1.593442751994083, 49.627934175396426], + [-1.593380231363017, 49.627846250703925], + [-1.592712351077759, 49.62781488103925], + [-1.592425766957521, 49.62769854000063], + [-1.592274541262333, 49.627541587835616], + [-1.592232380383244, 49.62734036551845], + [-1.592232380383244, 49.62734036551845] + ] + }, + "length": 0.41044522166928754, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV10302_production", + "bus": "MVLV10302", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10302_consumption", + "bus": "MVLV10302", + "phases": "abc", + "powers": [ + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748] + ] + }, + { + "id": "MVLV18891_production", + "bus": "MVLV18891", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18891_consumption", + "bus": "MVLV18891", + "phases": "abc", + "powers": [ + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748] + ] + }, + { + "id": "MVLV06425_production", + "bus": "MVLV06425", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06425_consumption", + "bus": "MVLV06425", + "phases": "abc", + "powers": [ + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748] + ] + }, + { + "id": "MVLV06406_production", + "bus": "MVLV06406", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06406_consumption", + "bus": "MVLV06406", + "phases": "abc", + "powers": [ + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748] + ] + }, + { + "id": "MVLV08988_production", + "bus": "MVLV08988", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08988_consumption", + "bus": "MVLV08988", + "phases": "abc", + "powers": [ + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748], + [37242.83830586932, 12241.128982885748] + ] + }, + { + "id": "MVLV09578_production", + "bus": "MVLV09578", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09578_consumption", + "bus": "MVLV09578", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV14988_production", + "bus": "MVLV14988", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14988_consumption", + "bus": "MVLV14988", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV09576_production", + "bus": "MVLV09576", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09576_consumption", + "bus": "MVLV09576", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV12146_production", + "bus": "MVLV12146", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12146_consumption", + "bus": "MVLV12146", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV18248_production", + "bus": "MVLV18248", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18248_consumption", + "bus": "MVLV18248", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV10652_production", + "bus": "MVLV10652", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10652_consumption", + "bus": "MVLV10652", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV03675_production", + "bus": "MVLV03675", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03675_consumption", + "bus": "MVLV03675", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV01569_production", + "bus": "MVLV01569", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01569_consumption", + "bus": "MVLV01569", + "phases": "abc", + "powers": [ + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719], + [67933.05398770796, 22328.51506201719] + ] + }, + { + "id": "MVLV13299_production", + "bus": "MVLV13299", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13299_consumption", + "bus": "MVLV13299", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV01559_production", + "bus": "MVLV01559", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01559_consumption", + "bus": "MVLV01559", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV03697_production", + "bus": "MVLV03697", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03697_consumption", + "bus": "MVLV03697", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV14993_production", + "bus": "MVLV14993", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14993_consumption", + "bus": "MVLV14993", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV10647_production", + "bus": "MVLV10647", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10647_consumption", + "bus": "MVLV10647", + "phases": "abc", + "powers": [ + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316], + [39067.20659318354, 12840.769840918316] + ] + }, + { + "id": "MVLV18429_production", + "bus": "MVLV18429", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18429_consumption", + "bus": "MVLV18429", + "phases": "abc", + "powers": [ + [8950.46951508162, 2941.877063495296], + [8950.46951508162, 2941.877063495296], + [8950.46951508162, 2941.877063495296] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder078_Summer.json b/roseau/load_flow/data/networks/MVFeeder078_Summer.json new file mode 100644 index 00000000..cbc8ac68 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder078_Summer.json @@ -0,0 +1,2958 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.861907220519602, 48.85275990396129] + } + }, + { + "id": "HVMV06", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.861907220519602, 48.85275990396129] + } + }, + { + "id": "MVLV03394", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8600627007696874, 48.85333737772175] + } + }, + { + "id": "MVBus04323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.860106265907068, 48.853379550930796] + } + }, + { + "id": "MVBus04325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8599909640364121, 48.853403618584366] + } + }, + { + "id": "MVBus04335", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.860150118595222, 48.85333739287977] + } + }, + { + "id": "MVBus04336", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.861013888394328, 48.85275771061705] + } + }, + { + "id": "MVBus04337", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.860681733449894, 48.85162594273506] + } + }, + { + "id": "MVBus04338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.856679771196076, 48.8393331890979] + } + }, + { + "id": "MVBus04339", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.859015429167717, 48.8390977033655] + } + }, + { + "id": "MVBus04340", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863845928420918, 48.83892360687616] + } + }, + { + "id": "MVBus04341", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.868646658997884, 48.838745743786326] + } + }, + { + "id": "MVLV16339", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8686998101678213, 48.838526097189025] + } + }, + { + "id": "MVBus07965", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.869200703510018, 48.83872826590689] + } + }, + { + "id": "MVBus07966", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.871765069885203, 48.83861872799665] + } + }, + { + "id": "MVBus07967", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872413202730643, 48.838592842785516] + } + }, + { + "id": "MVBus07968", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872214961209678, 48.838120113328216] + } + }, + { + "id": "MVLV06613", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872280137987934, 48.83809987122305] + } + }, + { + "id": "MVLV07909", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8752082433672413, 48.8350261440061] + } + }, + { + "id": "MVLV17318", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8785649436214537, 48.8332075950315] + } + }, + { + "id": "MVBus11094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875101921835193, 48.83012230580406] + } + }, + { + "id": "MVLV00077", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875095059017632, 48.830122149229794] + } + }, + { + "id": "MVLV14187", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880775799819524, 48.82987719698311] + } + }, + { + "id": "MVLV06614", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8817425294272689, 48.8315149122372] + } + }, + { + "id": "MVBus12384", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.884273548054826, 48.83387686483468] + } + }, + { + "id": "MVLV16352", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8824449607734131, 48.834537732363174] + } + }, + { + "id": "MVBus15325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.884286491972944, 48.833908447025685] + } + }, + { + "id": "MVLV17323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.885308108952521, 48.83400488371018] + } + }, + { + "id": "MVBus16410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.885832178874871, 48.832586304212874] + } + }, + { + "id": "MVLV03392", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8848244135284965, 48.830527334184154] + } + }, + { + "id": "MVBus18343", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.884841385788525, 48.830452372763254] + } + }, + { + "id": "MVLV06627", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.881830223376614, 48.82710345299199] + } + }, + { + "id": "MVBus18345", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.885597781304912, 48.83063412127371] + } + }, + { + "id": "MVBus18346", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.887865142307306, 48.82833235071164] + } + }, + { + "id": "MVBus18347", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.888557428715923, 48.826631641066605] + } + }, + { + "id": "MVLV19250", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.888514962274334, 48.82656655184295] + } + }, + { + "id": "MVBus10081", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.874502738373467, 48.834940067597074] + } + }, + { + "id": "MVLV16338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875658580600804, 48.83676048053651] + } + }, + { + "id": "MVBus07970", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872246199468391, 48.838151697990995] + } + }, + { + "id": "MVBus07971", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872467795554653, 48.83862329391957] + } + }, + { + "id": "MVLV07908", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8756189144606039, 48.838468138861174] + } + }, + { + "id": "MVLV06624", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8794877577508065, 48.838063656216335] + } + }, + { + "id": "MVBus08685", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880674679188671, 48.8373468095376] + } + }, + { + "id": "MVBus08686", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.881772418257212, 48.837005846464045] + } + }, + { + "id": "MVLV06618", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.88406440710997, 48.836928020339315] + } + }, + { + "id": "MVBus07199", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.868817103520342, 48.838763622546615] + } + }, + { + "id": "MVBus07200", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.871876996225313, 48.8388095884613] + } + }, + { + "id": "MVBus07201", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872146518973825, 48.839822200116686] + } + }, + { + "id": "MVBus07202", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872898415892355, 48.84142980041824] + } + }, + { + "id": "MVBus07203", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.873007234026652, 48.84148884120062] + } + }, + { + "id": "MVLV14197", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8717518762744035, 48.84182098477776] + } + }, + { + "id": "MVBus08183", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.870691717544495, 48.84198811304198] + } + }, + { + "id": "MVLV17331", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.86695823363757, 48.84303468142016] + } + }, + { + "id": "MVBus07204", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.873675944485619, 48.84146590316994] + } + }, + { + "id": "MVBus07205", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876293704382707, 48.841087077107254] + } + }, + { + "id": "MVLV14202", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.874905311669654, 48.839830229741395] + } + }, + { + "id": "MVBus08702", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876492203069748, 48.84105368987994] + } + }, + { + "id": "MVBus08703", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876689117189963, 48.841427008610744] + } + }, + { + "id": "MVBus08704", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876715779516786, 48.84145658387014] + } + }, + { + "id": "MVBus08705", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875473232182965, 48.84208025906252] + } + }, + { + "id": "MVLV17336", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8616552619450155, 48.85683610333325] + } + }, + { + "id": "MVBus04731", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863918222964227, 48.85700255077768] + } + }, + { + "id": "MVBus04732", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863762652584391, 48.85793512380676] + } + }, + { + "id": "MVLV00093", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.864077991992518, 48.858894496901186] + } + }, + { + "id": "MVBus05173", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863774645581598, 48.85794501052119] + } + }, + { + "id": "MVBus05174", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.864145676144476, 48.85700715758124] + } + }, + { + "id": "MVBus05175", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.865158661585753, 48.85696769446948] + } + }, + { + "id": "MVBus05176", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.865356031015941, 48.8569050172066] + } + }, + { + "id": "MVLV16267", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.86001853756168, 48.85337575425656] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV06", + "geometry": { + "type": "Point", + "coordinates": [-0.861907220519602, 48.85275990396129] + } + }, + { + "id": "MVBranch38953", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV06", + "bus2": "MVLV03394", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.861907220519602, 48.85275990396129], + [-0.861888314271604, 48.852754808166644], + [-0.861888314271604, 48.852754808166644], + [-0.861869408027325, 48.85274971236901], + [-0.861368673543466, 48.8526147865462], + [-0.861049320568241, 48.8527812427962], + [-0.860169527273028, 48.853373840425675], + [-0.860149647433513, 48.85336179950876], + [-0.860092076860964, 48.85333225936424], + [-0.860084771759453, 48.85332851579644], + [-0.860072260429244, 48.853323014123966], + [-0.8600627007696874, 48.85333737772175] + ] + }, + "length": 0.1724292254349832, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38947", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03394", + "bus2": "MVBus04323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8600627007696874, 48.85333737772175], + [-0.860064721160006, 48.85334287927401], + [-0.860079895072474, 48.853356854535264], + [-0.860106265907068, 48.853379550930796], + [-0.860106265907068, 48.853379550930796] + ] + }, + "length": 0.005092436730597999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38704", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04323", + "bus2": "MVBus04325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860106265907068, 48.853379550930796], + [-0.860106265907068, 48.853379550930796], + [-0.8600163028267, 48.85343278750661], + [-0.86000994418003, 48.85343510801778], + [-0.860001070273415, 48.853434437828625], + [-0.8599939335223, 48.853431877051975], + [-0.859979190789972, 48.853421578081765], + [-0.8599909640364121, 48.853403618584366] + ] + }, + "length": 0.012228134551066085, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34347", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04325", + "bus2": "MVBus04335", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8599909640364121, 48.853403618584366], + [-0.860002737282852, 48.85338565908697], + [-0.860017184353527, 48.85339381622982], + [-0.860028993381016, 48.853400748954925], + [-0.860036652137753, 48.853403817412136], + [-0.860044145542325, 48.85340442572612], + [-0.860049877979954, 48.85340344426834], + [-0.860150118595222, 48.85333739287977], + [-0.860150118595222, 48.85333739287977] + ] + }, + "length": 0.014597094628989744, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44798", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04335", + "bus2": "MVBus04336", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860150118595222, 48.85333739287977], + [-0.860150118595222, 48.85333739287977], + [-0.861013888394328, 48.85275771061705], + [-0.861013888394328, 48.85275771061705] + ] + }, + "length": 0.09040961235896791, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47178", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04336", + "bus2": "MVBus04337", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.861013888394328, 48.85275771061705], + [-0.861013888394328, 48.85275771061705], + [-0.861026308616059, 48.85273367559381], + [-0.860340072911525, 48.85206688936424], + [-0.86032562358509, 48.852036811896866], + [-0.86035029558328, 48.85200567478345], + [-0.860467329603989, 48.85186124066065], + [-0.860648657339723, 48.851647663190434], + [-0.860681733449894, 48.85162594273506], + [-0.860681733449894, 48.85162594273506] + ] + }, + "length": 0.14874056292248092, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch21891", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04337", + "bus2": "MVBus04338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860681733449894, 48.85162594273506], + [-0.860681733449894, 48.85162594273506], + [-0.858409909480369, 48.84912569509092], + [-0.856679771196076, 48.8393331890979], + [-0.856679771196076, 48.8393331890979] + ] + }, + "length": 1.4205755596337886, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch47177", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04338", + "bus2": "MVBus04339", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.856679771196076, 48.8393331890979], + [-0.856679771196076, 48.8393331890979], + [-0.856661212898628, 48.839171697597386], + [-0.857642747219776, 48.839146922274196], + [-0.859015429167717, 48.8390977033655], + [-0.859015429167717, 48.8390977033655] + ] + }, + "length": 0.19102802193987503, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45915", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04339", + "bus2": "MVBus04340", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.859015429167717, 48.8390977033655], + [-0.859015429167717, 48.8390977033655], + [-0.859018121143696, 48.8390976040966], + [-0.858947615612684, 48.83918868197558], + [-0.858967015313405, 48.83927814631989], + [-0.859771801979231, 48.83928260141979], + [-0.860450036039239, 48.83922759422397], + [-0.860931046676199, 48.83928612729581], + [-0.861434667467907, 48.83927201042151], + [-0.861836059636044, 48.83915274458074], + [-0.862388898406028, 48.83905623844159], + [-0.863824198630521, 48.83902677864632], + [-0.863845928420918, 48.83892360687616], + [-0.863845928420918, 48.83892360687616] + ] + }, + "length": 0.3950562373152476, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41998", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04340", + "bus2": "MVBus04341", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863845928420918, 48.83892360687616], + [-0.863845928420918, 48.83892360687616], + [-0.863846128696252, 48.83892265702046], + [-0.868646658997884, 48.838745743786326], + [-0.868646658997884, 48.838745743786326] + ] + }, + "length": 0.3530507631966376, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45916", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04341", + "bus2": "MVLV16339", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.868646658997884, 48.838745743786326], + [-0.868646658997884, 48.838745743786326], + [-0.868692683463817, 48.83874651908009], + [-0.868676239033346, 48.83856449893863], + [-0.868675510877745, 48.838536850008595], + [-0.868687059984101, 48.83852572699374], + [-0.8686998101678213, 48.838526097189025] + ] + }, + "length": 0.028232269363577034, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41390", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16339", + "bus2": "MVBus07965", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8686998101678213, 48.838526097189025], + [-0.868712466165582, 48.83852450301946], + [-0.868726323250959, 48.83853440205953], + [-0.868727566232987, 48.83855627134506], + [-0.868747945655592, 48.83874617303756], + [-0.869200703510018, 48.83872826590689], + [-0.869200703510018, 48.83872826590689] + ] + }, + "length": 0.05839935889291249, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40021", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07965", + "bus2": "MVBus07966", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.869200703510018, 48.83872826590689], + [-0.869200703510018, 48.83872826590689], + [-0.871765069885203, 48.83861872799665], + [-0.871765069885203, 48.83861872799665] + ] + }, + "length": 0.1886382705981941, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33223", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07966", + "bus2": "MVBus07967", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.871765069885203, 48.83861872799665], + [-0.871765069885203, 48.83861872799665], + [-0.871795530743376, 48.83861991267546], + [-0.871815033615213, 48.83863097243188], + [-0.872423624198983, 48.838620095440184], + [-0.872413202730643, 48.838592842785516], + [-0.872413202730643, 48.838592842785516] + ] + }, + "length": 0.05194483150364374, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45917", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07967", + "bus2": "MVBus07968", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872413202730643, 48.838592842785516], + [-0.872413202730643, 48.838592842785516], + [-0.872214961209678, 48.838120113328216], + [-0.872214961209678, 48.838120113328216] + ] + }, + "length": 0.05454767906198296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35587", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07968", + "bus2": "MVLV06613", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872214961209678, 48.838120113328216], + [-0.872214961209678, 48.838120113328216], + [-0.872256982326507, 48.83810663017048], + [-0.872275563537051, 48.83810103798684], + [-0.872280137987934, 48.83809987122305] + ] + }, + "length": 0.004928925184248028, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40022", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06613", + "bus2": "MVLV07909", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872280137987934, 48.83809987122305], + [-0.872276311796317, 48.838087147530715], + [-0.872252104016431, 48.83808571342212], + [-0.872233654174436, 48.83808219912663], + [-0.872224200606974, 48.83806265604554], + [-0.872151690647924, 48.83808000156608], + [-0.871588360259366, 48.83680962440633], + [-0.871316477191573, 48.83675876503669], + [-0.871152039874733, 48.83670398347678], + [-0.870983382857406, 48.83662591944109], + [-0.870713485181455, 48.836457998275456], + [-0.870488433898687, 48.83620329850673], + [-0.870262745683259, 48.83572720352523], + [-0.869853254863085, 48.83500154705229], + [-0.869778652800155, 48.834901931604605], + [-0.869900362224382, 48.83486520872472], + [-0.869933506907551, 48.83480847461936], + [-0.872188034827993, 48.83416542872751], + [-0.872354195262133, 48.83412024561571], + [-0.87240103864092, 48.834127932455765], + [-0.87278362855321, 48.834267480705606], + [-0.872883395792063, 48.834313282119076], + [-0.873094063121389, 48.83442976149543], + [-0.873158966452131, 48.834484643544144], + [-0.873274865981431, 48.83459029415274], + [-0.873380562133205, 48.83466471931383], + [-0.873899640777921, 48.83486973600969], + [-0.874392297501488, 48.83491887805648], + [-0.874509716103237, 48.834900265212084], + [-0.875221549060217, 48.834986440628654], + [-0.875216709133885, 48.83500839319945], + [-0.875214168333963, 48.835019948427785], + [-0.875212988103713, 48.83502157240236], + [-0.8752082433672413, 48.8350261440061] + ] + }, + "length": 0.8770431551619805, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45129", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07909", + "bus2": "MVLV17318", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8752082433672413, 48.8350261440061], + [-0.875224158969585, 48.835030994526335], + [-0.875244156303354, 48.83502826900243], + [-0.875262275049929, 48.835025792069665], + [-0.876015080951546, 48.83509190439377], + [-0.876340703242326, 48.835045828796595], + [-0.877340633308082, 48.834990663517246], + [-0.877462796493591, 48.834961116555206], + [-0.877951758763579, 48.83478442428809], + [-0.878751822064349, 48.83467456793186], + [-0.879039225633376, 48.83460705683724], + [-0.879070136734034, 48.83453687870594], + [-0.879033637971451, 48.834478506663814], + [-0.878980691439924, 48.83441878904795], + [-0.878815171394929, 48.834283946288345], + [-0.878776940554386, 48.834240921550204], + [-0.878711265733503, 48.834089753246104], + [-0.878520148340708, 48.83358029214511], + [-0.878511556484565, 48.83348962926064], + [-0.878533951997466, 48.83337198950142], + [-0.878588239133895, 48.833241740494586], + [-0.878574995133073, 48.83322899254004], + [-0.878563433156581, 48.83321788121288], + [-0.8785649436214537, 48.8332075950315] + ] + }, + "length": 0.45466041701091836, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38930", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17318", + "bus2": "MVBus11094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8785649436214537, 48.8332075950315], + [-0.878559904510659, 48.83319437352441], + [-0.87856552389082, 48.83318567638942], + [-0.878571446961239, 48.83318473378293], + [-0.878641093614399, 48.83317365002125], + [-0.878712996309697, 48.83306271408234], + [-0.879450088217662, 48.831872312229684], + [-0.879391519891046, 48.831871961217274], + [-0.879108841637731, 48.831868653764666], + [-0.878796959272483, 48.83181910857779], + [-0.878579053354476, 48.831758648972944], + [-0.878470801456295, 48.83172807626024], + [-0.87841001803686, 48.83168781953582], + [-0.878237286329989, 48.83160988468384], + [-0.878110192621694, 48.83156306289502], + [-0.877968416288142, 48.83152115314989], + [-0.877807473434428, 48.83147797997653], + [-0.877390506894023, 48.83129171140898], + [-0.877220300434519, 48.831189402254395], + [-0.877055329096531, 48.83110494160875], + [-0.87678024764586, 48.830920074059115], + [-0.876365333997544, 48.83065993307908], + [-0.87605658935329, 48.83048141489835], + [-0.87523612232251, 48.83010183568745], + [-0.875142897384062, 48.83012725348], + [-0.875101921835193, 48.83012230580406], + [-0.875101921835193, 48.83012230580406] + ] + }, + "length": 0.5484946533037999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42000", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11094", + "bus2": "MVLV00077", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.875101921835193, 48.83012230580406], + [-0.875101921835193, 48.83012230580406], + [-0.875095059017632, 48.830122149229794], + [-0.875095059017632, 48.830122149229794] + ] + }, + "length": 0.0005041710094409629, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35208", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17318", + "bus2": "MVLV14187", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8785649436214537, 48.8332075950315], + [-0.878571493197121, 48.83321053035723], + [-0.878591101609507, 48.833214291194274], + [-0.878658187266171, 48.83322716749238], + [-0.878758729365904, 48.83307402645225], + [-0.879519269841079, 48.83184826956906], + [-0.879518106809841, 48.83178799804584], + [-0.879611634787979, 48.831484728875765], + [-0.879849610742601, 48.830969471904865], + [-0.879918535550077, 48.830918027894384], + [-0.88001312407312, 48.830883853261355], + [-0.880421778946045, 48.830836330529905], + [-0.880429196031522, 48.83086672227627], + [-0.880907894988345, 48.83082711813949], + [-0.881186638954922, 48.830815650101506], + [-0.881342466899555, 48.83082205945419], + [-0.88138553374052, 48.8308343424745], + [-0.881095512999948, 48.83035557782821], + [-0.880828381454944, 48.82993557913011], + [-0.880785274666487, 48.829889259578614], + [-0.880774588980799, 48.82987777392479], + [-0.880775799819524, 48.82987719698311] + ] + }, + "length": 0.509338459446997, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47179", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14187", + "bus2": "MVLV06614", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880775799819524, 48.82987719698311], + [-0.880777010658249, 48.82987662004143], + [-0.880790118021883, 48.82988695181146], + [-0.880811318694876, 48.82990365815257], + [-0.880858182499768, 48.82989063444164], + [-0.881146401935904, 48.8303415456667], + [-0.881432411844581, 48.83082131817827], + [-0.881438669850986, 48.830876054951844], + [-0.881572504646165, 48.831090098670714], + [-0.881591230157907, 48.83116877599112], + [-0.881592283746379, 48.831290253100946], + [-0.881604274668738, 48.83141233391639], + [-0.881624945067519, 48.831499953700195], + [-0.881727931756154, 48.8314970425184], + [-0.881731087424485, 48.83149695717268], + [-0.88174287189475, 48.83150528273355], + [-0.8817425294272689, 48.8315149122372] + ] + }, + "length": 0.20617450395313525, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46291", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06614", + "bus2": "MVBus12384", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8817425294272689, 48.8315149122372], + [-0.881742186959788, 48.831524541740855], + [-0.881731941982377, 48.83153114236234], + [-0.881725848831322, 48.83153131614784], + [-0.881632600012673, 48.831533945981654], + [-0.881636489464634, 48.8315518309589], + [-0.881692119662777, 48.831695183264685], + [-0.881751945180938, 48.831797899232164], + [-0.881842719733717, 48.8318943540911], + [-0.881984416855336, 48.83199836370007], + [-0.882523993051504, 48.83235127157024], + [-0.882914498764284, 48.83257067543426], + [-0.883157727724404, 48.83274742346493], + [-0.884053290775894, 48.83352322077135], + [-0.884098563308161, 48.83356965144726], + [-0.884165377983124, 48.83367487559109], + [-0.884277937328702, 48.83387601743591], + [-0.884273548054826, 48.83387686483468], + [-0.884273548054826, 48.83387686483468] + ] + }, + "length": 0.33868712643538773, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34235", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus12384", + "bus2": "MVLV16352", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884273548054826, 48.83387686483468], + [-0.884273548054826, 48.83387686483468], + [-0.883778137940943, 48.83398040291884], + [-0.883106886263018, 48.834151931834015], + [-0.882350436333162, 48.83436768738502], + [-0.88235547646301, 48.83450638088338], + [-0.882414863716839, 48.83453853298295], + [-0.882417634229258, 48.83454058087732], + [-0.882433504139233, 48.834542931078886], + [-0.8824449607734131, 48.834537732363174] + ] + }, + "length": 0.17405376330025718, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43533", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16352", + "bus2": "MVBus15325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8824449607734131, 48.834537732363174], + [-0.882456417407593, 48.834532533647454], + [-0.882458713158862, 48.83452232511511], + [-0.882455752094948, 48.83451984161787], + [-0.882421244799962, 48.83449097437869], + [-0.882421046072519, 48.83435805967731], + [-0.883069593986549, 48.834170598109246], + [-0.88378035818785, 48.83398916700418], + [-0.884255699372143, 48.833892450649415], + [-0.884286491972944, 48.833908447025685], + [-0.884286491972944, 48.833908447025685] + ] + }, + "length": 0.1676849766963774, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40027", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15325", + "bus2": "MVLV17323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884286491972944, 48.833908447025685], + [-0.884286491972944, 48.833908447025685], + [-0.884298972203125, 48.83390602238361], + [-0.884418286341134, 48.83393775688206], + [-0.884514024243277, 48.8339845575173], + [-0.884707243144837, 48.83395750537349], + [-0.884855303452504, 48.83394881999516], + [-0.88528210098068, 48.83399166796117], + [-0.885283593003777, 48.83399309376456], + [-0.885295209845906, 48.83400418501409], + [-0.885308108952521, 48.83400488371018] + ] + }, + "length": 0.07794340751148783, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42005", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17323", + "bus2": "MVBus16410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.885308108952521, 48.83400488371018], + [-0.885321008059136, 48.83400558240626], + [-0.885332928229382, 48.83399743395683], + [-0.885336140264641, 48.833997814737565], + [-0.886403291338323, 48.83412472147533], + [-0.885720739927985, 48.83266065291953], + [-0.885855538138068, 48.83263704263954], + [-0.885836358483477, 48.832593486053305], + [-0.885832178874871, 48.832586304212874], + [-0.885832178874871, 48.832586304212874] + ] + }, + "length": 0.2675941982774448, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38935", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16410", + "bus2": "MVLV03392", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.885832178874871, 48.832586304212874], + [-0.885832178874871, 48.832586304212874], + [-0.885570983953207, 48.83213833305527], + [-0.885460822092599, 48.8317427071721], + [-0.885448835160519, 48.831662939381076], + [-0.885441919378381, 48.83136700795914], + [-0.885587016471366, 48.83065032510885], + [-0.884893696009653, 48.83047943511494], + [-0.884855394653674, 48.83052128280466], + [-0.884852264975556, 48.8305226628263], + [-0.884835276836073, 48.83053014790389], + [-0.8848244135284965, 48.830527334184154] + ] + }, + "length": 0.2818985234228485, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40023", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03392", + "bus2": "MVBus18343", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8848244135284965, 48.830527334184154], + [-0.88481355022092, 48.83052452046441], + [-0.884808811752556, 48.830511407949444], + [-0.884808316674619, 48.83051001811575], + [-0.884841385788525, 48.830452372763254], + [-0.884841385788525, 48.830452372763254] + ] + }, + "length": 0.008512807915317425, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18343", + "bus2": "MVLV06627", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884841385788525, 48.830452372763254], + [-0.884841385788525, 48.830452372763254], + [-0.884998645214429, 48.83022831093096], + [-0.885114245361454, 48.83013548197546], + [-0.884611166410639, 48.82990396681405], + [-0.884510555462498, 48.829823998314524], + [-0.884455021654836, 48.82974546310337], + [-0.884423703229472, 48.829661738851755], + [-0.884391756350623, 48.8290309309633], + [-0.884305165282771, 48.82895686137081], + [-0.884179196509307, 48.82890641730952], + [-0.884038885893279, 48.82888697166403], + [-0.883095349088948, 48.82893687340285], + [-0.882717518791388, 48.82902963522865], + [-0.882672209340558, 48.82896189558289], + [-0.882614504651665, 48.828832308090576], + [-0.882558776955788, 48.82867793952929], + [-0.882311839004826, 48.827222266563524], + [-0.881843354130384, 48.82714029262931], + [-0.88182335490009, 48.82711615097813], + [-0.881830223376614, 48.82710345299199], + [-0.881830223376614, 48.82710345299199] + ] + }, + "length": 0.5616143176910369, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38931", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18343", + "bus2": "MVBus18345", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884841385788525, 48.830452372763254], + [-0.884841385788525, 48.830452372763254], + [-0.885597781304912, 48.83063412127371], + [-0.885597781304912, 48.83063412127371] + ] + }, + "length": 0.05909798077216007, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47181", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18345", + "bus2": "MVBus18346", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.885597781304912, 48.83063412127371], + [-0.885597781304912, 48.83063412127371], + [-0.885598929223246, 48.830634396023754], + [-0.885640976898373, 48.830483794737205], + [-0.885733137051884, 48.830328175392104], + [-0.88599332504746, 48.83000939475607], + [-0.886165307632451, 48.829844327153836], + [-0.887385905104967, 48.82886294304822], + [-0.887678248824724, 48.828599047482015], + [-0.887865142307306, 48.82833235071164], + [-0.887865142307306, 48.82833235071164] + ] + }, + "length": 0.3085057547490667, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45645", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18346", + "bus2": "MVBus18347", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.887865142307306, 48.82833235071164], + [-0.887865142307306, 48.82833235071164], + [-0.888272197021335, 48.82775147751906], + [-0.888450060715209, 48.827425116573586], + [-0.888641527272161, 48.827035366514444], + [-0.888691611384006, 48.826882737556524], + [-0.888730478192353, 48.82664131566306], + [-0.888557428715923, 48.826631641066605], + [-0.888557428715923, 48.826631641066605] + ] + }, + "length": 0.2124307166983533, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42114", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18347", + "bus2": "MVLV19250", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.888557428715923, 48.826631641066605], + [-0.888557428715923, 48.826631641066605], + [-0.888534060370761, 48.82662741708644], + [-0.888528413626648, 48.82662468269833], + [-0.888518102903748, 48.82661968201679], + [-0.888515574905479, 48.82661167289431], + [-0.888515245861116, 48.82658732295027], + [-0.888514962274334, 48.82656655184295], + [-0.888514962274334, 48.82656655184295] + ] + }, + "length": 0.009160255971882254, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46290", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07909", + "bus2": "MVBus10081", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8752082433672413, 48.8350261440061], + [-0.875187583028426, 48.83502586508961], + [-0.875171003315681, 48.83501799216996], + [-0.875164770551753, 48.835015039115014], + [-0.874503695787453, 48.83493374524362], + [-0.874502738373467, 48.834940067597074], + [-0.874502738373467, 48.834940067597074] + ] + }, + "length": 0.052135624147050294, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch21890", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10081", + "bus2": "MVLV16338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.874502738373467, 48.834940067597074], + [-0.874502738373467, 48.834940067597074], + [-0.875244745483283, 48.8362738031421], + [-0.875658580600804, 48.83676048053651], + [-0.875658580600804, 48.83676048053651] + ] + }, + "length": 0.22007202509458926, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch45128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06613", + "bus2": "MVBus07970", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872280137987934, 48.83809987122305], + [-0.872288538630434, 48.83811142815161], + [-0.872274923580696, 48.83813010907154], + [-0.872263624316597, 48.83814525548005], + [-0.872246199468391, 48.838151697990995], + [-0.872246199468391, 48.838151697990995] + ] + }, + "length": 0.0056490097905787925, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36231", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07970", + "bus2": "MVBus07971", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872246199468391, 48.838151697990995], + [-0.872246199468391, 48.838151697990995], + [-0.872441960336122, 48.83859446900614], + [-0.872467795554653, 48.83862329391957], + [-0.872467795554653, 48.83862329391957] + ] + }, + "length": 0.05501775862392058, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45361", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07971", + "bus2": "MVLV07908", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872467795554653, 48.83862329391957], + [-0.872467795554653, 48.83862329391957], + [-0.87256804753389, 48.838619115395936], + [-0.873887818148142, 48.83860232776013], + [-0.875614989175285, 48.83852905104814], + [-0.875612694014847, 48.8384834273658], + [-0.875612738880777, 48.83846875530065], + [-0.8756189144606039, 48.838468138861174] + ] + }, + "length": 0.23803136074272874, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35209", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07908", + "bus2": "MVLV06624", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8756189144606039, 48.838468138861174], + [-0.875625090040431, 48.8384675224217], + [-0.875632692301686, 48.83848003616146], + [-0.875633482047457, 48.838481346105645], + [-0.875646502843988, 48.83850279854413], + [-0.875655605404486, 48.8386015518763], + [-0.876011804333123, 48.83858521758397], + [-0.87629120191588, 48.83856205061363], + [-0.876635057864226, 48.83852356014651], + [-0.877209529238721, 48.8384245742052], + [-0.877605872041018, 48.83833330192875], + [-0.878236013264491, 48.83814632923142], + [-0.879363550632015, 48.83774674486525], + [-0.879462426068044, 48.83805366369281], + [-0.879462743669991, 48.838055049338855], + [-0.879474926456854, 48.83806406593972], + [-0.8794877577508065, 48.838063656216335] + ] + }, + "length": 0.3431661150296938, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06624", + "bus2": "MVBus08685", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8794877577508065, 48.838063656216335], + [-0.879500589044759, 48.83806324649294], + [-0.879512655216932, 48.83805236924446], + [-0.879514294333455, 48.83805089473879], + [-0.87952517731772, 48.83799238482006], + [-0.879461609615496, 48.83773272520922], + [-0.880674679188671, 48.8373468095376], + [-0.880674679188671, 48.8373468095376] + ] + }, + "length": 0.1363614003299588, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47187", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08685", + "bus2": "MVBus08686", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880674679188671, 48.8373468095376], + [-0.880674679188671, 48.8373468095376], + [-0.881143023044725, 48.837197585032015], + [-0.881432024565952, 48.83709132911235], + [-0.881770234427886, 48.83700798337583], + [-0.881772418257212, 48.837005846464045], + [-0.881772418257212, 48.837005846464045] + ] + }, + "length": 0.08924914276914384, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08686", + "bus2": "MVLV06618", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.881772418257212, 48.837005846464045], + [-0.881772418257212, 48.837005846464045], + [-0.881795879161887, 48.83698295827619], + [-0.882339212587704, 48.8369298188577], + [-0.882602846093529, 48.836916085556226], + [-0.883055786007381, 48.836927093962686], + [-0.883520640213844, 48.83696209190501], + [-0.883707673530247, 48.836987740215186], + [-0.883730622181711, 48.836913836551645], + [-0.884040930989612, 48.83697390077044], + [-0.884049704575048, 48.836956761634546], + [-0.88406440710997, 48.836928020339315], + [-0.88406440710997, 48.836928020339315] + ] + }, + "length": 0.1819650302869982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43529", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16339", + "bus2": "MVBus07199", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8686998101678213, 48.838526097189025], + [-0.868699904353781, 48.83852806155387], + [-0.868701199622738, 48.83854151912993], + [-0.868702757777487, 48.838557686107755], + [-0.868722503320463, 48.83876687210722], + [-0.868817103520342, 48.838763622546615], + [-0.868817103520342, 48.838763622546615] + ] + }, + "length": 0.03356285654781796, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35588", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07199", + "bus2": "MVBus07200", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.868817103520342, 48.838763622546615], + [-0.868817103520342, 48.838763622546615], + [-0.869121961776541, 48.838746892769265], + [-0.871772221648429, 48.83864093270986], + [-0.871797152835766, 48.838734429103454], + [-0.871842737324107, 48.838764646639575], + [-0.871876996225313, 48.8388095884613], + [-0.871876996225313, 48.8388095884613] + ] + }, + "length": 0.2382568731010173, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch09864", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07200", + "bus2": "MVBus07201", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.871876996225313, 48.8388095884613], + [-0.871876996225313, 48.8388095884613], + [-0.87223218247948, 48.83939005621284], + [-0.872145403855815, 48.839820035406966], + [-0.872146518973825, 48.839822200116686], + [-0.872146518973825, 48.839822200116686] + ] + }, + "length": 0.11811189257521192, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31026", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07201", + "bus2": "MVBus07202", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872146518973825, 48.839822200116686], + [-0.872146518973825, 48.839822200116686], + [-0.872572820690305, 48.84065318427284], + [-0.872898415892355, 48.84142980041824], + [-0.872898415892355, 48.84142980041824] + ] + }, + "length": 0.1871763949567639, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34400", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07202", + "bus2": "MVBus07203", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872898415892355, 48.84142980041824], + [-0.872898415892355, 48.84142980041824], + [-0.872949275566414, 48.8414148644425], + [-0.873007234026652, 48.84148884120062], + [-0.873007234026652, 48.84148884120062] + ] + }, + "length": 0.013347777466179678, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38933", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07203", + "bus2": "MVLV14197", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.873007234026652, 48.84148884120062], + [-0.873007234026652, 48.84148884120062], + [-0.873000946705299, 48.84149712422277], + [-0.872975878534332, 48.841531126631715], + [-0.872958792812237, 48.8415622152741], + [-0.872940831259644, 48.84157981708505], + [-0.872919399390211, 48.84158582801061], + [-0.872264316792551, 48.841661860400315], + [-0.87174837779979, 48.84171776742304], + [-0.871765352594382, 48.841791455319445], + [-0.871767328755778, 48.84180004620782], + [-0.871770256353902, 48.84181894666179], + [-0.8717518762744035, 48.84182098477776] + ] + }, + "length": 0.11155221210230411, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35212", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14197", + "bus2": "MVBus08183", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8717518762744035, 48.84182098477776], + [-0.871733496194905, 48.841823022893735], + [-0.871693086112716, 48.84183484322423], + [-0.870691717544495, 48.84198811304198], + [-0.870691717544495, 48.84198811304198] + ] + }, + "length": 0.07869834569086104, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch09867", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08183", + "bus2": "MVLV17331", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.870691717544495, 48.84198811304198], + [-0.870691717544495, 48.84198811304198], + [-0.86695823363757, 48.84303468142016], + [-0.86695823363757, 48.84303468142016] + ] + }, + "length": 0.29773606681183895, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34239", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07203", + "bus2": "MVBus07204", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.873007234026652, 48.84148884120062], + [-0.873007234026652, 48.84148884120062], + [-0.873028693247802, 48.84146214108333], + [-0.873059271332494, 48.84142887157235], + [-0.873090433645613, 48.841404599258745], + [-0.87314903914039, 48.841383148822345], + [-0.873225759601226, 48.84136748828711], + [-0.873311628832019, 48.84136687240857], + [-0.873387365404252, 48.84137824121766], + [-0.87347070999812, 48.84140199774015], + [-0.873521461135424, 48.84142756881493], + [-0.873569533929123, 48.84145412060402], + [-0.873631653450116, 48.841465874542116], + [-0.873671242842053, 48.84146656069455], + [-0.873675944485619, 48.84146590316994], + [-0.873675944485619, 48.84146590316994] + ] + }, + "length": 0.05800011596560066, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43531", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07204", + "bus2": "MVBus07205", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.873675944485619, 48.84146590316994], + [-0.873675944485619, 48.84146590316994], + [-0.87614693743563, 48.841118743702616], + [-0.876294976468256, 48.841088472969375], + [-0.876293704382707, 48.841087077107254], + [-0.876293704382707, 48.841087077107254] + ] + }, + "length": 0.1970012070090857, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39505", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07205", + "bus2": "MVLV14202", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876293704382707, 48.841087077107254], + [-0.876293704382707, 48.841087077107254], + [-0.875801635325687, 48.84054431672589], + [-0.875755736316278, 48.84046729920373], + [-0.87563047253042, 48.84032231683844], + [-0.875336553754776, 48.84001555978465], + [-0.875138041651559, 48.83985553522315], + [-0.874939079648074, 48.839772924400776], + [-0.874927729253643, 48.83981979777247], + [-0.874927230280244, 48.83982186209571], + [-0.874916570160602, 48.839830820933166], + [-0.874905311669654, 48.839830229741395] + ] + }, + "length": 0.18550175870020472, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39512", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14202", + "bus2": "MVBus08702", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.874905311669654, 48.839830229741395], + [-0.874894053178706, 48.83982963854963], + [-0.874884152119823, 48.83981785243795], + [-0.874878841031003, 48.839811528356755], + [-0.87489979176762, 48.83971372712899], + [-0.875166300137308, 48.839828633158874], + [-0.87537605670389, 48.83999375119793], + [-0.875669352047677, 48.84031221847985], + [-0.875798835746705, 48.84045888590148], + [-0.875844609925364, 48.840534107780144], + [-0.876341977157856, 48.8410772556702], + [-0.876492203069748, 48.84105368987994], + [-0.876492203069748, 48.84105368987994] + ] + }, + "length": 0.21186886508195796, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38943", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08702", + "bus2": "MVBus08703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876492203069748, 48.84105368987994], + [-0.876492203069748, 48.84105368987994], + [-0.876495874028596, 48.84105311403799], + [-0.876518913112242, 48.841135272931126], + [-0.876488077688784, 48.84114544221755], + [-0.876451654357169, 48.8411679145853], + [-0.876689117189963, 48.841427008610744], + [-0.876689117189963, 48.841427008610744] + ] + }, + "length": 0.04943394118866002, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47195", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08703", + "bus2": "MVBus08704", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876689117189963, 48.841427008610744], + [-0.876689117189963, 48.841427008610744], + [-0.876715779516786, 48.84145658387014], + [-0.876715779516786, 48.84145658387014] + ] + }, + "length": 0.003827218082576422, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08704", + "bus2": "MVBus08705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876715779516786, 48.84145658387014], + [-0.876715779516786, 48.84145658387014], + [-0.876921910227358, 48.841679320106984], + [-0.876881552107111, 48.84173021505582], + [-0.875596693390097, 48.841995495403836], + [-0.875618931920973, 48.8420394563213], + [-0.875489653542762, 48.84206794249989], + [-0.875486723189695, 48.84207013540643], + [-0.875473232182965, 48.84208025906252], + [-0.875473232182965, 48.84208025906252] + ] + }, + "length": 0.15121557062525562, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43092", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04323", + "bus2": "MVLV17336", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860106265907068, 48.853379550930796], + [-0.860106265907068, 48.853379550930796], + [-0.860112973852066, 48.853385325374795], + [-0.860284997954703, 48.85348422726446], + [-0.86031822396588, 48.85388370373491], + [-0.860213147252814, 48.85394318393929], + [-0.860277750652852, 48.8547380215247], + [-0.860337470882132, 48.854891668341494], + [-0.860688093091416, 48.855843519013675], + [-0.860827465146773, 48.85620048575599], + [-0.860875436691069, 48.85628229138118], + [-0.860924986486662, 48.856343276583026], + [-0.861073201614667, 48.85648117973047], + [-0.861283333858406, 48.85660940513099], + [-0.861500693050619, 48.856701420811575], + [-0.861712935684085, 48.85675667685235], + [-0.861647319373766, 48.8568166270699], + [-0.861647365349113, 48.85681936025709], + [-0.861645231472531, 48.8568329367829], + [-0.8616552619450155, 48.85683610333325] + ] + }, + "length": 0.43128229512606414, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17336", + "bus2": "MVBus04731", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8616552619450155, 48.85683610333325], + [-0.8616652924175, 48.8568392698836], + [-0.861682714956507, 48.85683222662069], + [-0.861688686801552, 48.856829817483856], + [-0.861695722418727, 48.856826975001795], + [-0.861707674408914, 48.85675823038369], + [-0.861792186526136, 48.856707603801034], + [-0.861893013080362, 48.85672519623623], + [-0.862694924872872, 48.85673387122094], + [-0.86292437714827, 48.856750569604074], + [-0.863182873633129, 48.85680362651025], + [-0.863693528154539, 48.8569810220965], + [-0.863855818413339, 48.857001673903724], + [-0.863918222964227, 48.85700255077768], + [-0.863918222964227, 48.85700255077768] + ] + }, + "length": 0.18105763300261443, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35221", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04731", + "bus2": "MVBus04732", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863918222964227, 48.85700255077768], + [-0.863918222964227, 48.85700255077768], + [-0.863966461523803, 48.85699013633603], + [-0.86397193271409, 48.85699132048057], + [-0.863976793703651, 48.85699542635625], + [-0.86397844410508, 48.85699963653583], + [-0.863980238431354, 48.85700595662856], + [-0.863976038582072, 48.85706222419284], + [-0.863763541152754, 48.857926554849435], + [-0.863762652584391, 48.85793512380676], + [-0.863762652584391, 48.85793512380676] + ] + }, + "length": 0.1105963897080451, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47847", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04732", + "bus2": "MVLV00093", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863762652584391, 48.85793512380676], + [-0.863762652584391, 48.85793512380676], + [-0.863652098146194, 48.85797020715481], + [-0.863644249366891, 48.85797467268345], + [-0.86363988513144, 48.857978612792806], + [-0.863636561543085, 48.857982848741585], + [-0.863635174335102, 48.8579870956023], + [-0.863635321052109, 48.857996536209306], + [-0.863629454090578, 48.85801963068446], + [-0.863607983625426, 48.85808739905594], + [-0.863598662759524, 48.858132488730874], + [-0.86358807516244, 48.85820717838946], + [-0.863583042207501, 48.85823274200076], + [-0.86356619935817, 48.858307240000826], + [-0.863557061976745, 48.85834757547212], + [-0.863540696178101, 48.85841986590374], + [-0.863527748120029, 48.85848789986443], + [-0.863516757163843, 48.858539501671636], + [-0.863507366526449, 48.85858368471885], + [-0.863504166097039, 48.85859874709582], + [-0.863494606206984, 48.85866094228821], + [-0.863490600465937, 48.858687026956055], + [-0.863492869319609, 48.85873635644208], + [-0.863498292409483, 48.85877649840076], + [-0.863505424396394, 48.85881958969367], + [-0.863528945280578, 48.85889077197597], + [-0.863532594689243, 48.858901746484285], + [-0.863554142463127, 48.85894649210044], + [-0.863614476471104, 48.85903367601244], + [-0.863620638428401, 48.85903655062091], + [-0.863627838730102, 48.859038138045726], + [-0.863634641177402, 48.85903835995974], + [-0.863643098779868, 48.85903779081348], + [-0.863651512275242, 48.85903672813808], + [-0.863712938803964, 48.85902261014858], + [-0.863779140442815, 48.85900149173398], + [-0.863832855496586, 48.858981041754475], + [-0.863996296445628, 48.85892287706804], + [-0.864067599774143, 48.85890358220162], + [-0.864068498293527, 48.858903342170414], + [-0.864080807594573, 48.858900024970026], + [-0.864077991992518, 48.858894496901186] + ] + }, + "length": 0.16785434440432762, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37894", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00093", + "bus2": "MVBus05173", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.864077991992518, 48.858894496901186], + [-0.864075176390463, 48.85888896883235], + [-0.864061426670129, 48.85889280148125], + [-0.863989047566625, 48.85891299776108], + [-0.863982227369626, 48.8589153578539], + [-0.863820345645456, 48.85897117793674], + [-0.863770857072501, 48.85899097460846], + [-0.863706983003681, 48.859011373830896], + [-0.863640560369019, 48.85902626474628], + [-0.863633336031125, 48.859026054173206], + [-0.86362889058395, 48.85902514826085], + [-0.863626207046427, 48.85902253094914], + [-0.863596581247106, 48.858980970769636], + [-0.86356924196568, 48.858936039033715], + [-0.863565248690335, 48.858927664273004], + [-0.863556427941519, 48.85891219644656], + [-0.8635491969277, 48.85889730652924], + [-0.863535602952256, 48.85885178044349], + [-0.863524606510693, 48.85882293285934], + [-0.863523300198474, 48.85881634779683], + [-0.86351820872964, 48.858790849461954], + [-0.863512688026298, 48.858744269848145], + [-0.863511328118163, 48.85872776495653], + [-0.863509889980825, 48.85871043464547], + [-0.863509766040245, 48.85868634989009], + [-0.863514793863072, 48.858650325473164], + [-0.863523377386478, 48.858588876106815], + [-0.863541758516472, 48.85850440651901], + [-0.863558944631487, 48.8584160383125], + [-0.86358975916166, 48.858276618017285], + [-0.863601312713498, 48.858227285747546], + [-0.863616550127998, 48.85813297035221], + [-0.863626241208668, 48.85809034429648], + [-0.863647493919965, 48.85801485523275], + [-0.863654123033808, 48.85799129952321], + [-0.863655719669438, 48.857986912110476], + [-0.863659609404082, 48.8579841181018], + [-0.863663824347541, 48.85798151323684], + [-0.863754139523726, 48.857952011045036], + [-0.863764406091378, 48.857949171538266], + [-0.863767699851741, 48.857948426374094], + [-0.863770978085763, 48.85794742977247], + [-0.863772695150138, 48.85794653810193], + [-0.863774645581598, 48.85794501052119], + [-0.863774645581598, 48.85794501052119] + ] + }, + "length": 0.16391793277881303, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46083", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05173", + "bus2": "MVBus05174", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863774645581598, 48.85794501052119], + [-0.863774645581598, 48.85794501052119], + [-0.863776138998672, 48.85792923844988], + [-0.86377796201692, 48.85792189465115], + [-0.863990567148061, 48.85706637598586], + [-0.863993841022684, 48.85701012432034], + [-0.863995215438887, 48.85700280156644], + [-0.864145676144476, 48.85700715758124], + [-0.864145676144476, 48.85700715758124] + ] + }, + "length": 0.11712757505255547, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41408", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05174", + "bus2": "MVBus05175", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.864145676144476, 48.85700715758124], + [-0.864145676144476, 48.85700715758124], + [-0.864728212747039, 48.8570114897373], + [-0.864874424283763, 48.85701215428628], + [-0.865019678090283, 48.85699753522224], + [-0.865158661585753, 48.85696769446948], + [-0.865158661585753, 48.85696769446948] + ] + }, + "length": 0.07498646770260328, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34243", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05175", + "bus2": "MVBus05176", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.865158661585753, 48.85696769446948], + [-0.865158661585753, 48.85696769446948], + [-0.865239863600235, 48.85695378132356], + [-0.86533921910663, 48.85693032208085], + [-0.865356650561167, 48.856916810749716], + [-0.865359827595317, 48.85691594275052], + [-0.865356031015941, 48.8569050172066], + [-0.865356031015941, 48.8569050172066] + ] + }, + "length": 0.017371955947210974, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47051", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03394", + "bus2": "MVLV16267", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8600627007696874, 48.85333737772175], + [-0.860051120719812, 48.85334623976728], + [-0.860055956692353, 48.853359233361104], + [-0.860060695512664, 48.853371977708335], + [-0.860060013612219, 48.85337418176287], + [-0.860044505754894, 48.85338418668452], + [-0.860040419883453, 48.85338512392681], + [-0.860033692009081, 48.85338366753167], + [-0.860029232393533, 48.85338119677501], + [-0.86001853756168, 48.85337575425656], + [-0.86001853756168, 48.85337575425656] + ] + }, + "length": 0.007044467725210111, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV03394_production", + "bus": "MVLV03394", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV03394_consumption", + "bus": "MVLV03394", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV16339_production", + "bus": "MVLV16339", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV16339_consumption", + "bus": "MVLV16339", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV06613_production", + "bus": "MVLV06613", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV06613_consumption", + "bus": "MVLV06613", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV07909_production", + "bus": "MVLV07909", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV07909_consumption", + "bus": "MVLV07909", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV17318_production", + "bus": "MVLV17318", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV17318_consumption", + "bus": "MVLV17318", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV00077_production", + "bus": "MVLV00077", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV00077_consumption", + "bus": "MVLV00077", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV14187_production", + "bus": "MVLV14187", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV14187_consumption", + "bus": "MVLV14187", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV06614_production", + "bus": "MVLV06614", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV06614_consumption", + "bus": "MVLV06614", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV16352_production", + "bus": "MVLV16352", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV16352_consumption", + "bus": "MVLV16352", + "phases": "abc", + "powers": [ + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334] + ] + }, + { + "id": "MVLV17323_production", + "bus": "MVLV17323", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV17323_consumption", + "bus": "MVLV17323", + "phases": "abc", + "powers": [ + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334] + ] + }, + { + "id": "MVLV03392_production", + "bus": "MVLV03392", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV03392_consumption", + "bus": "MVLV03392", + "phases": "abc", + "powers": [ + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334] + ] + }, + { + "id": "MVLV06627_production", + "bus": "MVLV06627", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV06627_consumption", + "bus": "MVLV06627", + "phases": "abc", + "powers": [ + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334] + ] + }, + { + "id": "MVLV19250_production", + "bus": "MVLV19250", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV19250_consumption", + "bus": "MVLV19250", + "phases": "abc", + "powers": [ + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334] + ] + }, + { + "id": "MVLV16338_production", + "bus": "MVLV16338", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV16338_consumption", + "bus": "MVLV16338", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV07908_production", + "bus": "MVLV07908", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV07908_consumption", + "bus": "MVLV07908", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV06624_production", + "bus": "MVLV06624", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV06624_consumption", + "bus": "MVLV06624", + "phases": "abc", + "powers": [ + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003] + ] + }, + { + "id": "MVLV06618_production", + "bus": "MVLV06618", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV06618_consumption", + "bus": "MVLV06618", + "phases": "abc", + "powers": [ + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334], + [12183.291900653947, 4004.454396499334] + ] + }, + { + "id": "MVLV14197_production", + "bus": "MVLV14197", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV14197_consumption", + "bus": "MVLV14197", + "phases": "abc", + "powers": [ + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003] + ] + }, + { + "id": "MVLV17331_production", + "bus": "MVLV17331", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV17331_consumption", + "bus": "MVLV17331", + "phases": "abc", + "powers": [ + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003] + ] + }, + { + "id": "MVLV14202_production", + "bus": "MVLV14202", + "phases": "abc", + "powers": [ + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0], + [-67.17044500419816, 0.0] + ] + }, + { + "id": "MVLV14202_consumption", + "bus": "MVLV14202", + "phases": "abc", + "powers": [ + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003], + [11678.248738804068, 3838.454736770003] + ] + }, + { + "id": "MVLV17336_production", + "bus": "MVLV17336", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV17336_consumption", + "bus": "MVLV17336", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV00093_production", + "bus": "MVLV00093", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV00093_consumption", + "bus": "MVLV00093", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + }, + { + "id": "MVLV16267_production", + "bus": "MVLV16267", + "phases": "abc", + "powers": [ + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0], + [-1360.099737933491, 0.0] + ] + }, + { + "id": "MVLV16267_consumption", + "bus": "MVLV16267", + "phases": "abc", + "powers": [ + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502], + [17620.23491162705, 5791.491144969502] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder078_Winter.json b/roseau/load_flow/data/networks/MVFeeder078_Winter.json new file mode 100644 index 00000000..67ed68b2 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder078_Winter.json @@ -0,0 +1,2958 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.861907220519602, 48.85275990396129] + } + }, + { + "id": "HVMV06", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.861907220519602, 48.85275990396129] + } + }, + { + "id": "MVLV03394", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8600627007696874, 48.85333737772175] + } + }, + { + "id": "MVBus04323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.860106265907068, 48.853379550930796] + } + }, + { + "id": "MVBus04325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8599909640364121, 48.853403618584366] + } + }, + { + "id": "MVBus04335", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.860150118595222, 48.85333739287977] + } + }, + { + "id": "MVBus04336", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.861013888394328, 48.85275771061705] + } + }, + { + "id": "MVBus04337", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.860681733449894, 48.85162594273506] + } + }, + { + "id": "MVBus04338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.856679771196076, 48.8393331890979] + } + }, + { + "id": "MVBus04339", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.859015429167717, 48.8390977033655] + } + }, + { + "id": "MVBus04340", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863845928420918, 48.83892360687616] + } + }, + { + "id": "MVBus04341", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.868646658997884, 48.838745743786326] + } + }, + { + "id": "MVLV16339", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8686998101678213, 48.838526097189025] + } + }, + { + "id": "MVBus07965", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.869200703510018, 48.83872826590689] + } + }, + { + "id": "MVBus07966", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.871765069885203, 48.83861872799665] + } + }, + { + "id": "MVBus07967", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872413202730643, 48.838592842785516] + } + }, + { + "id": "MVBus07968", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872214961209678, 48.838120113328216] + } + }, + { + "id": "MVLV06613", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872280137987934, 48.83809987122305] + } + }, + { + "id": "MVLV07909", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8752082433672413, 48.8350261440061] + } + }, + { + "id": "MVLV17318", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8785649436214537, 48.8332075950315] + } + }, + { + "id": "MVBus11094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875101921835193, 48.83012230580406] + } + }, + { + "id": "MVLV00077", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875095059017632, 48.830122149229794] + } + }, + { + "id": "MVLV14187", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880775799819524, 48.82987719698311] + } + }, + { + "id": "MVLV06614", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8817425294272689, 48.8315149122372] + } + }, + { + "id": "MVBus12384", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.884273548054826, 48.83387686483468] + } + }, + { + "id": "MVLV16352", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8824449607734131, 48.834537732363174] + } + }, + { + "id": "MVBus15325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.884286491972944, 48.833908447025685] + } + }, + { + "id": "MVLV17323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.885308108952521, 48.83400488371018] + } + }, + { + "id": "MVBus16410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.885832178874871, 48.832586304212874] + } + }, + { + "id": "MVLV03392", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8848244135284965, 48.830527334184154] + } + }, + { + "id": "MVBus18343", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.884841385788525, 48.830452372763254] + } + }, + { + "id": "MVLV06627", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.881830223376614, 48.82710345299199] + } + }, + { + "id": "MVBus18345", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.885597781304912, 48.83063412127371] + } + }, + { + "id": "MVBus18346", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.887865142307306, 48.82833235071164] + } + }, + { + "id": "MVBus18347", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.888557428715923, 48.826631641066605] + } + }, + { + "id": "MVLV19250", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.888514962274334, 48.82656655184295] + } + }, + { + "id": "MVBus10081", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.874502738373467, 48.834940067597074] + } + }, + { + "id": "MVLV16338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875658580600804, 48.83676048053651] + } + }, + { + "id": "MVBus07970", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872246199468391, 48.838151697990995] + } + }, + { + "id": "MVBus07971", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872467795554653, 48.83862329391957] + } + }, + { + "id": "MVLV07908", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8756189144606039, 48.838468138861174] + } + }, + { + "id": "MVLV06624", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8794877577508065, 48.838063656216335] + } + }, + { + "id": "MVBus08685", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880674679188671, 48.8373468095376] + } + }, + { + "id": "MVBus08686", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.881772418257212, 48.837005846464045] + } + }, + { + "id": "MVLV06618", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.88406440710997, 48.836928020339315] + } + }, + { + "id": "MVBus07199", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.868817103520342, 48.838763622546615] + } + }, + { + "id": "MVBus07200", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.871876996225313, 48.8388095884613] + } + }, + { + "id": "MVBus07201", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872146518973825, 48.839822200116686] + } + }, + { + "id": "MVBus07202", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.872898415892355, 48.84142980041824] + } + }, + { + "id": "MVBus07203", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.873007234026652, 48.84148884120062] + } + }, + { + "id": "MVLV14197", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8717518762744035, 48.84182098477776] + } + }, + { + "id": "MVBus08183", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.870691717544495, 48.84198811304198] + } + }, + { + "id": "MVLV17331", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.86695823363757, 48.84303468142016] + } + }, + { + "id": "MVBus07204", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.873675944485619, 48.84146590316994] + } + }, + { + "id": "MVBus07205", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876293704382707, 48.841087077107254] + } + }, + { + "id": "MVLV14202", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.874905311669654, 48.839830229741395] + } + }, + { + "id": "MVBus08702", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876492203069748, 48.84105368987994] + } + }, + { + "id": "MVBus08703", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876689117189963, 48.841427008610744] + } + }, + { + "id": "MVBus08704", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.876715779516786, 48.84145658387014] + } + }, + { + "id": "MVBus08705", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.875473232182965, 48.84208025906252] + } + }, + { + "id": "MVLV17336", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8616552619450155, 48.85683610333325] + } + }, + { + "id": "MVBus04731", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863918222964227, 48.85700255077768] + } + }, + { + "id": "MVBus04732", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863762652584391, 48.85793512380676] + } + }, + { + "id": "MVLV00093", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.864077991992518, 48.858894496901186] + } + }, + { + "id": "MVBus05173", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.863774645581598, 48.85794501052119] + } + }, + { + "id": "MVBus05174", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.864145676144476, 48.85700715758124] + } + }, + { + "id": "MVBus05175", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.865158661585753, 48.85696769446948] + } + }, + { + "id": "MVBus05176", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.865356031015941, 48.8569050172066] + } + }, + { + "id": "MVLV16267", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.86001853756168, 48.85337575425656] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV06", + "geometry": { + "type": "Point", + "coordinates": [-0.861907220519602, 48.85275990396129] + } + }, + { + "id": "MVBranch38953", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV06", + "bus2": "MVLV03394", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.861907220519602, 48.85275990396129], + [-0.861888314271604, 48.852754808166644], + [-0.861888314271604, 48.852754808166644], + [-0.861869408027325, 48.85274971236901], + [-0.861368673543466, 48.8526147865462], + [-0.861049320568241, 48.8527812427962], + [-0.860169527273028, 48.853373840425675], + [-0.860149647433513, 48.85336179950876], + [-0.860092076860964, 48.85333225936424], + [-0.860084771759453, 48.85332851579644], + [-0.860072260429244, 48.853323014123966], + [-0.8600627007696874, 48.85333737772175] + ] + }, + "length": 0.1724292254349832, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38947", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03394", + "bus2": "MVBus04323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8600627007696874, 48.85333737772175], + [-0.860064721160006, 48.85334287927401], + [-0.860079895072474, 48.853356854535264], + [-0.860106265907068, 48.853379550930796], + [-0.860106265907068, 48.853379550930796] + ] + }, + "length": 0.005092436730597999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38704", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04323", + "bus2": "MVBus04325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860106265907068, 48.853379550930796], + [-0.860106265907068, 48.853379550930796], + [-0.8600163028267, 48.85343278750661], + [-0.86000994418003, 48.85343510801778], + [-0.860001070273415, 48.853434437828625], + [-0.8599939335223, 48.853431877051975], + [-0.859979190789972, 48.853421578081765], + [-0.8599909640364121, 48.853403618584366] + ] + }, + "length": 0.012228134551066085, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34347", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04325", + "bus2": "MVBus04335", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8599909640364121, 48.853403618584366], + [-0.860002737282852, 48.85338565908697], + [-0.860017184353527, 48.85339381622982], + [-0.860028993381016, 48.853400748954925], + [-0.860036652137753, 48.853403817412136], + [-0.860044145542325, 48.85340442572612], + [-0.860049877979954, 48.85340344426834], + [-0.860150118595222, 48.85333739287977], + [-0.860150118595222, 48.85333739287977] + ] + }, + "length": 0.014597094628989744, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44798", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04335", + "bus2": "MVBus04336", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860150118595222, 48.85333739287977], + [-0.860150118595222, 48.85333739287977], + [-0.861013888394328, 48.85275771061705], + [-0.861013888394328, 48.85275771061705] + ] + }, + "length": 0.09040961235896791, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47178", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04336", + "bus2": "MVBus04337", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.861013888394328, 48.85275771061705], + [-0.861013888394328, 48.85275771061705], + [-0.861026308616059, 48.85273367559381], + [-0.860340072911525, 48.85206688936424], + [-0.86032562358509, 48.852036811896866], + [-0.86035029558328, 48.85200567478345], + [-0.860467329603989, 48.85186124066065], + [-0.860648657339723, 48.851647663190434], + [-0.860681733449894, 48.85162594273506], + [-0.860681733449894, 48.85162594273506] + ] + }, + "length": 0.14874056292248092, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch21891", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04337", + "bus2": "MVBus04338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860681733449894, 48.85162594273506], + [-0.860681733449894, 48.85162594273506], + [-0.858409909480369, 48.84912569509092], + [-0.856679771196076, 48.8393331890979], + [-0.856679771196076, 48.8393331890979] + ] + }, + "length": 1.4205755596337886, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch47177", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04338", + "bus2": "MVBus04339", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.856679771196076, 48.8393331890979], + [-0.856679771196076, 48.8393331890979], + [-0.856661212898628, 48.839171697597386], + [-0.857642747219776, 48.839146922274196], + [-0.859015429167717, 48.8390977033655], + [-0.859015429167717, 48.8390977033655] + ] + }, + "length": 0.19102802193987503, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45915", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04339", + "bus2": "MVBus04340", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.859015429167717, 48.8390977033655], + [-0.859015429167717, 48.8390977033655], + [-0.859018121143696, 48.8390976040966], + [-0.858947615612684, 48.83918868197558], + [-0.858967015313405, 48.83927814631989], + [-0.859771801979231, 48.83928260141979], + [-0.860450036039239, 48.83922759422397], + [-0.860931046676199, 48.83928612729581], + [-0.861434667467907, 48.83927201042151], + [-0.861836059636044, 48.83915274458074], + [-0.862388898406028, 48.83905623844159], + [-0.863824198630521, 48.83902677864632], + [-0.863845928420918, 48.83892360687616], + [-0.863845928420918, 48.83892360687616] + ] + }, + "length": 0.3950562373152476, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41998", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04340", + "bus2": "MVBus04341", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863845928420918, 48.83892360687616], + [-0.863845928420918, 48.83892360687616], + [-0.863846128696252, 48.83892265702046], + [-0.868646658997884, 48.838745743786326], + [-0.868646658997884, 48.838745743786326] + ] + }, + "length": 0.3530507631966376, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45916", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04341", + "bus2": "MVLV16339", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.868646658997884, 48.838745743786326], + [-0.868646658997884, 48.838745743786326], + [-0.868692683463817, 48.83874651908009], + [-0.868676239033346, 48.83856449893863], + [-0.868675510877745, 48.838536850008595], + [-0.868687059984101, 48.83852572699374], + [-0.8686998101678213, 48.838526097189025] + ] + }, + "length": 0.028232269363577034, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41390", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16339", + "bus2": "MVBus07965", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8686998101678213, 48.838526097189025], + [-0.868712466165582, 48.83852450301946], + [-0.868726323250959, 48.83853440205953], + [-0.868727566232987, 48.83855627134506], + [-0.868747945655592, 48.83874617303756], + [-0.869200703510018, 48.83872826590689], + [-0.869200703510018, 48.83872826590689] + ] + }, + "length": 0.05839935889291249, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40021", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07965", + "bus2": "MVBus07966", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.869200703510018, 48.83872826590689], + [-0.869200703510018, 48.83872826590689], + [-0.871765069885203, 48.83861872799665], + [-0.871765069885203, 48.83861872799665] + ] + }, + "length": 0.1886382705981941, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33223", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07966", + "bus2": "MVBus07967", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.871765069885203, 48.83861872799665], + [-0.871765069885203, 48.83861872799665], + [-0.871795530743376, 48.83861991267546], + [-0.871815033615213, 48.83863097243188], + [-0.872423624198983, 48.838620095440184], + [-0.872413202730643, 48.838592842785516], + [-0.872413202730643, 48.838592842785516] + ] + }, + "length": 0.05194483150364374, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45917", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07967", + "bus2": "MVBus07968", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872413202730643, 48.838592842785516], + [-0.872413202730643, 48.838592842785516], + [-0.872214961209678, 48.838120113328216], + [-0.872214961209678, 48.838120113328216] + ] + }, + "length": 0.05454767906198296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35587", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07968", + "bus2": "MVLV06613", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872214961209678, 48.838120113328216], + [-0.872214961209678, 48.838120113328216], + [-0.872256982326507, 48.83810663017048], + [-0.872275563537051, 48.83810103798684], + [-0.872280137987934, 48.83809987122305] + ] + }, + "length": 0.004928925184248028, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40022", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06613", + "bus2": "MVLV07909", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872280137987934, 48.83809987122305], + [-0.872276311796317, 48.838087147530715], + [-0.872252104016431, 48.83808571342212], + [-0.872233654174436, 48.83808219912663], + [-0.872224200606974, 48.83806265604554], + [-0.872151690647924, 48.83808000156608], + [-0.871588360259366, 48.83680962440633], + [-0.871316477191573, 48.83675876503669], + [-0.871152039874733, 48.83670398347678], + [-0.870983382857406, 48.83662591944109], + [-0.870713485181455, 48.836457998275456], + [-0.870488433898687, 48.83620329850673], + [-0.870262745683259, 48.83572720352523], + [-0.869853254863085, 48.83500154705229], + [-0.869778652800155, 48.834901931604605], + [-0.869900362224382, 48.83486520872472], + [-0.869933506907551, 48.83480847461936], + [-0.872188034827993, 48.83416542872751], + [-0.872354195262133, 48.83412024561571], + [-0.87240103864092, 48.834127932455765], + [-0.87278362855321, 48.834267480705606], + [-0.872883395792063, 48.834313282119076], + [-0.873094063121389, 48.83442976149543], + [-0.873158966452131, 48.834484643544144], + [-0.873274865981431, 48.83459029415274], + [-0.873380562133205, 48.83466471931383], + [-0.873899640777921, 48.83486973600969], + [-0.874392297501488, 48.83491887805648], + [-0.874509716103237, 48.834900265212084], + [-0.875221549060217, 48.834986440628654], + [-0.875216709133885, 48.83500839319945], + [-0.875214168333963, 48.835019948427785], + [-0.875212988103713, 48.83502157240236], + [-0.8752082433672413, 48.8350261440061] + ] + }, + "length": 0.8770431551619805, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45129", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07909", + "bus2": "MVLV17318", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8752082433672413, 48.8350261440061], + [-0.875224158969585, 48.835030994526335], + [-0.875244156303354, 48.83502826900243], + [-0.875262275049929, 48.835025792069665], + [-0.876015080951546, 48.83509190439377], + [-0.876340703242326, 48.835045828796595], + [-0.877340633308082, 48.834990663517246], + [-0.877462796493591, 48.834961116555206], + [-0.877951758763579, 48.83478442428809], + [-0.878751822064349, 48.83467456793186], + [-0.879039225633376, 48.83460705683724], + [-0.879070136734034, 48.83453687870594], + [-0.879033637971451, 48.834478506663814], + [-0.878980691439924, 48.83441878904795], + [-0.878815171394929, 48.834283946288345], + [-0.878776940554386, 48.834240921550204], + [-0.878711265733503, 48.834089753246104], + [-0.878520148340708, 48.83358029214511], + [-0.878511556484565, 48.83348962926064], + [-0.878533951997466, 48.83337198950142], + [-0.878588239133895, 48.833241740494586], + [-0.878574995133073, 48.83322899254004], + [-0.878563433156581, 48.83321788121288], + [-0.8785649436214537, 48.8332075950315] + ] + }, + "length": 0.45466041701091836, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38930", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17318", + "bus2": "MVBus11094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8785649436214537, 48.8332075950315], + [-0.878559904510659, 48.83319437352441], + [-0.87856552389082, 48.83318567638942], + [-0.878571446961239, 48.83318473378293], + [-0.878641093614399, 48.83317365002125], + [-0.878712996309697, 48.83306271408234], + [-0.879450088217662, 48.831872312229684], + [-0.879391519891046, 48.831871961217274], + [-0.879108841637731, 48.831868653764666], + [-0.878796959272483, 48.83181910857779], + [-0.878579053354476, 48.831758648972944], + [-0.878470801456295, 48.83172807626024], + [-0.87841001803686, 48.83168781953582], + [-0.878237286329989, 48.83160988468384], + [-0.878110192621694, 48.83156306289502], + [-0.877968416288142, 48.83152115314989], + [-0.877807473434428, 48.83147797997653], + [-0.877390506894023, 48.83129171140898], + [-0.877220300434519, 48.831189402254395], + [-0.877055329096531, 48.83110494160875], + [-0.87678024764586, 48.830920074059115], + [-0.876365333997544, 48.83065993307908], + [-0.87605658935329, 48.83048141489835], + [-0.87523612232251, 48.83010183568745], + [-0.875142897384062, 48.83012725348], + [-0.875101921835193, 48.83012230580406], + [-0.875101921835193, 48.83012230580406] + ] + }, + "length": 0.5484946533037999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42000", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11094", + "bus2": "MVLV00077", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.875101921835193, 48.83012230580406], + [-0.875101921835193, 48.83012230580406], + [-0.875095059017632, 48.830122149229794], + [-0.875095059017632, 48.830122149229794] + ] + }, + "length": 0.0005041710094409629, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35208", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17318", + "bus2": "MVLV14187", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8785649436214537, 48.8332075950315], + [-0.878571493197121, 48.83321053035723], + [-0.878591101609507, 48.833214291194274], + [-0.878658187266171, 48.83322716749238], + [-0.878758729365904, 48.83307402645225], + [-0.879519269841079, 48.83184826956906], + [-0.879518106809841, 48.83178799804584], + [-0.879611634787979, 48.831484728875765], + [-0.879849610742601, 48.830969471904865], + [-0.879918535550077, 48.830918027894384], + [-0.88001312407312, 48.830883853261355], + [-0.880421778946045, 48.830836330529905], + [-0.880429196031522, 48.83086672227627], + [-0.880907894988345, 48.83082711813949], + [-0.881186638954922, 48.830815650101506], + [-0.881342466899555, 48.83082205945419], + [-0.88138553374052, 48.8308343424745], + [-0.881095512999948, 48.83035557782821], + [-0.880828381454944, 48.82993557913011], + [-0.880785274666487, 48.829889259578614], + [-0.880774588980799, 48.82987777392479], + [-0.880775799819524, 48.82987719698311] + ] + }, + "length": 0.509338459446997, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47179", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14187", + "bus2": "MVLV06614", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880775799819524, 48.82987719698311], + [-0.880777010658249, 48.82987662004143], + [-0.880790118021883, 48.82988695181146], + [-0.880811318694876, 48.82990365815257], + [-0.880858182499768, 48.82989063444164], + [-0.881146401935904, 48.8303415456667], + [-0.881432411844581, 48.83082131817827], + [-0.881438669850986, 48.830876054951844], + [-0.881572504646165, 48.831090098670714], + [-0.881591230157907, 48.83116877599112], + [-0.881592283746379, 48.831290253100946], + [-0.881604274668738, 48.83141233391639], + [-0.881624945067519, 48.831499953700195], + [-0.881727931756154, 48.8314970425184], + [-0.881731087424485, 48.83149695717268], + [-0.88174287189475, 48.83150528273355], + [-0.8817425294272689, 48.8315149122372] + ] + }, + "length": 0.20617450395313525, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46291", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06614", + "bus2": "MVBus12384", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8817425294272689, 48.8315149122372], + [-0.881742186959788, 48.831524541740855], + [-0.881731941982377, 48.83153114236234], + [-0.881725848831322, 48.83153131614784], + [-0.881632600012673, 48.831533945981654], + [-0.881636489464634, 48.8315518309589], + [-0.881692119662777, 48.831695183264685], + [-0.881751945180938, 48.831797899232164], + [-0.881842719733717, 48.8318943540911], + [-0.881984416855336, 48.83199836370007], + [-0.882523993051504, 48.83235127157024], + [-0.882914498764284, 48.83257067543426], + [-0.883157727724404, 48.83274742346493], + [-0.884053290775894, 48.83352322077135], + [-0.884098563308161, 48.83356965144726], + [-0.884165377983124, 48.83367487559109], + [-0.884277937328702, 48.83387601743591], + [-0.884273548054826, 48.83387686483468], + [-0.884273548054826, 48.83387686483468] + ] + }, + "length": 0.33868712643538773, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34235", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus12384", + "bus2": "MVLV16352", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884273548054826, 48.83387686483468], + [-0.884273548054826, 48.83387686483468], + [-0.883778137940943, 48.83398040291884], + [-0.883106886263018, 48.834151931834015], + [-0.882350436333162, 48.83436768738502], + [-0.88235547646301, 48.83450638088338], + [-0.882414863716839, 48.83453853298295], + [-0.882417634229258, 48.83454058087732], + [-0.882433504139233, 48.834542931078886], + [-0.8824449607734131, 48.834537732363174] + ] + }, + "length": 0.17405376330025718, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43533", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16352", + "bus2": "MVBus15325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8824449607734131, 48.834537732363174], + [-0.882456417407593, 48.834532533647454], + [-0.882458713158862, 48.83452232511511], + [-0.882455752094948, 48.83451984161787], + [-0.882421244799962, 48.83449097437869], + [-0.882421046072519, 48.83435805967731], + [-0.883069593986549, 48.834170598109246], + [-0.88378035818785, 48.83398916700418], + [-0.884255699372143, 48.833892450649415], + [-0.884286491972944, 48.833908447025685], + [-0.884286491972944, 48.833908447025685] + ] + }, + "length": 0.1676849766963774, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40027", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15325", + "bus2": "MVLV17323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884286491972944, 48.833908447025685], + [-0.884286491972944, 48.833908447025685], + [-0.884298972203125, 48.83390602238361], + [-0.884418286341134, 48.83393775688206], + [-0.884514024243277, 48.8339845575173], + [-0.884707243144837, 48.83395750537349], + [-0.884855303452504, 48.83394881999516], + [-0.88528210098068, 48.83399166796117], + [-0.885283593003777, 48.83399309376456], + [-0.885295209845906, 48.83400418501409], + [-0.885308108952521, 48.83400488371018] + ] + }, + "length": 0.07794340751148783, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42005", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17323", + "bus2": "MVBus16410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.885308108952521, 48.83400488371018], + [-0.885321008059136, 48.83400558240626], + [-0.885332928229382, 48.83399743395683], + [-0.885336140264641, 48.833997814737565], + [-0.886403291338323, 48.83412472147533], + [-0.885720739927985, 48.83266065291953], + [-0.885855538138068, 48.83263704263954], + [-0.885836358483477, 48.832593486053305], + [-0.885832178874871, 48.832586304212874], + [-0.885832178874871, 48.832586304212874] + ] + }, + "length": 0.2675941982774448, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38935", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16410", + "bus2": "MVLV03392", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.885832178874871, 48.832586304212874], + [-0.885832178874871, 48.832586304212874], + [-0.885570983953207, 48.83213833305527], + [-0.885460822092599, 48.8317427071721], + [-0.885448835160519, 48.831662939381076], + [-0.885441919378381, 48.83136700795914], + [-0.885587016471366, 48.83065032510885], + [-0.884893696009653, 48.83047943511494], + [-0.884855394653674, 48.83052128280466], + [-0.884852264975556, 48.8305226628263], + [-0.884835276836073, 48.83053014790389], + [-0.8848244135284965, 48.830527334184154] + ] + }, + "length": 0.2818985234228485, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40023", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03392", + "bus2": "MVBus18343", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8848244135284965, 48.830527334184154], + [-0.88481355022092, 48.83052452046441], + [-0.884808811752556, 48.830511407949444], + [-0.884808316674619, 48.83051001811575], + [-0.884841385788525, 48.830452372763254], + [-0.884841385788525, 48.830452372763254] + ] + }, + "length": 0.008512807915317425, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18343", + "bus2": "MVLV06627", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884841385788525, 48.830452372763254], + [-0.884841385788525, 48.830452372763254], + [-0.884998645214429, 48.83022831093096], + [-0.885114245361454, 48.83013548197546], + [-0.884611166410639, 48.82990396681405], + [-0.884510555462498, 48.829823998314524], + [-0.884455021654836, 48.82974546310337], + [-0.884423703229472, 48.829661738851755], + [-0.884391756350623, 48.8290309309633], + [-0.884305165282771, 48.82895686137081], + [-0.884179196509307, 48.82890641730952], + [-0.884038885893279, 48.82888697166403], + [-0.883095349088948, 48.82893687340285], + [-0.882717518791388, 48.82902963522865], + [-0.882672209340558, 48.82896189558289], + [-0.882614504651665, 48.828832308090576], + [-0.882558776955788, 48.82867793952929], + [-0.882311839004826, 48.827222266563524], + [-0.881843354130384, 48.82714029262931], + [-0.88182335490009, 48.82711615097813], + [-0.881830223376614, 48.82710345299199], + [-0.881830223376614, 48.82710345299199] + ] + }, + "length": 0.5616143176910369, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38931", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18343", + "bus2": "MVBus18345", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.884841385788525, 48.830452372763254], + [-0.884841385788525, 48.830452372763254], + [-0.885597781304912, 48.83063412127371], + [-0.885597781304912, 48.83063412127371] + ] + }, + "length": 0.05909798077216007, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47181", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18345", + "bus2": "MVBus18346", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.885597781304912, 48.83063412127371], + [-0.885597781304912, 48.83063412127371], + [-0.885598929223246, 48.830634396023754], + [-0.885640976898373, 48.830483794737205], + [-0.885733137051884, 48.830328175392104], + [-0.88599332504746, 48.83000939475607], + [-0.886165307632451, 48.829844327153836], + [-0.887385905104967, 48.82886294304822], + [-0.887678248824724, 48.828599047482015], + [-0.887865142307306, 48.82833235071164], + [-0.887865142307306, 48.82833235071164] + ] + }, + "length": 0.3085057547490667, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45645", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18346", + "bus2": "MVBus18347", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.887865142307306, 48.82833235071164], + [-0.887865142307306, 48.82833235071164], + [-0.888272197021335, 48.82775147751906], + [-0.888450060715209, 48.827425116573586], + [-0.888641527272161, 48.827035366514444], + [-0.888691611384006, 48.826882737556524], + [-0.888730478192353, 48.82664131566306], + [-0.888557428715923, 48.826631641066605], + [-0.888557428715923, 48.826631641066605] + ] + }, + "length": 0.2124307166983533, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42114", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18347", + "bus2": "MVLV19250", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.888557428715923, 48.826631641066605], + [-0.888557428715923, 48.826631641066605], + [-0.888534060370761, 48.82662741708644], + [-0.888528413626648, 48.82662468269833], + [-0.888518102903748, 48.82661968201679], + [-0.888515574905479, 48.82661167289431], + [-0.888515245861116, 48.82658732295027], + [-0.888514962274334, 48.82656655184295], + [-0.888514962274334, 48.82656655184295] + ] + }, + "length": 0.009160255971882254, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46290", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07909", + "bus2": "MVBus10081", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8752082433672413, 48.8350261440061], + [-0.875187583028426, 48.83502586508961], + [-0.875171003315681, 48.83501799216996], + [-0.875164770551753, 48.835015039115014], + [-0.874503695787453, 48.83493374524362], + [-0.874502738373467, 48.834940067597074], + [-0.874502738373467, 48.834940067597074] + ] + }, + "length": 0.052135624147050294, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch21890", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10081", + "bus2": "MVLV16338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.874502738373467, 48.834940067597074], + [-0.874502738373467, 48.834940067597074], + [-0.875244745483283, 48.8362738031421], + [-0.875658580600804, 48.83676048053651], + [-0.875658580600804, 48.83676048053651] + ] + }, + "length": 0.22007202509458926, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch45128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06613", + "bus2": "MVBus07970", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872280137987934, 48.83809987122305], + [-0.872288538630434, 48.83811142815161], + [-0.872274923580696, 48.83813010907154], + [-0.872263624316597, 48.83814525548005], + [-0.872246199468391, 48.838151697990995], + [-0.872246199468391, 48.838151697990995] + ] + }, + "length": 0.0056490097905787925, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36231", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07970", + "bus2": "MVBus07971", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872246199468391, 48.838151697990995], + [-0.872246199468391, 48.838151697990995], + [-0.872441960336122, 48.83859446900614], + [-0.872467795554653, 48.83862329391957], + [-0.872467795554653, 48.83862329391957] + ] + }, + "length": 0.05501775862392058, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45361", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07971", + "bus2": "MVLV07908", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872467795554653, 48.83862329391957], + [-0.872467795554653, 48.83862329391957], + [-0.87256804753389, 48.838619115395936], + [-0.873887818148142, 48.83860232776013], + [-0.875614989175285, 48.83852905104814], + [-0.875612694014847, 48.8384834273658], + [-0.875612738880777, 48.83846875530065], + [-0.8756189144606039, 48.838468138861174] + ] + }, + "length": 0.23803136074272874, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35209", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07908", + "bus2": "MVLV06624", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8756189144606039, 48.838468138861174], + [-0.875625090040431, 48.8384675224217], + [-0.875632692301686, 48.83848003616146], + [-0.875633482047457, 48.838481346105645], + [-0.875646502843988, 48.83850279854413], + [-0.875655605404486, 48.8386015518763], + [-0.876011804333123, 48.83858521758397], + [-0.87629120191588, 48.83856205061363], + [-0.876635057864226, 48.83852356014651], + [-0.877209529238721, 48.8384245742052], + [-0.877605872041018, 48.83833330192875], + [-0.878236013264491, 48.83814632923142], + [-0.879363550632015, 48.83774674486525], + [-0.879462426068044, 48.83805366369281], + [-0.879462743669991, 48.838055049338855], + [-0.879474926456854, 48.83806406593972], + [-0.8794877577508065, 48.838063656216335] + ] + }, + "length": 0.3431661150296938, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06624", + "bus2": "MVBus08685", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8794877577508065, 48.838063656216335], + [-0.879500589044759, 48.83806324649294], + [-0.879512655216932, 48.83805236924446], + [-0.879514294333455, 48.83805089473879], + [-0.87952517731772, 48.83799238482006], + [-0.879461609615496, 48.83773272520922], + [-0.880674679188671, 48.8373468095376], + [-0.880674679188671, 48.8373468095376] + ] + }, + "length": 0.1363614003299588, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47187", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08685", + "bus2": "MVBus08686", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880674679188671, 48.8373468095376], + [-0.880674679188671, 48.8373468095376], + [-0.881143023044725, 48.837197585032015], + [-0.881432024565952, 48.83709132911235], + [-0.881770234427886, 48.83700798337583], + [-0.881772418257212, 48.837005846464045], + [-0.881772418257212, 48.837005846464045] + ] + }, + "length": 0.08924914276914384, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08686", + "bus2": "MVLV06618", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.881772418257212, 48.837005846464045], + [-0.881772418257212, 48.837005846464045], + [-0.881795879161887, 48.83698295827619], + [-0.882339212587704, 48.8369298188577], + [-0.882602846093529, 48.836916085556226], + [-0.883055786007381, 48.836927093962686], + [-0.883520640213844, 48.83696209190501], + [-0.883707673530247, 48.836987740215186], + [-0.883730622181711, 48.836913836551645], + [-0.884040930989612, 48.83697390077044], + [-0.884049704575048, 48.836956761634546], + [-0.88406440710997, 48.836928020339315], + [-0.88406440710997, 48.836928020339315] + ] + }, + "length": 0.1819650302869982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43529", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16339", + "bus2": "MVBus07199", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8686998101678213, 48.838526097189025], + [-0.868699904353781, 48.83852806155387], + [-0.868701199622738, 48.83854151912993], + [-0.868702757777487, 48.838557686107755], + [-0.868722503320463, 48.83876687210722], + [-0.868817103520342, 48.838763622546615], + [-0.868817103520342, 48.838763622546615] + ] + }, + "length": 0.03356285654781796, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35588", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07199", + "bus2": "MVBus07200", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.868817103520342, 48.838763622546615], + [-0.868817103520342, 48.838763622546615], + [-0.869121961776541, 48.838746892769265], + [-0.871772221648429, 48.83864093270986], + [-0.871797152835766, 48.838734429103454], + [-0.871842737324107, 48.838764646639575], + [-0.871876996225313, 48.8388095884613], + [-0.871876996225313, 48.8388095884613] + ] + }, + "length": 0.2382568731010173, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch09864", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07200", + "bus2": "MVBus07201", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.871876996225313, 48.8388095884613], + [-0.871876996225313, 48.8388095884613], + [-0.87223218247948, 48.83939005621284], + [-0.872145403855815, 48.839820035406966], + [-0.872146518973825, 48.839822200116686], + [-0.872146518973825, 48.839822200116686] + ] + }, + "length": 0.11811189257521192, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31026", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07201", + "bus2": "MVBus07202", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872146518973825, 48.839822200116686], + [-0.872146518973825, 48.839822200116686], + [-0.872572820690305, 48.84065318427284], + [-0.872898415892355, 48.84142980041824], + [-0.872898415892355, 48.84142980041824] + ] + }, + "length": 0.1871763949567639, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34400", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07202", + "bus2": "MVBus07203", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.872898415892355, 48.84142980041824], + [-0.872898415892355, 48.84142980041824], + [-0.872949275566414, 48.8414148644425], + [-0.873007234026652, 48.84148884120062], + [-0.873007234026652, 48.84148884120062] + ] + }, + "length": 0.013347777466179678, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38933", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07203", + "bus2": "MVLV14197", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.873007234026652, 48.84148884120062], + [-0.873007234026652, 48.84148884120062], + [-0.873000946705299, 48.84149712422277], + [-0.872975878534332, 48.841531126631715], + [-0.872958792812237, 48.8415622152741], + [-0.872940831259644, 48.84157981708505], + [-0.872919399390211, 48.84158582801061], + [-0.872264316792551, 48.841661860400315], + [-0.87174837779979, 48.84171776742304], + [-0.871765352594382, 48.841791455319445], + [-0.871767328755778, 48.84180004620782], + [-0.871770256353902, 48.84181894666179], + [-0.8717518762744035, 48.84182098477776] + ] + }, + "length": 0.11155221210230411, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35212", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14197", + "bus2": "MVBus08183", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8717518762744035, 48.84182098477776], + [-0.871733496194905, 48.841823022893735], + [-0.871693086112716, 48.84183484322423], + [-0.870691717544495, 48.84198811304198], + [-0.870691717544495, 48.84198811304198] + ] + }, + "length": 0.07869834569086104, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch09867", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08183", + "bus2": "MVLV17331", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.870691717544495, 48.84198811304198], + [-0.870691717544495, 48.84198811304198], + [-0.86695823363757, 48.84303468142016], + [-0.86695823363757, 48.84303468142016] + ] + }, + "length": 0.29773606681183895, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34239", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07203", + "bus2": "MVBus07204", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.873007234026652, 48.84148884120062], + [-0.873007234026652, 48.84148884120062], + [-0.873028693247802, 48.84146214108333], + [-0.873059271332494, 48.84142887157235], + [-0.873090433645613, 48.841404599258745], + [-0.87314903914039, 48.841383148822345], + [-0.873225759601226, 48.84136748828711], + [-0.873311628832019, 48.84136687240857], + [-0.873387365404252, 48.84137824121766], + [-0.87347070999812, 48.84140199774015], + [-0.873521461135424, 48.84142756881493], + [-0.873569533929123, 48.84145412060402], + [-0.873631653450116, 48.841465874542116], + [-0.873671242842053, 48.84146656069455], + [-0.873675944485619, 48.84146590316994], + [-0.873675944485619, 48.84146590316994] + ] + }, + "length": 0.05800011596560066, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43531", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07204", + "bus2": "MVBus07205", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.873675944485619, 48.84146590316994], + [-0.873675944485619, 48.84146590316994], + [-0.87614693743563, 48.841118743702616], + [-0.876294976468256, 48.841088472969375], + [-0.876293704382707, 48.841087077107254], + [-0.876293704382707, 48.841087077107254] + ] + }, + "length": 0.1970012070090857, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39505", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07205", + "bus2": "MVLV14202", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876293704382707, 48.841087077107254], + [-0.876293704382707, 48.841087077107254], + [-0.875801635325687, 48.84054431672589], + [-0.875755736316278, 48.84046729920373], + [-0.87563047253042, 48.84032231683844], + [-0.875336553754776, 48.84001555978465], + [-0.875138041651559, 48.83985553522315], + [-0.874939079648074, 48.839772924400776], + [-0.874927729253643, 48.83981979777247], + [-0.874927230280244, 48.83982186209571], + [-0.874916570160602, 48.839830820933166], + [-0.874905311669654, 48.839830229741395] + ] + }, + "length": 0.18550175870020472, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39512", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14202", + "bus2": "MVBus08702", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.874905311669654, 48.839830229741395], + [-0.874894053178706, 48.83982963854963], + [-0.874884152119823, 48.83981785243795], + [-0.874878841031003, 48.839811528356755], + [-0.87489979176762, 48.83971372712899], + [-0.875166300137308, 48.839828633158874], + [-0.87537605670389, 48.83999375119793], + [-0.875669352047677, 48.84031221847985], + [-0.875798835746705, 48.84045888590148], + [-0.875844609925364, 48.840534107780144], + [-0.876341977157856, 48.8410772556702], + [-0.876492203069748, 48.84105368987994], + [-0.876492203069748, 48.84105368987994] + ] + }, + "length": 0.21186886508195796, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38943", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08702", + "bus2": "MVBus08703", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876492203069748, 48.84105368987994], + [-0.876492203069748, 48.84105368987994], + [-0.876495874028596, 48.84105311403799], + [-0.876518913112242, 48.841135272931126], + [-0.876488077688784, 48.84114544221755], + [-0.876451654357169, 48.8411679145853], + [-0.876689117189963, 48.841427008610744], + [-0.876689117189963, 48.841427008610744] + ] + }, + "length": 0.04943394118866002, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47195", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08703", + "bus2": "MVBus08704", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876689117189963, 48.841427008610744], + [-0.876689117189963, 48.841427008610744], + [-0.876715779516786, 48.84145658387014], + [-0.876715779516786, 48.84145658387014] + ] + }, + "length": 0.003827218082576422, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08704", + "bus2": "MVBus08705", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.876715779516786, 48.84145658387014], + [-0.876715779516786, 48.84145658387014], + [-0.876921910227358, 48.841679320106984], + [-0.876881552107111, 48.84173021505582], + [-0.875596693390097, 48.841995495403836], + [-0.875618931920973, 48.8420394563213], + [-0.875489653542762, 48.84206794249989], + [-0.875486723189695, 48.84207013540643], + [-0.875473232182965, 48.84208025906252], + [-0.875473232182965, 48.84208025906252] + ] + }, + "length": 0.15121557062525562, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43092", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04323", + "bus2": "MVLV17336", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.860106265907068, 48.853379550930796], + [-0.860106265907068, 48.853379550930796], + [-0.860112973852066, 48.853385325374795], + [-0.860284997954703, 48.85348422726446], + [-0.86031822396588, 48.85388370373491], + [-0.860213147252814, 48.85394318393929], + [-0.860277750652852, 48.8547380215247], + [-0.860337470882132, 48.854891668341494], + [-0.860688093091416, 48.855843519013675], + [-0.860827465146773, 48.85620048575599], + [-0.860875436691069, 48.85628229138118], + [-0.860924986486662, 48.856343276583026], + [-0.861073201614667, 48.85648117973047], + [-0.861283333858406, 48.85660940513099], + [-0.861500693050619, 48.856701420811575], + [-0.861712935684085, 48.85675667685235], + [-0.861647319373766, 48.8568166270699], + [-0.861647365349113, 48.85681936025709], + [-0.861645231472531, 48.8568329367829], + [-0.8616552619450155, 48.85683610333325] + ] + }, + "length": 0.43128229512606414, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17336", + "bus2": "MVBus04731", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8616552619450155, 48.85683610333325], + [-0.8616652924175, 48.8568392698836], + [-0.861682714956507, 48.85683222662069], + [-0.861688686801552, 48.856829817483856], + [-0.861695722418727, 48.856826975001795], + [-0.861707674408914, 48.85675823038369], + [-0.861792186526136, 48.856707603801034], + [-0.861893013080362, 48.85672519623623], + [-0.862694924872872, 48.85673387122094], + [-0.86292437714827, 48.856750569604074], + [-0.863182873633129, 48.85680362651025], + [-0.863693528154539, 48.8569810220965], + [-0.863855818413339, 48.857001673903724], + [-0.863918222964227, 48.85700255077768], + [-0.863918222964227, 48.85700255077768] + ] + }, + "length": 0.18105763300261443, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35221", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04731", + "bus2": "MVBus04732", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863918222964227, 48.85700255077768], + [-0.863918222964227, 48.85700255077768], + [-0.863966461523803, 48.85699013633603], + [-0.86397193271409, 48.85699132048057], + [-0.863976793703651, 48.85699542635625], + [-0.86397844410508, 48.85699963653583], + [-0.863980238431354, 48.85700595662856], + [-0.863976038582072, 48.85706222419284], + [-0.863763541152754, 48.857926554849435], + [-0.863762652584391, 48.85793512380676], + [-0.863762652584391, 48.85793512380676] + ] + }, + "length": 0.1105963897080451, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47847", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04732", + "bus2": "MVLV00093", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863762652584391, 48.85793512380676], + [-0.863762652584391, 48.85793512380676], + [-0.863652098146194, 48.85797020715481], + [-0.863644249366891, 48.85797467268345], + [-0.86363988513144, 48.857978612792806], + [-0.863636561543085, 48.857982848741585], + [-0.863635174335102, 48.8579870956023], + [-0.863635321052109, 48.857996536209306], + [-0.863629454090578, 48.85801963068446], + [-0.863607983625426, 48.85808739905594], + [-0.863598662759524, 48.858132488730874], + [-0.86358807516244, 48.85820717838946], + [-0.863583042207501, 48.85823274200076], + [-0.86356619935817, 48.858307240000826], + [-0.863557061976745, 48.85834757547212], + [-0.863540696178101, 48.85841986590374], + [-0.863527748120029, 48.85848789986443], + [-0.863516757163843, 48.858539501671636], + [-0.863507366526449, 48.85858368471885], + [-0.863504166097039, 48.85859874709582], + [-0.863494606206984, 48.85866094228821], + [-0.863490600465937, 48.858687026956055], + [-0.863492869319609, 48.85873635644208], + [-0.863498292409483, 48.85877649840076], + [-0.863505424396394, 48.85881958969367], + [-0.863528945280578, 48.85889077197597], + [-0.863532594689243, 48.858901746484285], + [-0.863554142463127, 48.85894649210044], + [-0.863614476471104, 48.85903367601244], + [-0.863620638428401, 48.85903655062091], + [-0.863627838730102, 48.859038138045726], + [-0.863634641177402, 48.85903835995974], + [-0.863643098779868, 48.85903779081348], + [-0.863651512275242, 48.85903672813808], + [-0.863712938803964, 48.85902261014858], + [-0.863779140442815, 48.85900149173398], + [-0.863832855496586, 48.858981041754475], + [-0.863996296445628, 48.85892287706804], + [-0.864067599774143, 48.85890358220162], + [-0.864068498293527, 48.858903342170414], + [-0.864080807594573, 48.858900024970026], + [-0.864077991992518, 48.858894496901186] + ] + }, + "length": 0.16785434440432762, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37894", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00093", + "bus2": "MVBus05173", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.864077991992518, 48.858894496901186], + [-0.864075176390463, 48.85888896883235], + [-0.864061426670129, 48.85889280148125], + [-0.863989047566625, 48.85891299776108], + [-0.863982227369626, 48.8589153578539], + [-0.863820345645456, 48.85897117793674], + [-0.863770857072501, 48.85899097460846], + [-0.863706983003681, 48.859011373830896], + [-0.863640560369019, 48.85902626474628], + [-0.863633336031125, 48.859026054173206], + [-0.86362889058395, 48.85902514826085], + [-0.863626207046427, 48.85902253094914], + [-0.863596581247106, 48.858980970769636], + [-0.86356924196568, 48.858936039033715], + [-0.863565248690335, 48.858927664273004], + [-0.863556427941519, 48.85891219644656], + [-0.8635491969277, 48.85889730652924], + [-0.863535602952256, 48.85885178044349], + [-0.863524606510693, 48.85882293285934], + [-0.863523300198474, 48.85881634779683], + [-0.86351820872964, 48.858790849461954], + [-0.863512688026298, 48.858744269848145], + [-0.863511328118163, 48.85872776495653], + [-0.863509889980825, 48.85871043464547], + [-0.863509766040245, 48.85868634989009], + [-0.863514793863072, 48.858650325473164], + [-0.863523377386478, 48.858588876106815], + [-0.863541758516472, 48.85850440651901], + [-0.863558944631487, 48.8584160383125], + [-0.86358975916166, 48.858276618017285], + [-0.863601312713498, 48.858227285747546], + [-0.863616550127998, 48.85813297035221], + [-0.863626241208668, 48.85809034429648], + [-0.863647493919965, 48.85801485523275], + [-0.863654123033808, 48.85799129952321], + [-0.863655719669438, 48.857986912110476], + [-0.863659609404082, 48.8579841181018], + [-0.863663824347541, 48.85798151323684], + [-0.863754139523726, 48.857952011045036], + [-0.863764406091378, 48.857949171538266], + [-0.863767699851741, 48.857948426374094], + [-0.863770978085763, 48.85794742977247], + [-0.863772695150138, 48.85794653810193], + [-0.863774645581598, 48.85794501052119], + [-0.863774645581598, 48.85794501052119] + ] + }, + "length": 0.16391793277881303, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46083", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05173", + "bus2": "MVBus05174", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.863774645581598, 48.85794501052119], + [-0.863774645581598, 48.85794501052119], + [-0.863776138998672, 48.85792923844988], + [-0.86377796201692, 48.85792189465115], + [-0.863990567148061, 48.85706637598586], + [-0.863993841022684, 48.85701012432034], + [-0.863995215438887, 48.85700280156644], + [-0.864145676144476, 48.85700715758124], + [-0.864145676144476, 48.85700715758124] + ] + }, + "length": 0.11712757505255547, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41408", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05174", + "bus2": "MVBus05175", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.864145676144476, 48.85700715758124], + [-0.864145676144476, 48.85700715758124], + [-0.864728212747039, 48.8570114897373], + [-0.864874424283763, 48.85701215428628], + [-0.865019678090283, 48.85699753522224], + [-0.865158661585753, 48.85696769446948], + [-0.865158661585753, 48.85696769446948] + ] + }, + "length": 0.07498646770260328, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34243", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05175", + "bus2": "MVBus05176", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.865158661585753, 48.85696769446948], + [-0.865158661585753, 48.85696769446948], + [-0.865239863600235, 48.85695378132356], + [-0.86533921910663, 48.85693032208085], + [-0.865356650561167, 48.856916810749716], + [-0.865359827595317, 48.85691594275052], + [-0.865356031015941, 48.8569050172066], + [-0.865356031015941, 48.8569050172066] + ] + }, + "length": 0.017371955947210974, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47051", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03394", + "bus2": "MVLV16267", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8600627007696874, 48.85333737772175], + [-0.860051120719812, 48.85334623976728], + [-0.860055956692353, 48.853359233361104], + [-0.860060695512664, 48.853371977708335], + [-0.860060013612219, 48.85337418176287], + [-0.860044505754894, 48.85338418668452], + [-0.860040419883453, 48.85338512392681], + [-0.860033692009081, 48.85338366753167], + [-0.860029232393533, 48.85338119677501], + [-0.86001853756168, 48.85337575425656], + [-0.86001853756168, 48.85337575425656] + ] + }, + "length": 0.007044467725210111, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV03394_production", + "bus": "MVLV03394", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03394_consumption", + "bus": "MVLV03394", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV16339_production", + "bus": "MVLV16339", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16339_consumption", + "bus": "MVLV16339", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV06613_production", + "bus": "MVLV06613", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06613_consumption", + "bus": "MVLV06613", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV07909_production", + "bus": "MVLV07909", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07909_consumption", + "bus": "MVLV07909", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV17318_production", + "bus": "MVLV17318", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17318_consumption", + "bus": "MVLV17318", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV00077_production", + "bus": "MVLV00077", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00077_consumption", + "bus": "MVLV00077", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV14187_production", + "bus": "MVLV14187", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14187_consumption", + "bus": "MVLV14187", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV06614_production", + "bus": "MVLV06614", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06614_consumption", + "bus": "MVLV06614", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV16352_production", + "bus": "MVLV16352", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16352_consumption", + "bus": "MVLV16352", + "phases": "abc", + "powers": [ + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667] + ] + }, + { + "id": "MVLV17323_production", + "bus": "MVLV17323", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17323_consumption", + "bus": "MVLV17323", + "phases": "abc", + "powers": [ + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667] + ] + }, + { + "id": "MVLV03392_production", + "bus": "MVLV03392", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03392_consumption", + "bus": "MVLV03392", + "phases": "abc", + "powers": [ + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667] + ] + }, + { + "id": "MVLV06627_production", + "bus": "MVLV06627", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06627_consumption", + "bus": "MVLV06627", + "phases": "abc", + "powers": [ + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667] + ] + }, + { + "id": "MVLV19250_production", + "bus": "MVLV19250", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19250_consumption", + "bus": "MVLV19250", + "phases": "abc", + "powers": [ + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667] + ] + }, + { + "id": "MVLV16338_production", + "bus": "MVLV16338", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16338_consumption", + "bus": "MVLV16338", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV07908_production", + "bus": "MVLV07908", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07908_consumption", + "bus": "MVLV07908", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV06624_production", + "bus": "MVLV06624", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06624_consumption", + "bus": "MVLV06624", + "phases": "abc", + "powers": [ + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013] + ] + }, + { + "id": "MVLV06618_production", + "bus": "MVLV06618", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06618_consumption", + "bus": "MVLV06618", + "phases": "abc", + "powers": [ + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667], + [60916.45950326973, 20022.27198249667] + ] + }, + { + "id": "MVLV14197_production", + "bus": "MVLV14197", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14197_consumption", + "bus": "MVLV14197", + "phases": "abc", + "powers": [ + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013] + ] + }, + { + "id": "MVLV17331_production", + "bus": "MVLV17331", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17331_consumption", + "bus": "MVLV17331", + "phases": "abc", + "powers": [ + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013] + ] + }, + { + "id": "MVLV14202_production", + "bus": "MVLV14202", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14202_consumption", + "bus": "MVLV14202", + "phases": "abc", + "powers": [ + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013], + [58391.24369402034, 19192.273683850013] + ] + }, + { + "id": "MVLV17336_production", + "bus": "MVLV17336", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17336_consumption", + "bus": "MVLV17336", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV00093_production", + "bus": "MVLV00093", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00093_consumption", + "bus": "MVLV00093", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + }, + { + "id": "MVLV16267_production", + "bus": "MVLV16267", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16267_consumption", + "bus": "MVLV16267", + "phases": "abc", + "powers": [ + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507], + [88101.17455813523, 28957.455724847507] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder115_Summer.json b/roseau/load_flow/data/networks/MVFeeder115_Summer.json new file mode 100644 index 00000000..e9d41820 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder115_Summer.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.687159292228112, 49.48974276829431] + } + }, + { + "id": "HVMV07", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.687159292228112, 49.48974276829431] + } + }, + { + "id": "MVLV14092", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6650298238154546, 49.46180069059946] + } + }, + { + "id": "MVLV05996", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.626239709998294, 49.43249717368583] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV07", + "geometry": { + "type": "Point", + "coordinates": [-1.687159292228112, 49.48974276829431] + } + }, + { + "id": "MVBranch48268", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV07", + "bus2": "MVLV14092", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.687159292228112, 49.48974276829431], + [-1.687208163893635, 49.48976202984574], + [-1.687208163893635, 49.48976202984574], + [-1.687224018535021, 49.48976805718449], + [-1.687430783993926, 49.48985719226643], + [-1.687541737944976, 49.49016189962252], + [-1.687659173697866, 49.49024117311308], + [-1.687615613788664, 49.4902859241784], + [-1.68675950613287, 49.49078269890351], + [-1.68662118929768, 49.49078901524194], + [-1.684348191361692, 49.491001725794675], + [-1.682879543397161, 49.49116652038543], + [-1.681416891160085, 49.49142531696421], + [-1.680243941448098, 49.49153947086583], + [-1.679307023878961, 49.49160200394196], + [-1.678285723941946, 49.4915860084893], + [-1.677483533549372, 49.49150939278706], + [-1.677277748768471, 49.49141571157867], + [-1.677771968678011, 49.49026822890711], + [-1.677806142259258, 49.49000139344616], + [-1.677647110805917, 49.48895824463737], + [-1.677537129796116, 49.48851120500794], + [-1.677356127071978, 49.488068140126884], + [-1.67729115491888, 49.487240157191806], + [-1.677090163735787, 49.486675278083105], + [-1.677321148850147, 49.48589186973337], + [-1.677429869430512, 49.48368359327891], + [-1.677209720359986, 49.48287438262977], + [-1.676884860721908, 49.48206185870231], + [-1.676106724527331, 49.481461753592455], + [-1.675529096354016, 49.48115435975139], + [-1.674873315966908, 49.48051615929721], + [-1.674312533622679, 49.47935764094288], + [-1.673974167184083, 49.47757250040996], + [-1.673680791981945, 49.477160383214475], + [-1.673392740984098, 49.476816136590884], + [-1.672944069166365, 49.476021328640364], + [-1.673761322344521, 49.4741909262947], + [-1.674781032160666, 49.47201354701551], + [-1.67567987985738, 49.470159987009836], + [-1.676203375966493, 49.46871358586538], + [-1.67701105581831, 49.46689707685337], + [-1.676879701981912, 49.46681979510555], + [-1.674470429452406, 49.466852395138005], + [-1.670455470981454, 49.46690662200656], + [-1.669502378959354, 49.46687479188464], + [-1.668227991572027, 49.4667334382557], + [-1.666850849753254, 49.46647980454698], + [-1.665210005131523, 49.46605799326564], + [-1.663956799995638, 49.46578660275987], + [-1.66296732733047, 49.46568336606076], + [-1.660861689875882, 49.4657260332333], + [-1.658235032053802, 49.465779204099725], + [-1.659936765935147, 49.464844906008366], + [-1.661544399709459, 49.46396221764614], + [-1.664333945847665, 49.462330960840106], + [-1.665001984512108, 49.461940285883294], + [-1.66499793038946, 49.461831430434415], + [-1.664997490891627, 49.46181945594003], + [-1.6650298238154546, 49.46180069059946] + ] + }, + "length": 5.766634582124083, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "MVBranch39083", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14092", + "bus2": "MVLV05996", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6650298238154546, 49.46180069059946], + [-1.665062156739282, 49.46178192525889], + [-1.665079299356057, 49.4617743944145], + [-1.665922748216245, 49.461403834739585], + [-1.666675164238545, 49.46103161687154], + [-1.667064096088348, 49.46071716466963], + [-1.667486059341152, 49.460287397012266], + [-1.668469000759015, 49.45959226949676], + [-1.66754867205653, 49.458937567424314], + [-1.667279192030924, 49.45871809227462], + [-1.666020022033455, 49.45677715913894], + [-1.665955712160401, 49.45631329262616], + [-1.66588591301336, 49.45605764245268], + [-1.665787565973307, 49.45593483065401], + [-1.665642711710583, 49.45561653869461], + [-1.665570185070392, 49.45514739523584], + [-1.665457808502842, 49.45478564343815], + [-1.664864575924415, 49.454010405843526], + [-1.664801086071352, 49.45377534858149], + [-1.664778383422543, 49.45353204676319], + [-1.664750928695544, 49.45344309835057], + [-1.664715044966024, 49.45337745494814], + [-1.664365400324017, 49.45300360777296], + [-1.663941262278689, 49.45267391275986], + [-1.6634575633963, 49.452358768207674], + [-1.662521012730601, 49.45178915819017], + [-1.662318507761525, 49.45168717860438], + [-1.662154729392529, 49.451616993429845], + [-1.661519261766548, 49.45138601063132], + [-1.660746542391683, 49.45113043891435], + [-1.659732007492689, 49.450745195023444], + [-1.659630090963317, 49.45069721112411], + [-1.659479016903996, 49.45055728312873], + [-1.65939166493412, 49.45049086350554], + [-1.65926776530641, 49.450435891699996], + [-1.658544711531244, 49.45025901231274], + [-1.657499108646347, 49.449969498194974], + [-1.65617302732469, 49.44970401539244], + [-1.655824131670615, 49.449674010566724], + [-1.655161313518678, 49.44964496579746], + [-1.654836327774363, 49.44963072385811], + [-1.65453558052459, 49.449658768644085], + [-1.653547096409656, 49.44997256911071], + [-1.651951099735394, 49.45035437462746], + [-1.651396900353868, 49.45043668334064], + [-1.651188754480879, 49.450396689008315], + [-1.651093682339142, 49.45028290462896], + [-1.650970813937655, 49.44988824655155], + [-1.65071667345514, 49.44901788331174], + [-1.650511520914955, 49.44875037303698], + [-1.650360399216343, 49.447810023528945], + [-1.650290256698077, 49.4472809734883], + [-1.649860859039988, 49.44654938680829], + [-1.649937134617494, 49.44627894513112], + [-1.650009567025331, 49.44604171091064], + [-1.65001874924865, 49.44586201915364], + [-1.649882344906865, 49.44543712796742], + [-1.649452852837525, 49.44490904351998], + [-1.648990621610768, 49.44453563386657], + [-1.648662112342258, 49.4441705150223], + [-1.648472910984314, 49.44401539444214], + [-1.648221925864255, 49.44389462492231], + [-1.64800996890672, 49.443855795237404], + [-1.646433377364146, 49.44410436462664], + [-1.646241415644245, 49.44409683561565], + [-1.645943952141011, 49.44290021976039], + [-1.645820152637303, 49.44284202059801], + [-1.645589363666875, 49.44279951041141], + [-1.643094734213601, 49.44207662719116], + [-1.642607529304422, 49.44212580783593], + [-1.641815225315199, 49.44240925374231], + [-1.641306202273998, 49.44249083600409], + [-1.640739856643976, 49.442403610306684], + [-1.639766478477356, 49.44218858877706], + [-1.639408213269007, 49.44222395588984], + [-1.6387319609021, 49.4423974098495], + [-1.638662137299313, 49.44234657774967], + [-1.638614129523796, 49.44233120867681], + [-1.638556321971131, 49.44232197326178], + [-1.638448284120058, 49.442067445183206], + [-1.637839502846353, 49.44025014453263], + [-1.637675404893065, 49.439501953456734], + [-1.636815393816563, 49.438525216377904], + [-1.636451394016763, 49.43811485473001], + [-1.636161528623046, 49.437696622618816], + [-1.635938867821376, 49.43737535074427], + [-1.635852394011747, 49.43702994235667], + [-1.635805046474285, 49.43641960721379], + [-1.635918174025514, 49.43466680352085], + [-1.635959897762616, 49.43317086906634], + [-1.635993133167653, 49.43197851371761], + [-1.636008229846451, 49.43078007274172], + [-1.63395592797031, 49.43091142678521], + [-1.630159384376024, 49.43110589408643], + [-1.626316521869996, 49.43133379348475], + [-1.626677826001981, 49.43204211302102], + [-1.62645933724806, 49.432098871702124], + [-1.626137691403677, 49.43242237277039], + [-1.626220660544817, 49.432483212250645], + [-1.626239709998294, 49.43249717368583], + [-1.626239709998294, 49.43249717368583] + ] + }, + "length": 6.070765210726548, + "params_id": "S_AL_240", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV14092_production", + "bus": "MVLV14092", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14092_consumption", + "bus": "MVLV14092", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05996_production", + "bus": "MVLV05996", + "phases": "abc", + "powers": [ + [-3333333.3333333335, 0.0], + [-3333333.3333333335, 0.0], + [-3333333.3333333335, 0.0] + ] + }, + { + "id": "MVLV05996_consumption", + "bus": "MVLV05996", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_240", + "z_line": [ + [ + [0.12499999999999999, 0.0, 0.0], + [0.0, 0.12499999999999999, 0.0], + [0.0, 0.0, 0.12499999999999999] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00018346901096964396, 0.0, 0.0], + [0.0, 0.00018346901096964396, 0.0], + [0.0, 0.0, 0.00018346901096964396] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder115_Winter.json b/roseau/load_flow/data/networks/MVFeeder115_Winter.json new file mode 100644 index 00000000..508aab3c --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder115_Winter.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.687159292228112, 49.48974276829431] + } + }, + { + "id": "HVMV07", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.687159292228112, 49.48974276829431] + } + }, + { + "id": "MVLV14092", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6650298238154546, 49.46180069059946] + } + }, + { + "id": "MVLV05996", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.626239709998294, 49.43249717368583] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV07", + "geometry": { + "type": "Point", + "coordinates": [-1.687159292228112, 49.48974276829431] + } + }, + { + "id": "MVBranch48268", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV07", + "bus2": "MVLV14092", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.687159292228112, 49.48974276829431], + [-1.687208163893635, 49.48976202984574], + [-1.687208163893635, 49.48976202984574], + [-1.687224018535021, 49.48976805718449], + [-1.687430783993926, 49.48985719226643], + [-1.687541737944976, 49.49016189962252], + [-1.687659173697866, 49.49024117311308], + [-1.687615613788664, 49.4902859241784], + [-1.68675950613287, 49.49078269890351], + [-1.68662118929768, 49.49078901524194], + [-1.684348191361692, 49.491001725794675], + [-1.682879543397161, 49.49116652038543], + [-1.681416891160085, 49.49142531696421], + [-1.680243941448098, 49.49153947086583], + [-1.679307023878961, 49.49160200394196], + [-1.678285723941946, 49.4915860084893], + [-1.677483533549372, 49.49150939278706], + [-1.677277748768471, 49.49141571157867], + [-1.677771968678011, 49.49026822890711], + [-1.677806142259258, 49.49000139344616], + [-1.677647110805917, 49.48895824463737], + [-1.677537129796116, 49.48851120500794], + [-1.677356127071978, 49.488068140126884], + [-1.67729115491888, 49.487240157191806], + [-1.677090163735787, 49.486675278083105], + [-1.677321148850147, 49.48589186973337], + [-1.677429869430512, 49.48368359327891], + [-1.677209720359986, 49.48287438262977], + [-1.676884860721908, 49.48206185870231], + [-1.676106724527331, 49.481461753592455], + [-1.675529096354016, 49.48115435975139], + [-1.674873315966908, 49.48051615929721], + [-1.674312533622679, 49.47935764094288], + [-1.673974167184083, 49.47757250040996], + [-1.673680791981945, 49.477160383214475], + [-1.673392740984098, 49.476816136590884], + [-1.672944069166365, 49.476021328640364], + [-1.673761322344521, 49.4741909262947], + [-1.674781032160666, 49.47201354701551], + [-1.67567987985738, 49.470159987009836], + [-1.676203375966493, 49.46871358586538], + [-1.67701105581831, 49.46689707685337], + [-1.676879701981912, 49.46681979510555], + [-1.674470429452406, 49.466852395138005], + [-1.670455470981454, 49.46690662200656], + [-1.669502378959354, 49.46687479188464], + [-1.668227991572027, 49.4667334382557], + [-1.666850849753254, 49.46647980454698], + [-1.665210005131523, 49.46605799326564], + [-1.663956799995638, 49.46578660275987], + [-1.66296732733047, 49.46568336606076], + [-1.660861689875882, 49.4657260332333], + [-1.658235032053802, 49.465779204099725], + [-1.659936765935147, 49.464844906008366], + [-1.661544399709459, 49.46396221764614], + [-1.664333945847665, 49.462330960840106], + [-1.665001984512108, 49.461940285883294], + [-1.66499793038946, 49.461831430434415], + [-1.664997490891627, 49.46181945594003], + [-1.6650298238154546, 49.46180069059946] + ] + }, + "length": 5.766634582124083, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "MVBranch39083", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14092", + "bus2": "MVLV05996", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6650298238154546, 49.46180069059946], + [-1.665062156739282, 49.46178192525889], + [-1.665079299356057, 49.4617743944145], + [-1.665922748216245, 49.461403834739585], + [-1.666675164238545, 49.46103161687154], + [-1.667064096088348, 49.46071716466963], + [-1.667486059341152, 49.460287397012266], + [-1.668469000759015, 49.45959226949676], + [-1.66754867205653, 49.458937567424314], + [-1.667279192030924, 49.45871809227462], + [-1.666020022033455, 49.45677715913894], + [-1.665955712160401, 49.45631329262616], + [-1.66588591301336, 49.45605764245268], + [-1.665787565973307, 49.45593483065401], + [-1.665642711710583, 49.45561653869461], + [-1.665570185070392, 49.45514739523584], + [-1.665457808502842, 49.45478564343815], + [-1.664864575924415, 49.454010405843526], + [-1.664801086071352, 49.45377534858149], + [-1.664778383422543, 49.45353204676319], + [-1.664750928695544, 49.45344309835057], + [-1.664715044966024, 49.45337745494814], + [-1.664365400324017, 49.45300360777296], + [-1.663941262278689, 49.45267391275986], + [-1.6634575633963, 49.452358768207674], + [-1.662521012730601, 49.45178915819017], + [-1.662318507761525, 49.45168717860438], + [-1.662154729392529, 49.451616993429845], + [-1.661519261766548, 49.45138601063132], + [-1.660746542391683, 49.45113043891435], + [-1.659732007492689, 49.450745195023444], + [-1.659630090963317, 49.45069721112411], + [-1.659479016903996, 49.45055728312873], + [-1.65939166493412, 49.45049086350554], + [-1.65926776530641, 49.450435891699996], + [-1.658544711531244, 49.45025901231274], + [-1.657499108646347, 49.449969498194974], + [-1.65617302732469, 49.44970401539244], + [-1.655824131670615, 49.449674010566724], + [-1.655161313518678, 49.44964496579746], + [-1.654836327774363, 49.44963072385811], + [-1.65453558052459, 49.449658768644085], + [-1.653547096409656, 49.44997256911071], + [-1.651951099735394, 49.45035437462746], + [-1.651396900353868, 49.45043668334064], + [-1.651188754480879, 49.450396689008315], + [-1.651093682339142, 49.45028290462896], + [-1.650970813937655, 49.44988824655155], + [-1.65071667345514, 49.44901788331174], + [-1.650511520914955, 49.44875037303698], + [-1.650360399216343, 49.447810023528945], + [-1.650290256698077, 49.4472809734883], + [-1.649860859039988, 49.44654938680829], + [-1.649937134617494, 49.44627894513112], + [-1.650009567025331, 49.44604171091064], + [-1.65001874924865, 49.44586201915364], + [-1.649882344906865, 49.44543712796742], + [-1.649452852837525, 49.44490904351998], + [-1.648990621610768, 49.44453563386657], + [-1.648662112342258, 49.4441705150223], + [-1.648472910984314, 49.44401539444214], + [-1.648221925864255, 49.44389462492231], + [-1.64800996890672, 49.443855795237404], + [-1.646433377364146, 49.44410436462664], + [-1.646241415644245, 49.44409683561565], + [-1.645943952141011, 49.44290021976039], + [-1.645820152637303, 49.44284202059801], + [-1.645589363666875, 49.44279951041141], + [-1.643094734213601, 49.44207662719116], + [-1.642607529304422, 49.44212580783593], + [-1.641815225315199, 49.44240925374231], + [-1.641306202273998, 49.44249083600409], + [-1.640739856643976, 49.442403610306684], + [-1.639766478477356, 49.44218858877706], + [-1.639408213269007, 49.44222395588984], + [-1.6387319609021, 49.4423974098495], + [-1.638662137299313, 49.44234657774967], + [-1.638614129523796, 49.44233120867681], + [-1.638556321971131, 49.44232197326178], + [-1.638448284120058, 49.442067445183206], + [-1.637839502846353, 49.44025014453263], + [-1.637675404893065, 49.439501953456734], + [-1.636815393816563, 49.438525216377904], + [-1.636451394016763, 49.43811485473001], + [-1.636161528623046, 49.437696622618816], + [-1.635938867821376, 49.43737535074427], + [-1.635852394011747, 49.43702994235667], + [-1.635805046474285, 49.43641960721379], + [-1.635918174025514, 49.43466680352085], + [-1.635959897762616, 49.43317086906634], + [-1.635993133167653, 49.43197851371761], + [-1.636008229846451, 49.43078007274172], + [-1.63395592797031, 49.43091142678521], + [-1.630159384376024, 49.43110589408643], + [-1.626316521869996, 49.43133379348475], + [-1.626677826001981, 49.43204211302102], + [-1.62645933724806, 49.432098871702124], + [-1.626137691403677, 49.43242237277039], + [-1.626220660544817, 49.432483212250645], + [-1.626239709998294, 49.43249717368583], + [-1.626239709998294, 49.43249717368583] + ] + }, + "length": 6.070765210726548, + "params_id": "S_AL_240", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV14092_production", + "bus": "MVLV14092", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14092_consumption", + "bus": "MVLV14092", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05996_production", + "bus": "MVLV05996", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05996_consumption", + "bus": "MVLV05996", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_240", + "z_line": [ + [ + [0.12499999999999999, 0.0, 0.0], + [0.0, 0.12499999999999999, 0.0], + [0.0, 0.0, 0.12499999999999999] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00018346901096964396, 0.0, 0.0], + [0.0, 0.00018346901096964396, 0.0], + [0.0, 0.0, 0.00018346901096964396] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder128_Summer.json b/roseau/load_flow/data/networks/MVFeeder128_Summer.json new file mode 100644 index 00000000..6746293d --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder128_Summer.json @@ -0,0 +1,2447 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.446077484045924, 49.034241235768725] + } + }, + { + "id": "HVMV09", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.446077484045924, 49.034241235768725] + } + }, + { + "id": "MVBus00916", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.445903151201629, 49.03333590409346] + } + }, + { + "id": "MVBus00917", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.447048659446956, 49.03194944491505] + } + }, + { + "id": "MVBus00918", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.448327090288608, 49.031163231442164] + } + }, + { + "id": "MVBus00919", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.44905973033842, 49.03077803898317] + } + }, + { + "id": "MVBus00920", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.46220824503751, 49.029201861100134] + } + }, + { + "id": "MVBus00921", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461736098180515, 49.03010660944954] + } + }, + { + "id": "MVBus00922", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461764829853785, 49.031439486446786] + } + }, + { + "id": "MVBus00923", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461397716173976, 49.033603497990065] + } + }, + { + "id": "MVBus00924", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461516985174621, 49.035477339466745] + } + }, + { + "id": "MVBus00925", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.463937029008645, 49.043696863573665] + } + }, + { + "id": "MVBus00926", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.463995464115393, 49.046275309101084] + } + }, + { + "id": "MVBus00927", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.487571747077065, 49.052234116603024] + } + }, + { + "id": "MVLV06709", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5210751434046905, 49.05368710146948] + } + }, + { + "id": "MVBus23996", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527305659304398, 49.050631392784375] + } + }, + { + "id": "MVBus23998", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530799108036813, 49.05005551741369] + } + }, + { + "id": "MVLV16847", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5390729458236736, 49.04797870565177] + } + }, + { + "id": "MVBus28325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542619622656282, 49.04779553766782] + } + }, + { + "id": "MVBus28327", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542770401208704, 49.04781922444621] + } + }, + { + "id": "MVBus28328", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544702393697539, 49.04846880559844] + } + }, + { + "id": "MVLV07026", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544752904038435, 49.04845138404925] + } + }, + { + "id": "MVBus28330", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542862708504378, 49.04736940703681] + } + }, + { + "id": "MVBus28331", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543922806647433, 49.046880850250076] + } + }, + { + "id": "MVLV03204", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544018357653604, 49.04697501147895] + } + }, + { + "id": "MVBus30451", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543968182557054, 49.04686214725682] + } + }, + { + "id": "MVBus30452", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544605930612236, 49.04663486061268] + } + }, + { + "id": "MVBus30453", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548385077336012, 49.04625140406671] + } + }, + { + "id": "MVLV06428", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549997403449801, 49.04903588566835] + } + }, + { + "id": "MVBus30454", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548795047362359, 49.04590439339881] + } + }, + { + "id": "MVLV10304", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548856389053909, 49.04604765320563] + } + }, + { + "id": "MVLV19090", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.55881269212674, 49.04125814200877] + } + }, + { + "id": "MVBus35324", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.559514529559971, 49.04118696896896] + } + }, + { + "id": "MVBus35325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.561893552787597, 49.04154118410379] + } + }, + { + "id": "MVLV07041", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.56199895611086, 49.04162613053569] + } + }, + { + "id": "MVBus35326", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564656394675905, 49.0399616456111] + } + }, + { + "id": "MVBus35327", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.56889755134967, 49.03931854303925] + } + }, + { + "id": "MVLV12057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5732046465483145, 49.03784077453285] + } + }, + { + "id": "MVBus38707", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.575603504890467, 49.03309437846214] + } + }, + { + "id": "MVBus38708", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.575415481427542, 49.02875745070805] + } + }, + { + "id": "MVLV10414", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.573983343738142, 49.02677037365746] + } + }, + { + "id": "MVBus38709", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.586163645822428, 49.02561765715403] + } + }, + { + "id": "MVLV14661", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.575820358399386, 49.03313333990028] + } + }, + { + "id": "MVLV18001", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.568312137481616, 49.03765478152067] + } + }, + { + "id": "MVLV06710", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564732788462391, 49.039903908577465] + } + }, + { + "id": "MVBus30458", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544615426108271, 49.04665466011679] + } + }, + { + "id": "MVLV18902", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542632731877063, 49.0478457642589] + } + }, + { + "id": "MVLV13802", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530576179130021, 49.05011528391853] + } + }, + { + "id": "MVLV10305", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527356876822457, 49.05063026709952] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV09", + "geometry": { + "type": "Point", + "coordinates": [-1.446077484045924, 49.034241235768725] + } + }, + { + "id": "MVBranch44642", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV09", + "bus2": "MVBus00916", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.446077484045924, 49.034241235768725], + [-1.446089321542839, 49.03419419641659], + [-1.446089321542839, 49.03419419641659], + [-1.44609019272388, 49.03416313115167], + [-1.446076988694361, 49.034047891233236], + [-1.445614044006718, 49.03390884749059], + [-1.44601396527957, 49.03341359656575], + [-1.445875189552959, 49.033373333096414], + [-1.445903151201629, 49.03333590409346], + [-1.445903151201629, 49.03333590409346] + ] + }, + "length": 0.13161178225571488, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41155", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00916", + "bus2": "MVBus00917", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.445903151201629, 49.03333590409346], + [-1.445903151201629, 49.03333590409346], + [-1.446053327345197, 49.033134899957865], + [-1.446469116526517, 49.03261265880293], + [-1.446826395935171, 49.03215974247694], + [-1.447048659446956, 49.03194944491505], + [-1.447048659446956, 49.03194944491505] + ] + }, + "length": 0.17568267802562318, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43162", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00917", + "bus2": "MVBus00918", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.447048659446956, 49.03194944491505], + [-1.447048659446956, 49.03194944491505], + [-1.447187370746948, 49.03181820967314], + [-1.44768981615452, 49.03142818254009], + [-1.448042929122802, 49.031192523161145], + [-1.448248689332893, 49.03119920976466], + [-1.448327090288608, 49.031163231442164], + [-1.448327090288608, 49.031163231442164] + ] + }, + "length": 0.13346570850969364, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37533", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00918", + "bus2": "MVBus00919", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.448327090288608, 49.031163231442164], + [-1.448327090288608, 49.031163231442164], + [-1.44866677092218, 49.03097900565769], + [-1.44905973033842, 49.03077803898317], + [-1.44905973033842, 49.03077803898317] + ] + }, + "length": 0.06860263079628186, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00919", + "bus2": "MVBus00920", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.44905973033842, 49.03077803898317], + [-1.44905973033842, 49.03077803898317], + [-1.44945519479327, 49.03061501057651], + [-1.449518020860817, 49.03059857965217], + [-1.449576707037814, 49.03060032685851], + [-1.449661317807766, 49.03063133640318], + [-1.449740616412923, 49.03066490735919], + [-1.449810778534484, 49.03067351481081], + [-1.449871385301471, 49.03060181673669], + [-1.449897974891566, 49.030590142001756], + [-1.449928913280018, 49.03058795561711], + [-1.449976374531152, 49.03058645091119], + [-1.450037737732442, 49.03057488819762], + [-1.450142110773407, 49.03055112105596], + [-1.450258595639544, 49.030524603723094], + [-1.450351927360375, 49.03051800089154], + [-1.450531603631356, 49.030523135473125], + [-1.450850227809575, 49.03055152780828], + [-1.451276856437632, 49.03055604498573], + [-1.451728063103816, 49.03052128509536], + [-1.452093620252944, 49.03046637140379], + [-1.452424824749186, 49.03039210637347], + [-1.45244680029795, 49.0303673435888], + [-1.45249649637903, 49.03034651448132], + [-1.452555589015656, 49.03032900382792], + [-1.452684314838213, 49.030312891508714], + [-1.452796252986193, 49.030292489566406], + [-1.452935936718546, 49.030267041800165], + [-1.452971911245631, 49.03026767266503], + [-1.453107058137133, 49.03023931883264], + [-1.453129040909092, 49.0302398268357], + [-1.453563875862572, 49.030181513734846], + [-1.453927458963233, 49.03014952603635], + [-1.454684284019186, 49.03001601643393], + [-1.4556041114158, 49.02983522273534], + [-1.45633528749164, 49.029701320231226], + [-1.456599470815935, 49.029636386894715], + [-1.456859884566635, 49.02954510491541], + [-1.457216958094627, 49.029449546392286], + [-1.457657695862679, 49.02939704018672], + [-1.457952697401475, 49.02937805056121], + [-1.458543529630631, 49.02937611885037], + [-1.459418890113739, 49.02941205804522], + [-1.4595588367873, 49.02939918914138], + [-1.459647808524431, 49.02939100818684], + [-1.45981173834437, 49.02935505624181], + [-1.459977955563748, 49.029301650035116], + [-1.46007702482525, 49.0292804536462], + [-1.460185843302788, 49.02926736800293], + [-1.460367080607095, 49.02926883046293], + [-1.460804929187744, 49.02927234486838], + [-1.46094192158442, 49.029273449924396], + [-1.461061860422605, 49.029262375975044], + [-1.461209953194966, 49.02923601216176], + [-1.461492302710045, 49.02916928451514], + [-1.461874652308826, 49.02906930026454], + [-1.461994303421172, 49.02902940055602], + [-1.462033715309178, 49.02899325838838], + [-1.462039050386169, 49.028941358516114], + [-1.462002487375867, 49.028891987799454], + [-1.462061373216727, 49.02884680544972], + [-1.462112364275487, 49.02889330616393], + [-1.46220824503751, 49.029201861100134], + [-1.46220824503751, 49.029201861100134] + ] + }, + "length": 1.0533444699184005, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44628", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00920", + "bus2": "MVBus00921", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.46220824503751, 49.029201861100134], + [-1.46220824503751, 49.029201861100134], + [-1.462290390398361, 49.02946968459122], + [-1.462371704516555, 49.029572213825645], + [-1.462402626709977, 49.02965815490035], + [-1.462401320349518, 49.029723898258666], + [-1.462339844977394, 49.02980772229685], + [-1.462271825440518, 49.02984425267264], + [-1.462051101816434, 49.029936173574164], + [-1.461815657267072, 49.03005787295793], + [-1.461736098180515, 49.03010660944954], + [-1.461736098180515, 49.03010660944954] + ] + }, + "length": 0.1261069012522324, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35802", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00921", + "bus2": "MVBus00922", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461736098180515, 49.03010660944954], + [-1.461736098180515, 49.03010660944954], + [-1.461688708940827, 49.03014852003263], + [-1.461636165584485, 49.03022303603474], + [-1.4616182930593, 49.03028752484309], + [-1.461595620092388, 49.03042997738192], + [-1.461598743787536, 49.03059539637252], + [-1.461611710527563, 49.03073075976338], + [-1.461604314478343, 49.03089062052405], + [-1.461584532035902, 49.0310785125175], + [-1.461592122187334, 49.031202162416], + [-1.461610475380447, 49.031287801540905], + [-1.461657194212456, 49.0313695697353], + [-1.461710376473961, 49.031416441731], + [-1.461764829853785, 49.031439486446786], + [-1.461764829853785, 49.031439486446786] + ] + }, + "length": 0.15470776890167054, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44629", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00922", + "bus2": "MVBus00923", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461764829853785, 49.031439486446786], + [-1.461764829853785, 49.031439486446786], + [-1.461860958343164, 49.03148037735713], + [-1.461943203005254, 49.03155553671749], + [-1.461961166928875, 49.0316258310834], + [-1.461930122452196, 49.03176254009382], + [-1.461830112763931, 49.032079204786434], + [-1.461618693822098, 49.03268167812438], + [-1.461554088632036, 49.03287256955884], + [-1.46149220999655, 49.033155408592826], + [-1.461455604951194, 49.03332276525344], + [-1.461397716173976, 49.033603497990065], + [-1.461397716173976, 49.033603497990065] + ] + }, + "length": 0.2505341950033376, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40644", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00923", + "bus2": "MVBus00924", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461397716173976, 49.033603497990065], + [-1.461397716173976, 49.033603497990065], + [-1.461374334072053, 49.03373633729623], + [-1.461313027865901, 49.03419124299641], + [-1.461339950046074, 49.03472244037516], + [-1.461430258548458, 49.03515735668398], + [-1.461516985174621, 49.035477339466745], + [-1.461516985174621, 49.035477339466745] + ] + }, + "length": 0.209729608293412, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36669", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00924", + "bus2": "MVBus00925", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461516985174621, 49.035477339466745], + [-1.461516985174621, 49.035477339466745], + [-1.461636332041758, 49.03583319748804], + [-1.461816284715681, 49.03634269548755], + [-1.462016424917492, 49.03693273545428], + [-1.462146034652944, 49.03720964603532], + [-1.462095133531544, 49.03748604452549], + [-1.462084116795383, 49.03772371318449], + [-1.461985445551021, 49.03825455769082], + [-1.461950971820154, 49.038302489626595], + [-1.461974505019591, 49.038364194840355], + [-1.46212063599448, 49.038478202386436], + [-1.462193923769989, 49.03863511842277], + [-1.462168237053737, 49.038673405629154], + [-1.462180093910419, 49.03876983066938], + [-1.46243221826143, 49.03903347017005], + [-1.46263604146269, 49.03928615826684], + [-1.462766500065885, 49.0395099526952], + [-1.462851100287034, 49.03969149170124], + [-1.462989132345855, 49.04040528968407], + [-1.463040807545705, 49.04067251449128], + [-1.463061651999394, 49.04087447890193], + [-1.463032542056454, 49.04105963441946], + [-1.462973299953647, 49.04135191554204], + [-1.462916592883118, 49.0416784643918], + [-1.462946167168396, 49.041886736392236], + [-1.463136404391613, 49.04227724041701], + [-1.463329820395658, 49.04267426437182], + [-1.463544397108902, 49.043044893991826], + [-1.463828008882034, 49.04340292716677], + [-1.463895209017004, 49.04348776704204], + [-1.463927453590852, 49.04355174059892], + [-1.463938172038025, 49.04359211754275], + [-1.463944322304577, 49.043645729645746], + [-1.463937029008645, 49.043696863573665], + [-1.463937029008645, 49.043696863573665] + ] + }, + "length": 0.9535930549356172, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00925", + "bus2": "MVBus00926", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.463937029008645, 49.043696863573665], + [-1.463937029008645, 49.043696863573665], + [-1.463932036108716, 49.04371771424355], + [-1.464028315492035, 49.04395531525315], + [-1.464101011375718, 49.04413467675768], + [-1.464170822826148, 49.04431017153663], + [-1.4642307685798, 49.044548136567656], + [-1.464242126929302, 49.04465296161326], + [-1.464192634662235, 49.044738212101564], + [-1.464123005795986, 49.04478027252261], + [-1.463878359794863, 49.04484941111561], + [-1.463829558240103, 49.04487806084146], + [-1.463797276912264, 49.044900598232616], + [-1.463773006878715, 49.04493324466457], + [-1.463760217927605, 49.04497349671277], + [-1.463763475431285, 49.045100098907064], + [-1.463787589992099, 49.04542765671082], + [-1.463821255391476, 49.04595093383802], + [-1.463835997570601, 49.0461799907788], + [-1.463995464115393, 49.046275309101084], + [-1.463995464115393, 49.046275309101084] + ] + }, + "length": 0.312439862493794, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42221", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00926", + "bus2": "MVBus00927", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.463995464115393, 49.046275309101084], + [-1.463995464115393, 49.046275309101084], + [-1.464069042560407, 49.04630805448473], + [-1.464140902913082, 49.04631746376791], + [-1.465217946428581, 49.04630190746093], + [-1.466279929493993, 49.04627512544945], + [-1.466413516530068, 49.04630128113903], + [-1.46676497215578, 49.04629009305314], + [-1.46691734142602, 49.046329684706066], + [-1.468030228897367, 49.04631764005887], + [-1.468455203328844, 49.04629007125595], + [-1.4703770481289, 49.0462943407502], + [-1.47131735893747, 49.046306477203075], + [-1.471435026930273, 49.046309743935716], + [-1.471676151068217, 49.04634650061685], + [-1.471935671419052, 49.046386062051376], + [-1.472327425401432, 49.046395911187254], + [-1.47284001029685, 49.04639828072449], + [-1.473152070203375, 49.04638365183779], + [-1.474118581233217, 49.04626862023006], + [-1.474679953079951, 49.046201799104665], + [-1.47489493713142, 49.04618069916942], + [-1.4750842949228, 49.04619103149806], + [-1.475332693490119, 49.04622988787032], + [-1.475766004920796, 49.04636342399073], + [-1.476145378400156, 49.04648932360601], + [-1.476330395378819, 49.04653721794178], + [-1.476592479618372, 49.04656861772087], + [-1.477012937754514, 49.04657624846328], + [-1.477695238534076, 49.04656382168347], + [-1.47819266270097, 49.046601737538595], + [-1.478625741644053, 49.046683818969136], + [-1.47925463743429, 49.046911676246324], + [-1.479822424071774, 49.04708300527772], + [-1.480038189922119, 49.04711353762354], + [-1.48037069037245, 49.047086540734135], + [-1.480587418197079, 49.04708195496803], + [-1.480816349401783, 49.047098030693704], + [-1.481276208974316, 49.04710906517078], + [-1.481587049376394, 49.04707807891043], + [-1.481891418404565, 49.047007534062715], + [-1.482179762587331, 49.04696089162068], + [-1.482357439581577, 49.04695755992133], + [-1.482483073332732, 49.04697225640185], + [-1.482609535036043, 49.0469870432378], + [-1.482729409695775, 49.046983093854905], + [-1.482854449721809, 49.04694167061444], + [-1.483175454271017, 49.04680743491148], + [-1.483706524272305, 49.04662671606613], + [-1.484111075449247, 49.046515535981584], + [-1.484454315362873, 49.046441402057084], + [-1.484669830905945, 49.046420473865055], + [-1.484714676998851, 49.04644944765004], + [-1.484704778096456, 49.046604144902865], + [-1.484528551174364, 49.04720391302258], + [-1.48454047037633, 49.04736492956399], + [-1.484666398692526, 49.047672001629984], + [-1.485184862589901, 49.04881093069458], + [-1.485381284192793, 49.04910872946407], + [-1.485759352242295, 49.049552766543556], + [-1.486005671513143, 49.04975540402274], + [-1.486403444498629, 49.04993682097672], + [-1.487346462473604, 49.05032066105498], + [-1.488836559704555, 49.05097936517104], + [-1.488862704304587, 49.0510440227481], + [-1.488848930437791, 49.051098263007546], + [-1.488227127771161, 49.051639789405506], + [-1.487556489830751, 49.05221422786104], + [-1.487556424187144, 49.05222498079158], + [-1.487571747077065, 49.052234116603024], + [-1.487571747077065, 49.052234116603024] + ] + }, + "length": 2.372234450264817, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40645", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00927", + "bus2": "MVLV06709", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.487571747077065, 49.052234116603024], + [-1.487571747077065, 49.052234116603024], + [-1.487651890320432, 49.05227754151106], + [-1.487822553785858, 49.05234445561092], + [-1.489515792790746, 49.05299984324265], + [-1.489857570275332, 49.053167487575], + [-1.490140828951293, 49.05343440155237], + [-1.490300367950366, 49.053660223145656], + [-1.490385669777245, 49.05410766739315], + [-1.490395847296826, 49.05422535762595], + [-1.490409177190194, 49.054238983212024], + [-1.49047246004676, 49.05425063090957], + [-1.491034531883442, 49.05425484723805], + [-1.49151536338405, 49.05421551174843], + [-1.492099029931455, 49.05419510942734], + [-1.49232210376549, 49.05422214766643], + [-1.492428989749512, 49.054225559648884], + [-1.492794706365494, 49.05421212946958], + [-1.493222489847871, 49.0542291861421], + [-1.494326600450905, 49.054352758481116], + [-1.495167833961877, 49.054438599375935], + [-1.496501911794578, 49.054506914985375], + [-1.497981927213178, 49.0545790879453], + [-1.499113964089357, 49.0546931736638], + [-1.500871438503947, 49.054858955339654], + [-1.501250579299137, 49.05488609256451], + [-1.501806537308233, 49.05491267641779], + [-1.502761443817919, 49.054930667119464], + [-1.50336542424111, 49.05492653372335], + [-1.505015876537338, 49.054852471957986], + [-1.5053352571529, 49.05484984074067], + [-1.50614700417173, 49.05486574117562], + [-1.506632090929439, 49.05490360559451], + [-1.507468529447238, 49.05505617989572], + [-1.508595945035842, 49.05521466076088], + [-1.509358017674797, 49.055304695874256], + [-1.510441859022179, 49.05534617582712], + [-1.511507872963141, 49.055304209748975], + [-1.512865308022292, 49.05513101312053], + [-1.515033691375231, 49.054743802561354], + [-1.516813952978659, 49.05438788174744], + [-1.517100914513969, 49.05431260892745], + [-1.518491808439635, 49.05404525110661], + [-1.519765288864623, 49.05380619132052], + [-1.520110602903428, 49.05376084880229], + [-1.520902379222519, 49.05360814668655], + [-1.521008870275287, 49.053570161144826], + [-1.521056703707298, 49.05366913668579], + [-1.521066080032439, 49.05368854568226], + [-1.5210751434046905, 49.05368710146948] + ] + }, + "length": 2.615219412770797, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35804", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06709", + "bus2": "MVBus23996", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5210751434046905, 49.05368710146948], + [-1.521084206776942, 49.05368565725669], + [-1.521074659293919, 49.053665057228606], + [-1.521019038424444, 49.053545037975155], + [-1.521031745635214, 49.05352714712934], + [-1.521298437560975, 49.05346853239154], + [-1.52301610506183, 49.053166439178405], + [-1.52429125419748, 49.052952403545596], + [-1.524862199034329, 49.052856571189004], + [-1.525869579659604, 49.0526839023093], + [-1.527064397653925, 49.05246272577289], + [-1.527646099962972, 49.05235328866881], + [-1.527754331702429, 49.052313234264034], + [-1.527730429914871, 49.05205523429216], + [-1.527703405020569, 49.05172498351828], + [-1.52762871213291, 49.05144199588262], + [-1.527603181273045, 49.05136644833384], + [-1.527326083913721, 49.05083072981464], + [-1.527280366294644, 49.05073070715918], + [-1.527272379353617, 49.050683804542594], + [-1.527295823545118, 49.05064152634071], + [-1.527305659304398, 49.050631392784375], + [-1.527305659304398, 49.050631392784375] + ] + }, + "length": 0.720675603266393, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35803", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23996", + "bus2": "MVBus23998", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527305659304398, 49.050631392784375], + [-1.527305659304398, 49.050631392784375], + [-1.527327795736221, 49.05060858083972], + [-1.527714856237386, 49.05050963903404], + [-1.527960395447837, 49.05044686148177], + [-1.528224832317365, 49.050379270582894], + [-1.528526227661762, 49.050339677843084], + [-1.5287272517413, 49.05032916148638], + [-1.528853481701537, 49.050320048163094], + [-1.529255856264083, 49.05028290823768], + [-1.529585909187001, 49.05021896688841], + [-1.529928455344019, 49.05015864181593], + [-1.53019609145295, 49.05011882384198], + [-1.530567897579363, 49.050081661171], + [-1.530750873019423, 49.05006337659347], + [-1.530799108036813, 49.05005551741369], + [-1.530799108036813, 49.05005551741369] + ] + }, + "length": 0.2653430767218643, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42222", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23998", + "bus2": "MVLV16847", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530799108036813, 49.05005551741369], + [-1.530799108036813, 49.05005551741369], + [-1.531148774597256, 49.04999854796747], + [-1.531745002481844, 49.04989582567005], + [-1.532032387461069, 49.04985436537959], + [-1.532601502578957, 49.049777644667515], + [-1.532825836433212, 49.049731188963754], + [-1.53333247636557, 49.04959619171755], + [-1.533898658024065, 49.04941907453518], + [-1.53501054220607, 49.04907754206871], + [-1.535164964641367, 49.04903010858185], + [-1.535659149246876, 49.04889874349167], + [-1.536239538693067, 49.04874827947066], + [-1.536526048629258, 49.04868506410161], + [-1.536860671923363, 49.04860656788547], + [-1.537021619929697, 49.048560953579134], + [-1.53715418505952, 49.04851813972706], + [-1.537564194458377, 49.048420291941994], + [-1.538061599815586, 49.048306454790044], + [-1.538624104150744, 49.04818392710703], + [-1.538920579868436, 49.04811934786248], + [-1.539089925695431, 49.04801098421811], + [-1.539085781863044, 49.047994987336814], + [-1.539071700833383, 49.047983361416655], + [-1.5390729458236736, 49.04797870565177] + ] + }, + "length": 0.654051154512833, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43258", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16847", + "bus2": "MVBus28325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5390729458236736, 49.04797870565177], + [-1.539074190813964, 49.04797404988689], + [-1.53908716103271, 49.047980907536555], + [-1.539101185446201, 49.047988315777985], + [-1.539316605693734, 49.047851025638565], + [-1.539347393978268, 49.047812824813754], + [-1.539351613721101, 49.047799390584025], + [-1.539354579098979, 49.04779604651547], + [-1.539451083943058, 49.04774387363535], + [-1.539474870357235, 49.04773254857634], + [-1.539493036727845, 49.04772712784839], + [-1.539543500143926, 49.047726021307405], + [-1.539561202747304, 49.047721533293696], + [-1.539618930783724, 49.04769267868199], + [-1.540530019017743, 49.047228988219814], + [-1.54063297161658, 49.047183784507276], + [-1.540651282952445, 49.04717993333371], + [-1.540664008955005, 49.0471851793114], + [-1.540789769187251, 49.04727014831849], + [-1.540883135200533, 49.04742730671792], + [-1.541076723447483, 49.0477483283096], + [-1.541267472799378, 49.048044646429545], + [-1.541277164852435, 49.0480583309047], + [-1.541298138103624, 49.04806258036238], + [-1.541313581198498, 49.04805862427436], + [-1.541390796303494, 49.04802900126815], + [-1.541469818361159, 49.04800448373887], + [-1.541550867843203, 49.047972702861664], + [-1.542321682529178, 49.04758500516208], + [-1.542345103576804, 49.047579755249956], + [-1.542477765494462, 49.04759587047988], + [-1.542515582025845, 49.04760696821268], + [-1.542537705937597, 49.04762416254769], + [-1.542552232788907, 49.047649178920054], + [-1.542619622656282, 49.04779553766782], + [-1.542619622656282, 49.04779553766782] + ] + }, + "length": 0.38872330148286005, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36671", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28325", + "bus2": "MVBus28327", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542619622656282, 49.04779553766782], + [-1.542619622656282, 49.04779553766782], + [-1.542641658386537, 49.047807003852895], + [-1.542744749183823, 49.047787686778726], + [-1.542757617444419, 49.047791542407566], + [-1.542770401208704, 49.04781922444621], + [-1.542770401208704, 49.04781922444621] + ] + }, + "length": 0.014141871633893131, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42285", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28327", + "bus2": "MVBus28328", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542770401208704, 49.04781922444621], + [-1.542770401208704, 49.04781922444621], + [-1.543160132707009, 49.04855842579815], + [-1.543239284572438, 49.04870644447264], + [-1.543252843482533, 49.04871766403634], + [-1.543274146587015, 49.0487230180555], + [-1.54329582926091, 49.04872231386107], + [-1.543398491285356, 49.04869872771487], + [-1.54349701216967, 49.04872147480368], + [-1.543880961875083, 49.04864378567214], + [-1.543922152243239, 49.04861071580438], + [-1.544634814721229, 49.048458369585916], + [-1.544702393697539, 49.04846880559844], + [-1.544702393697539, 49.04846880559844] + ] + }, + "length": 0.21885935424672956, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40598", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28328", + "bus2": "MVLV07026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544702393697539, 49.04846880559844], + [-1.544702393697539, 49.04846880559844], + [-1.544764431904579, 49.048466897964474], + [-1.544752904038435, 49.04845138404925], + [-1.544752904038435, 49.04845138404925] + ] + }, + "length": 0.006460115007856009, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45089", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28327", + "bus2": "MVBus28330", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542770401208704, 49.04781922444621], + [-1.542770401208704, 49.04781922444621], + [-1.54269578108089, 49.0477870187179], + [-1.542593000971066, 49.047579892861926], + [-1.542633707477476, 49.04748756783966], + [-1.542862708504378, 49.04736940703681], + [-1.542862708504378, 49.04736940703681] + ] + }, + "length": 0.06272664872796083, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42356", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28330", + "bus2": "MVBus28331", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542862708504378, 49.04736940703681], + [-1.542862708504378, 49.04736940703681], + [-1.542944055746831, 49.0473286815882], + [-1.542914598163958, 49.047267631884175], + [-1.543687668838576, 49.046970116754935], + [-1.543922806647433, 49.046880850250076], + [-1.543922806647433, 49.046880850250076] + ] + }, + "length": 0.09993459681209216, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38222", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28331", + "bus2": "MVLV03204", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543922806647433, 49.046880850250076], + [-1.543922806647433, 49.046880850250076], + [-1.54394434314334, 49.04687475253979], + [-1.544013663228632, 49.0469762885837], + [-1.544018357653604, 49.04697501147895] + ] + }, + "length": 0.01409106855686576, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36543", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03204", + "bus2": "MVBus30451", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544018357653604, 49.04697501147895], + [-1.544023052078576, 49.04697373437419], + [-1.543953161366732, 49.04686824925286], + [-1.543968182557054, 49.04686214725682], + [-1.543968182557054, 49.04686214725682] + ] + }, + "length": 0.014086255823606729, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37010", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30451", + "bus2": "MVBus30452", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543968182557054, 49.04686214725682], + [-1.543968182557054, 49.04686214725682], + [-1.544605930612236, 49.04663486061268], + [-1.544605930612236, 49.04663486061268] + ] + }, + "length": 0.053032760086801294, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44728", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30452", + "bus2": "MVBus30453", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544605930612236, 49.04663486061268], + [-1.544605930612236, 49.04663486061268], + [-1.544687266748538, 49.04661568174298], + [-1.544873477507897, 49.046579653945265], + [-1.545161809170049, 49.04653566514119], + [-1.545870476732643, 49.04648912641739], + [-1.54642582085625, 49.04651351450512], + [-1.546565506483741, 49.046617737268065], + [-1.547051839426172, 49.04689749314179], + [-1.547863685664065, 49.04722293849653], + [-1.547947345951973, 49.04729393860409], + [-1.548474597424071, 49.04730937037455], + [-1.548408612820894, 49.047149527293634], + [-1.548357265100732, 49.04693155608327], + [-1.548313755206265, 49.04625321973305], + [-1.548385077336012, 49.04625140406671], + [-1.548385077336012, 49.04625140406671] + ] + }, + "length": 0.43934262295050397, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36461", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30453", + "bus2": "MVLV06428", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548385077336012, 49.04625140406671], + [-1.548385077336012, 49.04625140406671], + [-1.548400674688752, 49.04647265231329], + [-1.548377048131278, 49.046503164420834], + [-1.548489932114923, 49.0471557715872], + [-1.548693332290306, 49.04758288751493], + [-1.548803567535187, 49.04762596910421], + [-1.549760548142787, 49.04856059337284], + [-1.550092824062448, 49.0489365146065], + [-1.549997403449801, 49.04903588566835], + [-1.549997403449801, 49.04903588566835] + ] + }, + "length": 0.3473397731794154, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37534", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30453", + "bus2": "MVBus30454", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548385077336012, 49.04625140406671], + [-1.548385077336012, 49.04625140406671], + [-1.548364120203606, 49.04610387973278], + [-1.548355356077129, 49.046009796288175], + [-1.548360955608255, 49.04600072524646], + [-1.548377885164062, 49.045989801244055], + [-1.548508240919533, 49.045940199402885], + [-1.54868542533753, 49.045857954060715], + [-1.548694609138635, 49.0458543175118], + [-1.548706004463852, 49.045854423719675], + [-1.548712488296865, 49.04585692090286], + [-1.548786100796683, 49.04590499927998], + [-1.548795047362359, 49.04590439339881], + [-1.548795047362359, 49.04590439339881] + ] + }, + "length": 0.06706091210200767, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40646", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30454", + "bus2": "MVLV10304", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548795047362359, 49.04590439339881], + [-1.548795047362359, 49.04590439339881], + [-1.548796872525014, 49.04590554861655], + [-1.548818826142154, 49.04593173530309], + [-1.548833187871386, 49.04595815991977], + [-1.548856389053909, 49.04604765320563], + [-1.548856389053909, 49.04604765320563] + ] + }, + "length": 0.0167271216600722, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33972", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30454", + "bus2": "MVLV19090", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548795047362359, 49.04590439339881], + [-1.548795047362359, 49.04590439339881], + [-1.54874415457815, 49.045871041746736], + [-1.548716449275836, 49.04584972050827], + [-1.548717643632098, 49.04583976707605], + [-1.548860464140761, 49.045759574796705], + [-1.549451583508427, 49.04544475317919], + [-1.550124675523013, 49.04510063033477], + [-1.550542210145414, 49.044888338323226], + [-1.551003323565583, 49.044621040772924], + [-1.551452675126317, 49.044343012852565], + [-1.55147494894388, 49.04433509932164], + [-1.551493557475337, 49.044331218752085], + [-1.551520085330858, 49.04432708940905], + [-1.551536357145032, 49.04431871445041], + [-1.55170559862644, 49.04421582284543], + [-1.551773515207925, 49.04418027845073], + [-1.552397691066736, 49.043807656922176], + [-1.553450620192724, 49.04324002412785], + [-1.553616765696485, 49.04313591675201], + [-1.554536364969822, 49.04261835593874], + [-1.554630935627503, 49.0425731604297], + [-1.554728121323984, 49.04253778530313], + [-1.554793246841393, 49.042526999598884], + [-1.555128642161776, 49.04237734847322], + [-1.555215804189633, 49.04230886677218], + [-1.555291918479844, 49.04224905815403], + [-1.55556690835119, 49.04211782924832], + [-1.555773706653381, 49.0420367756479], + [-1.555927460897082, 49.0420020392582], + [-1.5563621559803, 49.041870210308446], + [-1.557243754481307, 49.04164329797238], + [-1.557577765808976, 49.041575431176554], + [-1.557911290374896, 49.04152615806614], + [-1.558023430028632, 49.041464291224436], + [-1.55860027153412, 49.041386380315835], + [-1.558701413702804, 49.04133566782017], + [-1.558726454865058, 49.04126796753512], + [-1.558809121298518, 49.04125226196462], + [-1.55881269212674, 49.04125814200877] + ] + }, + "length": 0.9222868288749778, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV19090", + "bus2": "MVBus35324", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.55881269212674, 49.04125814200877], + [-1.558816262954962, 49.04126402205292], + [-1.55879960852441, 49.041267480218785], + [-1.558784975477743, 49.04127052157784], + [-1.558783151353761, 49.041281170529324], + [-1.558804685499073, 49.04130628962899], + [-1.558842483103754, 49.04132548913312], + [-1.558887539075615, 49.041328068381716], + [-1.559019832525288, 49.041309682528684], + [-1.559063379597612, 49.041292265614636], + [-1.559193882095625, 49.0412733621665], + [-1.559305690169221, 49.041263165618645], + [-1.55936280454823, 49.0412508932076], + [-1.559427355561703, 49.04122835554723], + [-1.559514529559971, 49.04118696896896], + [-1.559514529559971, 49.04118696896896] + ] + }, + "length": 0.06282985142000849, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44630", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35324", + "bus2": "MVBus35325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559514529559971, 49.04118696896896], + [-1.559514529559971, 49.04118696896896], + [-1.559709096386036, 49.04111279398212], + [-1.559745683551936, 49.04111160050436], + [-1.559821585839333, 49.04115678164543], + [-1.559892725026131, 49.041219905192385], + [-1.559943136765103, 49.041251558581735], + [-1.560000274635698, 49.04126806650347], + [-1.560334006180506, 49.04130426026244], + [-1.560412409457703, 49.04130170232339], + [-1.560461807273766, 49.04130813399454], + [-1.560806126227082, 49.041345699454745], + [-1.561545394372359, 49.041513337826096], + [-1.561893552787597, 49.04154118410379], + [-1.561893552787597, 49.04154118410379] + ] + }, + "length": 0.1874883237140566, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33280", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35325", + "bus2": "MVLV07041", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561893552787597, 49.04154118410379], + [-1.561893552787597, 49.04154118410379], + [-1.561927522567093, 49.04155625201814], + [-1.561970866675699, 49.041560622411126], + [-1.56199895611086, 49.04162613053569], + [-1.56199895611086, 49.04162613053569] + ] + }, + "length": 0.01377110907182497, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42224", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35325", + "bus2": "MVBus35326", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561893552787597, 49.04154118410379], + [-1.561893552787597, 49.04154118410379], + [-1.562524220667454, 49.04159162112046], + [-1.562785661856347, 49.04158423815972], + [-1.563003832429402, 49.0415357743919], + [-1.563065351941532, 49.04151768825974], + [-1.563086273529028, 49.041471075439105], + [-1.56329632690482, 49.04129197847891], + [-1.563041784408246, 49.040419552504396], + [-1.564656394675905, 49.0399616456111], + [-1.564656394675905, 49.0399616456111] + ] + }, + "length": 0.3452553851048107, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43259", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35326", + "bus2": "MVBus35327", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564656394675905, 49.0399616456111], + [-1.564656394675905, 49.0399616456111], + [-1.56477166927779, 49.04006908383008], + [-1.564846152553497, 49.04018074239322], + [-1.564944563084799, 49.0403022448436], + [-1.565293663892719, 49.04062619676181], + [-1.565553656895697, 49.040849583902435], + [-1.56575972902615, 49.040805891692656], + [-1.566786580333107, 49.040206038020955], + [-1.567592032234608, 49.039726108679], + [-1.567785322782766, 49.03958767763209], + [-1.567923196296619, 49.039552688609305], + [-1.568512926040833, 49.03949090683377], + [-1.568582327630608, 49.03946092678065], + [-1.568672147050414, 49.03936653489037], + [-1.568819877921556, 49.03932401583802], + [-1.56889755134967, 49.03931854303925], + [-1.56889755134967, 49.03931854303925] + ] + }, + "length": 0.4259832199447021, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43094", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35327", + "bus2": "MVLV12057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56889755134967, 49.03931854303925], + [-1.56889755134967, 49.03931854303925], + [-1.569207283853655, 49.03928810855918], + [-1.569336793905305, 49.03926089488837], + [-1.569520780594536, 49.03922223665458], + [-1.569801212742898, 49.03914586607496], + [-1.570369458462948, 49.03897495921441], + [-1.570755358618667, 49.03884795560977], + [-1.570958583583596, 49.03878415764787], + [-1.571311362440169, 49.0386734138073], + [-1.571681307813345, 49.03853202987447], + [-1.571859227161483, 49.03845196386364], + [-1.572196877148248, 49.03829562919721], + [-1.572383303985448, 49.038212089947066], + [-1.57258962514206, 49.03813429617895], + [-1.572806169237924, 49.03802416473127], + [-1.573001586241041, 49.03791660481103], + [-1.5731605367009, 49.0378228342147], + [-1.573176480418269, 49.037838929947284], + [-1.573180852027758, 49.03784334837375], + [-1.573190573011825, 49.03785316989166], + [-1.5732046465483145, 49.03784077453285] + ] + }, + "length": 0.3608666904470401, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42542", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12057", + "bus2": "MVBus38707", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5732046465483145, 49.03784077453285], + [-1.573218720084804, 49.03782837917405], + [-1.573219651809008, 49.037819720451296], + [-1.57322154365186, 49.03781596970849], + [-1.573227549864818, 49.03781215625664], + [-1.573258148212849, 49.03779913446993], + [-1.573312324229853, 49.037779591683716], + [-1.573325829780514, 49.03777487593759], + [-1.573331638301449, 49.03777025921228], + [-1.57333527060948, 49.03776437315942], + [-1.573339785855734, 49.03774864236069], + [-1.57334169597768, 49.03769833099782], + [-1.573342790395212, 49.03760978164462], + [-1.573343277836613, 49.03754321409212], + [-1.57334572821313, 49.03751521585298], + [-1.573352388295262, 49.0374920282099], + [-1.573361087536584, 49.03747390216129], + [-1.573372352155105, 49.03745875114554], + [-1.573387770905307, 49.03744930325708], + [-1.573412089368376, 49.03744154337803], + [-1.573449039487969, 49.03743596113151], + [-1.573463336845917, 49.03743501622289], + [-1.573545656555698, 49.03743329292324], + [-1.573791882873774, 49.037429469250924], + [-1.573799928885973, 49.03743072633203], + [-1.573809545526832, 49.03742941279846], + [-1.573828886943377, 49.037428032786806], + [-1.574062099194975, 49.03742240336289], + [-1.57413641939213, 49.037423469769344], + [-1.574167198997303, 49.03742115735632], + [-1.574266818502687, 49.03741838125526], + [-1.574296785444005, 49.03741979323224], + [-1.574327059797006, 49.03741803714888], + [-1.574457772344386, 49.0374169058892], + [-1.574640115048536, 49.037407074981736], + [-1.574821864527245, 49.03739501394241], + [-1.574941200380019, 49.03739201444614], + [-1.575122163416115, 49.03738727536484], + [-1.575394193281306, 49.037385905212446], + [-1.575498663890308, 49.03738881731566], + [-1.575639549947427, 49.03739354154789], + [-1.575757799980146, 49.03739752257972], + [-1.575788401204087, 49.03739827461094], + [-1.575794645891708, 49.037397611198905], + [-1.575801949128659, 49.03739466383085], + [-1.575810063932191, 49.037391590909166], + [-1.575818206129822, 49.03739068539587], + [-1.575834270796418, 49.03739121181995], + [-1.575957898138581, 49.03739409879968], + [-1.576095318777356, 49.03739462639695], + [-1.576215091482847, 49.03739377962248], + [-1.576486992239081, 49.03738727385578], + [-1.576546879239658, 49.037384241099375], + [-1.576573031719577, 49.037382268603565], + [-1.576581760527585, 49.03738007522339], + [-1.576590121040657, 49.03737681425423], + [-1.576593473177484, 49.037370667353066], + [-1.576596601253085, 49.03735993925844], + [-1.576608053162535, 49.03732127227581], + [-1.576641915144342, 49.03715524546071], + [-1.576653583140471, 49.037058584888], + [-1.576648428526834, 49.03699509008956], + [-1.576636201038921, 49.03694967733421], + [-1.576619850091405, 49.03691088661069], + [-1.576604424216662, 49.03688718975103], + [-1.576553450964756, 49.03682112945253], + [-1.576480923776967, 49.03672833406783], + [-1.576413985226045, 49.03664391181168], + [-1.576358296651647, 49.036573588328686], + [-1.57607637655589, 49.036267969824294], + [-1.575998648032988, 49.03619084661254], + [-1.575874203252597, 49.03606155884443], + [-1.575802824516908, 49.03597287311777], + [-1.575756275334331, 49.03590377048766], + [-1.575727691538593, 49.035854142942476], + [-1.575693926884324, 49.035776955936235], + [-1.57566337528602, 49.03570587169013], + [-1.575636608013797, 49.03561845063443], + [-1.575624434750906, 49.0355787941511], + [-1.575604884901121, 49.03550463236389], + [-1.575578677413021, 49.03535325930008], + [-1.575545520041772, 49.035150434312186], + [-1.575530783310489, 49.035035042894926], + [-1.575498337365689, 49.034731975399154], + [-1.57547572298852, 49.0345324757854], + [-1.575446320871773, 49.03432502007674], + [-1.575396063433757, 49.03387119483934], + [-1.575393172148881, 49.03379655024464], + [-1.575384540079603, 49.03373065897707], + [-1.575385733663119, 49.03370415026993], + [-1.575398440902064, 49.03366742153607], + [-1.575414634194523, 49.03363823518167], + [-1.575447523911081, 49.03358650387202], + [-1.575463612374894, 49.03356839643247], + [-1.575478589266007, 49.033544648200454], + [-1.575516519112069, 49.03347527929619], + [-1.575582252380262, 49.0333296754309], + [-1.575600779975003, 49.03326429799713], + [-1.575607794489839, 49.03320246470485], + [-1.575603504890467, 49.03309437846214], + [-1.575603504890467, 49.03309437846214] + ] + }, + "length": 0.7810390610336964, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34031", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38707", + "bus2": "MVBus38708", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575603504890467, 49.03309437846214], + [-1.575603504890467, 49.03309437846214], + [-1.575602996997248, 49.033042886390724], + [-1.575601372013147, 49.03295136657925], + [-1.57559477053379, 49.03286441839019], + [-1.575589899301903, 49.03276454758031], + [-1.575583251210392, 49.03267355218401], + [-1.575575970203807, 49.03257618953205], + [-1.575563503307198, 49.03244613913025], + [-1.575553558445611, 49.03236201757182], + [-1.575539233951937, 49.03226903332029], + [-1.575521126114076, 49.032192574822034], + [-1.575509459945001, 49.03211426781591], + [-1.575495114429851, 49.032026241668795], + [-1.575482505888749, 49.03195518124611], + [-1.575480886009266, 49.03193452284231], + [-1.575473482255541, 49.03190163782298], + [-1.575451210957967, 49.03179821622847], + [-1.575436647969154, 49.03173693675176], + [-1.575414180308222, 49.03162604492889], + [-1.575386765238798, 49.03151649378895], + [-1.575380339240479, 49.03147502042222], + [-1.575360382267668, 49.03139925223867], + [-1.57533491590319, 49.03130404170185], + [-1.575308538661513, 49.03119391669762], + [-1.57528219235144, 49.031097925218546], + [-1.575257767889541, 49.03101411592138], + [-1.575235218451927, 49.03093663318588], + [-1.575201281883382, 49.03085387322508], + [-1.575179878456012, 49.03080993936897], + [-1.575137494188849, 49.03075546429381], + [-1.57509519538822, 49.03068640199159], + [-1.575025393797894, 49.030601982652335], + [-1.574994935010283, 49.03056133243352], + [-1.574948495115009, 49.03051960416846], + [-1.574897217331448, 49.03048066152195], + [-1.574818544446792, 49.03042958824526], + [-1.574724373268428, 49.03038850555287], + [-1.574648501390273, 49.030353814247924], + [-1.574557700390914, 49.0303172995776], + [-1.574418378028872, 49.03027154135467], + [-1.574289911980064, 49.030226399132665], + [-1.574122499501011, 49.03017178958353], + [-1.573924786762042, 49.03010281387126], + [-1.573742698751843, 49.03004104578526], + [-1.573524216044866, 49.029970977103666], + [-1.573334467002688, 49.029905779424695], + [-1.573141121844727, 49.02984530574219], + [-1.572973976724636, 49.02979238635705], + [-1.572810449324507, 49.02974007708292], + [-1.572692315969053, 49.02969908453164], + [-1.572683931400068, 49.029693519851854], + [-1.572677615651301, 49.029682750065305], + [-1.572676439284145, 49.02966793425671], + [-1.572677573923785, 49.02963376187036], + [-1.572674852933138, 49.02957667396216], + [-1.572677885032044, 49.02956828831333], + [-1.572686430911811, 49.02955863350618], + [-1.572702625592692, 49.02954862033733], + [-1.572736461513759, 49.02953324315701], + [-1.572825811149359, 49.02950110430073], + [-1.572947111279, 49.02946085658546], + [-1.57306906367093, 49.02942886477975], + [-1.573236218396324, 49.0293848841838], + [-1.573412073815963, 49.02933655173863], + [-1.573561608963296, 49.02929497400124], + [-1.573715621311486, 49.02925109013898], + [-1.573783937844556, 49.02922651309621], + [-1.573859548036811, 49.02920429735396], + [-1.574028292177208, 49.02915783431091], + [-1.574122927628097, 49.02912848139886], + [-1.574404882709284, 49.02904357212648], + [-1.574517922141982, 49.029011528786114], + [-1.574658045937291, 49.02896855738001], + [-1.574837352385783, 49.028915422166094], + [-1.574967177186988, 49.02888443007432], + [-1.575201529299176, 49.02882608126887], + [-1.575284264037069, 49.02879696427797], + [-1.575415481427542, 49.02875745070805], + [-1.575415481427542, 49.02875745070805] + ] + }, + "length": 0.7174874457617614, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45219", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38708", + "bus2": "MVLV10414", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575415481427542, 49.02875745070805], + [-1.575415481427542, 49.02875745070805], + [-1.575226867647049, 49.02878253259593], + [-1.573983343738142, 49.02677037365746], + [-1.573983343738142, 49.02677037365746] + ] + }, + "length": 0.255618279052932, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33025", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38708", + "bus2": "MVBus38709", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575415481427542, 49.02875745070805], + [-1.575415481427542, 49.02875745070805], + [-1.584103053761133, 49.026184808059035], + [-1.586145591666526, 49.025624035517666], + [-1.586163645822428, 49.02561765715403], + [-1.586163645822428, 49.02561765715403] + ] + }, + "length": 0.8601561712055001, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43303", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38707", + "bus2": "MVLV14661", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575603504890467, 49.03309437846214], + [-1.575603504890467, 49.03309437846214], + [-1.575606556441053, 49.033086253036196], + [-1.575612726752676, 49.03308118344505], + [-1.575623380423884, 49.033075508129706], + [-1.575664329282691, 49.03305484080282], + [-1.575677643206582, 49.03305176848409], + [-1.575698736056475, 49.033053479738435], + [-1.575754110854216, 49.0330660881236], + [-1.575789041057706, 49.03307488566882], + [-1.575798893480743, 49.0330817516294], + [-1.575815021719877, 49.033102096665246], + [-1.575820358399386, 49.03313333990028], + [-1.575820358399386, 49.03313333990028] + ] + }, + "length": 0.02313408212857222, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35327", + "bus2": "MVLV18001", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56889755134967, 49.03931854303925], + [-1.56889755134967, 49.03931854303925], + [-1.568893756419509, 49.039313241894895], + [-1.568819670901675, 49.0393127762733], + [-1.568810550960936, 49.03926982557076], + [-1.568804059103535, 49.039169351653605], + [-1.568882278627921, 49.03901009209144], + [-1.568935462374124, 49.03883375590814], + [-1.568895962584171, 49.038684985337596], + [-1.568851605304648, 49.03857656349965], + [-1.568575460855304, 49.03810838786614], + [-1.568448332100217, 49.03792261618062], + [-1.568360055316023, 49.037657416502604], + [-1.568312137481616, 49.03765478152067], + [-1.568312137481616, 49.03765478152067] + ] + }, + "length": 0.20216554723497288, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36107", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35326", + "bus2": "MVLV06710", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564656394675905, 49.0399616456111], + [-1.564656394675905, 49.0399616456111], + [-1.564706981331512, 49.03996552650747], + [-1.564727924823297, 49.039952372540434], + [-1.56473933858268, 49.0399329979881], + [-1.56474072503813, 49.039914400807675], + [-1.564732788462391, 49.039903908577465], + [-1.564732788462391, 49.039903908577465] + ] + }, + "length": 0.011525816996281366, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39035", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30452", + "bus2": "MVBus30458", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544605930612236, 49.04663486061268], + [-1.544605930612236, 49.04663486061268], + [-1.544615426108271, 49.04665466011679], + [-1.544615426108271, 49.04665466011679] + ] + }, + "length": 0.0023087401532615463, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42223", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28325", + "bus2": "MVLV18902", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542619622656282, 49.04779553766782], + [-1.542619622656282, 49.04779553766782], + [-1.542641442635851, 49.04784292629337], + [-1.542632731877063, 49.0478457642589], + [-1.542632731877063, 49.0478457642589] + ] + }, + "length": 0.0062169144119620864, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36670", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23998", + "bus2": "MVLV13802", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530799108036813, 49.05005551741369], + [-1.530799108036813, 49.05005551741369], + [-1.53077414365494, 49.0500686961079], + [-1.530575403425454, 49.05009159355121], + [-1.530576179130021, 49.05011528391853], + [-1.530576179130021, 49.05011528391853] + ] + }, + "length": 0.01972485063828715, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43398", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23996", + "bus2": "MVLV10305", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527305659304398, 49.050631392784375], + [-1.527305659304398, 49.050631392784375], + [-1.527331567016426, 49.05061818434851], + [-1.527340753067769, 49.0506372212535], + [-1.527356876822457, 49.05063026709952], + [-1.527356876822457, 49.05063026709952] + ] + }, + "length": 0.006027432985588235, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV06709_production", + "bus": "MVLV06709", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06709_consumption", + "bus": "MVLV06709", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV16847_production", + "bus": "MVLV16847", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16847_consumption", + "bus": "MVLV16847", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV07026_production", + "bus": "MVLV07026", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07026_consumption", + "bus": "MVLV07026", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV03204_production", + "bus": "MVLV03204", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03204_consumption", + "bus": "MVLV03204", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV06428_production", + "bus": "MVLV06428", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06428_consumption", + "bus": "MVLV06428", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV10304_production", + "bus": "MVLV10304", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10304_consumption", + "bus": "MVLV10304", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV19090_production", + "bus": "MVLV19090", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19090_consumption", + "bus": "MVLV19090", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV07041_production", + "bus": "MVLV07041", + "phases": "abc", + "powers": [ + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0] + ] + }, + { + "id": "MVLV07041_consumption", + "bus": "MVLV07041", + "phases": "abc", + "powers": [ + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405] + ] + }, + { + "id": "MVLV12057_production", + "bus": "MVLV12057", + "phases": "abc", + "powers": [ + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0] + ] + }, + { + "id": "MVLV12057_consumption", + "bus": "MVLV12057", + "phases": "abc", + "powers": [ + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405] + ] + }, + { + "id": "MVLV10414_production", + "bus": "MVLV10414", + "phases": "abc", + "powers": [ + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0] + ] + }, + { + "id": "MVLV10414_consumption", + "bus": "MVLV10414", + "phases": "abc", + "powers": [ + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405] + ] + }, + { + "id": "MVLV14661_production", + "bus": "MVLV14661", + "phases": "abc", + "powers": [ + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0] + ] + }, + { + "id": "MVLV14661_consumption", + "bus": "MVLV14661", + "phases": "abc", + "powers": [ + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405] + ] + }, + { + "id": "MVLV18001_production", + "bus": "MVLV18001", + "phases": "abc", + "powers": [ + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0] + ] + }, + { + "id": "MVLV18001_consumption", + "bus": "MVLV18001", + "phases": "abc", + "powers": [ + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405] + ] + }, + { + "id": "MVLV06710_production", + "bus": "MVLV06710", + "phases": "abc", + "powers": [ + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0], + [-279.53216374269005, 0.0] + ] + }, + { + "id": "MVLV06710_consumption", + "bus": "MVLV06710", + "phases": "abc", + "powers": [ + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405], + [8511.608108560731, 2797.6302947954405] + ] + }, + { + "id": "MVLV18902_production", + "bus": "MVLV18902", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18902_consumption", + "bus": "MVLV18902", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV13802_production", + "bus": "MVLV13802", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13802_consumption", + "bus": "MVLV13802", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + }, + { + "id": "MVLV10305_production", + "bus": "MVLV10305", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10305_consumption", + "bus": "MVLV10305", + "phases": "abc", + "powers": [ + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291], + [3584.153335041426, 1178.0542317519291] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder128_Winter.json b/roseau/load_flow/data/networks/MVFeeder128_Winter.json new file mode 100644 index 00000000..c1f003fd --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder128_Winter.json @@ -0,0 +1,2447 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.446077484045924, 49.034241235768725] + } + }, + { + "id": "HVMV09", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.446077484045924, 49.034241235768725] + } + }, + { + "id": "MVBus00916", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.445903151201629, 49.03333590409346] + } + }, + { + "id": "MVBus00917", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.447048659446956, 49.03194944491505] + } + }, + { + "id": "MVBus00918", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.448327090288608, 49.031163231442164] + } + }, + { + "id": "MVBus00919", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.44905973033842, 49.03077803898317] + } + }, + { + "id": "MVBus00920", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.46220824503751, 49.029201861100134] + } + }, + { + "id": "MVBus00921", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461736098180515, 49.03010660944954] + } + }, + { + "id": "MVBus00922", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461764829853785, 49.031439486446786] + } + }, + { + "id": "MVBus00923", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461397716173976, 49.033603497990065] + } + }, + { + "id": "MVBus00924", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.461516985174621, 49.035477339466745] + } + }, + { + "id": "MVBus00925", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.463937029008645, 49.043696863573665] + } + }, + { + "id": "MVBus00926", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.463995464115393, 49.046275309101084] + } + }, + { + "id": "MVBus00927", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.487571747077065, 49.052234116603024] + } + }, + { + "id": "MVLV06709", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5210751434046905, 49.05368710146948] + } + }, + { + "id": "MVBus23996", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527305659304398, 49.050631392784375] + } + }, + { + "id": "MVBus23998", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530799108036813, 49.05005551741369] + } + }, + { + "id": "MVLV16847", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5390729458236736, 49.04797870565177] + } + }, + { + "id": "MVBus28325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542619622656282, 49.04779553766782] + } + }, + { + "id": "MVBus28327", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542770401208704, 49.04781922444621] + } + }, + { + "id": "MVBus28328", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544702393697539, 49.04846880559844] + } + }, + { + "id": "MVLV07026", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544752904038435, 49.04845138404925] + } + }, + { + "id": "MVBus28330", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542862708504378, 49.04736940703681] + } + }, + { + "id": "MVBus28331", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543922806647433, 49.046880850250076] + } + }, + { + "id": "MVLV03204", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544018357653604, 49.04697501147895] + } + }, + { + "id": "MVBus30451", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543968182557054, 49.04686214725682] + } + }, + { + "id": "MVBus30452", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544605930612236, 49.04663486061268] + } + }, + { + "id": "MVBus30453", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548385077336012, 49.04625140406671] + } + }, + { + "id": "MVLV06428", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549997403449801, 49.04903588566835] + } + }, + { + "id": "MVBus30454", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548795047362359, 49.04590439339881] + } + }, + { + "id": "MVLV10304", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548856389053909, 49.04604765320563] + } + }, + { + "id": "MVLV19090", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.55881269212674, 49.04125814200877] + } + }, + { + "id": "MVBus35324", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.559514529559971, 49.04118696896896] + } + }, + { + "id": "MVBus35325", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.561893552787597, 49.04154118410379] + } + }, + { + "id": "MVLV07041", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.56199895611086, 49.04162613053569] + } + }, + { + "id": "MVBus35326", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564656394675905, 49.0399616456111] + } + }, + { + "id": "MVBus35327", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.56889755134967, 49.03931854303925] + } + }, + { + "id": "MVLV12057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5732046465483145, 49.03784077453285] + } + }, + { + "id": "MVBus38707", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.575603504890467, 49.03309437846214] + } + }, + { + "id": "MVBus38708", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.575415481427542, 49.02875745070805] + } + }, + { + "id": "MVLV10414", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.573983343738142, 49.02677037365746] + } + }, + { + "id": "MVBus38709", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.586163645822428, 49.02561765715403] + } + }, + { + "id": "MVLV14661", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.575820358399386, 49.03313333990028] + } + }, + { + "id": "MVLV18001", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.568312137481616, 49.03765478152067] + } + }, + { + "id": "MVLV06710", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564732788462391, 49.039903908577465] + } + }, + { + "id": "MVBus30458", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544615426108271, 49.04665466011679] + } + }, + { + "id": "MVLV18902", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542632731877063, 49.0478457642589] + } + }, + { + "id": "MVLV13802", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530576179130021, 49.05011528391853] + } + }, + { + "id": "MVLV10305", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527356876822457, 49.05063026709952] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV09", + "geometry": { + "type": "Point", + "coordinates": [-1.446077484045924, 49.034241235768725] + } + }, + { + "id": "MVBranch44642", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV09", + "bus2": "MVBus00916", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.446077484045924, 49.034241235768725], + [-1.446089321542839, 49.03419419641659], + [-1.446089321542839, 49.03419419641659], + [-1.44609019272388, 49.03416313115167], + [-1.446076988694361, 49.034047891233236], + [-1.445614044006718, 49.03390884749059], + [-1.44601396527957, 49.03341359656575], + [-1.445875189552959, 49.033373333096414], + [-1.445903151201629, 49.03333590409346], + [-1.445903151201629, 49.03333590409346] + ] + }, + "length": 0.13161178225571488, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41155", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00916", + "bus2": "MVBus00917", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.445903151201629, 49.03333590409346], + [-1.445903151201629, 49.03333590409346], + [-1.446053327345197, 49.033134899957865], + [-1.446469116526517, 49.03261265880293], + [-1.446826395935171, 49.03215974247694], + [-1.447048659446956, 49.03194944491505], + [-1.447048659446956, 49.03194944491505] + ] + }, + "length": 0.17568267802562318, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43162", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00917", + "bus2": "MVBus00918", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.447048659446956, 49.03194944491505], + [-1.447048659446956, 49.03194944491505], + [-1.447187370746948, 49.03181820967314], + [-1.44768981615452, 49.03142818254009], + [-1.448042929122802, 49.031192523161145], + [-1.448248689332893, 49.03119920976466], + [-1.448327090288608, 49.031163231442164], + [-1.448327090288608, 49.031163231442164] + ] + }, + "length": 0.13346570850969364, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37533", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00918", + "bus2": "MVBus00919", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.448327090288608, 49.031163231442164], + [-1.448327090288608, 49.031163231442164], + [-1.44866677092218, 49.03097900565769], + [-1.44905973033842, 49.03077803898317], + [-1.44905973033842, 49.03077803898317] + ] + }, + "length": 0.06860263079628186, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00919", + "bus2": "MVBus00920", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.44905973033842, 49.03077803898317], + [-1.44905973033842, 49.03077803898317], + [-1.44945519479327, 49.03061501057651], + [-1.449518020860817, 49.03059857965217], + [-1.449576707037814, 49.03060032685851], + [-1.449661317807766, 49.03063133640318], + [-1.449740616412923, 49.03066490735919], + [-1.449810778534484, 49.03067351481081], + [-1.449871385301471, 49.03060181673669], + [-1.449897974891566, 49.030590142001756], + [-1.449928913280018, 49.03058795561711], + [-1.449976374531152, 49.03058645091119], + [-1.450037737732442, 49.03057488819762], + [-1.450142110773407, 49.03055112105596], + [-1.450258595639544, 49.030524603723094], + [-1.450351927360375, 49.03051800089154], + [-1.450531603631356, 49.030523135473125], + [-1.450850227809575, 49.03055152780828], + [-1.451276856437632, 49.03055604498573], + [-1.451728063103816, 49.03052128509536], + [-1.452093620252944, 49.03046637140379], + [-1.452424824749186, 49.03039210637347], + [-1.45244680029795, 49.0303673435888], + [-1.45249649637903, 49.03034651448132], + [-1.452555589015656, 49.03032900382792], + [-1.452684314838213, 49.030312891508714], + [-1.452796252986193, 49.030292489566406], + [-1.452935936718546, 49.030267041800165], + [-1.452971911245631, 49.03026767266503], + [-1.453107058137133, 49.03023931883264], + [-1.453129040909092, 49.0302398268357], + [-1.453563875862572, 49.030181513734846], + [-1.453927458963233, 49.03014952603635], + [-1.454684284019186, 49.03001601643393], + [-1.4556041114158, 49.02983522273534], + [-1.45633528749164, 49.029701320231226], + [-1.456599470815935, 49.029636386894715], + [-1.456859884566635, 49.02954510491541], + [-1.457216958094627, 49.029449546392286], + [-1.457657695862679, 49.02939704018672], + [-1.457952697401475, 49.02937805056121], + [-1.458543529630631, 49.02937611885037], + [-1.459418890113739, 49.02941205804522], + [-1.4595588367873, 49.02939918914138], + [-1.459647808524431, 49.02939100818684], + [-1.45981173834437, 49.02935505624181], + [-1.459977955563748, 49.029301650035116], + [-1.46007702482525, 49.0292804536462], + [-1.460185843302788, 49.02926736800293], + [-1.460367080607095, 49.02926883046293], + [-1.460804929187744, 49.02927234486838], + [-1.46094192158442, 49.029273449924396], + [-1.461061860422605, 49.029262375975044], + [-1.461209953194966, 49.02923601216176], + [-1.461492302710045, 49.02916928451514], + [-1.461874652308826, 49.02906930026454], + [-1.461994303421172, 49.02902940055602], + [-1.462033715309178, 49.02899325838838], + [-1.462039050386169, 49.028941358516114], + [-1.462002487375867, 49.028891987799454], + [-1.462061373216727, 49.02884680544972], + [-1.462112364275487, 49.02889330616393], + [-1.46220824503751, 49.029201861100134], + [-1.46220824503751, 49.029201861100134] + ] + }, + "length": 1.0533444699184005, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44628", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00920", + "bus2": "MVBus00921", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.46220824503751, 49.029201861100134], + [-1.46220824503751, 49.029201861100134], + [-1.462290390398361, 49.02946968459122], + [-1.462371704516555, 49.029572213825645], + [-1.462402626709977, 49.02965815490035], + [-1.462401320349518, 49.029723898258666], + [-1.462339844977394, 49.02980772229685], + [-1.462271825440518, 49.02984425267264], + [-1.462051101816434, 49.029936173574164], + [-1.461815657267072, 49.03005787295793], + [-1.461736098180515, 49.03010660944954], + [-1.461736098180515, 49.03010660944954] + ] + }, + "length": 0.1261069012522324, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35802", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00921", + "bus2": "MVBus00922", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461736098180515, 49.03010660944954], + [-1.461736098180515, 49.03010660944954], + [-1.461688708940827, 49.03014852003263], + [-1.461636165584485, 49.03022303603474], + [-1.4616182930593, 49.03028752484309], + [-1.461595620092388, 49.03042997738192], + [-1.461598743787536, 49.03059539637252], + [-1.461611710527563, 49.03073075976338], + [-1.461604314478343, 49.03089062052405], + [-1.461584532035902, 49.0310785125175], + [-1.461592122187334, 49.031202162416], + [-1.461610475380447, 49.031287801540905], + [-1.461657194212456, 49.0313695697353], + [-1.461710376473961, 49.031416441731], + [-1.461764829853785, 49.031439486446786], + [-1.461764829853785, 49.031439486446786] + ] + }, + "length": 0.15470776890167054, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44629", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00922", + "bus2": "MVBus00923", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461764829853785, 49.031439486446786], + [-1.461764829853785, 49.031439486446786], + [-1.461860958343164, 49.03148037735713], + [-1.461943203005254, 49.03155553671749], + [-1.461961166928875, 49.0316258310834], + [-1.461930122452196, 49.03176254009382], + [-1.461830112763931, 49.032079204786434], + [-1.461618693822098, 49.03268167812438], + [-1.461554088632036, 49.03287256955884], + [-1.46149220999655, 49.033155408592826], + [-1.461455604951194, 49.03332276525344], + [-1.461397716173976, 49.033603497990065], + [-1.461397716173976, 49.033603497990065] + ] + }, + "length": 0.2505341950033376, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40644", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00923", + "bus2": "MVBus00924", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461397716173976, 49.033603497990065], + [-1.461397716173976, 49.033603497990065], + [-1.461374334072053, 49.03373633729623], + [-1.461313027865901, 49.03419124299641], + [-1.461339950046074, 49.03472244037516], + [-1.461430258548458, 49.03515735668398], + [-1.461516985174621, 49.035477339466745], + [-1.461516985174621, 49.035477339466745] + ] + }, + "length": 0.209729608293412, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36669", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00924", + "bus2": "MVBus00925", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.461516985174621, 49.035477339466745], + [-1.461516985174621, 49.035477339466745], + [-1.461636332041758, 49.03583319748804], + [-1.461816284715681, 49.03634269548755], + [-1.462016424917492, 49.03693273545428], + [-1.462146034652944, 49.03720964603532], + [-1.462095133531544, 49.03748604452549], + [-1.462084116795383, 49.03772371318449], + [-1.461985445551021, 49.03825455769082], + [-1.461950971820154, 49.038302489626595], + [-1.461974505019591, 49.038364194840355], + [-1.46212063599448, 49.038478202386436], + [-1.462193923769989, 49.03863511842277], + [-1.462168237053737, 49.038673405629154], + [-1.462180093910419, 49.03876983066938], + [-1.46243221826143, 49.03903347017005], + [-1.46263604146269, 49.03928615826684], + [-1.462766500065885, 49.0395099526952], + [-1.462851100287034, 49.03969149170124], + [-1.462989132345855, 49.04040528968407], + [-1.463040807545705, 49.04067251449128], + [-1.463061651999394, 49.04087447890193], + [-1.463032542056454, 49.04105963441946], + [-1.462973299953647, 49.04135191554204], + [-1.462916592883118, 49.0416784643918], + [-1.462946167168396, 49.041886736392236], + [-1.463136404391613, 49.04227724041701], + [-1.463329820395658, 49.04267426437182], + [-1.463544397108902, 49.043044893991826], + [-1.463828008882034, 49.04340292716677], + [-1.463895209017004, 49.04348776704204], + [-1.463927453590852, 49.04355174059892], + [-1.463938172038025, 49.04359211754275], + [-1.463944322304577, 49.043645729645746], + [-1.463937029008645, 49.043696863573665], + [-1.463937029008645, 49.043696863573665] + ] + }, + "length": 0.9535930549356172, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00925", + "bus2": "MVBus00926", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.463937029008645, 49.043696863573665], + [-1.463937029008645, 49.043696863573665], + [-1.463932036108716, 49.04371771424355], + [-1.464028315492035, 49.04395531525315], + [-1.464101011375718, 49.04413467675768], + [-1.464170822826148, 49.04431017153663], + [-1.4642307685798, 49.044548136567656], + [-1.464242126929302, 49.04465296161326], + [-1.464192634662235, 49.044738212101564], + [-1.464123005795986, 49.04478027252261], + [-1.463878359794863, 49.04484941111561], + [-1.463829558240103, 49.04487806084146], + [-1.463797276912264, 49.044900598232616], + [-1.463773006878715, 49.04493324466457], + [-1.463760217927605, 49.04497349671277], + [-1.463763475431285, 49.045100098907064], + [-1.463787589992099, 49.04542765671082], + [-1.463821255391476, 49.04595093383802], + [-1.463835997570601, 49.0461799907788], + [-1.463995464115393, 49.046275309101084], + [-1.463995464115393, 49.046275309101084] + ] + }, + "length": 0.312439862493794, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42221", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00926", + "bus2": "MVBus00927", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.463995464115393, 49.046275309101084], + [-1.463995464115393, 49.046275309101084], + [-1.464069042560407, 49.04630805448473], + [-1.464140902913082, 49.04631746376791], + [-1.465217946428581, 49.04630190746093], + [-1.466279929493993, 49.04627512544945], + [-1.466413516530068, 49.04630128113903], + [-1.46676497215578, 49.04629009305314], + [-1.46691734142602, 49.046329684706066], + [-1.468030228897367, 49.04631764005887], + [-1.468455203328844, 49.04629007125595], + [-1.4703770481289, 49.0462943407502], + [-1.47131735893747, 49.046306477203075], + [-1.471435026930273, 49.046309743935716], + [-1.471676151068217, 49.04634650061685], + [-1.471935671419052, 49.046386062051376], + [-1.472327425401432, 49.046395911187254], + [-1.47284001029685, 49.04639828072449], + [-1.473152070203375, 49.04638365183779], + [-1.474118581233217, 49.04626862023006], + [-1.474679953079951, 49.046201799104665], + [-1.47489493713142, 49.04618069916942], + [-1.4750842949228, 49.04619103149806], + [-1.475332693490119, 49.04622988787032], + [-1.475766004920796, 49.04636342399073], + [-1.476145378400156, 49.04648932360601], + [-1.476330395378819, 49.04653721794178], + [-1.476592479618372, 49.04656861772087], + [-1.477012937754514, 49.04657624846328], + [-1.477695238534076, 49.04656382168347], + [-1.47819266270097, 49.046601737538595], + [-1.478625741644053, 49.046683818969136], + [-1.47925463743429, 49.046911676246324], + [-1.479822424071774, 49.04708300527772], + [-1.480038189922119, 49.04711353762354], + [-1.48037069037245, 49.047086540734135], + [-1.480587418197079, 49.04708195496803], + [-1.480816349401783, 49.047098030693704], + [-1.481276208974316, 49.04710906517078], + [-1.481587049376394, 49.04707807891043], + [-1.481891418404565, 49.047007534062715], + [-1.482179762587331, 49.04696089162068], + [-1.482357439581577, 49.04695755992133], + [-1.482483073332732, 49.04697225640185], + [-1.482609535036043, 49.0469870432378], + [-1.482729409695775, 49.046983093854905], + [-1.482854449721809, 49.04694167061444], + [-1.483175454271017, 49.04680743491148], + [-1.483706524272305, 49.04662671606613], + [-1.484111075449247, 49.046515535981584], + [-1.484454315362873, 49.046441402057084], + [-1.484669830905945, 49.046420473865055], + [-1.484714676998851, 49.04644944765004], + [-1.484704778096456, 49.046604144902865], + [-1.484528551174364, 49.04720391302258], + [-1.48454047037633, 49.04736492956399], + [-1.484666398692526, 49.047672001629984], + [-1.485184862589901, 49.04881093069458], + [-1.485381284192793, 49.04910872946407], + [-1.485759352242295, 49.049552766543556], + [-1.486005671513143, 49.04975540402274], + [-1.486403444498629, 49.04993682097672], + [-1.487346462473604, 49.05032066105498], + [-1.488836559704555, 49.05097936517104], + [-1.488862704304587, 49.0510440227481], + [-1.488848930437791, 49.051098263007546], + [-1.488227127771161, 49.051639789405506], + [-1.487556489830751, 49.05221422786104], + [-1.487556424187144, 49.05222498079158], + [-1.487571747077065, 49.052234116603024], + [-1.487571747077065, 49.052234116603024] + ] + }, + "length": 2.372234450264817, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40645", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus00927", + "bus2": "MVLV06709", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.487571747077065, 49.052234116603024], + [-1.487571747077065, 49.052234116603024], + [-1.487651890320432, 49.05227754151106], + [-1.487822553785858, 49.05234445561092], + [-1.489515792790746, 49.05299984324265], + [-1.489857570275332, 49.053167487575], + [-1.490140828951293, 49.05343440155237], + [-1.490300367950366, 49.053660223145656], + [-1.490385669777245, 49.05410766739315], + [-1.490395847296826, 49.05422535762595], + [-1.490409177190194, 49.054238983212024], + [-1.49047246004676, 49.05425063090957], + [-1.491034531883442, 49.05425484723805], + [-1.49151536338405, 49.05421551174843], + [-1.492099029931455, 49.05419510942734], + [-1.49232210376549, 49.05422214766643], + [-1.492428989749512, 49.054225559648884], + [-1.492794706365494, 49.05421212946958], + [-1.493222489847871, 49.0542291861421], + [-1.494326600450905, 49.054352758481116], + [-1.495167833961877, 49.054438599375935], + [-1.496501911794578, 49.054506914985375], + [-1.497981927213178, 49.0545790879453], + [-1.499113964089357, 49.0546931736638], + [-1.500871438503947, 49.054858955339654], + [-1.501250579299137, 49.05488609256451], + [-1.501806537308233, 49.05491267641779], + [-1.502761443817919, 49.054930667119464], + [-1.50336542424111, 49.05492653372335], + [-1.505015876537338, 49.054852471957986], + [-1.5053352571529, 49.05484984074067], + [-1.50614700417173, 49.05486574117562], + [-1.506632090929439, 49.05490360559451], + [-1.507468529447238, 49.05505617989572], + [-1.508595945035842, 49.05521466076088], + [-1.509358017674797, 49.055304695874256], + [-1.510441859022179, 49.05534617582712], + [-1.511507872963141, 49.055304209748975], + [-1.512865308022292, 49.05513101312053], + [-1.515033691375231, 49.054743802561354], + [-1.516813952978659, 49.05438788174744], + [-1.517100914513969, 49.05431260892745], + [-1.518491808439635, 49.05404525110661], + [-1.519765288864623, 49.05380619132052], + [-1.520110602903428, 49.05376084880229], + [-1.520902379222519, 49.05360814668655], + [-1.521008870275287, 49.053570161144826], + [-1.521056703707298, 49.05366913668579], + [-1.521066080032439, 49.05368854568226], + [-1.5210751434046905, 49.05368710146948] + ] + }, + "length": 2.615219412770797, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35804", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06709", + "bus2": "MVBus23996", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5210751434046905, 49.05368710146948], + [-1.521084206776942, 49.05368565725669], + [-1.521074659293919, 49.053665057228606], + [-1.521019038424444, 49.053545037975155], + [-1.521031745635214, 49.05352714712934], + [-1.521298437560975, 49.05346853239154], + [-1.52301610506183, 49.053166439178405], + [-1.52429125419748, 49.052952403545596], + [-1.524862199034329, 49.052856571189004], + [-1.525869579659604, 49.0526839023093], + [-1.527064397653925, 49.05246272577289], + [-1.527646099962972, 49.05235328866881], + [-1.527754331702429, 49.052313234264034], + [-1.527730429914871, 49.05205523429216], + [-1.527703405020569, 49.05172498351828], + [-1.52762871213291, 49.05144199588262], + [-1.527603181273045, 49.05136644833384], + [-1.527326083913721, 49.05083072981464], + [-1.527280366294644, 49.05073070715918], + [-1.527272379353617, 49.050683804542594], + [-1.527295823545118, 49.05064152634071], + [-1.527305659304398, 49.050631392784375], + [-1.527305659304398, 49.050631392784375] + ] + }, + "length": 0.720675603266393, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35803", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23996", + "bus2": "MVBus23998", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527305659304398, 49.050631392784375], + [-1.527305659304398, 49.050631392784375], + [-1.527327795736221, 49.05060858083972], + [-1.527714856237386, 49.05050963903404], + [-1.527960395447837, 49.05044686148177], + [-1.528224832317365, 49.050379270582894], + [-1.528526227661762, 49.050339677843084], + [-1.5287272517413, 49.05032916148638], + [-1.528853481701537, 49.050320048163094], + [-1.529255856264083, 49.05028290823768], + [-1.529585909187001, 49.05021896688841], + [-1.529928455344019, 49.05015864181593], + [-1.53019609145295, 49.05011882384198], + [-1.530567897579363, 49.050081661171], + [-1.530750873019423, 49.05006337659347], + [-1.530799108036813, 49.05005551741369], + [-1.530799108036813, 49.05005551741369] + ] + }, + "length": 0.2653430767218643, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42222", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23998", + "bus2": "MVLV16847", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530799108036813, 49.05005551741369], + [-1.530799108036813, 49.05005551741369], + [-1.531148774597256, 49.04999854796747], + [-1.531745002481844, 49.04989582567005], + [-1.532032387461069, 49.04985436537959], + [-1.532601502578957, 49.049777644667515], + [-1.532825836433212, 49.049731188963754], + [-1.53333247636557, 49.04959619171755], + [-1.533898658024065, 49.04941907453518], + [-1.53501054220607, 49.04907754206871], + [-1.535164964641367, 49.04903010858185], + [-1.535659149246876, 49.04889874349167], + [-1.536239538693067, 49.04874827947066], + [-1.536526048629258, 49.04868506410161], + [-1.536860671923363, 49.04860656788547], + [-1.537021619929697, 49.048560953579134], + [-1.53715418505952, 49.04851813972706], + [-1.537564194458377, 49.048420291941994], + [-1.538061599815586, 49.048306454790044], + [-1.538624104150744, 49.04818392710703], + [-1.538920579868436, 49.04811934786248], + [-1.539089925695431, 49.04801098421811], + [-1.539085781863044, 49.047994987336814], + [-1.539071700833383, 49.047983361416655], + [-1.5390729458236736, 49.04797870565177] + ] + }, + "length": 0.654051154512833, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43258", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16847", + "bus2": "MVBus28325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5390729458236736, 49.04797870565177], + [-1.539074190813964, 49.04797404988689], + [-1.53908716103271, 49.047980907536555], + [-1.539101185446201, 49.047988315777985], + [-1.539316605693734, 49.047851025638565], + [-1.539347393978268, 49.047812824813754], + [-1.539351613721101, 49.047799390584025], + [-1.539354579098979, 49.04779604651547], + [-1.539451083943058, 49.04774387363535], + [-1.539474870357235, 49.04773254857634], + [-1.539493036727845, 49.04772712784839], + [-1.539543500143926, 49.047726021307405], + [-1.539561202747304, 49.047721533293696], + [-1.539618930783724, 49.04769267868199], + [-1.540530019017743, 49.047228988219814], + [-1.54063297161658, 49.047183784507276], + [-1.540651282952445, 49.04717993333371], + [-1.540664008955005, 49.0471851793114], + [-1.540789769187251, 49.04727014831849], + [-1.540883135200533, 49.04742730671792], + [-1.541076723447483, 49.0477483283096], + [-1.541267472799378, 49.048044646429545], + [-1.541277164852435, 49.0480583309047], + [-1.541298138103624, 49.04806258036238], + [-1.541313581198498, 49.04805862427436], + [-1.541390796303494, 49.04802900126815], + [-1.541469818361159, 49.04800448373887], + [-1.541550867843203, 49.047972702861664], + [-1.542321682529178, 49.04758500516208], + [-1.542345103576804, 49.047579755249956], + [-1.542477765494462, 49.04759587047988], + [-1.542515582025845, 49.04760696821268], + [-1.542537705937597, 49.04762416254769], + [-1.542552232788907, 49.047649178920054], + [-1.542619622656282, 49.04779553766782], + [-1.542619622656282, 49.04779553766782] + ] + }, + "length": 0.38872330148286005, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36671", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28325", + "bus2": "MVBus28327", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542619622656282, 49.04779553766782], + [-1.542619622656282, 49.04779553766782], + [-1.542641658386537, 49.047807003852895], + [-1.542744749183823, 49.047787686778726], + [-1.542757617444419, 49.047791542407566], + [-1.542770401208704, 49.04781922444621], + [-1.542770401208704, 49.04781922444621] + ] + }, + "length": 0.014141871633893131, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42285", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28327", + "bus2": "MVBus28328", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542770401208704, 49.04781922444621], + [-1.542770401208704, 49.04781922444621], + [-1.543160132707009, 49.04855842579815], + [-1.543239284572438, 49.04870644447264], + [-1.543252843482533, 49.04871766403634], + [-1.543274146587015, 49.0487230180555], + [-1.54329582926091, 49.04872231386107], + [-1.543398491285356, 49.04869872771487], + [-1.54349701216967, 49.04872147480368], + [-1.543880961875083, 49.04864378567214], + [-1.543922152243239, 49.04861071580438], + [-1.544634814721229, 49.048458369585916], + [-1.544702393697539, 49.04846880559844], + [-1.544702393697539, 49.04846880559844] + ] + }, + "length": 0.21885935424672956, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40598", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28328", + "bus2": "MVLV07026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544702393697539, 49.04846880559844], + [-1.544702393697539, 49.04846880559844], + [-1.544764431904579, 49.048466897964474], + [-1.544752904038435, 49.04845138404925], + [-1.544752904038435, 49.04845138404925] + ] + }, + "length": 0.006460115007856009, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45089", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28327", + "bus2": "MVBus28330", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542770401208704, 49.04781922444621], + [-1.542770401208704, 49.04781922444621], + [-1.54269578108089, 49.0477870187179], + [-1.542593000971066, 49.047579892861926], + [-1.542633707477476, 49.04748756783966], + [-1.542862708504378, 49.04736940703681], + [-1.542862708504378, 49.04736940703681] + ] + }, + "length": 0.06272664872796083, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42356", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28330", + "bus2": "MVBus28331", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542862708504378, 49.04736940703681], + [-1.542862708504378, 49.04736940703681], + [-1.542944055746831, 49.0473286815882], + [-1.542914598163958, 49.047267631884175], + [-1.543687668838576, 49.046970116754935], + [-1.543922806647433, 49.046880850250076], + [-1.543922806647433, 49.046880850250076] + ] + }, + "length": 0.09993459681209216, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38222", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28331", + "bus2": "MVLV03204", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543922806647433, 49.046880850250076], + [-1.543922806647433, 49.046880850250076], + [-1.54394434314334, 49.04687475253979], + [-1.544013663228632, 49.0469762885837], + [-1.544018357653604, 49.04697501147895] + ] + }, + "length": 0.01409106855686576, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36543", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03204", + "bus2": "MVBus30451", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544018357653604, 49.04697501147895], + [-1.544023052078576, 49.04697373437419], + [-1.543953161366732, 49.04686824925286], + [-1.543968182557054, 49.04686214725682], + [-1.543968182557054, 49.04686214725682] + ] + }, + "length": 0.014086255823606729, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37010", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30451", + "bus2": "MVBus30452", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543968182557054, 49.04686214725682], + [-1.543968182557054, 49.04686214725682], + [-1.544605930612236, 49.04663486061268], + [-1.544605930612236, 49.04663486061268] + ] + }, + "length": 0.053032760086801294, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44728", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30452", + "bus2": "MVBus30453", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544605930612236, 49.04663486061268], + [-1.544605930612236, 49.04663486061268], + [-1.544687266748538, 49.04661568174298], + [-1.544873477507897, 49.046579653945265], + [-1.545161809170049, 49.04653566514119], + [-1.545870476732643, 49.04648912641739], + [-1.54642582085625, 49.04651351450512], + [-1.546565506483741, 49.046617737268065], + [-1.547051839426172, 49.04689749314179], + [-1.547863685664065, 49.04722293849653], + [-1.547947345951973, 49.04729393860409], + [-1.548474597424071, 49.04730937037455], + [-1.548408612820894, 49.047149527293634], + [-1.548357265100732, 49.04693155608327], + [-1.548313755206265, 49.04625321973305], + [-1.548385077336012, 49.04625140406671], + [-1.548385077336012, 49.04625140406671] + ] + }, + "length": 0.43934262295050397, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36461", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30453", + "bus2": "MVLV06428", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548385077336012, 49.04625140406671], + [-1.548385077336012, 49.04625140406671], + [-1.548400674688752, 49.04647265231329], + [-1.548377048131278, 49.046503164420834], + [-1.548489932114923, 49.0471557715872], + [-1.548693332290306, 49.04758288751493], + [-1.548803567535187, 49.04762596910421], + [-1.549760548142787, 49.04856059337284], + [-1.550092824062448, 49.0489365146065], + [-1.549997403449801, 49.04903588566835], + [-1.549997403449801, 49.04903588566835] + ] + }, + "length": 0.3473397731794154, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37534", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30453", + "bus2": "MVBus30454", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548385077336012, 49.04625140406671], + [-1.548385077336012, 49.04625140406671], + [-1.548364120203606, 49.04610387973278], + [-1.548355356077129, 49.046009796288175], + [-1.548360955608255, 49.04600072524646], + [-1.548377885164062, 49.045989801244055], + [-1.548508240919533, 49.045940199402885], + [-1.54868542533753, 49.045857954060715], + [-1.548694609138635, 49.0458543175118], + [-1.548706004463852, 49.045854423719675], + [-1.548712488296865, 49.04585692090286], + [-1.548786100796683, 49.04590499927998], + [-1.548795047362359, 49.04590439339881], + [-1.548795047362359, 49.04590439339881] + ] + }, + "length": 0.06706091210200767, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40646", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30454", + "bus2": "MVLV10304", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548795047362359, 49.04590439339881], + [-1.548795047362359, 49.04590439339881], + [-1.548796872525014, 49.04590554861655], + [-1.548818826142154, 49.04593173530309], + [-1.548833187871386, 49.04595815991977], + [-1.548856389053909, 49.04604765320563], + [-1.548856389053909, 49.04604765320563] + ] + }, + "length": 0.0167271216600722, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33972", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30454", + "bus2": "MVLV19090", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548795047362359, 49.04590439339881], + [-1.548795047362359, 49.04590439339881], + [-1.54874415457815, 49.045871041746736], + [-1.548716449275836, 49.04584972050827], + [-1.548717643632098, 49.04583976707605], + [-1.548860464140761, 49.045759574796705], + [-1.549451583508427, 49.04544475317919], + [-1.550124675523013, 49.04510063033477], + [-1.550542210145414, 49.044888338323226], + [-1.551003323565583, 49.044621040772924], + [-1.551452675126317, 49.044343012852565], + [-1.55147494894388, 49.04433509932164], + [-1.551493557475337, 49.044331218752085], + [-1.551520085330858, 49.04432708940905], + [-1.551536357145032, 49.04431871445041], + [-1.55170559862644, 49.04421582284543], + [-1.551773515207925, 49.04418027845073], + [-1.552397691066736, 49.043807656922176], + [-1.553450620192724, 49.04324002412785], + [-1.553616765696485, 49.04313591675201], + [-1.554536364969822, 49.04261835593874], + [-1.554630935627503, 49.0425731604297], + [-1.554728121323984, 49.04253778530313], + [-1.554793246841393, 49.042526999598884], + [-1.555128642161776, 49.04237734847322], + [-1.555215804189633, 49.04230886677218], + [-1.555291918479844, 49.04224905815403], + [-1.55556690835119, 49.04211782924832], + [-1.555773706653381, 49.0420367756479], + [-1.555927460897082, 49.0420020392582], + [-1.5563621559803, 49.041870210308446], + [-1.557243754481307, 49.04164329797238], + [-1.557577765808976, 49.041575431176554], + [-1.557911290374896, 49.04152615806614], + [-1.558023430028632, 49.041464291224436], + [-1.55860027153412, 49.041386380315835], + [-1.558701413702804, 49.04133566782017], + [-1.558726454865058, 49.04126796753512], + [-1.558809121298518, 49.04125226196462], + [-1.55881269212674, 49.04125814200877] + ] + }, + "length": 0.9222868288749778, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV19090", + "bus2": "MVBus35324", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.55881269212674, 49.04125814200877], + [-1.558816262954962, 49.04126402205292], + [-1.55879960852441, 49.041267480218785], + [-1.558784975477743, 49.04127052157784], + [-1.558783151353761, 49.041281170529324], + [-1.558804685499073, 49.04130628962899], + [-1.558842483103754, 49.04132548913312], + [-1.558887539075615, 49.041328068381716], + [-1.559019832525288, 49.041309682528684], + [-1.559063379597612, 49.041292265614636], + [-1.559193882095625, 49.0412733621665], + [-1.559305690169221, 49.041263165618645], + [-1.55936280454823, 49.0412508932076], + [-1.559427355561703, 49.04122835554723], + [-1.559514529559971, 49.04118696896896], + [-1.559514529559971, 49.04118696896896] + ] + }, + "length": 0.06282985142000849, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44630", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35324", + "bus2": "MVBus35325", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.559514529559971, 49.04118696896896], + [-1.559514529559971, 49.04118696896896], + [-1.559709096386036, 49.04111279398212], + [-1.559745683551936, 49.04111160050436], + [-1.559821585839333, 49.04115678164543], + [-1.559892725026131, 49.041219905192385], + [-1.559943136765103, 49.041251558581735], + [-1.560000274635698, 49.04126806650347], + [-1.560334006180506, 49.04130426026244], + [-1.560412409457703, 49.04130170232339], + [-1.560461807273766, 49.04130813399454], + [-1.560806126227082, 49.041345699454745], + [-1.561545394372359, 49.041513337826096], + [-1.561893552787597, 49.04154118410379], + [-1.561893552787597, 49.04154118410379] + ] + }, + "length": 0.1874883237140566, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33280", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35325", + "bus2": "MVLV07041", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561893552787597, 49.04154118410379], + [-1.561893552787597, 49.04154118410379], + [-1.561927522567093, 49.04155625201814], + [-1.561970866675699, 49.041560622411126], + [-1.56199895611086, 49.04162613053569], + [-1.56199895611086, 49.04162613053569] + ] + }, + "length": 0.01377110907182497, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42224", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35325", + "bus2": "MVBus35326", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.561893552787597, 49.04154118410379], + [-1.561893552787597, 49.04154118410379], + [-1.562524220667454, 49.04159162112046], + [-1.562785661856347, 49.04158423815972], + [-1.563003832429402, 49.0415357743919], + [-1.563065351941532, 49.04151768825974], + [-1.563086273529028, 49.041471075439105], + [-1.56329632690482, 49.04129197847891], + [-1.563041784408246, 49.040419552504396], + [-1.564656394675905, 49.0399616456111], + [-1.564656394675905, 49.0399616456111] + ] + }, + "length": 0.3452553851048107, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43259", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35326", + "bus2": "MVBus35327", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564656394675905, 49.0399616456111], + [-1.564656394675905, 49.0399616456111], + [-1.56477166927779, 49.04006908383008], + [-1.564846152553497, 49.04018074239322], + [-1.564944563084799, 49.0403022448436], + [-1.565293663892719, 49.04062619676181], + [-1.565553656895697, 49.040849583902435], + [-1.56575972902615, 49.040805891692656], + [-1.566786580333107, 49.040206038020955], + [-1.567592032234608, 49.039726108679], + [-1.567785322782766, 49.03958767763209], + [-1.567923196296619, 49.039552688609305], + [-1.568512926040833, 49.03949090683377], + [-1.568582327630608, 49.03946092678065], + [-1.568672147050414, 49.03936653489037], + [-1.568819877921556, 49.03932401583802], + [-1.56889755134967, 49.03931854303925], + [-1.56889755134967, 49.03931854303925] + ] + }, + "length": 0.4259832199447021, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43094", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35327", + "bus2": "MVLV12057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56889755134967, 49.03931854303925], + [-1.56889755134967, 49.03931854303925], + [-1.569207283853655, 49.03928810855918], + [-1.569336793905305, 49.03926089488837], + [-1.569520780594536, 49.03922223665458], + [-1.569801212742898, 49.03914586607496], + [-1.570369458462948, 49.03897495921441], + [-1.570755358618667, 49.03884795560977], + [-1.570958583583596, 49.03878415764787], + [-1.571311362440169, 49.0386734138073], + [-1.571681307813345, 49.03853202987447], + [-1.571859227161483, 49.03845196386364], + [-1.572196877148248, 49.03829562919721], + [-1.572383303985448, 49.038212089947066], + [-1.57258962514206, 49.03813429617895], + [-1.572806169237924, 49.03802416473127], + [-1.573001586241041, 49.03791660481103], + [-1.5731605367009, 49.0378228342147], + [-1.573176480418269, 49.037838929947284], + [-1.573180852027758, 49.03784334837375], + [-1.573190573011825, 49.03785316989166], + [-1.5732046465483145, 49.03784077453285] + ] + }, + "length": 0.3608666904470401, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42542", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12057", + "bus2": "MVBus38707", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5732046465483145, 49.03784077453285], + [-1.573218720084804, 49.03782837917405], + [-1.573219651809008, 49.037819720451296], + [-1.57322154365186, 49.03781596970849], + [-1.573227549864818, 49.03781215625664], + [-1.573258148212849, 49.03779913446993], + [-1.573312324229853, 49.037779591683716], + [-1.573325829780514, 49.03777487593759], + [-1.573331638301449, 49.03777025921228], + [-1.57333527060948, 49.03776437315942], + [-1.573339785855734, 49.03774864236069], + [-1.57334169597768, 49.03769833099782], + [-1.573342790395212, 49.03760978164462], + [-1.573343277836613, 49.03754321409212], + [-1.57334572821313, 49.03751521585298], + [-1.573352388295262, 49.0374920282099], + [-1.573361087536584, 49.03747390216129], + [-1.573372352155105, 49.03745875114554], + [-1.573387770905307, 49.03744930325708], + [-1.573412089368376, 49.03744154337803], + [-1.573449039487969, 49.03743596113151], + [-1.573463336845917, 49.03743501622289], + [-1.573545656555698, 49.03743329292324], + [-1.573791882873774, 49.037429469250924], + [-1.573799928885973, 49.03743072633203], + [-1.573809545526832, 49.03742941279846], + [-1.573828886943377, 49.037428032786806], + [-1.574062099194975, 49.03742240336289], + [-1.57413641939213, 49.037423469769344], + [-1.574167198997303, 49.03742115735632], + [-1.574266818502687, 49.03741838125526], + [-1.574296785444005, 49.03741979323224], + [-1.574327059797006, 49.03741803714888], + [-1.574457772344386, 49.0374169058892], + [-1.574640115048536, 49.037407074981736], + [-1.574821864527245, 49.03739501394241], + [-1.574941200380019, 49.03739201444614], + [-1.575122163416115, 49.03738727536484], + [-1.575394193281306, 49.037385905212446], + [-1.575498663890308, 49.03738881731566], + [-1.575639549947427, 49.03739354154789], + [-1.575757799980146, 49.03739752257972], + [-1.575788401204087, 49.03739827461094], + [-1.575794645891708, 49.037397611198905], + [-1.575801949128659, 49.03739466383085], + [-1.575810063932191, 49.037391590909166], + [-1.575818206129822, 49.03739068539587], + [-1.575834270796418, 49.03739121181995], + [-1.575957898138581, 49.03739409879968], + [-1.576095318777356, 49.03739462639695], + [-1.576215091482847, 49.03739377962248], + [-1.576486992239081, 49.03738727385578], + [-1.576546879239658, 49.037384241099375], + [-1.576573031719577, 49.037382268603565], + [-1.576581760527585, 49.03738007522339], + [-1.576590121040657, 49.03737681425423], + [-1.576593473177484, 49.037370667353066], + [-1.576596601253085, 49.03735993925844], + [-1.576608053162535, 49.03732127227581], + [-1.576641915144342, 49.03715524546071], + [-1.576653583140471, 49.037058584888], + [-1.576648428526834, 49.03699509008956], + [-1.576636201038921, 49.03694967733421], + [-1.576619850091405, 49.03691088661069], + [-1.576604424216662, 49.03688718975103], + [-1.576553450964756, 49.03682112945253], + [-1.576480923776967, 49.03672833406783], + [-1.576413985226045, 49.03664391181168], + [-1.576358296651647, 49.036573588328686], + [-1.57607637655589, 49.036267969824294], + [-1.575998648032988, 49.03619084661254], + [-1.575874203252597, 49.03606155884443], + [-1.575802824516908, 49.03597287311777], + [-1.575756275334331, 49.03590377048766], + [-1.575727691538593, 49.035854142942476], + [-1.575693926884324, 49.035776955936235], + [-1.57566337528602, 49.03570587169013], + [-1.575636608013797, 49.03561845063443], + [-1.575624434750906, 49.0355787941511], + [-1.575604884901121, 49.03550463236389], + [-1.575578677413021, 49.03535325930008], + [-1.575545520041772, 49.035150434312186], + [-1.575530783310489, 49.035035042894926], + [-1.575498337365689, 49.034731975399154], + [-1.57547572298852, 49.0345324757854], + [-1.575446320871773, 49.03432502007674], + [-1.575396063433757, 49.03387119483934], + [-1.575393172148881, 49.03379655024464], + [-1.575384540079603, 49.03373065897707], + [-1.575385733663119, 49.03370415026993], + [-1.575398440902064, 49.03366742153607], + [-1.575414634194523, 49.03363823518167], + [-1.575447523911081, 49.03358650387202], + [-1.575463612374894, 49.03356839643247], + [-1.575478589266007, 49.033544648200454], + [-1.575516519112069, 49.03347527929619], + [-1.575582252380262, 49.0333296754309], + [-1.575600779975003, 49.03326429799713], + [-1.575607794489839, 49.03320246470485], + [-1.575603504890467, 49.03309437846214], + [-1.575603504890467, 49.03309437846214] + ] + }, + "length": 0.7810390610336964, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34031", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38707", + "bus2": "MVBus38708", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575603504890467, 49.03309437846214], + [-1.575603504890467, 49.03309437846214], + [-1.575602996997248, 49.033042886390724], + [-1.575601372013147, 49.03295136657925], + [-1.57559477053379, 49.03286441839019], + [-1.575589899301903, 49.03276454758031], + [-1.575583251210392, 49.03267355218401], + [-1.575575970203807, 49.03257618953205], + [-1.575563503307198, 49.03244613913025], + [-1.575553558445611, 49.03236201757182], + [-1.575539233951937, 49.03226903332029], + [-1.575521126114076, 49.032192574822034], + [-1.575509459945001, 49.03211426781591], + [-1.575495114429851, 49.032026241668795], + [-1.575482505888749, 49.03195518124611], + [-1.575480886009266, 49.03193452284231], + [-1.575473482255541, 49.03190163782298], + [-1.575451210957967, 49.03179821622847], + [-1.575436647969154, 49.03173693675176], + [-1.575414180308222, 49.03162604492889], + [-1.575386765238798, 49.03151649378895], + [-1.575380339240479, 49.03147502042222], + [-1.575360382267668, 49.03139925223867], + [-1.57533491590319, 49.03130404170185], + [-1.575308538661513, 49.03119391669762], + [-1.57528219235144, 49.031097925218546], + [-1.575257767889541, 49.03101411592138], + [-1.575235218451927, 49.03093663318588], + [-1.575201281883382, 49.03085387322508], + [-1.575179878456012, 49.03080993936897], + [-1.575137494188849, 49.03075546429381], + [-1.57509519538822, 49.03068640199159], + [-1.575025393797894, 49.030601982652335], + [-1.574994935010283, 49.03056133243352], + [-1.574948495115009, 49.03051960416846], + [-1.574897217331448, 49.03048066152195], + [-1.574818544446792, 49.03042958824526], + [-1.574724373268428, 49.03038850555287], + [-1.574648501390273, 49.030353814247924], + [-1.574557700390914, 49.0303172995776], + [-1.574418378028872, 49.03027154135467], + [-1.574289911980064, 49.030226399132665], + [-1.574122499501011, 49.03017178958353], + [-1.573924786762042, 49.03010281387126], + [-1.573742698751843, 49.03004104578526], + [-1.573524216044866, 49.029970977103666], + [-1.573334467002688, 49.029905779424695], + [-1.573141121844727, 49.02984530574219], + [-1.572973976724636, 49.02979238635705], + [-1.572810449324507, 49.02974007708292], + [-1.572692315969053, 49.02969908453164], + [-1.572683931400068, 49.029693519851854], + [-1.572677615651301, 49.029682750065305], + [-1.572676439284145, 49.02966793425671], + [-1.572677573923785, 49.02963376187036], + [-1.572674852933138, 49.02957667396216], + [-1.572677885032044, 49.02956828831333], + [-1.572686430911811, 49.02955863350618], + [-1.572702625592692, 49.02954862033733], + [-1.572736461513759, 49.02953324315701], + [-1.572825811149359, 49.02950110430073], + [-1.572947111279, 49.02946085658546], + [-1.57306906367093, 49.02942886477975], + [-1.573236218396324, 49.0293848841838], + [-1.573412073815963, 49.02933655173863], + [-1.573561608963296, 49.02929497400124], + [-1.573715621311486, 49.02925109013898], + [-1.573783937844556, 49.02922651309621], + [-1.573859548036811, 49.02920429735396], + [-1.574028292177208, 49.02915783431091], + [-1.574122927628097, 49.02912848139886], + [-1.574404882709284, 49.02904357212648], + [-1.574517922141982, 49.029011528786114], + [-1.574658045937291, 49.02896855738001], + [-1.574837352385783, 49.028915422166094], + [-1.574967177186988, 49.02888443007432], + [-1.575201529299176, 49.02882608126887], + [-1.575284264037069, 49.02879696427797], + [-1.575415481427542, 49.02875745070805], + [-1.575415481427542, 49.02875745070805] + ] + }, + "length": 0.7174874457617614, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45219", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38708", + "bus2": "MVLV10414", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575415481427542, 49.02875745070805], + [-1.575415481427542, 49.02875745070805], + [-1.575226867647049, 49.02878253259593], + [-1.573983343738142, 49.02677037365746], + [-1.573983343738142, 49.02677037365746] + ] + }, + "length": 0.255618279052932, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33025", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38708", + "bus2": "MVBus38709", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575415481427542, 49.02875745070805], + [-1.575415481427542, 49.02875745070805], + [-1.584103053761133, 49.026184808059035], + [-1.586145591666526, 49.025624035517666], + [-1.586163645822428, 49.02561765715403], + [-1.586163645822428, 49.02561765715403] + ] + }, + "length": 0.8601561712055001, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43303", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus38707", + "bus2": "MVLV14661", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.575603504890467, 49.03309437846214], + [-1.575603504890467, 49.03309437846214], + [-1.575606556441053, 49.033086253036196], + [-1.575612726752676, 49.03308118344505], + [-1.575623380423884, 49.033075508129706], + [-1.575664329282691, 49.03305484080282], + [-1.575677643206582, 49.03305176848409], + [-1.575698736056475, 49.033053479738435], + [-1.575754110854216, 49.0330660881236], + [-1.575789041057706, 49.03307488566882], + [-1.575798893480743, 49.0330817516294], + [-1.575815021719877, 49.033102096665246], + [-1.575820358399386, 49.03313333990028], + [-1.575820358399386, 49.03313333990028] + ] + }, + "length": 0.02313408212857222, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35327", + "bus2": "MVLV18001", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56889755134967, 49.03931854303925], + [-1.56889755134967, 49.03931854303925], + [-1.568893756419509, 49.039313241894895], + [-1.568819670901675, 49.0393127762733], + [-1.568810550960936, 49.03926982557076], + [-1.568804059103535, 49.039169351653605], + [-1.568882278627921, 49.03901009209144], + [-1.568935462374124, 49.03883375590814], + [-1.568895962584171, 49.038684985337596], + [-1.568851605304648, 49.03857656349965], + [-1.568575460855304, 49.03810838786614], + [-1.568448332100217, 49.03792261618062], + [-1.568360055316023, 49.037657416502604], + [-1.568312137481616, 49.03765478152067], + [-1.568312137481616, 49.03765478152067] + ] + }, + "length": 0.20216554723497288, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36107", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus35326", + "bus2": "MVLV06710", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564656394675905, 49.0399616456111], + [-1.564656394675905, 49.0399616456111], + [-1.564706981331512, 49.03996552650747], + [-1.564727924823297, 49.039952372540434], + [-1.56473933858268, 49.0399329979881], + [-1.56474072503813, 49.039914400807675], + [-1.564732788462391, 49.039903908577465], + [-1.564732788462391, 49.039903908577465] + ] + }, + "length": 0.011525816996281366, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39035", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus30452", + "bus2": "MVBus30458", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544605930612236, 49.04663486061268], + [-1.544605930612236, 49.04663486061268], + [-1.544615426108271, 49.04665466011679], + [-1.544615426108271, 49.04665466011679] + ] + }, + "length": 0.0023087401532615463, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42223", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus28325", + "bus2": "MVLV18902", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542619622656282, 49.04779553766782], + [-1.542619622656282, 49.04779553766782], + [-1.542641442635851, 49.04784292629337], + [-1.542632731877063, 49.0478457642589], + [-1.542632731877063, 49.0478457642589] + ] + }, + "length": 0.0062169144119620864, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36670", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23998", + "bus2": "MVLV13802", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530799108036813, 49.05005551741369], + [-1.530799108036813, 49.05005551741369], + [-1.53077414365494, 49.0500686961079], + [-1.530575403425454, 49.05009159355121], + [-1.530576179130021, 49.05011528391853], + [-1.530576179130021, 49.05011528391853] + ] + }, + "length": 0.01972485063828715, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43398", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23996", + "bus2": "MVLV10305", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527305659304398, 49.050631392784375], + [-1.527305659304398, 49.050631392784375], + [-1.527331567016426, 49.05061818434851], + [-1.527340753067769, 49.0506372212535], + [-1.527356876822457, 49.05063026709952], + [-1.527356876822457, 49.05063026709952] + ] + }, + "length": 0.006027432985588235, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV06709_production", + "bus": "MVLV06709", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06709_consumption", + "bus": "MVLV06709", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV16847_production", + "bus": "MVLV16847", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16847_consumption", + "bus": "MVLV16847", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV07026_production", + "bus": "MVLV07026", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07026_consumption", + "bus": "MVLV07026", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV03204_production", + "bus": "MVLV03204", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03204_consumption", + "bus": "MVLV03204", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV06428_production", + "bus": "MVLV06428", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06428_consumption", + "bus": "MVLV06428", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV10304_production", + "bus": "MVLV10304", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10304_consumption", + "bus": "MVLV10304", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV19090_production", + "bus": "MVLV19090", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19090_consumption", + "bus": "MVLV19090", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV07041_production", + "bus": "MVLV07041", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07041_consumption", + "bus": "MVLV07041", + "phases": "abc", + "powers": [ + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201] + ] + }, + { + "id": "MVLV12057_production", + "bus": "MVLV12057", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12057_consumption", + "bus": "MVLV12057", + "phases": "abc", + "powers": [ + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201] + ] + }, + { + "id": "MVLV10414_production", + "bus": "MVLV10414", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10414_consumption", + "bus": "MVLV10414", + "phases": "abc", + "powers": [ + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201] + ] + }, + { + "id": "MVLV14661_production", + "bus": "MVLV14661", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14661_consumption", + "bus": "MVLV14661", + "phases": "abc", + "powers": [ + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201] + ] + }, + { + "id": "MVLV18001_production", + "bus": "MVLV18001", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18001_consumption", + "bus": "MVLV18001", + "phases": "abc", + "powers": [ + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201] + ] + }, + { + "id": "MVLV06710_production", + "bus": "MVLV06710", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06710_consumption", + "bus": "MVLV06710", + "phases": "abc", + "powers": [ + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201], + [42558.040542803654, 13988.151473977201] + ] + }, + { + "id": "MVLV18902_production", + "bus": "MVLV18902", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18902_consumption", + "bus": "MVLV18902", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV13802_production", + "bus": "MVLV13802", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13802_consumption", + "bus": "MVLV13802", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + }, + { + "id": "MVLV10305_production", + "bus": "MVLV10305", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10305_consumption", + "bus": "MVLV10305", + "phases": "abc", + "powers": [ + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646], + [17920.766675207127, 5890.271158759646] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder151_Summer.json b/roseau/load_flow/data/networks/MVFeeder151_Summer.json new file mode 100644 index 00000000..d6a97826 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder151_Summer.json @@ -0,0 +1,2302 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.400644460738214, 49.19437059827912] + } + }, + { + "id": "HVMV10", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.400644460738214, 49.19437059827912] + } + }, + { + "id": "MVBus01125", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.398471415240154, 49.197311120967456] + } + }, + { + "id": "MVBus01126", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391988779495846, 49.19745201346063] + } + }, + { + "id": "MVBus01127", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387899837464075, 49.19752164227426] + } + }, + { + "id": "MVBus01130", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386434121343654, 49.198307443094826] + } + }, + { + "id": "MVBus01131", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381413645281745, 49.200783953209275] + } + }, + { + "id": "MVBus01133", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37606254916796, 49.2036615010985] + } + }, + { + "id": "MVBus01134", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371497916564513, 49.20636790526618] + } + }, + { + "id": "MVBus01135", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369575619515095, 49.20590586335567] + } + }, + { + "id": "MVLV02073", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369625753006489, 49.205890425353154] + } + }, + { + "id": "MVBus01137", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36602090038556, 49.20768568085028] + } + }, + { + "id": "MVBus01139", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364300108699813, 49.20852396508281] + } + }, + { + "id": "MVLV19065", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362253176306516, 49.20837200995956] + } + }, + { + "id": "MVBus01141", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367250493369971, 49.210069215547236] + } + }, + { + "id": "MVLV01181", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367205145767236, 49.21268268702277] + } + }, + { + "id": "MVLV02449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366077427311016, 49.20770239152203] + } + }, + { + "id": "MVLV12112", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375730651232574, 49.20419860098101] + } + }, + { + "id": "MVLV18760", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381353239112412, 49.2005577296417] + } + }, + { + "id": "MVBus01128", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380055316559206, 49.197925264306974] + } + }, + { + "id": "MVLV04803", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380024828329451, 49.19787713001719] + } + }, + { + "id": "MVBus06160", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379982409316188, 49.19792739961313] + } + }, + { + "id": "MVBus06161", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365872429847849, 49.199108385566035] + } + }, + { + "id": "MVLV05938", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361761784304043, 49.201841114321326] + } + }, + { + "id": "MVBus08004", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351057481226238, 49.20550344920491] + } + }, + { + "id": "MVBus08005", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341857172748097, 49.210916574982235] + } + }, + { + "id": "MVBus08006", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341377964379336, 49.210571781060345] + } + }, + { + "id": "MVBus08007", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339289689674315, 49.209288122200256] + } + }, + { + "id": "MVLV12778", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339859736984475, 49.20901882999961] + } + }, + { + "id": "MVBus08009", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.336664524247945, 49.20817464374827] + } + }, + { + "id": "MVBus08010", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339985618419001, 49.20295456927056] + } + }, + { + "id": "MVLV12777", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341516729699154, 49.199721097795496] + } + }, + { + "id": "MVBus08011", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339064545087953, 49.202948022258376] + } + }, + { + "id": "MVBus08013", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332685539434031, 49.203508463384615] + } + }, + { + "id": "MVLV15670", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329294788631892, 49.203772436228775] + } + }, + { + "id": "MVLV01035", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329691004172543, 49.20145516351973] + } + }, + { + "id": "MVLV04344", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.338969324671971, 49.20256503353621] + } + }, + { + "id": "MVBus08017", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.335554783420955, 49.21006478404471] + } + }, + { + "id": "MVBus08018", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.33443218631297, 49.210029536109076] + } + }, + { + "id": "MVBus08019", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.333282748941467, 49.210448669580074] + } + }, + { + "id": "MVBus08020", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332470098879885, 49.211270721386484] + } + }, + { + "id": "MVLV18028", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329209204026245, 49.21496834539136] + } + }, + { + "id": "MVLV05423", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.327133254002545, 49.20966460598425] + } + }, + { + "id": "MVLV01034", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.335120526113163, 49.21075969320578] + } + }, + { + "id": "MVBus08024", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.338983293547596, 49.21273716925712] + } + }, + { + "id": "MVLV12779", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3392500854367348, 49.21300799062853] + } + }, + { + "id": "MVBus14902", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.33874589232792, 49.212870811064114] + } + }, + { + "id": "MVBus08026", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.342294877769577, 49.21116545587655] + } + }, + { + "id": "MVBus08027", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343421574081732, 49.21199189101324] + } + }, + { + "id": "MVBus08028", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343817635021131, 49.213515226393035] + } + }, + { + "id": "MVBus08029", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343957847639943, 49.21525214415334] + } + }, + { + "id": "MVLV11499", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.34344165605453, 49.21703067189177] + } + }, + { + "id": "MVLV16560", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344092898330874, 49.215241818413936] + } + }, + { + "id": "MVBus08032", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.346331297612717, 49.212191588928825] + } + }, + { + "id": "MVLV12166", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.348823764916332, 49.210614055003745] + } + }, + { + "id": "MVBus08034", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.354209465427343, 49.21360462031885] + } + }, + { + "id": "MVLV11500", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.355198846212574, 49.21312586754413] + } + }, + { + "id": "MVBus01144", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.394727016993843, 49.20059538450612] + } + }, + { + "id": "MVLV15593", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.397099714849239, 49.203207453534056] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV10", + "geometry": { + "type": "Point", + "coordinates": [-1.400644460738214, 49.19437059827912] + } + }, + { + "id": "MVBranch39901", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV10", + "bus2": "MVBus01125", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.400644460738214, 49.19437059827912], + [-1.400569753446861, 49.194351088742074], + [-1.400569753446861, 49.194351088742074], + [-1.400545575309183, 49.19435323704507], + [-1.400223482122071, 49.1943893585729], + [-1.398793696919133, 49.19693354478506], + [-1.398471415240154, 49.197311120967456], + [-1.398471415240154, 49.197311120967456] + ] + }, + "length": 0.3752385234235244, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch31777", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01125", + "bus2": "MVBus01126", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.398471415240154, 49.197311120967456], + [-1.398471415240154, 49.197311120967456], + [-1.391988779495846, 49.19745201346063], + [-1.391988779495846, 49.19745201346063] + ] + }, + "length": 0.4727286229290833, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch08108", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01126", + "bus2": "MVBus01127", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391988779495846, 49.19745201346063], + [-1.391988779495846, 49.19745201346063], + [-1.387899837464075, 49.19752164227426], + [-1.387899837464075, 49.19752164227426] + ] + }, + "length": 0.2981111190342436, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch22889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01127", + "bus2": "MVBus01130", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387899837464075, 49.19752164227426], + [-1.387899837464075, 49.19752164227426], + [-1.386434121343654, 49.198307443094826], + [-1.386434121343654, 49.198307443094826] + ] + }, + "length": 0.13801655858311052, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25204", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01130", + "bus2": "MVBus01131", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386434121343654, 49.198307443094826], + [-1.386434121343654, 49.198307443094826], + [-1.381413645281745, 49.200783953209275], + [-1.381413645281745, 49.200783953209275] + ] + }, + "length": 0.4579636430168069, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04524", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01131", + "bus2": "MVBus01133", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381413645281745, 49.200783953209275], + [-1.381413645281745, 49.200783953209275], + [-1.37606254916796, 49.2036615010985], + [-1.37606254916796, 49.2036615010985] + ] + }, + "length": 0.5044646560906615, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14303", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01133", + "bus2": "MVBus01134", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37606254916796, 49.2036615010985], + [-1.37606254916796, 49.2036615010985], + [-1.374225337378775, 49.20474042083149], + [-1.373410460048645, 49.20544538429207], + [-1.371497916564513, 49.20636790526618], + [-1.371497916564513, 49.20636790526618] + ] + }, + "length": 0.4511924575632565, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch47651", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01134", + "bus2": "MVBus01135", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371497916564513, 49.20636790526618], + [-1.371497916564513, 49.20636790526618], + [-1.370942753305776, 49.20643787853724], + [-1.370829455415836, 49.20643861289541], + [-1.369575619515095, 49.20590586335567], + [-1.369575619515095, 49.20590586335567] + ] + }, + "length": 0.15834763398679907, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33696", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01135", + "bus2": "MVLV02073", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369575619515095, 49.20590586335567], + [-1.369575619515095, 49.20590586335567], + [-1.369605158859287, 49.20588619609382], + [-1.369625753006489, 49.205890425353154], + [-1.369625753006489, 49.205890425353154] + ] + }, + "length": 0.004641468215196063, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33431", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01135", + "bus2": "MVBus01137", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369575619515095, 49.20590586335567], + [-1.369575619515095, 49.20590586335567], + [-1.36892054236915, 49.2062096382133], + [-1.368060935604432, 49.206637470940066], + [-1.366064787519364, 49.2076309061317], + [-1.366040592732759, 49.20762910809543], + [-1.366020639948322, 49.207639519603894], + [-1.36602090038556, 49.20768568085028], + [-1.36602090038556, 49.20768568085028] + ] + }, + "length": 0.3285660531135982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47650", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01137", + "bus2": "MVBus01139", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36602090038556, 49.20768568085028], + [-1.36602090038556, 49.20768568085028], + [-1.364300108699813, 49.20852396508281], + [-1.364300108699813, 49.20852396508281] + ] + }, + "length": 0.15624899895376643, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33843", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01139", + "bus2": "MVLV19065", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364300108699813, 49.20852396508281], + [-1.364300108699813, 49.20852396508281], + [-1.364276611392245, 49.20852576096867], + [-1.364243248037149, 49.208542126894514], + [-1.364236091594157, 49.20855657729598], + [-1.363205303112883, 49.20908166282694], + [-1.363182217606456, 49.20905997893035], + [-1.363114601998387, 49.20907043999173], + [-1.363068865292149, 49.20905010285702], + [-1.362822381345091, 49.2088761192765], + [-1.362656196732397, 49.20875293179674], + [-1.362523738529256, 49.208637122147515], + [-1.362390802049739, 49.208529737046064], + [-1.362236233710043, 49.20838936166313], + [-1.362253176306516, 49.20837200995956], + [-1.362253176306516, 49.20837200995956] + ] + }, + "length": 0.21131752047883515, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41769", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01139", + "bus2": "MVBus01141", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364300108699813, 49.20852396508281], + [-1.364300108699813, 49.20852396508281], + [-1.364255695618835, 49.20855466777179], + [-1.364233181104289, 49.20856535593151], + [-1.364247687054865, 49.208588572788294], + [-1.364721840585656, 49.20896418860553], + [-1.365103025177107, 49.209263773378886], + [-1.365265573628437, 49.20938077372986], + [-1.36565783923541, 49.20929051307568], + [-1.365715681257003, 49.209284076228165], + [-1.365765680470942, 49.209294566568474], + [-1.366161324252151, 49.209494491219935], + [-1.366653094088463, 49.20976090993441], + [-1.366722791100287, 49.20983333966672], + [-1.367250493369971, 49.210069215547236], + [-1.367250493369971, 49.210069215547236] + ] + }, + "length": 0.3020679040124087, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch11215", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01141", + "bus2": "MVLV01181", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367250493369971, 49.210069215547236], + [-1.367250493369971, 49.210069215547236], + [-1.367205145767236, 49.21268268702277], + [-1.367205145767236, 49.21268268702277] + ] + }, + "length": 0.2906729553743542, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42424", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01137", + "bus2": "MVLV02449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36602090038556, 49.20768568085028], + [-1.36602090038556, 49.20768568085028], + [-1.366048334797249, 49.20767221391265], + [-1.366077427311016, 49.20770239152203], + [-1.366077427311016, 49.20770239152203] + ] + }, + "length": 0.0064674831481781325, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44705", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01133", + "bus2": "MVLV12112", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37606254916796, 49.2036615010985], + [-1.37606254916796, 49.2036615010985], + [-1.375619124106296, 49.203755919246895], + [-1.375551483791231, 49.20376324927539], + [-1.375559920898894, 49.203782587360095], + [-1.375578953112975, 49.203793331152795], + [-1.375710875898862, 49.204110202154425], + [-1.37574849786526, 49.20412783568375], + [-1.375730651232574, 49.20419860098101], + [-1.375730651232574, 49.20419860098101] + ] + }, + "length": 0.09091630042257265, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch10887", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01131", + "bus2": "MVLV18760", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381413645281745, 49.200783953209275], + [-1.381413645281745, 49.200783953209275], + [-1.381353239112412, 49.2005577296417], + [-1.381353239112412, 49.2005577296417] + ] + }, + "length": 0.025541382409007853, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30327", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01127", + "bus2": "MVBus01128", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387899837464075, 49.19752164227426], + [-1.387899837464075, 49.19752164227426], + [-1.380055316559206, 49.197925264306974], + [-1.380055316559206, 49.197925264306974] + ] + }, + "length": 0.5734816068735786, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch46260", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01128", + "bus2": "MVLV04803", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380055316559206, 49.197925264306974], + [-1.380055316559206, 49.197925264306974], + [-1.380029045919404, 49.197927167466894], + [-1.38000728056561, 49.197894525942864], + [-1.38000269392821, 49.197887652287186], + [-1.380030197330434, 49.19788077277595], + [-1.380024828329451, 49.19787713001719] + ] + }, + "length": 0.008867814366420233, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43366", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04803", + "bus2": "MVBus06160", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380024828329451, 49.19787713001719], + [-1.380019459328468, 49.19787348725843], + [-1.379957305316593, 49.197886919258224], + [-1.379982409316188, 49.19792739961313], + [-1.379982409316188, 49.19792739961313] + ] + }, + "length": 0.009629375798791267, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23926", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06160", + "bus2": "MVBus06161", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379982409316188, 49.19792739961313], + [-1.379982409316188, 49.19792739961313], + [-1.377170060109506, 49.19799017044783], + [-1.365872429847849, 49.199108385566035], + [-1.365872429847849, 49.199108385566035] + ] + }, + "length": 1.0378022639401279, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch47758", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06161", + "bus2": "MVLV05938", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365872429847849, 49.199108385566035], + [-1.365872429847849, 49.199108385566035], + [-1.365827028833965, 49.19910901473249], + [-1.365810029666131, 49.198817977602594], + [-1.365829128625967, 49.19870168901893], + [-1.365860771436813, 49.19849113541451], + [-1.365847361056913, 49.19841653413548], + [-1.365815922308058, 49.198408996509386], + [-1.365331238464174, 49.19862608969938], + [-1.365151404078402, 49.198704133058555], + [-1.364956470759504, 49.198813089471756], + [-1.364546309981814, 49.19906967546579], + [-1.364261235812909, 49.19929180609771], + [-1.364147340586572, 49.19939815039002], + [-1.363849624683105, 49.19976139167069], + [-1.363593103318113, 49.20005485675752], + [-1.36344447594276, 49.20016231758966], + [-1.36261489185385, 49.20109406657958], + [-1.361890907040449, 49.20180946652499], + [-1.361828576655107, 49.20178829189512], + [-1.36176888697498, 49.20178265941115], + [-1.36169975869267, 49.20180422110307], + [-1.361673734029342, 49.201822950505395], + [-1.361660574273811, 49.20184821775763], + [-1.361704592546255, 49.20187281787203], + [-1.361753350924929, 49.2018713131958], + [-1.361751267972114, 49.201853217322245], + [-1.361749819695023, 49.20184070551553], + [-1.361761784304043, 49.201841114321326] + ] + }, + "length": 0.5953633486620007, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41186", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05938", + "bus2": "MVBus08004", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361761784304043, 49.201841114321326], + [-1.361773748913063, 49.201841523127115], + [-1.36177480667641, 49.20185223007019], + [-1.361778238083724, 49.201886987353795], + [-1.361705114189638, 49.201889243953204], + [-1.361635111319153, 49.20185203471307], + [-1.361395270535267, 49.20185857225343], + [-1.361243192860416, 49.201873644625394], + [-1.358752137034564, 49.20138136594533], + [-1.358705749600252, 49.201379180470234], + [-1.358644727948841, 49.20138537946614], + [-1.358587429994165, 49.20141304169606], + [-1.358561087200398, 49.201442645705455], + [-1.357843883810464, 49.20343510616742], + [-1.357858790998062, 49.20356874702992], + [-1.357846812324177, 49.20361527654082], + [-1.357813439411047, 49.203662465549584], + [-1.357740054563785, 49.20369592093547], + [-1.356531885564209, 49.2037200070457], + [-1.356079487758554, 49.20374682720583], + [-1.355216475988508, 49.20395008626084], + [-1.354852487532074, 49.2040853422354], + [-1.354526501549604, 49.20422548896837], + [-1.354088654340415, 49.20439878856032], + [-1.353612005017919, 49.20462598031792], + [-1.351726659145385, 49.20531873426339], + [-1.351346037426048, 49.20542097706608], + [-1.351090371435637, 49.20551225026362], + [-1.351057481226238, 49.20550344920491], + [-1.351057481226238, 49.20550344920491] + ] + }, + "length": 1.0507376333123526, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08004", + "bus2": "MVBus08005", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351057481226238, 49.20550344920491], + [-1.351057481226238, 49.20550344920491], + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235] + ] + }, + "length": 0.9010255782680595, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11211", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08005", + "bus2": "MVBus08006", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235], + [-1.341377964379336, 49.210571781060345], + [-1.341377964379336, 49.210571781060345] + ] + }, + "length": 0.0518609316474867, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08006", + "bus2": "MVBus08007", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341377964379336, 49.210571781060345], + [-1.341377964379336, 49.210571781060345], + [-1.339289689674315, 49.209288122200256], + [-1.339289689674315, 49.209288122200256] + ] + }, + "length": 0.20864592838227725, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08987", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08007", + "bus2": "MVLV12778", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339289689674315, 49.209288122200256], + [-1.339289689674315, 49.209288122200256], + [-1.339859736984475, 49.20901882999961], + [-1.339859736984475, 49.20901882999961] + ] + }, + "length": 0.05120761384486094, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08007", + "bus2": "MVBus08009", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339289689674315, 49.209288122200256], + [-1.339289689674315, 49.209288122200256], + [-1.338613226606462, 49.208877609230704], + [-1.338570101101447, 49.208851975195614], + [-1.336664524247945, 49.20817464374827], + [-1.336664524247945, 49.20817464374827] + ] + }, + "length": 0.22939722671397728, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02665", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08009", + "bus2": "MVBus08010", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.336664524247945, 49.20817464374827], + [-1.336664524247945, 49.20817464374827], + [-1.339985618419001, 49.20295456927056], + [-1.339985618419001, 49.20295456927056] + ] + }, + "length": 0.6289669786255697, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08010", + "bus2": "MVLV12777", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339985618419001, 49.20295456927056], + [-1.339985618419001, 49.20295456927056], + [-1.341087680788626, 49.2009655810241], + [-1.341516729699154, 49.199721097795496], + [-1.341516729699154, 49.199721097795496] + ] + }, + "length": 0.37722292711614785, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25513", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08010", + "bus2": "MVBus08011", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339985618419001, 49.20295456927056], + [-1.339985618419001, 49.20295456927056], + [-1.339064545087953, 49.202948022258376], + [-1.339064545087953, 49.202948022258376] + ] + }, + "length": 0.0671262774393411, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30328", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08011", + "bus2": "MVBus08013", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339064545087953, 49.202948022258376], + [-1.339064545087953, 49.202948022258376], + [-1.332685539434031, 49.203508463384615], + [-1.332685539434031, 49.203508463384615] + ] + }, + "length": 0.4690211849346568, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14302", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08013", + "bus2": "MVLV15670", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332685539434031, 49.203508463384615], + [-1.332685539434031, 49.203508463384615], + [-1.329294788631892, 49.203772436228775], + [-1.329294788631892, 49.203772436228775] + ] + }, + "length": 0.24883212415093037, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08985", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08013", + "bus2": "MVLV01035", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332685539434031, 49.203508463384615], + [-1.332685539434031, 49.203508463384615], + [-1.331432837743288, 49.201906282821255], + [-1.329691004172543, 49.20145516351973], + [-1.329691004172543, 49.20145516351973] + ] + }, + "length": 0.3367014083562083, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21972", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08011", + "bus2": "MVLV04344", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339064545087953, 49.202948022258376], + [-1.339064545087953, 49.202948022258376], + [-1.338969324671971, 49.20256503353621], + [-1.338969324671971, 49.20256503353621] + ] + }, + "length": 0.04315512044334193, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08988", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08009", + "bus2": "MVBus08017", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.336664524247945, 49.20817464374827], + [-1.336664524247945, 49.20817464374827], + [-1.335554783420955, 49.21006478404471], + [-1.335554783420955, 49.21006478404471] + ] + }, + "length": 0.22522575428647068, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21968", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08017", + "bus2": "MVBus08018", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.335554783420955, 49.21006478404471], + [-1.335554783420955, 49.21006478404471], + [-1.33443218631297, 49.210029536109076], + [-1.33443218631297, 49.210029536109076] + ] + }, + "length": 0.08189035254735173, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21970", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08018", + "bus2": "MVBus08019", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.33443218631297, 49.210029536109076], + [-1.33443218631297, 49.210029536109076], + [-1.333288037132764, 49.210443317898154], + [-1.333282748941467, 49.210448669580074], + [-1.333282748941467, 49.210448669580074] + ] + }, + "length": 0.09593325522205273, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21969", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08019", + "bus2": "MVBus08020", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.333282748941467, 49.210448669580074], + [-1.333282748941467, 49.210448669580074], + [-1.332470098879885, 49.211270721386484], + [-1.332470098879885, 49.211270721386484] + ] + }, + "length": 0.10892327206842724, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15300", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08020", + "bus2": "MVLV18028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332470098879885, 49.211270721386484], + [-1.332470098879885, 49.211270721386484], + [-1.329209204026245, 49.21496834539136], + [-1.329209204026245, 49.21496834539136] + ] + }, + "length": 0.4749260157342042, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08020", + "bus2": "MVLV05423", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332470098879885, 49.211270721386484], + [-1.332470098879885, 49.211270721386484], + [-1.327133254002545, 49.20966460598425], + [-1.327133254002545, 49.20966460598425] + ] + }, + "length": 0.42792148928492063, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18105", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08017", + "bus2": "MVLV01034", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.335554783420955, 49.21006478404471], + [-1.335554783420955, 49.21006478404471], + [-1.335120526113163, 49.21075969320578], + [-1.335120526113163, 49.21075969320578] + ] + }, + "length": 0.08350995205919573, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11216", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08005", + "bus2": "MVBus08024", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235], + [-1.338983293547596, 49.21273716925712], + [-1.338983293547596, 49.21273716925712] + ] + }, + "length": 0.29127642224019146, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch39234", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08024", + "bus2": "MVLV12779", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.338983293547596, 49.21273716925712], + [-1.338983293547596, 49.21273716925712], + [-1.339242521379031, 49.21299378204512], + [-1.339253868351084, 49.21300501889686], + [-1.3392500854367348, 49.21300799062853] + ] + }, + "length": 0.03572113363139701, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39719", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12779", + "bus2": "MVBus14902", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3392500854367348, 49.21300799062853], + [-1.339246302522386, 49.21301096236021], + [-1.33922738972057, 49.213005668970006], + [-1.33874589232792, 49.212870811064114], + [-1.33874589232792, 49.212870811064114] + ] + }, + "length": 0.03965157043617779, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25511", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08005", + "bus2": "MVBus08026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235], + [-1.342294877769577, 49.21116545587655], + [-1.342294877769577, 49.21116545587655] + ] + }, + "length": 0.042228362272331434, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08986", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08026", + "bus2": "MVBus08027", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.342294877769577, 49.21116545587655], + [-1.342294877769577, 49.21116545587655], + [-1.343421574081732, 49.21199189101324], + [-1.343421574081732, 49.21199189101324] + ] + }, + "length": 0.1232348734949884, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11212", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08027", + "bus2": "MVBus08028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343421574081732, 49.21199189101324], + [-1.343421574081732, 49.21199189101324], + [-1.343817635021131, 49.213515226393035], + [-1.343817635021131, 49.213515226393035] + ] + }, + "length": 0.17185604602375276, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25512", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08028", + "bus2": "MVBus08029", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343817635021131, 49.213515226393035], + [-1.343817635021131, 49.213515226393035], + [-1.344057662376381, 49.21443842074906], + [-1.343957847639943, 49.21525214415334], + [-1.343957847639943, 49.21525214415334] + ] + }, + "length": 0.19493978157715744, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05505", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08029", + "bus2": "MVLV11499", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343957847639943, 49.21525214415334], + [-1.343957847639943, 49.21525214415334], + [-1.34344165605453, 49.21703067189177], + [-1.34344165605453, 49.21703067189177] + ] + }, + "length": 0.20134039675703336, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42468", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08029", + "bus2": "MVLV16560", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343957847639943, 49.21525214415334], + [-1.343957847639943, 49.21525214415334], + [-1.343978396866484, 49.21524747472766], + [-1.343989572561411, 49.21524554857661], + [-1.343998460978462, 49.215247155505196], + [-1.344004374963259, 49.215254205441035], + [-1.344011858060366, 49.21525708775308], + [-1.344092898330874, 49.215241818413936], + [-1.344092898330874, 49.215241818413936] + ] + }, + "length": 0.010769055997562197, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch30329", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08027", + "bus2": "MVBus08032", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343421574081732, 49.21199189101324], + [-1.343421574081732, 49.21199189101324], + [-1.346331297612717, 49.212191588928825], + [-1.346331297612717, 49.212191588928825] + ] + }, + "length": 0.21316432697881146, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch16962", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08032", + "bus2": "MVLV12166", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.346331297612717, 49.212191588928825], + [-1.346331297612717, 49.212191588928825], + [-1.348206270278194, 49.210980163397494], + [-1.348823764916332, 49.210614055003745], + [-1.348823764916332, 49.210614055003745] + ] + }, + "length": 0.2525516529399827, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30330", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08032", + "bus2": "MVBus08034", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.346331297612717, 49.212191588928825], + [-1.346331297612717, 49.212191588928825], + [-1.354209465427343, 49.21360462031885], + [-1.354209465427343, 49.21360462031885] + ] + }, + "length": 0.5951220206151072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08034", + "bus2": "MVLV11500", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.354209465427343, 49.21360462031885], + [-1.354209465427343, 49.21360462031885], + [-1.354309381076009, 49.213619811698535], + [-1.355198846212574, 49.21312586754413], + [-1.355198846212574, 49.21312586754413] + ] + }, + "length": 0.09242850337368175, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15818", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01126", + "bus2": "MVBus01144", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391988779495846, 49.19745201346063], + [-1.391988779495846, 49.19745201346063], + [-1.394727016993843, 49.20059538450612], + [-1.394727016993843, 49.20059538450612] + ] + }, + "length": 0.40253590942446993, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31778", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01144", + "bus2": "MVLV15593", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394727016993843, 49.20059538450612], + [-1.394727016993843, 49.20059538450612], + [-1.397099714849239, 49.203207453534056], + [-1.397099714849239, 49.203207453534056] + ] + }, + "length": 0.33806418331880117, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV02073_production", + "bus": "MVLV02073", + "phases": "abc", + "powers": [ + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0] + ] + }, + { + "id": "MVLV02073_consumption", + "bus": "MVLV02073", + "phases": "abc", + "powers": [ + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871] + ] + }, + { + "id": "MVLV19065_production", + "bus": "MVLV19065", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19065_consumption", + "bus": "MVLV19065", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV01181_production", + "bus": "MVLV01181", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01181_consumption", + "bus": "MVLV01181", + "phases": "abc", + "powers": [ + [2621.4750488463815, 861.6371806787896], + [2621.4750488463815, 861.6371806787896], + [2621.4750488463815, 861.6371806787896] + ] + }, + { + "id": "MVLV02449_production", + "bus": "MVLV02449", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02449_consumption", + "bus": "MVLV02449", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV12112_production", + "bus": "MVLV12112", + "phases": "abc", + "powers": [ + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0] + ] + }, + { + "id": "MVLV12112_consumption", + "bus": "MVLV12112", + "phases": "abc", + "powers": [ + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871] + ] + }, + { + "id": "MVLV18760_production", + "bus": "MVLV18760", + "phases": "abc", + "powers": [ + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0] + ] + }, + { + "id": "MVLV18760_consumption", + "bus": "MVLV18760", + "phases": "abc", + "powers": [ + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871] + ] + }, + { + "id": "MVLV04803_production", + "bus": "MVLV04803", + "phases": "abc", + "powers": [ + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0] + ] + }, + { + "id": "MVLV04803_consumption", + "bus": "MVLV04803", + "phases": "abc", + "powers": [ + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871] + ] + }, + { + "id": "MVLV05938_production", + "bus": "MVLV05938", + "phases": "abc", + "powers": [ + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0], + [-2142.8571428571427, 0.0] + ] + }, + { + "id": "MVLV05938_consumption", + "bus": "MVLV05938", + "phases": "abc", + "powers": [ + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871], + [2832.5535201683924, 931.0153191477871] + ] + }, + { + "id": "MVLV12778_production", + "bus": "MVLV12778", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12778_consumption", + "bus": "MVLV12778", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV12777_production", + "bus": "MVLV12777", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12777_consumption", + "bus": "MVLV12777", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV15670_production", + "bus": "MVLV15670", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15670_consumption", + "bus": "MVLV15670", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV01035_production", + "bus": "MVLV01035", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01035_consumption", + "bus": "MVLV01035", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV04344_production", + "bus": "MVLV04344", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04344_consumption", + "bus": "MVLV04344", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV18028_production", + "bus": "MVLV18028", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18028_consumption", + "bus": "MVLV18028", + "phases": "abc", + "powers": [ + [1612.7730171224957, 530.092855989523], + [1612.7730171224957, 530.092855989523], + [1612.7730171224957, 530.092855989523] + ] + }, + { + "id": "MVLV05423_production", + "bus": "MVLV05423", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05423_consumption", + "bus": "MVLV05423", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV01034_production", + "bus": "MVLV01034", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01034_consumption", + "bus": "MVLV01034", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV12779_production", + "bus": "MVLV12779", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12779_consumption", + "bus": "MVLV12779", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV11499_production", + "bus": "MVLV11499", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11499_consumption", + "bus": "MVLV11499", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV16560_production", + "bus": "MVLV16560", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16560_consumption", + "bus": "MVLV16560", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV12166_production", + "bus": "MVLV12166", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12166_consumption", + "bus": "MVLV12166", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV11500_production", + "bus": "MVLV11500", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11500_consumption", + "bus": "MVLV11500", + "phases": "abc", + "powers": [ + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294], + [1508.831202165613, 495.92883354975294] + ] + }, + { + "id": "MVLV15593_production", + "bus": "MVLV15593", + "phases": "abc", + "powers": [ + [-612.2448979591837, 0.0], + [-612.2448979591837, 0.0], + [-612.2448979591837, 0.0] + ] + }, + { + "id": "MVLV15593_consumption", + "bus": "MVLV15593", + "phases": "abc", + "powers": [ + [6436.0808294007475, 2115.4374682704206], + [6436.0808294007475, 2115.4374682704206], + [6436.0808294007475, 2115.4374682704206] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder151_Winter.json b/roseau/load_flow/data/networks/MVFeeder151_Winter.json new file mode 100644 index 00000000..c18b2850 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder151_Winter.json @@ -0,0 +1,2302 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.400644460738214, 49.19437059827912] + } + }, + { + "id": "HVMV10", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.400644460738214, 49.19437059827912] + } + }, + { + "id": "MVBus01125", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.398471415240154, 49.197311120967456] + } + }, + { + "id": "MVBus01126", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391988779495846, 49.19745201346063] + } + }, + { + "id": "MVBus01127", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387899837464075, 49.19752164227426] + } + }, + { + "id": "MVBus01130", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386434121343654, 49.198307443094826] + } + }, + { + "id": "MVBus01131", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381413645281745, 49.200783953209275] + } + }, + { + "id": "MVBus01133", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37606254916796, 49.2036615010985] + } + }, + { + "id": "MVBus01134", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371497916564513, 49.20636790526618] + } + }, + { + "id": "MVBus01135", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369575619515095, 49.20590586335567] + } + }, + { + "id": "MVLV02073", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369625753006489, 49.205890425353154] + } + }, + { + "id": "MVBus01137", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36602090038556, 49.20768568085028] + } + }, + { + "id": "MVBus01139", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364300108699813, 49.20852396508281] + } + }, + { + "id": "MVLV19065", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362253176306516, 49.20837200995956] + } + }, + { + "id": "MVBus01141", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367250493369971, 49.210069215547236] + } + }, + { + "id": "MVLV01181", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.367205145767236, 49.21268268702277] + } + }, + { + "id": "MVLV02449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366077427311016, 49.20770239152203] + } + }, + { + "id": "MVLV12112", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.375730651232574, 49.20419860098101] + } + }, + { + "id": "MVLV18760", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381353239112412, 49.2005577296417] + } + }, + { + "id": "MVBus01128", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380055316559206, 49.197925264306974] + } + }, + { + "id": "MVLV04803", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380024828329451, 49.19787713001719] + } + }, + { + "id": "MVBus06160", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.379982409316188, 49.19792739961313] + } + }, + { + "id": "MVBus06161", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365872429847849, 49.199108385566035] + } + }, + { + "id": "MVLV05938", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361761784304043, 49.201841114321326] + } + }, + { + "id": "MVBus08004", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.351057481226238, 49.20550344920491] + } + }, + { + "id": "MVBus08005", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341857172748097, 49.210916574982235] + } + }, + { + "id": "MVBus08006", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341377964379336, 49.210571781060345] + } + }, + { + "id": "MVBus08007", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339289689674315, 49.209288122200256] + } + }, + { + "id": "MVLV12778", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339859736984475, 49.20901882999961] + } + }, + { + "id": "MVBus08009", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.336664524247945, 49.20817464374827] + } + }, + { + "id": "MVBus08010", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339985618419001, 49.20295456927056] + } + }, + { + "id": "MVLV12777", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.341516729699154, 49.199721097795496] + } + }, + { + "id": "MVBus08011", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339064545087953, 49.202948022258376] + } + }, + { + "id": "MVBus08013", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332685539434031, 49.203508463384615] + } + }, + { + "id": "MVLV15670", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329294788631892, 49.203772436228775] + } + }, + { + "id": "MVLV01035", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329691004172543, 49.20145516351973] + } + }, + { + "id": "MVLV04344", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.338969324671971, 49.20256503353621] + } + }, + { + "id": "MVBus08017", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.335554783420955, 49.21006478404471] + } + }, + { + "id": "MVBus08018", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.33443218631297, 49.210029536109076] + } + }, + { + "id": "MVBus08019", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.333282748941467, 49.210448669580074] + } + }, + { + "id": "MVBus08020", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332470098879885, 49.211270721386484] + } + }, + { + "id": "MVLV18028", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.329209204026245, 49.21496834539136] + } + }, + { + "id": "MVLV05423", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.327133254002545, 49.20966460598425] + } + }, + { + "id": "MVLV01034", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.335120526113163, 49.21075969320578] + } + }, + { + "id": "MVBus08024", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.338983293547596, 49.21273716925712] + } + }, + { + "id": "MVLV12779", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3392500854367348, 49.21300799062853] + } + }, + { + "id": "MVBus14902", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.33874589232792, 49.212870811064114] + } + }, + { + "id": "MVBus08026", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.342294877769577, 49.21116545587655] + } + }, + { + "id": "MVBus08027", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343421574081732, 49.21199189101324] + } + }, + { + "id": "MVBus08028", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343817635021131, 49.213515226393035] + } + }, + { + "id": "MVBus08029", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343957847639943, 49.21525214415334] + } + }, + { + "id": "MVLV11499", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.34344165605453, 49.21703067189177] + } + }, + { + "id": "MVLV16560", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.344092898330874, 49.215241818413936] + } + }, + { + "id": "MVBus08032", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.346331297612717, 49.212191588928825] + } + }, + { + "id": "MVLV12166", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.348823764916332, 49.210614055003745] + } + }, + { + "id": "MVBus08034", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.354209465427343, 49.21360462031885] + } + }, + { + "id": "MVLV11500", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.355198846212574, 49.21312586754413] + } + }, + { + "id": "MVBus01144", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.394727016993843, 49.20059538450612] + } + }, + { + "id": "MVLV15593", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.397099714849239, 49.203207453534056] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV10", + "geometry": { + "type": "Point", + "coordinates": [-1.400644460738214, 49.19437059827912] + } + }, + { + "id": "MVBranch39901", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV10", + "bus2": "MVBus01125", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.400644460738214, 49.19437059827912], + [-1.400569753446861, 49.194351088742074], + [-1.400569753446861, 49.194351088742074], + [-1.400545575309183, 49.19435323704507], + [-1.400223482122071, 49.1943893585729], + [-1.398793696919133, 49.19693354478506], + [-1.398471415240154, 49.197311120967456], + [-1.398471415240154, 49.197311120967456] + ] + }, + "length": 0.3752385234235244, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch31777", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01125", + "bus2": "MVBus01126", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.398471415240154, 49.197311120967456], + [-1.398471415240154, 49.197311120967456], + [-1.391988779495846, 49.19745201346063], + [-1.391988779495846, 49.19745201346063] + ] + }, + "length": 0.4727286229290833, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch08108", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01126", + "bus2": "MVBus01127", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391988779495846, 49.19745201346063], + [-1.391988779495846, 49.19745201346063], + [-1.387899837464075, 49.19752164227426], + [-1.387899837464075, 49.19752164227426] + ] + }, + "length": 0.2981111190342436, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch22889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01127", + "bus2": "MVBus01130", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387899837464075, 49.19752164227426], + [-1.387899837464075, 49.19752164227426], + [-1.386434121343654, 49.198307443094826], + [-1.386434121343654, 49.198307443094826] + ] + }, + "length": 0.13801655858311052, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25204", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01130", + "bus2": "MVBus01131", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386434121343654, 49.198307443094826], + [-1.386434121343654, 49.198307443094826], + [-1.381413645281745, 49.200783953209275], + [-1.381413645281745, 49.200783953209275] + ] + }, + "length": 0.4579636430168069, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04524", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01131", + "bus2": "MVBus01133", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381413645281745, 49.200783953209275], + [-1.381413645281745, 49.200783953209275], + [-1.37606254916796, 49.2036615010985], + [-1.37606254916796, 49.2036615010985] + ] + }, + "length": 0.5044646560906615, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14303", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01133", + "bus2": "MVBus01134", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37606254916796, 49.2036615010985], + [-1.37606254916796, 49.2036615010985], + [-1.374225337378775, 49.20474042083149], + [-1.373410460048645, 49.20544538429207], + [-1.371497916564513, 49.20636790526618], + [-1.371497916564513, 49.20636790526618] + ] + }, + "length": 0.4511924575632565, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch47651", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01134", + "bus2": "MVBus01135", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371497916564513, 49.20636790526618], + [-1.371497916564513, 49.20636790526618], + [-1.370942753305776, 49.20643787853724], + [-1.370829455415836, 49.20643861289541], + [-1.369575619515095, 49.20590586335567], + [-1.369575619515095, 49.20590586335567] + ] + }, + "length": 0.15834763398679907, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33696", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01135", + "bus2": "MVLV02073", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369575619515095, 49.20590586335567], + [-1.369575619515095, 49.20590586335567], + [-1.369605158859287, 49.20588619609382], + [-1.369625753006489, 49.205890425353154], + [-1.369625753006489, 49.205890425353154] + ] + }, + "length": 0.004641468215196063, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33431", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01135", + "bus2": "MVBus01137", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369575619515095, 49.20590586335567], + [-1.369575619515095, 49.20590586335567], + [-1.36892054236915, 49.2062096382133], + [-1.368060935604432, 49.206637470940066], + [-1.366064787519364, 49.2076309061317], + [-1.366040592732759, 49.20762910809543], + [-1.366020639948322, 49.207639519603894], + [-1.36602090038556, 49.20768568085028], + [-1.36602090038556, 49.20768568085028] + ] + }, + "length": 0.3285660531135982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47650", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01137", + "bus2": "MVBus01139", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36602090038556, 49.20768568085028], + [-1.36602090038556, 49.20768568085028], + [-1.364300108699813, 49.20852396508281], + [-1.364300108699813, 49.20852396508281] + ] + }, + "length": 0.15624899895376643, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33843", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01139", + "bus2": "MVLV19065", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364300108699813, 49.20852396508281], + [-1.364300108699813, 49.20852396508281], + [-1.364276611392245, 49.20852576096867], + [-1.364243248037149, 49.208542126894514], + [-1.364236091594157, 49.20855657729598], + [-1.363205303112883, 49.20908166282694], + [-1.363182217606456, 49.20905997893035], + [-1.363114601998387, 49.20907043999173], + [-1.363068865292149, 49.20905010285702], + [-1.362822381345091, 49.2088761192765], + [-1.362656196732397, 49.20875293179674], + [-1.362523738529256, 49.208637122147515], + [-1.362390802049739, 49.208529737046064], + [-1.362236233710043, 49.20838936166313], + [-1.362253176306516, 49.20837200995956], + [-1.362253176306516, 49.20837200995956] + ] + }, + "length": 0.21131752047883515, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41769", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01139", + "bus2": "MVBus01141", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364300108699813, 49.20852396508281], + [-1.364300108699813, 49.20852396508281], + [-1.364255695618835, 49.20855466777179], + [-1.364233181104289, 49.20856535593151], + [-1.364247687054865, 49.208588572788294], + [-1.364721840585656, 49.20896418860553], + [-1.365103025177107, 49.209263773378886], + [-1.365265573628437, 49.20938077372986], + [-1.36565783923541, 49.20929051307568], + [-1.365715681257003, 49.209284076228165], + [-1.365765680470942, 49.209294566568474], + [-1.366161324252151, 49.209494491219935], + [-1.366653094088463, 49.20976090993441], + [-1.366722791100287, 49.20983333966672], + [-1.367250493369971, 49.210069215547236], + [-1.367250493369971, 49.210069215547236] + ] + }, + "length": 0.3020679040124087, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch11215", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01141", + "bus2": "MVLV01181", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.367250493369971, 49.210069215547236], + [-1.367250493369971, 49.210069215547236], + [-1.367205145767236, 49.21268268702277], + [-1.367205145767236, 49.21268268702277] + ] + }, + "length": 0.2906729553743542, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42424", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01137", + "bus2": "MVLV02449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36602090038556, 49.20768568085028], + [-1.36602090038556, 49.20768568085028], + [-1.366048334797249, 49.20767221391265], + [-1.366077427311016, 49.20770239152203], + [-1.366077427311016, 49.20770239152203] + ] + }, + "length": 0.0064674831481781325, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44705", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01133", + "bus2": "MVLV12112", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37606254916796, 49.2036615010985], + [-1.37606254916796, 49.2036615010985], + [-1.375619124106296, 49.203755919246895], + [-1.375551483791231, 49.20376324927539], + [-1.375559920898894, 49.203782587360095], + [-1.375578953112975, 49.203793331152795], + [-1.375710875898862, 49.204110202154425], + [-1.37574849786526, 49.20412783568375], + [-1.375730651232574, 49.20419860098101], + [-1.375730651232574, 49.20419860098101] + ] + }, + "length": 0.09091630042257265, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch10887", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01131", + "bus2": "MVLV18760", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.381413645281745, 49.200783953209275], + [-1.381413645281745, 49.200783953209275], + [-1.381353239112412, 49.2005577296417], + [-1.381353239112412, 49.2005577296417] + ] + }, + "length": 0.025541382409007853, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30327", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01127", + "bus2": "MVBus01128", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387899837464075, 49.19752164227426], + [-1.387899837464075, 49.19752164227426], + [-1.380055316559206, 49.197925264306974], + [-1.380055316559206, 49.197925264306974] + ] + }, + "length": 0.5734816068735786, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch46260", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01128", + "bus2": "MVLV04803", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380055316559206, 49.197925264306974], + [-1.380055316559206, 49.197925264306974], + [-1.380029045919404, 49.197927167466894], + [-1.38000728056561, 49.197894525942864], + [-1.38000269392821, 49.197887652287186], + [-1.380030197330434, 49.19788077277595], + [-1.380024828329451, 49.19787713001719] + ] + }, + "length": 0.008867814366420233, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43366", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04803", + "bus2": "MVBus06160", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380024828329451, 49.19787713001719], + [-1.380019459328468, 49.19787348725843], + [-1.379957305316593, 49.197886919258224], + [-1.379982409316188, 49.19792739961313], + [-1.379982409316188, 49.19792739961313] + ] + }, + "length": 0.009629375798791267, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23926", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06160", + "bus2": "MVBus06161", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.379982409316188, 49.19792739961313], + [-1.379982409316188, 49.19792739961313], + [-1.377170060109506, 49.19799017044783], + [-1.365872429847849, 49.199108385566035], + [-1.365872429847849, 49.199108385566035] + ] + }, + "length": 1.0378022639401279, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch47758", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06161", + "bus2": "MVLV05938", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365872429847849, 49.199108385566035], + [-1.365872429847849, 49.199108385566035], + [-1.365827028833965, 49.19910901473249], + [-1.365810029666131, 49.198817977602594], + [-1.365829128625967, 49.19870168901893], + [-1.365860771436813, 49.19849113541451], + [-1.365847361056913, 49.19841653413548], + [-1.365815922308058, 49.198408996509386], + [-1.365331238464174, 49.19862608969938], + [-1.365151404078402, 49.198704133058555], + [-1.364956470759504, 49.198813089471756], + [-1.364546309981814, 49.19906967546579], + [-1.364261235812909, 49.19929180609771], + [-1.364147340586572, 49.19939815039002], + [-1.363849624683105, 49.19976139167069], + [-1.363593103318113, 49.20005485675752], + [-1.36344447594276, 49.20016231758966], + [-1.36261489185385, 49.20109406657958], + [-1.361890907040449, 49.20180946652499], + [-1.361828576655107, 49.20178829189512], + [-1.36176888697498, 49.20178265941115], + [-1.36169975869267, 49.20180422110307], + [-1.361673734029342, 49.201822950505395], + [-1.361660574273811, 49.20184821775763], + [-1.361704592546255, 49.20187281787203], + [-1.361753350924929, 49.2018713131958], + [-1.361751267972114, 49.201853217322245], + [-1.361749819695023, 49.20184070551553], + [-1.361761784304043, 49.201841114321326] + ] + }, + "length": 0.5953633486620007, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41186", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05938", + "bus2": "MVBus08004", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361761784304043, 49.201841114321326], + [-1.361773748913063, 49.201841523127115], + [-1.36177480667641, 49.20185223007019], + [-1.361778238083724, 49.201886987353795], + [-1.361705114189638, 49.201889243953204], + [-1.361635111319153, 49.20185203471307], + [-1.361395270535267, 49.20185857225343], + [-1.361243192860416, 49.201873644625394], + [-1.358752137034564, 49.20138136594533], + [-1.358705749600252, 49.201379180470234], + [-1.358644727948841, 49.20138537946614], + [-1.358587429994165, 49.20141304169606], + [-1.358561087200398, 49.201442645705455], + [-1.357843883810464, 49.20343510616742], + [-1.357858790998062, 49.20356874702992], + [-1.357846812324177, 49.20361527654082], + [-1.357813439411047, 49.203662465549584], + [-1.357740054563785, 49.20369592093547], + [-1.356531885564209, 49.2037200070457], + [-1.356079487758554, 49.20374682720583], + [-1.355216475988508, 49.20395008626084], + [-1.354852487532074, 49.2040853422354], + [-1.354526501549604, 49.20422548896837], + [-1.354088654340415, 49.20439878856032], + [-1.353612005017919, 49.20462598031792], + [-1.351726659145385, 49.20531873426339], + [-1.351346037426048, 49.20542097706608], + [-1.351090371435637, 49.20551225026362], + [-1.351057481226238, 49.20550344920491], + [-1.351057481226238, 49.20550344920491] + ] + }, + "length": 1.0507376333123526, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08004", + "bus2": "MVBus08005", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.351057481226238, 49.20550344920491], + [-1.351057481226238, 49.20550344920491], + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235] + ] + }, + "length": 0.9010255782680595, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11211", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08005", + "bus2": "MVBus08006", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235], + [-1.341377964379336, 49.210571781060345], + [-1.341377964379336, 49.210571781060345] + ] + }, + "length": 0.0518609316474867, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08006", + "bus2": "MVBus08007", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341377964379336, 49.210571781060345], + [-1.341377964379336, 49.210571781060345], + [-1.339289689674315, 49.209288122200256], + [-1.339289689674315, 49.209288122200256] + ] + }, + "length": 0.20864592838227725, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08987", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08007", + "bus2": "MVLV12778", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339289689674315, 49.209288122200256], + [-1.339289689674315, 49.209288122200256], + [-1.339859736984475, 49.20901882999961], + [-1.339859736984475, 49.20901882999961] + ] + }, + "length": 0.05120761384486094, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08007", + "bus2": "MVBus08009", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339289689674315, 49.209288122200256], + [-1.339289689674315, 49.209288122200256], + [-1.338613226606462, 49.208877609230704], + [-1.338570101101447, 49.208851975195614], + [-1.336664524247945, 49.20817464374827], + [-1.336664524247945, 49.20817464374827] + ] + }, + "length": 0.22939722671397728, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02665", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08009", + "bus2": "MVBus08010", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.336664524247945, 49.20817464374827], + [-1.336664524247945, 49.20817464374827], + [-1.339985618419001, 49.20295456927056], + [-1.339985618419001, 49.20295456927056] + ] + }, + "length": 0.6289669786255697, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08010", + "bus2": "MVLV12777", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339985618419001, 49.20295456927056], + [-1.339985618419001, 49.20295456927056], + [-1.341087680788626, 49.2009655810241], + [-1.341516729699154, 49.199721097795496], + [-1.341516729699154, 49.199721097795496] + ] + }, + "length": 0.37722292711614785, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25513", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08010", + "bus2": "MVBus08011", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339985618419001, 49.20295456927056], + [-1.339985618419001, 49.20295456927056], + [-1.339064545087953, 49.202948022258376], + [-1.339064545087953, 49.202948022258376] + ] + }, + "length": 0.0671262774393411, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30328", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08011", + "bus2": "MVBus08013", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339064545087953, 49.202948022258376], + [-1.339064545087953, 49.202948022258376], + [-1.332685539434031, 49.203508463384615], + [-1.332685539434031, 49.203508463384615] + ] + }, + "length": 0.4690211849346568, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14302", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08013", + "bus2": "MVLV15670", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332685539434031, 49.203508463384615], + [-1.332685539434031, 49.203508463384615], + [-1.329294788631892, 49.203772436228775], + [-1.329294788631892, 49.203772436228775] + ] + }, + "length": 0.24883212415093037, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08985", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08013", + "bus2": "MVLV01035", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332685539434031, 49.203508463384615], + [-1.332685539434031, 49.203508463384615], + [-1.331432837743288, 49.201906282821255], + [-1.329691004172543, 49.20145516351973], + [-1.329691004172543, 49.20145516351973] + ] + }, + "length": 0.3367014083562083, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21972", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08011", + "bus2": "MVLV04344", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339064545087953, 49.202948022258376], + [-1.339064545087953, 49.202948022258376], + [-1.338969324671971, 49.20256503353621], + [-1.338969324671971, 49.20256503353621] + ] + }, + "length": 0.04315512044334193, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08988", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08009", + "bus2": "MVBus08017", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.336664524247945, 49.20817464374827], + [-1.336664524247945, 49.20817464374827], + [-1.335554783420955, 49.21006478404471], + [-1.335554783420955, 49.21006478404471] + ] + }, + "length": 0.22522575428647068, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21968", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08017", + "bus2": "MVBus08018", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.335554783420955, 49.21006478404471], + [-1.335554783420955, 49.21006478404471], + [-1.33443218631297, 49.210029536109076], + [-1.33443218631297, 49.210029536109076] + ] + }, + "length": 0.08189035254735173, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21970", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08018", + "bus2": "MVBus08019", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.33443218631297, 49.210029536109076], + [-1.33443218631297, 49.210029536109076], + [-1.333288037132764, 49.210443317898154], + [-1.333282748941467, 49.210448669580074], + [-1.333282748941467, 49.210448669580074] + ] + }, + "length": 0.09593325522205273, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21969", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08019", + "bus2": "MVBus08020", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.333282748941467, 49.210448669580074], + [-1.333282748941467, 49.210448669580074], + [-1.332470098879885, 49.211270721386484], + [-1.332470098879885, 49.211270721386484] + ] + }, + "length": 0.10892327206842724, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15300", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08020", + "bus2": "MVLV18028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332470098879885, 49.211270721386484], + [-1.332470098879885, 49.211270721386484], + [-1.329209204026245, 49.21496834539136], + [-1.329209204026245, 49.21496834539136] + ] + }, + "length": 0.4749260157342042, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch21971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08020", + "bus2": "MVLV05423", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332470098879885, 49.211270721386484], + [-1.332470098879885, 49.211270721386484], + [-1.327133254002545, 49.20966460598425], + [-1.327133254002545, 49.20966460598425] + ] + }, + "length": 0.42792148928492063, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18105", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08017", + "bus2": "MVLV01034", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.335554783420955, 49.21006478404471], + [-1.335554783420955, 49.21006478404471], + [-1.335120526113163, 49.21075969320578], + [-1.335120526113163, 49.21075969320578] + ] + }, + "length": 0.08350995205919573, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11216", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08005", + "bus2": "MVBus08024", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235], + [-1.338983293547596, 49.21273716925712], + [-1.338983293547596, 49.21273716925712] + ] + }, + "length": 0.29127642224019146, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch39234", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08024", + "bus2": "MVLV12779", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.338983293547596, 49.21273716925712], + [-1.338983293547596, 49.21273716925712], + [-1.339242521379031, 49.21299378204512], + [-1.339253868351084, 49.21300501889686], + [-1.3392500854367348, 49.21300799062853] + ] + }, + "length": 0.03572113363139701, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39719", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12779", + "bus2": "MVBus14902", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3392500854367348, 49.21300799062853], + [-1.339246302522386, 49.21301096236021], + [-1.33922738972057, 49.213005668970006], + [-1.33874589232792, 49.212870811064114], + [-1.33874589232792, 49.212870811064114] + ] + }, + "length": 0.03965157043617779, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25511", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08005", + "bus2": "MVBus08026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.341857172748097, 49.210916574982235], + [-1.341857172748097, 49.210916574982235], + [-1.342294877769577, 49.21116545587655], + [-1.342294877769577, 49.21116545587655] + ] + }, + "length": 0.042228362272331434, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08986", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08026", + "bus2": "MVBus08027", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.342294877769577, 49.21116545587655], + [-1.342294877769577, 49.21116545587655], + [-1.343421574081732, 49.21199189101324], + [-1.343421574081732, 49.21199189101324] + ] + }, + "length": 0.1232348734949884, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11212", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08027", + "bus2": "MVBus08028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343421574081732, 49.21199189101324], + [-1.343421574081732, 49.21199189101324], + [-1.343817635021131, 49.213515226393035], + [-1.343817635021131, 49.213515226393035] + ] + }, + "length": 0.17185604602375276, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25512", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08028", + "bus2": "MVBus08029", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343817635021131, 49.213515226393035], + [-1.343817635021131, 49.213515226393035], + [-1.344057662376381, 49.21443842074906], + [-1.343957847639943, 49.21525214415334], + [-1.343957847639943, 49.21525214415334] + ] + }, + "length": 0.19493978157715744, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05505", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08029", + "bus2": "MVLV11499", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343957847639943, 49.21525214415334], + [-1.343957847639943, 49.21525214415334], + [-1.34344165605453, 49.21703067189177], + [-1.34344165605453, 49.21703067189177] + ] + }, + "length": 0.20134039675703336, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42468", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08029", + "bus2": "MVLV16560", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343957847639943, 49.21525214415334], + [-1.343957847639943, 49.21525214415334], + [-1.343978396866484, 49.21524747472766], + [-1.343989572561411, 49.21524554857661], + [-1.343998460978462, 49.215247155505196], + [-1.344004374963259, 49.215254205441035], + [-1.344011858060366, 49.21525708775308], + [-1.344092898330874, 49.215241818413936], + [-1.344092898330874, 49.215241818413936] + ] + }, + "length": 0.010769055997562197, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch30329", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08027", + "bus2": "MVBus08032", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343421574081732, 49.21199189101324], + [-1.343421574081732, 49.21199189101324], + [-1.346331297612717, 49.212191588928825], + [-1.346331297612717, 49.212191588928825] + ] + }, + "length": 0.21316432697881146, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch16962", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08032", + "bus2": "MVLV12166", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.346331297612717, 49.212191588928825], + [-1.346331297612717, 49.212191588928825], + [-1.348206270278194, 49.210980163397494], + [-1.348823764916332, 49.210614055003745], + [-1.348823764916332, 49.210614055003745] + ] + }, + "length": 0.2525516529399827, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30330", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08032", + "bus2": "MVBus08034", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.346331297612717, 49.212191588928825], + [-1.346331297612717, 49.212191588928825], + [-1.354209465427343, 49.21360462031885], + [-1.354209465427343, 49.21360462031885] + ] + }, + "length": 0.5951220206151072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08034", + "bus2": "MVLV11500", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.354209465427343, 49.21360462031885], + [-1.354209465427343, 49.21360462031885], + [-1.354309381076009, 49.213619811698535], + [-1.355198846212574, 49.21312586754413], + [-1.355198846212574, 49.21312586754413] + ] + }, + "length": 0.09242850337368175, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15818", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01126", + "bus2": "MVBus01144", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391988779495846, 49.19745201346063], + [-1.391988779495846, 49.19745201346063], + [-1.394727016993843, 49.20059538450612], + [-1.394727016993843, 49.20059538450612] + ] + }, + "length": 0.40253590942446993, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31778", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01144", + "bus2": "MVLV15593", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.394727016993843, 49.20059538450612], + [-1.394727016993843, 49.20059538450612], + [-1.397099714849239, 49.203207453534056], + [-1.397099714849239, 49.203207453534056] + ] + }, + "length": 0.33806418331880117, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV02073_production", + "bus": "MVLV02073", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02073_consumption", + "bus": "MVLV02073", + "phases": "abc", + "powers": [ + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935] + ] + }, + { + "id": "MVLV19065_production", + "bus": "MVLV19065", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19065_consumption", + "bus": "MVLV19065", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV01181_production", + "bus": "MVLV01181", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01181_consumption", + "bus": "MVLV01181", + "phases": "abc", + "powers": [ + [13107.375244231907, 4308.185903393948], + [13107.375244231907, 4308.185903393948], + [13107.375244231907, 4308.185903393948] + ] + }, + { + "id": "MVLV02449_production", + "bus": "MVLV02449", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02449_consumption", + "bus": "MVLV02449", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV12112_production", + "bus": "MVLV12112", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12112_consumption", + "bus": "MVLV12112", + "phases": "abc", + "powers": [ + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935] + ] + }, + { + "id": "MVLV18760_production", + "bus": "MVLV18760", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18760_consumption", + "bus": "MVLV18760", + "phases": "abc", + "powers": [ + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935] + ] + }, + { + "id": "MVLV04803_production", + "bus": "MVLV04803", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04803_consumption", + "bus": "MVLV04803", + "phases": "abc", + "powers": [ + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935] + ] + }, + { + "id": "MVLV05938_production", + "bus": "MVLV05938", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05938_consumption", + "bus": "MVLV05938", + "phases": "abc", + "powers": [ + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935], + [14162.76760084196, 4655.076595738935] + ] + }, + { + "id": "MVLV12778_production", + "bus": "MVLV12778", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12778_consumption", + "bus": "MVLV12778", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV12777_production", + "bus": "MVLV12777", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12777_consumption", + "bus": "MVLV12777", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV15670_production", + "bus": "MVLV15670", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15670_consumption", + "bus": "MVLV15670", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV01035_production", + "bus": "MVLV01035", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01035_consumption", + "bus": "MVLV01035", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV04344_production", + "bus": "MVLV04344", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04344_consumption", + "bus": "MVLV04344", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV18028_production", + "bus": "MVLV18028", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18028_consumption", + "bus": "MVLV18028", + "phases": "abc", + "powers": [ + [8063.865085612478, 2650.4642799476146], + [8063.865085612478, 2650.4642799476146], + [8063.865085612478, 2650.4642799476146] + ] + }, + { + "id": "MVLV05423_production", + "bus": "MVLV05423", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05423_consumption", + "bus": "MVLV05423", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV01034_production", + "bus": "MVLV01034", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01034_consumption", + "bus": "MVLV01034", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV12779_production", + "bus": "MVLV12779", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12779_consumption", + "bus": "MVLV12779", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV11499_production", + "bus": "MVLV11499", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11499_consumption", + "bus": "MVLV11499", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV16560_production", + "bus": "MVLV16560", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16560_consumption", + "bus": "MVLV16560", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV12166_production", + "bus": "MVLV12166", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12166_consumption", + "bus": "MVLV12166", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV11500_production", + "bus": "MVLV11500", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11500_consumption", + "bus": "MVLV11500", + "phases": "abc", + "powers": [ + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646], + [7544.156010828065, 2479.6441677487646] + ] + }, + { + "id": "MVLV15593_production", + "bus": "MVLV15593", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15593_consumption", + "bus": "MVLV15593", + "phases": "abc", + "powers": [ + [32180.404147003734, 10577.1873413521], + [32180.404147003734, 10577.1873413521], + [32180.404147003734, 10577.1873413521] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder159_Summer.json b/roseau/load_flow/data/networks/MVFeeder159_Summer.json new file mode 100644 index 00000000..53ea350a --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder159_Summer.json @@ -0,0 +1,315 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.823722473264189, 49.08918556668978] + } + }, + { + "id": "HVMV11", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.823722473264189, 49.08918556668978] + } + }, + { + "id": "MVBus01228", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.823321260123735, 49.090080324540615] + } + }, + { + "id": "MVBus01229", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.823140030519513, 49.090320790001456] + } + }, + { + "id": "MVBus01230", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.79507751183405, 49.099983820176625] + } + }, + { + "id": "MVBus01231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.77124939189729, 49.09843688079068] + } + }, + { + "id": "MVBus01232", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.759675327492745, 49.09778635178023] + } + }, + { + "id": "MVBus15631", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.746815763939693, 49.09729143625947] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV11", + "geometry": { + "type": "Point", + "coordinates": [-0.823722473264189, 49.08918556668978] + } + }, + { + "id": "MVBranch42220", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV11", + "bus2": "MVBus01228", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.823722473264189, 49.08918556668978], + [-0.823656318059001, 49.089166460346924], + [-0.823656318059001, 49.089166460346924], + [-0.823627865216119, 49.08916780576717], + [-0.823624074912107, 49.089126493554886], + [-0.823620001381147, 49.08908212224138], + [-0.823625124058814, 49.08906516112635], + [-0.823104526009067, 49.08887342006397], + [-0.823086740897519, 49.08887388997039], + [-0.823077449596123, 49.08888583523986], + [-0.823079850083826, 49.08889373054548], + [-0.823200954228063, 49.08955471130879], + [-0.823264364245583, 49.08993966799844], + [-0.823264296040561, 49.08997029964138], + [-0.823291612854848, 49.09000338220526], + [-0.823311785765861, 49.090020205497105], + [-0.823329461134897, 49.09003492748691], + [-0.823321260123735, 49.090080324540615], + [-0.823321260123735, 49.090080324540615] + ] + }, + "length": 0.19507911152510984, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01228", + "bus2": "MVBus01229", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.823321260123735, 49.090080324540615], + [-0.823321260123735, 49.090080324540615], + [-0.823140030519513, 49.090320790001456], + [-0.823140030519513, 49.090320790001456] + ] + }, + "length": 0.029839215946133233, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch14190", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01229", + "bus2": "MVBus01230", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.823140030519513, 49.090320790001456], + [-0.823140030519513, 49.090320790001456], + [-0.819870459125785, 49.09301290650464], + [-0.813401101051746, 49.098384142420144], + [-0.798506658015617, 49.09997141076324], + [-0.795080701524986, 49.09998402443363], + [-0.79507751183405, 49.099983820176625], + [-0.79507751183405, 49.099983820176625] + ] + }, + "length": 2.4969102502171268, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28504", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01230", + "bus2": "MVBus01231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.79507751183405, 49.099983820176625], + [-0.79507751183405, 49.099983820176625], + [-0.77124939189729, 49.09843688079068], + [-0.77124939189729, 49.09843688079068] + ] + }, + "length": 1.7485644717941622, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28505", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01231", + "bus2": "MVBus01232", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.77124939189729, 49.09843688079068], + [-0.77124939189729, 49.09843688079068], + [-0.771243067601774, 49.09843646956626], + [-0.767569039304653, 49.100390042981374], + [-0.766545960517715, 49.101560762231614], + [-0.764544657056999, 49.1024339270498], + [-0.763577994672303, 49.10122702062665], + [-0.762174071227635, 49.0978538592639], + [-0.759675327492745, 49.09778635178023], + [-0.759675327492745, 49.09778635178023] + ] + }, + "length": 1.394446123280823, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch16925", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01232", + "bus2": "MVBus15631", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.759675327492745, 49.09778635178023], + [-0.759675327492745, 49.09778635178023], + [-0.746815763939693, 49.09729143625947], + [-0.746815763939693, 49.09729143625947] + ] + }, + "length": 0.9407300845096866, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder159_Winter.json b/roseau/load_flow/data/networks/MVFeeder159_Winter.json new file mode 100644 index 00000000..53ea350a --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder159_Winter.json @@ -0,0 +1,315 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.823722473264189, 49.08918556668978] + } + }, + { + "id": "HVMV11", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.823722473264189, 49.08918556668978] + } + }, + { + "id": "MVBus01228", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.823321260123735, 49.090080324540615] + } + }, + { + "id": "MVBus01229", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.823140030519513, 49.090320790001456] + } + }, + { + "id": "MVBus01230", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.79507751183405, 49.099983820176625] + } + }, + { + "id": "MVBus01231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.77124939189729, 49.09843688079068] + } + }, + { + "id": "MVBus01232", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.759675327492745, 49.09778635178023] + } + }, + { + "id": "MVBus15631", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.746815763939693, 49.09729143625947] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV11", + "geometry": { + "type": "Point", + "coordinates": [-0.823722473264189, 49.08918556668978] + } + }, + { + "id": "MVBranch42220", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV11", + "bus2": "MVBus01228", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.823722473264189, 49.08918556668978], + [-0.823656318059001, 49.089166460346924], + [-0.823656318059001, 49.089166460346924], + [-0.823627865216119, 49.08916780576717], + [-0.823624074912107, 49.089126493554886], + [-0.823620001381147, 49.08908212224138], + [-0.823625124058814, 49.08906516112635], + [-0.823104526009067, 49.08887342006397], + [-0.823086740897519, 49.08887388997039], + [-0.823077449596123, 49.08888583523986], + [-0.823079850083826, 49.08889373054548], + [-0.823200954228063, 49.08955471130879], + [-0.823264364245583, 49.08993966799844], + [-0.823264296040561, 49.08997029964138], + [-0.823291612854848, 49.09000338220526], + [-0.823311785765861, 49.090020205497105], + [-0.823329461134897, 49.09003492748691], + [-0.823321260123735, 49.090080324540615], + [-0.823321260123735, 49.090080324540615] + ] + }, + "length": 0.19507911152510984, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01228", + "bus2": "MVBus01229", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.823321260123735, 49.090080324540615], + [-0.823321260123735, 49.090080324540615], + [-0.823140030519513, 49.090320790001456], + [-0.823140030519513, 49.090320790001456] + ] + }, + "length": 0.029839215946133233, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch14190", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01229", + "bus2": "MVBus01230", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.823140030519513, 49.090320790001456], + [-0.823140030519513, 49.090320790001456], + [-0.819870459125785, 49.09301290650464], + [-0.813401101051746, 49.098384142420144], + [-0.798506658015617, 49.09997141076324], + [-0.795080701524986, 49.09998402443363], + [-0.79507751183405, 49.099983820176625], + [-0.79507751183405, 49.099983820176625] + ] + }, + "length": 2.4969102502171268, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28504", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01230", + "bus2": "MVBus01231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.79507751183405, 49.099983820176625], + [-0.79507751183405, 49.099983820176625], + [-0.77124939189729, 49.09843688079068], + [-0.77124939189729, 49.09843688079068] + ] + }, + "length": 1.7485644717941622, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28505", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01231", + "bus2": "MVBus01232", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.77124939189729, 49.09843688079068], + [-0.77124939189729, 49.09843688079068], + [-0.771243067601774, 49.09843646956626], + [-0.767569039304653, 49.100390042981374], + [-0.766545960517715, 49.101560762231614], + [-0.764544657056999, 49.1024339270498], + [-0.763577994672303, 49.10122702062665], + [-0.762174071227635, 49.0978538592639], + [-0.759675327492745, 49.09778635178023], + [-0.759675327492745, 49.09778635178023] + ] + }, + "length": 1.394446123280823, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch16925", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01232", + "bus2": "MVBus15631", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.759675327492745, 49.09778635178023], + [-0.759675327492745, 49.09778635178023], + [-0.746815763939693, 49.09729143625947], + [-0.746815763939693, 49.09729143625947] + ] + }, + "length": 0.9407300845096866, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder176_Summer.json b/roseau/load_flow/data/networks/MVFeeder176_Summer.json new file mode 100644 index 00000000..bda25885 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder176_Summer.json @@ -0,0 +1,1273 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.38711604794349, 48.41717064276834] + } + }, + { + "id": "HVMV12", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38711604794349, 48.41717064276834] + } + }, + { + "id": "MVBus01496", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387006136030383, 48.41719264377117] + } + }, + { + "id": "MVBus01497", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369958030820661, 48.41963507980983] + } + }, + { + "id": "MVBus01517", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372549072493029, 48.41889081443412] + } + }, + { + "id": "MVLV04958", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37452717049491, 48.41922677819152] + } + }, + { + "id": "MVBus01498", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36829863977381, 48.41844540537065] + } + }, + { + "id": "MVBus01499", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361756314657262, 48.41859218800213] + } + }, + { + "id": "MVBus01514", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362436041584863, 48.418047008041256] + } + }, + { + "id": "MVLV11843", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362743294787271, 48.417852382430524] + } + }, + { + "id": "MVBus01500", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360008183133618, 48.417962950329574] + } + }, + { + "id": "MVBus01501", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35914112549976, 48.41765083872024] + } + }, + { + "id": "MVBus01502", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343510895179884, 48.4215837436143] + } + }, + { + "id": "MVLV04956", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345262339955037, 48.42252150957554] + } + }, + { + "id": "MVBus01504", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.340095117958516, 48.42180926616064] + } + }, + { + "id": "MVBus01505", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339043062931441, 48.42191956211516] + } + }, + { + "id": "MVBus01507", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332339064126028, 48.421605122151064] + } + }, + { + "id": "MVLV04587", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331888333253353, 48.42156111279841] + } + }, + { + "id": "MVLV14605", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.327133123316432, 48.418995112592626] + } + }, + { + "id": "MVLV17080", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339048333937162, 48.42193972026597] + } + }, + { + "id": "MVBus01510", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.334884366737857, 48.42657238910191] + } + }, + { + "id": "MVBus01511", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331171114334699, 48.428605571824306] + } + }, + { + "id": "MVLV14280", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.330977758055885, 48.42840107856877] + } + }, + { + "id": "MVBus01513", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.326826060299798, 48.42931200536187] + } + }, + { + "id": "MVBus11806", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.326920591011296, 48.42991363986901] + } + }, + { + "id": "MVBus11807", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.327147956087218, 48.43144350932597] + } + }, + { + "id": "MVLV17095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.325298094688831, 48.434303528730496] + } + }, + { + "id": "MVLV19350", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331861978401239, 48.431829215696744] + } + }, + { + "id": "MVBus01516", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36739305364224, 48.417816117608396] + } + }, + { + "id": "MVBus06094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366766843846228, 48.41731305907785] + } + }, + { + "id": "MVLV19321", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366731410678534, 48.41736141399922] + } + }, + { + "id": "MVBus06095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365229322235862, 48.416324977868435] + } + }, + { + "id": "MVBus06096", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362858591541591, 48.414881616803214] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV12", + "geometry": { + "type": "Point", + "coordinates": [-1.38711604794349, 48.41717064276834] + } + }, + { + "id": "MVBranch38409", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV12", + "bus2": "MVBus01496", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.38711604794349, 48.41717064276834], + [-1.387095832721269, 48.4171715688363], + [-1.387095832721269, 48.4171715688363], + [-1.387076723241926, 48.417176060173375], + [-1.387006136030383, 48.41719264377117], + [-1.387006136030383, 48.41719264377117] + ] + }, + "length": 0.007040950920418707, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20772", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01496", + "bus2": "MVBus01497", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387006136030383, 48.41719264377117], + [-1.387006136030383, 48.41719264377117], + [-1.373733501372869, 48.420844242526], + [-1.37252429325049, 48.421217640813616], + [-1.369958030820661, 48.41963507980983], + [-1.369958030820661, 48.41963507980983] + ] + }, + "length": 1.4206347528139422, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch24327", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01497", + "bus2": "MVBus01517", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369958030820661, 48.41963507980983], + [-1.369958030820661, 48.41963507980983], + [-1.372226752533138, 48.418894385649324], + [-1.372549072493029, 48.41889081443412], + [-1.372549072493029, 48.41889081443412] + ] + }, + "length": 0.21090018378627376, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20742", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01517", + "bus2": "MVLV04958", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372549072493029, 48.41889081443412], + [-1.372549072493029, 48.41889081443412], + [-1.374123957637726, 48.418929083010795], + [-1.37452717049491, 48.41922677819152], + [-1.37452717049491, 48.41922677819152] + ] + }, + "length": 0.16122038053777868, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13661", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01497", + "bus2": "MVBus01498", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369958030820661, 48.41963507980983], + [-1.369958030820661, 48.41963507980983], + [-1.36829863977381, 48.41844540537065], + [-1.36829863977381, 48.41844540537065] + ] + }, + "length": 0.18051865662498154, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch20730", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01498", + "bus2": "MVBus01499", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36829863977381, 48.41844540537065], + [-1.36829863977381, 48.41844540537065], + [-1.363031806491956, 48.419038215547715], + [-1.361756314657262, 48.41859218800213], + [-1.361756314657262, 48.41859218800213] + ] + }, + "length": 0.5020280176005155, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22592", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01499", + "bus2": "MVBus01514", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361756314657262, 48.41859218800213], + [-1.361756314657262, 48.41859218800213], + [-1.362436041584863, 48.418047008041256], + [-1.362436041584863, 48.418047008041256] + ] + }, + "length": 0.07878204036531004, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05835", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01514", + "bus2": "MVLV11843", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.362436041584863, 48.418047008041256], + [-1.362436041584863, 48.418047008041256], + [-1.362743294787271, 48.417852382430524], + [-1.362743294787271, 48.417852382430524] + ] + }, + "length": 0.031394682426450396, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05826", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01499", + "bus2": "MVBus01500", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361756314657262, 48.41859218800213], + [-1.361756314657262, 48.41859218800213], + [-1.36004759848077, 48.41797713287041], + [-1.360008183133618, 48.417962950329574], + [-1.360008183133618, 48.417962950329574] + ] + }, + "length": 0.14710335821626808, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22596", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01500", + "bus2": "MVBus01501", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360008183133618, 48.417962950329574], + [-1.360008183133618, 48.417962950329574], + [-1.35914112549976, 48.41765083872024], + [-1.35914112549976, 48.41765083872024] + ] + }, + "length": 0.07296328390773768, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32524", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01501", + "bus2": "MVBus01502", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35914112549976, 48.41765083872024], + [-1.35914112549976, 48.41765083872024], + [-1.359134133141539, 48.41764832166493], + [-1.349455612424945, 48.41959813784741], + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143] + ] + }, + "length": 1.2413790241150546, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01331", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01502", + "bus2": "MVLV04956", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143], + [-1.344004182309898, 48.42228482559382], + [-1.344859369826054, 48.422531409992324], + [-1.345262339955037, 48.42252150957554], + [-1.345262339955037, 48.42252150957554] + ] + }, + "length": 0.18491086405326376, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22597", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01502", + "bus2": "MVBus01504", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143], + [-1.342397676690004, 48.42145250474201], + [-1.340095117958516, 48.42180926616064], + [-1.340095117958516, 48.42180926616064] + ] + }, + "length": 0.25865864050746357, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22604", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01504", + "bus2": "MVBus01505", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.340095117958516, 48.42180926616064], + [-1.340095117958516, 48.42180926616064], + [-1.339043062931441, 48.42191956211516], + [-1.339043062931441, 48.42191956211516] + ] + }, + "length": 0.07882774284595279, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01505", + "bus2": "MVBus01507", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339043062931441, 48.42191956211516], + [-1.339043062931441, 48.42191956211516], + [-1.337462845126501, 48.42210522852438], + [-1.332339064126028, 48.421605122151064], + [-1.332339064126028, 48.421605122151064] + ] + }, + "length": 0.5020595961392756, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24343", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01507", + "bus2": "MVLV04587", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332339064126028, 48.421605122151064], + [-1.332339064126028, 48.421605122151064], + [-1.331888333253353, 48.42156111279841], + [-1.331888333253353, 48.42156111279841] + ] + }, + "length": 0.033718019705241936, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01334", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01507", + "bus2": "MVLV14605", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332339064126028, 48.421605122151064], + [-1.332339064126028, 48.421605122151064], + [-1.331280495567023, 48.42079284090855], + [-1.330333639042978, 48.42057979897421], + [-1.329118104953518, 48.42030630034864], + [-1.328337603203022, 48.41970962868202], + [-1.327737387854174, 48.419333957986886], + [-1.327133123316432, 48.418995112592626], + [-1.327133123316432, 48.418995112592626] + ] + }, + "length": 0.49596181673738937, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00556", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01505", + "bus2": "MVLV17080", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339043062931441, 48.42191956211516], + [-1.339043062931441, 48.42191956211516], + [-1.339048333937162, 48.42193972026597], + [-1.339048333937162, 48.42193972026597] + ] + }, + "length": 0.0022752537151376866, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32525", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01502", + "bus2": "MVBus01510", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143], + [-1.334884366737857, 48.42657238910191], + [-1.334884366737857, 48.42657238910191] + ] + }, + "length": 0.845790745290288, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05225", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01510", + "bus2": "MVBus01511", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334884366737857, 48.42657238910191], + [-1.334884366737857, 48.42657238910191], + [-1.331171114334699, 48.428605571824306], + [-1.331171114334699, 48.428605571824306] + ] + }, + "length": 0.3558557266295331, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28768", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01511", + "bus2": "MVLV14280", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331171114334699, 48.428605571824306], + [-1.331171114334699, 48.428605571824306], + [-1.330977758055885, 48.42840107856877], + [-1.330977758055885, 48.42840107856877] + ] + }, + "length": 0.02686703650765068, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13456", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01511", + "bus2": "MVBus01513", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331171114334699, 48.428605571824306], + [-1.331171114334699, 48.428605571824306], + [-1.326826060299798, 48.42931200536187], + [-1.326826060299798, 48.42931200536187] + ] + }, + "length": 0.3310102993678586, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13836", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01513", + "bus2": "MVBus11806", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.326826060299798, 48.42931200536187], + [-1.326826060299798, 48.42931200536187], + [-1.326920591011296, 48.42991363986901], + [-1.326920591011296, 48.42991363986901] + ] + }, + "length": 0.06726571930181688, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28767", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11806", + "bus2": "MVBus11807", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.326920591011296, 48.42991363986901], + [-1.326920591011296, 48.42991363986901], + [-1.327147956087218, 48.43144350932597], + [-1.327147956087218, 48.43144350932597] + ] + }, + "length": 0.17094951497800995, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05368", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11807", + "bus2": "MVLV17095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.327147956087218, 48.43144350932597], + [-1.327147956087218, 48.43144350932597], + [-1.327307809109532, 48.4325190636339], + [-1.325298094688831, 48.434303528730496], + [-1.325298094688831, 48.434303528730496] + ] + }, + "length": 0.3681571574196088, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24025", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11807", + "bus2": "MVLV19350", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.327147956087218, 48.43144350932597], + [-1.327147956087218, 48.43144350932597], + [-1.328237636895796, 48.431415318432606], + [-1.329581808012917, 48.43081192969356], + [-1.330866873224379, 48.43137108093143], + [-1.331861978401239, 48.431829215696744], + [-1.331861978401239, 48.431829215696744] + ] + }, + "length": 0.40384522738100076, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20729", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01498", + "bus2": "MVBus01516", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36829863977381, 48.41844540537065], + [-1.36829863977381, 48.41844540537065], + [-1.367445916795521, 48.41786015715854], + [-1.36739305364224, 48.417816117608396] + ] + }, + "length": 0.09065992156646324, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13659", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01516", + "bus2": "MVBus06094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36739305364224, 48.417816117608396], + [-1.367340190488959, 48.417772078058256], + [-1.366766843846228, 48.41731305907785], + [-1.366766843846228, 48.41731305907785] + ] + }, + "length": 0.06638103907679009, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42078", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06094", + "bus2": "MVLV19321", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366766843846228, 48.41731305907785], + [-1.366766843846228, 48.41731305907785], + [-1.366788379937253, 48.41735864474458], + [-1.366760029829506, 48.417372999121014], + [-1.36674977104007, 48.417368847974295], + [-1.366731410678534, 48.41736141399922], + [-1.366731410678534, 48.41736141399922] + ] + }, + "length": 0.010429775061381805, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch05830", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06094", + "bus2": "MVBus06095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366766843846228, 48.41731305907785], + [-1.366766843846228, 48.41731305907785], + [-1.365229322235862, 48.416324977868435], + [-1.365229322235862, 48.416324977868435] + ] + }, + "length": 0.1581928883806596, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32965", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06095", + "bus2": "MVBus06096", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365229322235862, 48.416324977868435], + [-1.365229322235862, 48.416324977868435], + [-1.365560695142118, 48.41596012013056], + [-1.365573677697766, 48.415948516332065], + [-1.365704319145252, 48.41589364588406], + [-1.365719442330651, 48.41587809575063], + [-1.3657376438735, 48.41585885788054], + [-1.365737897474432, 48.415833991014075], + [-1.365719562445547, 48.41582174992386], + [-1.365105435519972, 48.415579290918394], + [-1.365073738041355, 48.41556259081798], + [-1.365038484136779, 48.41553480588789], + [-1.364991628088938, 48.41548713423317], + [-1.364917505247655, 48.415429769668116], + [-1.364664886459725, 48.415255861644575], + [-1.364388641064323, 48.41510952426236], + [-1.364118734716905, 48.414971924744755], + [-1.363839596958264, 48.414842939492594], + [-1.36325133179426, 48.41453519978506], + [-1.363151000458559, 48.41447711704125], + [-1.363104710671212, 48.414454222817284], + [-1.363056234710329, 48.41444418659317], + [-1.363037092954677, 48.41443829763417], + [-1.363017128958387, 48.41444161478675], + [-1.36300618917472, 48.41444788906171], + [-1.362758069313197, 48.41469816525997], + [-1.362753490582671, 48.414707210151136], + [-1.362755269572423, 48.414722607917724], + [-1.362763337502581, 48.41473115724643], + [-1.362778314833457, 48.41474372906787], + [-1.362842376973229, 48.414868183755985], + [-1.362858591541591, 48.414881616803214], + [-1.362858591541591, 48.414881616803214] + ] + }, + "length": 0.3807032213615068, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV04958_production", + "bus": "MVLV04958", + "phases": "abc", + "powers": [ + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0] + ] + }, + { + "id": "MVLV04958_consumption", + "bus": "MVLV04958", + "phases": "abc", + "powers": [ + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598] + ] + }, + { + "id": "MVLV11843_production", + "bus": "MVLV11843", + "phases": "abc", + "powers": [ + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0] + ] + }, + { + "id": "MVLV11843_consumption", + "bus": "MVLV11843", + "phases": "abc", + "powers": [ + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598] + ] + }, + { + "id": "MVLV04956_production", + "bus": "MVLV04956", + "phases": "abc", + "powers": [ + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0] + ] + }, + { + "id": "MVLV04956_consumption", + "bus": "MVLV04956", + "phases": "abc", + "powers": [ + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598] + ] + }, + { + "id": "MVLV04587_production", + "bus": "MVLV04587", + "phases": "abc", + "powers": [ + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0] + ] + }, + { + "id": "MVLV04587_consumption", + "bus": "MVLV04587", + "phases": "abc", + "powers": [ + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598] + ] + }, + { + "id": "MVLV14605_production", + "bus": "MVLV14605", + "phases": "abc", + "powers": [ + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0] + ] + }, + { + "id": "MVLV14605_consumption", + "bus": "MVLV14605", + "phases": "abc", + "powers": [ + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206] + ] + }, + { + "id": "MVLV17080_production", + "bus": "MVLV17080", + "phases": "abc", + "powers": [ + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0] + ] + }, + { + "id": "MVLV17080_consumption", + "bus": "MVLV17080", + "phases": "abc", + "powers": [ + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598] + ] + }, + { + "id": "MVLV14280_production", + "bus": "MVLV14280", + "phases": "abc", + "powers": [ + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0] + ] + }, + { + "id": "MVLV14280_consumption", + "bus": "MVLV14280", + "phases": "abc", + "powers": [ + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206] + ] + }, + { + "id": "MVLV17095_production", + "bus": "MVLV17095", + "phases": "abc", + "powers": [ + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0] + ] + }, + { + "id": "MVLV17095_consumption", + "bus": "MVLV17095", + "phases": "abc", + "powers": [ + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206] + ] + }, + { + "id": "MVLV19350_production", + "bus": "MVLV19350", + "phases": "abc", + "powers": [ + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0], + [-2250.89605734767, 0.0] + ] + }, + { + "id": "MVLV19350_consumption", + "bus": "MVLV19350", + "phases": "abc", + "powers": [ + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206], + [2190.4142243776473, 719.9543393106206] + ] + }, + { + "id": "MVLV19321_production", + "bus": "MVLV19321", + "phases": "abc", + "powers": [ + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0], + [-1275.581395348837, 0.0] + ] + }, + { + "id": "MVLV19321_consumption", + "bus": "MVLV19321", + "phases": "abc", + "powers": [ + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598], + [18279.948541758626, 6008.328529163598] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder176_Winter.json b/roseau/load_flow/data/networks/MVFeeder176_Winter.json new file mode 100644 index 00000000..69bfbb99 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder176_Winter.json @@ -0,0 +1,1273 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.38711604794349, 48.41717064276834] + } + }, + { + "id": "HVMV12", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.38711604794349, 48.41717064276834] + } + }, + { + "id": "MVBus01496", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387006136030383, 48.41719264377117] + } + }, + { + "id": "MVBus01497", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369958030820661, 48.41963507980983] + } + }, + { + "id": "MVBus01517", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372549072493029, 48.41889081443412] + } + }, + { + "id": "MVLV04958", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37452717049491, 48.41922677819152] + } + }, + { + "id": "MVBus01498", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36829863977381, 48.41844540537065] + } + }, + { + "id": "MVBus01499", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361756314657262, 48.41859218800213] + } + }, + { + "id": "MVBus01514", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362436041584863, 48.418047008041256] + } + }, + { + "id": "MVLV11843", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362743294787271, 48.417852382430524] + } + }, + { + "id": "MVBus01500", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360008183133618, 48.417962950329574] + } + }, + { + "id": "MVBus01501", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.35914112549976, 48.41765083872024] + } + }, + { + "id": "MVBus01502", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.343510895179884, 48.4215837436143] + } + }, + { + "id": "MVLV04956", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.345262339955037, 48.42252150957554] + } + }, + { + "id": "MVBus01504", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.340095117958516, 48.42180926616064] + } + }, + { + "id": "MVBus01505", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339043062931441, 48.42191956211516] + } + }, + { + "id": "MVBus01507", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332339064126028, 48.421605122151064] + } + }, + { + "id": "MVLV04587", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331888333253353, 48.42156111279841] + } + }, + { + "id": "MVLV14605", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.327133123316432, 48.418995112592626] + } + }, + { + "id": "MVLV17080", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.339048333937162, 48.42193972026597] + } + }, + { + "id": "MVBus01510", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.334884366737857, 48.42657238910191] + } + }, + { + "id": "MVBus01511", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331171114334699, 48.428605571824306] + } + }, + { + "id": "MVLV14280", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.330977758055885, 48.42840107856877] + } + }, + { + "id": "MVBus01513", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.326826060299798, 48.42931200536187] + } + }, + { + "id": "MVBus11806", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.326920591011296, 48.42991363986901] + } + }, + { + "id": "MVBus11807", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.327147956087218, 48.43144350932597] + } + }, + { + "id": "MVLV17095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.325298094688831, 48.434303528730496] + } + }, + { + "id": "MVLV19350", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.331861978401239, 48.431829215696744] + } + }, + { + "id": "MVBus01516", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36739305364224, 48.417816117608396] + } + }, + { + "id": "MVBus06094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366766843846228, 48.41731305907785] + } + }, + { + "id": "MVLV19321", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366731410678534, 48.41736141399922] + } + }, + { + "id": "MVBus06095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365229322235862, 48.416324977868435] + } + }, + { + "id": "MVBus06096", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362858591541591, 48.414881616803214] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV12", + "geometry": { + "type": "Point", + "coordinates": [-1.38711604794349, 48.41717064276834] + } + }, + { + "id": "MVBranch38409", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV12", + "bus2": "MVBus01496", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.38711604794349, 48.41717064276834], + [-1.387095832721269, 48.4171715688363], + [-1.387095832721269, 48.4171715688363], + [-1.387076723241926, 48.417176060173375], + [-1.387006136030383, 48.41719264377117], + [-1.387006136030383, 48.41719264377117] + ] + }, + "length": 0.007040950920418707, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20772", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01496", + "bus2": "MVBus01497", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387006136030383, 48.41719264377117], + [-1.387006136030383, 48.41719264377117], + [-1.373733501372869, 48.420844242526], + [-1.37252429325049, 48.421217640813616], + [-1.369958030820661, 48.41963507980983], + [-1.369958030820661, 48.41963507980983] + ] + }, + "length": 1.4206347528139422, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch24327", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01497", + "bus2": "MVBus01517", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369958030820661, 48.41963507980983], + [-1.369958030820661, 48.41963507980983], + [-1.372226752533138, 48.418894385649324], + [-1.372549072493029, 48.41889081443412], + [-1.372549072493029, 48.41889081443412] + ] + }, + "length": 0.21090018378627376, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20742", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01517", + "bus2": "MVLV04958", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.372549072493029, 48.41889081443412], + [-1.372549072493029, 48.41889081443412], + [-1.374123957637726, 48.418929083010795], + [-1.37452717049491, 48.41922677819152], + [-1.37452717049491, 48.41922677819152] + ] + }, + "length": 0.16122038053777868, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13661", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01497", + "bus2": "MVBus01498", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369958030820661, 48.41963507980983], + [-1.369958030820661, 48.41963507980983], + [-1.36829863977381, 48.41844540537065], + [-1.36829863977381, 48.41844540537065] + ] + }, + "length": 0.18051865662498154, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch20730", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01498", + "bus2": "MVBus01499", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36829863977381, 48.41844540537065], + [-1.36829863977381, 48.41844540537065], + [-1.363031806491956, 48.419038215547715], + [-1.361756314657262, 48.41859218800213], + [-1.361756314657262, 48.41859218800213] + ] + }, + "length": 0.5020280176005155, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22592", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01499", + "bus2": "MVBus01514", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361756314657262, 48.41859218800213], + [-1.361756314657262, 48.41859218800213], + [-1.362436041584863, 48.418047008041256], + [-1.362436041584863, 48.418047008041256] + ] + }, + "length": 0.07878204036531004, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05835", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01514", + "bus2": "MVLV11843", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.362436041584863, 48.418047008041256], + [-1.362436041584863, 48.418047008041256], + [-1.362743294787271, 48.417852382430524], + [-1.362743294787271, 48.417852382430524] + ] + }, + "length": 0.031394682426450396, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05826", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01499", + "bus2": "MVBus01500", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361756314657262, 48.41859218800213], + [-1.361756314657262, 48.41859218800213], + [-1.36004759848077, 48.41797713287041], + [-1.360008183133618, 48.417962950329574], + [-1.360008183133618, 48.417962950329574] + ] + }, + "length": 0.14710335821626808, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22596", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01500", + "bus2": "MVBus01501", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360008183133618, 48.417962950329574], + [-1.360008183133618, 48.417962950329574], + [-1.35914112549976, 48.41765083872024], + [-1.35914112549976, 48.41765083872024] + ] + }, + "length": 0.07296328390773768, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32524", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01501", + "bus2": "MVBus01502", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.35914112549976, 48.41765083872024], + [-1.35914112549976, 48.41765083872024], + [-1.359134133141539, 48.41764832166493], + [-1.349455612424945, 48.41959813784741], + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143] + ] + }, + "length": 1.2413790241150546, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01331", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01502", + "bus2": "MVLV04956", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143], + [-1.344004182309898, 48.42228482559382], + [-1.344859369826054, 48.422531409992324], + [-1.345262339955037, 48.42252150957554], + [-1.345262339955037, 48.42252150957554] + ] + }, + "length": 0.18491086405326376, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22597", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01502", + "bus2": "MVBus01504", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143], + [-1.342397676690004, 48.42145250474201], + [-1.340095117958516, 48.42180926616064], + [-1.340095117958516, 48.42180926616064] + ] + }, + "length": 0.25865864050746357, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22604", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01504", + "bus2": "MVBus01505", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.340095117958516, 48.42180926616064], + [-1.340095117958516, 48.42180926616064], + [-1.339043062931441, 48.42191956211516], + [-1.339043062931441, 48.42191956211516] + ] + }, + "length": 0.07882774284595279, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01505", + "bus2": "MVBus01507", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339043062931441, 48.42191956211516], + [-1.339043062931441, 48.42191956211516], + [-1.337462845126501, 48.42210522852438], + [-1.332339064126028, 48.421605122151064], + [-1.332339064126028, 48.421605122151064] + ] + }, + "length": 0.5020595961392756, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24343", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01507", + "bus2": "MVLV04587", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332339064126028, 48.421605122151064], + [-1.332339064126028, 48.421605122151064], + [-1.331888333253353, 48.42156111279841], + [-1.331888333253353, 48.42156111279841] + ] + }, + "length": 0.033718019705241936, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01334", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01507", + "bus2": "MVLV14605", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332339064126028, 48.421605122151064], + [-1.332339064126028, 48.421605122151064], + [-1.331280495567023, 48.42079284090855], + [-1.330333639042978, 48.42057979897421], + [-1.329118104953518, 48.42030630034864], + [-1.328337603203022, 48.41970962868202], + [-1.327737387854174, 48.419333957986886], + [-1.327133123316432, 48.418995112592626], + [-1.327133123316432, 48.418995112592626] + ] + }, + "length": 0.49596181673738937, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00556", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01505", + "bus2": "MVLV17080", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.339043062931441, 48.42191956211516], + [-1.339043062931441, 48.42191956211516], + [-1.339048333937162, 48.42193972026597], + [-1.339048333937162, 48.42193972026597] + ] + }, + "length": 0.0022752537151376866, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32525", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01502", + "bus2": "MVBus01510", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.343510895179884, 48.4215837436143], + [-1.343510895179884, 48.4215837436143], + [-1.334884366737857, 48.42657238910191], + [-1.334884366737857, 48.42657238910191] + ] + }, + "length": 0.845790745290288, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05225", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01510", + "bus2": "MVBus01511", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.334884366737857, 48.42657238910191], + [-1.334884366737857, 48.42657238910191], + [-1.331171114334699, 48.428605571824306], + [-1.331171114334699, 48.428605571824306] + ] + }, + "length": 0.3558557266295331, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28768", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01511", + "bus2": "MVLV14280", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331171114334699, 48.428605571824306], + [-1.331171114334699, 48.428605571824306], + [-1.330977758055885, 48.42840107856877], + [-1.330977758055885, 48.42840107856877] + ] + }, + "length": 0.02686703650765068, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13456", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01511", + "bus2": "MVBus01513", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.331171114334699, 48.428605571824306], + [-1.331171114334699, 48.428605571824306], + [-1.326826060299798, 48.42931200536187], + [-1.326826060299798, 48.42931200536187] + ] + }, + "length": 0.3310102993678586, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13836", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01513", + "bus2": "MVBus11806", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.326826060299798, 48.42931200536187], + [-1.326826060299798, 48.42931200536187], + [-1.326920591011296, 48.42991363986901], + [-1.326920591011296, 48.42991363986901] + ] + }, + "length": 0.06726571930181688, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28767", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11806", + "bus2": "MVBus11807", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.326920591011296, 48.42991363986901], + [-1.326920591011296, 48.42991363986901], + [-1.327147956087218, 48.43144350932597], + [-1.327147956087218, 48.43144350932597] + ] + }, + "length": 0.17094951497800995, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05368", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11807", + "bus2": "MVLV17095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.327147956087218, 48.43144350932597], + [-1.327147956087218, 48.43144350932597], + [-1.327307809109532, 48.4325190636339], + [-1.325298094688831, 48.434303528730496], + [-1.325298094688831, 48.434303528730496] + ] + }, + "length": 0.3681571574196088, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24025", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11807", + "bus2": "MVLV19350", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.327147956087218, 48.43144350932597], + [-1.327147956087218, 48.43144350932597], + [-1.328237636895796, 48.431415318432606], + [-1.329581808012917, 48.43081192969356], + [-1.330866873224379, 48.43137108093143], + [-1.331861978401239, 48.431829215696744], + [-1.331861978401239, 48.431829215696744] + ] + }, + "length": 0.40384522738100076, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20729", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01498", + "bus2": "MVBus01516", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36829863977381, 48.41844540537065], + [-1.36829863977381, 48.41844540537065], + [-1.367445916795521, 48.41786015715854], + [-1.36739305364224, 48.417816117608396] + ] + }, + "length": 0.09065992156646324, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13659", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01516", + "bus2": "MVBus06094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36739305364224, 48.417816117608396], + [-1.367340190488959, 48.417772078058256], + [-1.366766843846228, 48.41731305907785], + [-1.366766843846228, 48.41731305907785] + ] + }, + "length": 0.06638103907679009, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42078", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06094", + "bus2": "MVLV19321", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366766843846228, 48.41731305907785], + [-1.366766843846228, 48.41731305907785], + [-1.366788379937253, 48.41735864474458], + [-1.366760029829506, 48.417372999121014], + [-1.36674977104007, 48.417368847974295], + [-1.366731410678534, 48.41736141399922], + [-1.366731410678534, 48.41736141399922] + ] + }, + "length": 0.010429775061381805, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch05830", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06094", + "bus2": "MVBus06095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366766843846228, 48.41731305907785], + [-1.366766843846228, 48.41731305907785], + [-1.365229322235862, 48.416324977868435], + [-1.365229322235862, 48.416324977868435] + ] + }, + "length": 0.1581928883806596, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32965", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06095", + "bus2": "MVBus06096", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365229322235862, 48.416324977868435], + [-1.365229322235862, 48.416324977868435], + [-1.365560695142118, 48.41596012013056], + [-1.365573677697766, 48.415948516332065], + [-1.365704319145252, 48.41589364588406], + [-1.365719442330651, 48.41587809575063], + [-1.3657376438735, 48.41585885788054], + [-1.365737897474432, 48.415833991014075], + [-1.365719562445547, 48.41582174992386], + [-1.365105435519972, 48.415579290918394], + [-1.365073738041355, 48.41556259081798], + [-1.365038484136779, 48.41553480588789], + [-1.364991628088938, 48.41548713423317], + [-1.364917505247655, 48.415429769668116], + [-1.364664886459725, 48.415255861644575], + [-1.364388641064323, 48.41510952426236], + [-1.364118734716905, 48.414971924744755], + [-1.363839596958264, 48.414842939492594], + [-1.36325133179426, 48.41453519978506], + [-1.363151000458559, 48.41447711704125], + [-1.363104710671212, 48.414454222817284], + [-1.363056234710329, 48.41444418659317], + [-1.363037092954677, 48.41443829763417], + [-1.363017128958387, 48.41444161478675], + [-1.36300618917472, 48.41444788906171], + [-1.362758069313197, 48.41469816525997], + [-1.362753490582671, 48.414707210151136], + [-1.362755269572423, 48.414722607917724], + [-1.362763337502581, 48.41473115724643], + [-1.362778314833457, 48.41474372906787], + [-1.362842376973229, 48.414868183755985], + [-1.362858591541591, 48.414881616803214], + [-1.362858591541591, 48.414881616803214] + ] + }, + "length": 0.3807032213615068, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV04958_production", + "bus": "MVLV04958", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04958_consumption", + "bus": "MVLV04958", + "phases": "abc", + "powers": [ + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992] + ] + }, + { + "id": "MVLV11843_production", + "bus": "MVLV11843", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11843_consumption", + "bus": "MVLV11843", + "phases": "abc", + "powers": [ + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992] + ] + }, + { + "id": "MVLV04956_production", + "bus": "MVLV04956", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04956_consumption", + "bus": "MVLV04956", + "phases": "abc", + "powers": [ + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992] + ] + }, + { + "id": "MVLV04587_production", + "bus": "MVLV04587", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04587_consumption", + "bus": "MVLV04587", + "phases": "abc", + "powers": [ + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992] + ] + }, + { + "id": "MVLV14605_production", + "bus": "MVLV14605", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14605_consumption", + "bus": "MVLV14605", + "phases": "abc", + "powers": [ + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103] + ] + }, + { + "id": "MVLV17080_production", + "bus": "MVLV17080", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17080_consumption", + "bus": "MVLV17080", + "phases": "abc", + "powers": [ + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992] + ] + }, + { + "id": "MVLV14280_production", + "bus": "MVLV14280", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14280_consumption", + "bus": "MVLV14280", + "phases": "abc", + "powers": [ + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103] + ] + }, + { + "id": "MVLV17095_production", + "bus": "MVLV17095", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17095_consumption", + "bus": "MVLV17095", + "phases": "abc", + "powers": [ + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103] + ] + }, + { + "id": "MVLV19350_production", + "bus": "MVLV19350", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19350_consumption", + "bus": "MVLV19350", + "phases": "abc", + "powers": [ + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103], + [10952.071121888235, 3599.771696553103] + ] + }, + { + "id": "MVLV19321_production", + "bus": "MVLV19321", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19321_consumption", + "bus": "MVLV19321", + "phases": "abc", + "powers": [ + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992], + [91399.74270879313, 30041.642645817992] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder210_Summer.json b/roseau/load_flow/data/networks/MVFeeder210_Summer.json new file mode 100644 index 00000000..74e8b315 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder210_Summer.json @@ -0,0 +1,5027 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.315508137717839, 48.67552963511552] + } + }, + { + "id": "HVMV14", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.315508137717839, 48.67552963511552] + } + }, + { + "id": "MVLV06299", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3243096308857334, 48.677222514427754] + } + }, + { + "id": "MVBus05026", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.324633327379154, 48.681828081809556] + } + }, + { + "id": "MVBus05027", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.324640695755288, 48.68391926354705] + } + }, + { + "id": "MVBus05028", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.324403471836129, 48.688034195862905] + } + }, + { + "id": "MVLV06298", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.32466065492585, 48.6880640048316] + } + }, + { + "id": "MVBus05030", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332311951909265, 48.6947431871332] + } + }, + { + "id": "MVLV16807", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3324397522750886, 48.69480756439362] + } + }, + { + "id": "MVBus08987", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332696716348577, 48.69475012796576] + } + }, + { + "id": "MVBus08988", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332769653966778, 48.694856436515416] + } + }, + { + "id": "MVBus08989", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.333868868924871, 48.69442417043966] + } + }, + { + "id": "MVBus08990", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.337017272071378, 48.69361150583635] + } + }, + { + "id": "MVLV13668", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.336768360474335, 48.693054819581505] + } + }, + { + "id": "MVLV08873", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.337811745653045, 48.69348041079462] + } + }, + { + "id": "MVBus08231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332456160398833, 48.694750388404394] + } + }, + { + "id": "MVBus08232", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332662258481913, 48.69470601327688] + } + }, + { + "id": "MVBus08233", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.349090863664277, 48.69988795473] + } + }, + { + "id": "MVBus08234", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.349583389791825, 48.7002449228178] + } + }, + { + "id": "MVBus08235", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.350033533716369, 48.70073831530751] + } + }, + { + "id": "MVLV15837", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3610517542755765, 48.69858050796095] + } + }, + { + "id": "MVBus17515", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361872248455002, 48.698372926745066] + } + }, + { + "id": "MVBus17516", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.370008749538573, 48.69484206776048] + } + }, + { + "id": "MVBus17517", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37140828752311, 48.69474338047859] + } + }, + { + "id": "MVBus17518", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380593480920253, 48.68951313748911] + } + }, + { + "id": "MVBus17519", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386095076128499, 48.69020544337535] + } + }, + { + "id": "MVLV00762", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3860685283105134, 48.69022637502021] + } + }, + { + "id": "MVBus24050", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386585620553674, 48.692516906896316] + } + }, + { + "id": "MVLV05135", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.388721682538931, 48.69170724856656] + } + }, + { + "id": "MVBus24051", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.389640377977582, 48.6936695244645] + } + }, + { + "id": "MVBus24052", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.390456896571498, 48.694092429012166] + } + }, + { + "id": "MVBus24055", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.398561158560935, 48.687535479227805] + } + }, + { + "id": "MVBus24068", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.408493773037451, 48.68069081868821] + } + }, + { + "id": "MVBus24099", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409110034494963, 48.68080865138281] + } + }, + { + "id": "MVBus24100", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.40965762004385, 48.68091651992885] + } + }, + { + "id": "MVBus24103", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410375244576262, 48.68359763038951] + } + }, + { + "id": "MVBus24104", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410457520575412, 48.6846248924926] + } + }, + { + "id": "MVBus24106", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.41052130409578, 48.6846345578222] + } + }, + { + "id": "MVBus24107", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410557522651376, 48.685621609766095] + } + }, + { + "id": "MVBus24108", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409907100020805, 48.68709324149833] + } + }, + { + "id": "MVLV00546", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409563445224697, 48.687969213263976] + } + }, + { + "id": "MVLV10324", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410867808177468, 48.68472414481989] + } + }, + { + "id": "MVBus24101", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.411072946287639, 48.68122377495599] + } + }, + { + "id": "MVLV10323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.413039955009211, 48.681710134344065] + } + }, + { + "id": "MVBus24069", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.413074070122556, 48.67823125435254] + } + }, + { + "id": "MVBus24070", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.419991973797182, 48.67443548826671] + } + }, + { + "id": "MVBus24080", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.42136624107891, 48.67352763843192] + } + }, + { + "id": "MVBus24081", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.423458086823049, 48.672063747279815] + } + }, + { + "id": "MVBus24082", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.425433424469281, 48.6704288218968] + } + }, + { + "id": "MVBus24084", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.427550443876756, 48.66832702556939] + } + }, + { + "id": "MVBus24085", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.42773882512684, 48.667518960930806] + } + }, + { + "id": "MVBus24086", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.429737921743526, 48.66740399771851] + } + }, + { + "id": "MVBus24087", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.430226347180375, 48.66816721336321] + } + }, + { + "id": "MVLV06447", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.432209635049518, 48.67056922323461] + } + }, + { + "id": "MVBus24089", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.437540172188118, 48.66623721183292] + } + }, + { + "id": "MVBus39974", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.438557514204313, 48.66571332634098] + } + }, + { + "id": "MVBus39976", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.441570933640071, 48.66627762495946] + } + }, + { + "id": "MVLV09015", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.438449788295261, 48.67104614339778] + } + }, + { + "id": "MVBus39978", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.443199968358023, 48.66690877873582] + } + }, + { + "id": "MVLV06448", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.446079710619304, 48.66557326975702] + } + }, + { + "id": "MVBus39980", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.444227964428699, 48.668319010605344] + } + }, + { + "id": "MVBus39981", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.44375635095643, 48.668776616576054] + } + }, + { + "id": "MVBus39990", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.443343047955685, 48.66847284504271] + } + }, + { + "id": "MVLV18919", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.443288177621643, 48.668471426684015] + } + }, + { + "id": "MVBus39982", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.445506049849497, 48.66907708140258] + } + }, + { + "id": "MVBus39983", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.448362516861079, 48.67139846929151] + } + }, + { + "id": "MVLV00544", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.449205686310729, 48.67094761063653] + } + }, + { + "id": "MVBus39985", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.453998689564143, 48.67360108655294] + } + }, + { + "id": "MVBus39986", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.454111420613221, 48.67365783095757] + } + }, + { + "id": "MVBus39987", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.454133606341398, 48.67364249809416] + } + }, + { + "id": "MVLV14633", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.456255345960154, 48.673153506275305] + } + }, + { + "id": "MVBus39989", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.471496954704484, 48.684283897260315] + } + }, + { + "id": "MVLV18920", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.435905350518214, 48.665013198677705] + } + }, + { + "id": "MVBus24090", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424019455111165, 48.667992607111934] + } + }, + { + "id": "MVLV14266", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.423949664678889, 48.6680024069041] + } + }, + { + "id": "MVLV02728", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424157252985195, 48.67046024446686] + } + }, + { + "id": "MVLV00547", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.419761534530391, 48.67316204924771] + } + }, + { + "id": "MVBus24071", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.420630681455058, 48.674440314166944] + } + }, + { + "id": "MVBus24072", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.421340042028947, 48.67636068076991] + } + }, + { + "id": "MVLV18922", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.425622793335055, 48.67794155813378] + } + }, + { + "id": "MVBus24073", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.419810117061095, 48.67734764388789] + } + }, + { + "id": "MVLV13819", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.417411347774322, 48.6790354886807] + } + }, + { + "id": "MVBus24075", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.420328922524153, 48.677875121617966] + } + }, + { + "id": "MVBus24076", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424667185742581, 48.68251880629374] + } + }, + { + "id": "MVLV09363", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424579380339677, 48.68254398026742] + } + }, + { + "id": "MVLV10453", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.420420507191141, 48.68634791867971] + } + }, + { + "id": "MVBus24092", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.411978407328498, 48.676764286658575] + } + }, + { + "id": "MVBus24093", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410767426786093, 48.67586486863645] + } + }, + { + "id": "MVBus24094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.406207660086664, 48.675123055199464] + } + }, + { + "id": "MVBus24097", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.407329364348828, 48.67378715489126] + } + }, + { + "id": "MVLV03222", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410177531992409, 48.67251969634844] + } + }, + { + "id": "MVBus24095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.402903063269356, 48.67421149659865] + } + }, + { + "id": "MVLV00545", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.401395938329806, 48.67482940726141] + } + }, + { + "id": "MVBus24056", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.389136030184977, 48.68430691391075] + } + }, + { + "id": "MVBus24057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.388369912450079, 48.684359890565865] + } + }, + { + "id": "MVLV15406", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.389247638808418, 48.68704140487774] + } + }, + { + "id": "MVBus24058", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387495141567356, 48.683362598407236] + } + }, + { + "id": "MVLV08246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387208961037065, 48.68286061089437] + } + }, + { + "id": "MVBus24059", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391320095620501, 48.68124807997599] + } + }, + { + "id": "MVLV06953", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391318871202315, 48.68128407741701] + } + }, + { + "id": "MVBus24061", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396086853166442, 48.68016686423779] + } + }, + { + "id": "MVBus24062", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396689119419465, 48.68008386227141] + } + }, + { + "id": "MVBus24064", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.397175010325148, 48.680005646047306] + } + }, + { + "id": "MVLV02107", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.397198756611179, 48.68002106022296] + } + }, + { + "id": "MVLV04069", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.393859245371176, 48.678398121997645] + } + }, + { + "id": "MVBus24053", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387228378138695, 48.69648346340322] + } + }, + { + "id": "MVLV00763", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386320350855856, 48.69674688889175] + } + }, + { + "id": "MVLV02676", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386086307107507, 48.69024982994571] + } + }, + { + "id": "MVLV11234", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381057295037861, 48.68857227401332] + } + }, + { + "id": "MVBus17523", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36250058294375, 48.699920974017196] + } + }, + { + "id": "MVBus17526", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364469760819947, 48.702221813021815] + } + }, + { + "id": "MVBus17527", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365080155168652, 48.702931226958164] + } + }, + { + "id": "MVBus17528", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366857582095782, 48.702909804508195] + } + }, + { + "id": "MVBus17539", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.368602686985163, 48.702762027953426] + } + }, + { + "id": "MVBus17540", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369391365276649, 48.702312360854734] + } + }, + { + "id": "MVLV11643", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36985327513618, 48.70171789916646] + } + }, + { + "id": "MVBus17529", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365766216776604, 48.70323344674769] + } + }, + { + "id": "MVBus17530", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362654078028266, 48.70439394941558] + } + }, + { + "id": "MVLV12960", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361146143854642, 48.70373258684646] + } + }, + { + "id": "MVBus17532", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361706222495278, 48.70493345667249] + } + }, + { + "id": "MVBus17533", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363787332955464, 48.70687745644073] + } + }, + { + "id": "MVBus17535", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365482557431456, 48.70845136474554] + } + }, + { + "id": "MVBus17536", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371470530798074, 48.708006097671856] + } + }, + { + "id": "MVLV15838", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372263248440009, 48.70572814874992] + } + }, + { + "id": "MVLV05594", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372474957363736, 48.70819963640383] + } + }, + { + "id": "MVLV08691", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362017012011286, 48.707740359055315] + } + }, + { + "id": "MVBus17524", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360816212595922, 48.70113087837448] + } + }, + { + "id": "MVLV12961", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.359690288894828, 48.70030435899507] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV14", + "geometry": { + "type": "Point", + "coordinates": [-1.315508137717839, 48.67552963511552] + } + }, + { + "id": "MVBranch39944", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV14", + "bus2": "MVLV06299", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.315508137717839, 48.67552963511552], + [-1.315503463460778, 48.675545112303986], + [-1.315503463460778, 48.675545112303986], + [-1.315500848189535, 48.675556242851165], + [-1.315198632188688, 48.67596371052023], + [-1.317871088132522, 48.67581209610027], + [-1.318670051393893, 48.67576675473115], + [-1.31964092142359, 48.67575020213779], + [-1.320984238145868, 48.67572728247795], + [-1.323541968796889, 48.675683594843576], + [-1.323852907070429, 48.67567706472819], + [-1.324195198699835, 48.675669862746695], + [-1.324284678894714, 48.6757184090606], + [-1.32427595282035, 48.67581334177527], + [-1.324208562736317, 48.67602188193846], + [-1.324198289130883, 48.67612822738935], + [-1.324179048878627, 48.676327443285246], + [-1.324177927879868, 48.67653988530394], + [-1.324248646680606, 48.67691893742712], + [-1.324288793975336, 48.6771142230753], + [-1.324305348212575, 48.67719477859688], + [-1.324306673367868, 48.677208199294995], + [-1.3243096308857334, 48.677222514427754] + ] + }, + "length": 0.8907821128978984, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44484", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06299", + "bus2": "MVBus05026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3243096308857334, 48.677222514427754], + [-1.324312588403599, 48.67723682956052], + [-1.324316950961365, 48.67724610720035], + [-1.324407539328749, 48.67746690264696], + [-1.324752016524325, 48.67788046022347], + [-1.324843979689097, 48.67805145172044], + [-1.324824957712141, 48.678204525954555], + [-1.324608374901279, 48.67845408006145], + [-1.324270214418594, 48.67935067307869], + [-1.32398527816498, 48.67968059475105], + [-1.323915414415546, 48.680238257520585], + [-1.324401306984702, 48.6815097737912], + [-1.324552530119515, 48.68169822823113], + [-1.324633327379154, 48.681828081809556], + [-1.324633327379154, 48.681828081809556] + ] + }, + "length": 0.5407812374987008, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33354", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05026", + "bus2": "MVBus05027", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324633327379154, 48.681828081809556], + [-1.324633327379154, 48.681828081809556], + [-1.324756396743055, 48.682263798619054], + [-1.3248669507068, 48.6824916253855], + [-1.324952123147225, 48.68272566173774], + [-1.324966571570778, 48.68292236987251], + [-1.32496292375523, 48.68311335585766], + [-1.324855378890781, 48.6835003575958], + [-1.324686040704435, 48.683860535074125], + [-1.324640695755288, 48.68391926354705], + [-1.324640695755288, 48.68391926354705] + ] + }, + "length": 0.23885803889542243, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35638", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05027", + "bus2": "MVBus05028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324640695755288, 48.68391926354705], + [-1.324640695755288, 48.68391926354705], + [-1.324731743147127, 48.684102385727634], + [-1.324612607398126, 48.68420823112392], + [-1.324210835737492, 48.68469847354835], + [-1.323733355875409, 48.68508555428773], + [-1.323247151129281, 48.68609235665885], + [-1.323186423057092, 48.68614168790656], + [-1.322964822084235, 48.68662253126854], + [-1.322727629500577, 48.68774974573568], + [-1.324392042278423, 48.6880208802085], + [-1.324403471836129, 48.688034195862905], + [-1.324403471836129, 48.688034195862905] + ] + }, + "length": 0.5887167838332982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44419", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05028", + "bus2": "MVLV06298", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324403471836129, 48.688034195862905], + [-1.324403471836129, 48.688034195862905], + [-1.324437008831657, 48.68801559589586], + [-1.324656330660879, 48.688047950325824], + [-1.32466065492585, 48.6880640048316], + [-1.32466065492585, 48.6880640048316] + ] + }, + "length": 0.02157870615750059, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37908", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05028", + "bus2": "MVBus05030", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324403471836129, 48.688034195862905], + [-1.324403471836129, 48.688034195862905], + [-1.324149148043669, 48.68933663489254], + [-1.324197080192804, 48.68939333858261], + [-1.325885968473182, 48.68982120486558], + [-1.326481505570192, 48.69026083730953], + [-1.326639205462656, 48.69044737913898], + [-1.326887269601804, 48.69081554133641], + [-1.326980765300025, 48.69104141783925], + [-1.327044222623438, 48.69129157273886], + [-1.327143567736885, 48.69175069380194], + [-1.327343998045295, 48.69239344320849], + [-1.327523947418851, 48.69284541269855], + [-1.327567107178485, 48.69300748878106], + [-1.327597607039506, 48.69320728091928], + [-1.327569335173674, 48.69340129401491], + [-1.327476282131494, 48.69365103710961], + [-1.327290667822254, 48.69399224550509], + [-1.327292636982018, 48.69399087092771], + [-1.327302797151854, 48.69421180737148], + [-1.327498179998498, 48.694775445551336], + [-1.32758157405069, 48.69511069261121], + [-1.327637773349822, 48.695141656384756], + [-1.329139158360847, 48.694888540438], + [-1.32964290487591, 48.69474310803858], + [-1.330271496452614, 48.69459518180074], + [-1.330520721003228, 48.69457099219727], + [-1.330933520974348, 48.694591559250384], + [-1.332311951909265, 48.6947431871332], + [-1.332311951909265, 48.6947431871332] + ] + }, + "length": 1.2704878570324705, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42832", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05030", + "bus2": "MVLV16807", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332311951909265, 48.6947431871332], + [-1.332311951909265, 48.6947431871332], + [-1.332414749754649, 48.69475008560281], + [-1.332415855968401, 48.6947915696613], + [-1.332416229313139, 48.694805334549706], + [-1.3324397522750886, 48.69480756439362] + ] + }, + "length": 0.013751403625483079, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42299", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16807", + "bus2": "MVBus08987", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3324397522750886, 48.69480756439362], + [-1.332464774190726, 48.69480869206709], + [-1.33246573472015, 48.69479283430077], + [-1.332466383988903, 48.69478219619294], + [-1.332696716348577, 48.69475012796576], + [-1.332696716348577, 48.69475012796576] + ] + }, + "length": 0.020276337243253024, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47750", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08987", + "bus2": "MVBus08988", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332696716348577, 48.69475012796576], + [-1.332696716348577, 48.69475012796576], + [-1.332752887698223, 48.69475831550576], + [-1.332769653966778, 48.694856436515416], + [-1.332769653966778, 48.694856436515416] + ] + }, + "length": 0.015215285499410657, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch08117", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08988", + "bus2": "MVBus08989", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332769653966778, 48.694856436515416], + [-1.332769653966778, 48.694856436515416], + [-1.333868868924871, 48.69442417043966], + [-1.333868868924871, 48.69442417043966] + ] + }, + "length": 0.09412263973083554, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31282", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08989", + "bus2": "MVBus08990", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.333868868924871, 48.69442417043966], + [-1.333868868924871, 48.69442417043966], + [-1.335151937095821, 48.69432457617282], + [-1.337017272071378, 48.69361150583635], + [-1.337017272071378, 48.69361150583635] + ] + }, + "length": 0.2536788424847895, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10895", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08990", + "bus2": "MVLV13668", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.337017272071378, 48.69361150583635], + [-1.337017272071378, 48.69361150583635], + [-1.336768360474335, 48.693054819581505], + [-1.336768360474335, 48.693054819581505] + ] + }, + "length": 0.06456087593189838, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch39299", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08990", + "bus2": "MVLV08873", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.337017272071378, 48.69361150583635], + [-1.337017272071378, 48.69361150583635], + [-1.337811745653045, 48.69348041079462], + [-1.337811745653045, 48.69348041079462] + ] + }, + "length": 0.060278301216926226, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37724", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16807", + "bus2": "MVBus08231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3324397522750886, 48.69480756439362], + [-1.332438253321401, 48.694808666564086], + [-1.332443502553064, 48.69479156034865], + [-1.332456160398833, 48.694750388404394], + [-1.332456160398833, 48.694750388404394] + ] + }, + "length": 0.0066134739308626985, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42831", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08231", + "bus2": "MVBus08232", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332456160398833, 48.694750388404394], + [-1.332456160398833, 48.694750388404394], + [-1.332662258481913, 48.69470601327688], + [-1.332662258481913, 48.69470601327688] + ] + }, + "length": 0.015954819992476985, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41215", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08232", + "bus2": "MVBus08233", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332662258481913, 48.69470601327688], + [-1.332662258481913, 48.69470601327688], + [-1.334403533710343, 48.69449777888983], + [-1.334737608012648, 48.6945385588819], + [-1.337468319551824, 48.69479076262023], + [-1.338560174992908, 48.69473600803719], + [-1.339110950367838, 48.69497772569214], + [-1.34053457433403, 48.69551252079587], + [-1.341229118621193, 48.695859813180384], + [-1.34158065555616, 48.695897432347785], + [-1.342253607540212, 48.69588639859719], + [-1.343161387869735, 48.696007641304966], + [-1.343470742121568, 48.69609375099156], + [-1.343958767360514, 48.696412422257495], + [-1.344769412777089, 48.69680510651728], + [-1.344847696755994, 48.696914724780584], + [-1.344956332284714, 48.69700472937253], + [-1.345113240552836, 48.69707922515018], + [-1.345667425411271, 48.69728612809096], + [-1.346037144688256, 48.69742153130377], + [-1.346199396336957, 48.697577745085724], + [-1.34633565051282, 48.69770890446633], + [-1.346533287484332, 48.69776112271589], + [-1.346800660298467, 48.69780184396979], + [-1.347026872166945, 48.69780208131676], + [-1.347239757547525, 48.69777251551116], + [-1.347525615978146, 48.697598373510864], + [-1.347794053666933, 48.69737428185959], + [-1.348056445531613, 48.69726054460816], + [-1.348144026797379, 48.697322099639194], + [-1.348054099550095, 48.6976186904504], + [-1.347825443439531, 48.69791500087517], + [-1.347917694846003, 48.69823806607235], + [-1.34838789439191, 48.69920109903526], + [-1.349100811857249, 48.69984036815978], + [-1.349090863664277, 48.69988795473], + [-1.349090863664277, 48.69988795473] + ] + }, + "length": 1.5972493115269248, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43224", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08233", + "bus2": "MVBus08234", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.349090863664277, 48.69988795473], + [-1.349090863664277, 48.69988795473], + [-1.349083292062529, 48.6999270719708], + [-1.349083883067351, 48.69994077613723], + [-1.349084843037833, 48.69994185311251], + [-1.349140909608321, 48.699974323001385], + [-1.349236045168364, 48.700020975213334], + [-1.34927393985865, 48.70003642681342], + [-1.349387010003084, 48.700105179590416], + [-1.349472006439018, 48.700153577233394], + [-1.349507683804376, 48.70017111322575], + [-1.349583389791825, 48.7002449228178], + [-1.349583389791825, 48.7002449228178] + ] + }, + "length": 0.05627094231677252, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46980", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08234", + "bus2": "MVBus08235", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.349583389791825, 48.7002449228178], + [-1.349583389791825, 48.7002449228178], + [-1.349748385026399, 48.700405797260046], + [-1.349781547229223, 48.70045533745463], + [-1.349800820063233, 48.70047637057669], + [-1.349827137474714, 48.700499551351136], + [-1.349847027596675, 48.70052334577209], + [-1.349979562527859, 48.700651457832706], + [-1.350028618635357, 48.7006979575111], + [-1.35003056868882, 48.70070743515395], + [-1.350025023888087, 48.700721833846366], + [-1.350024986880549, 48.70072457049264], + [-1.350033533716369, 48.70073831530751], + [-1.350033533716369, 48.70073831530751] + ] + }, + "length": 0.06487991476065545, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40837", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08235", + "bus2": "MVLV15837", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.350033533716369, 48.70073831530751], + [-1.350033533716369, 48.70073831530751], + [-1.350355480420248, 48.70102878261073], + [-1.351309816091185, 48.70180708948788], + [-1.351610455483424, 48.70196548142909], + [-1.351673413354848, 48.701995963152626], + [-1.352029744876275, 48.702045632317834], + [-1.352466636103471, 48.70201232314792], + [-1.352800204288034, 48.70194984956354], + [-1.353656496921582, 48.70172500086173], + [-1.354121832772898, 48.70156831496038], + [-1.355020097991785, 48.70112971664497], + [-1.355881836396744, 48.70070569137057], + [-1.357240705657859, 48.70004739372588], + [-1.358256195357674, 48.69955330392023], + [-1.360036412980531, 48.69869517239255], + [-1.3600609520485, 48.69870418900822], + [-1.360092750498626, 48.69871588589524], + [-1.360997867228555, 48.69854465511206], + [-1.361038303263266, 48.69857133489028], + [-1.36104380445785, 48.69858140365268], + [-1.3610517542755765, 48.69858050796095] + ] + }, + "length": 0.9959524767430119, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33353", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15837", + "bus2": "MVBus17515", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3610517542755765, 48.69858050796095], + [-1.361059704093303, 48.698579612269214], + [-1.361047371992327, 48.698535238367704], + [-1.361872248455002, 48.698372926745066], + [-1.361872248455002, 48.698372926745066] + ] + }, + "length": 0.06836447371794643, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36563", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17515", + "bus2": "MVBus17516", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361872248455002, 48.698372926745066], + [-1.361872248455002, 48.698372926745066], + [-1.362629132935457, 48.69820729445299], + [-1.363029158829987, 48.698095998025224], + [-1.363488279660191, 48.697927858271804], + [-1.363445651687543, 48.697882998763404], + [-1.363943521716062, 48.69764855349933], + [-1.364231319150016, 48.69749610333351], + [-1.36457856618481, 48.69726222393793], + [-1.364770989793346, 48.69708974795057], + [-1.36483850397913, 48.696999384142416], + [-1.365211141359183, 48.696401900265855], + [-1.365418667508216, 48.696168229810155], + [-1.365710520367382, 48.69589424122478], + [-1.366081966636756, 48.69563355063961], + [-1.366487098573561, 48.695415116903014], + [-1.366719934502484, 48.695316485999676], + [-1.367397492595332, 48.695120975029496], + [-1.368102260761573, 48.6949390347851], + [-1.368517781569113, 48.69486045702395], + [-1.368673419887827, 48.6948394790163], + [-1.368859647394755, 48.694818957991565], + [-1.369176061861146, 48.69484622794454], + [-1.369633161489022, 48.69488625253494], + [-1.369840137641254, 48.694909858321765], + [-1.370008749538573, 48.69484206776048], + [-1.370008749538573, 48.69484206776048] + ] + }, + "length": 0.7716718945900013, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44436", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17516", + "bus2": "MVBus17517", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.370008749538573, 48.69484206776048], + [-1.370008749538573, 48.69484206776048], + [-1.370130340391536, 48.694836576401244], + [-1.370526610360428, 48.69492079156123], + [-1.370932620593153, 48.69485299475301], + [-1.371160826341029, 48.69480660998835], + [-1.37140828752311, 48.69474338047859], + [-1.37140828752311, 48.69474338047859] + ] + }, + "length": 0.10753804778842857, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44435", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17517", + "bus2": "MVBus17518", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37140828752311, 48.69474338047859], + [-1.37140828752311, 48.69474338047859], + [-1.372108316379351, 48.694582899499785], + [-1.372776995364991, 48.69443116937401], + [-1.372929536273884, 48.69437481928326], + [-1.373004567322684, 48.69433308611805], + [-1.373035696173742, 48.694315771215955], + [-1.373972817438306, 48.69362667631505], + [-1.376669605229281, 48.6916538042244], + [-1.378349128400386, 48.69065179067016], + [-1.378658397432478, 48.69041424189457], + [-1.378829116825462, 48.69020588613805], + [-1.379202004593425, 48.68971142133887], + [-1.379492650503138, 48.68956048905799], + [-1.380181593777458, 48.6896592059833], + [-1.380266592034214, 48.68959851050389], + [-1.380593480920253, 48.68951313748911], + [-1.380593480920253, 48.68951313748911] + ] + }, + "length": 0.9319581720426843, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17518", + "bus2": "MVBus17519", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380593480920253, 48.68951313748911], + [-1.380593480920253, 48.68951313748911], + [-1.38077081939404, 48.68948115099424], + [-1.381030922180158, 48.689499239232546], + [-1.381622620649323, 48.68956621593823], + [-1.381944230603197, 48.68960261206002], + [-1.382239983321192, 48.689632835058646], + [-1.382604941018307, 48.6897730193813], + [-1.382898135881761, 48.689885640459785], + [-1.382989438641679, 48.68992070666759], + [-1.383080417712247, 48.689951436619616], + [-1.383271623296468, 48.69000498448029], + [-1.383466377608706, 48.690039928558214], + [-1.38378629455312, 48.69006798618082], + [-1.385773855373496, 48.69015142674052], + [-1.38606803163353, 48.69014075498917], + [-1.386095076128499, 48.69020544337535], + [-1.386095076128499, 48.69020544337535] + ] + }, + "length": 0.4240344987125137, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44418", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17519", + "bus2": "MVLV00762", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386095076128499, 48.69020544337535], + [-1.386095076128499, 48.69020544337535], + [-1.386074007914371, 48.69018758536089], + [-1.386045414412386, 48.69019219016974], + [-1.3860685283105134, 48.69022637502021] + ] + }, + "length": 0.004686436383422953, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37164", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00762", + "bus2": "MVBus24050", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3860685283105134, 48.69022637502021], + [-1.386091642208641, 48.69026055987068], + [-1.386107806027131, 48.690259845618584], + [-1.38612993102133, 48.690258863290296], + [-1.386172893328841, 48.69025694803313], + [-1.386258900261758, 48.69036720873158], + [-1.386327665262383, 48.69048419259067], + [-1.386429285337267, 48.69070998267635], + [-1.386663235642549, 48.691295983208455], + [-1.386710197058936, 48.69195325464215], + [-1.386656207449652, 48.69214037516906], + [-1.386536543614332, 48.692507486905285], + [-1.386585620553674, 48.692516906896316], + [-1.386585620553674, 48.692516906896316] + ] + }, + "length": 0.26724134465610405, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch01719", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24050", + "bus2": "MVLV05135", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386585620553674, 48.692516906896316], + [-1.386585620553674, 48.692516906896316], + [-1.387398231874811, 48.691644860892694], + [-1.388721682538931, 48.69170724856656], + [-1.388721682538931, 48.69170724856656] + ] + }, + "length": 0.21162633478045764, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11543", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24050", + "bus2": "MVBus24051", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386585620553674, 48.692516906896316], + [-1.386585620553674, 48.692516906896316], + [-1.389640377977582, 48.6936695244645], + [-1.389640377977582, 48.6936695244645] + ] + }, + "length": 0.25885409503143514, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11542", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24051", + "bus2": "MVBus24052", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.389640377977582, 48.6936695244645], + [-1.389640377977582, 48.6936695244645], + [-1.390344271878809, 48.69403410174598], + [-1.390456896571498, 48.694092429012166], + [-1.390456896571498, 48.694092429012166] + ] + }, + "length": 0.07632215258057966, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch28132", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24052", + "bus2": "MVBus24055", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.390456896571498, 48.694092429012166], + [-1.390456896571498, 48.694092429012166], + [-1.398561158560935, 48.687535479227805], + [-1.398561158560935, 48.687535479227805] + ] + }, + "length": 0.9421676332786787, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch28134", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24055", + "bus2": "MVBus24068", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.398561158560935, 48.687535479227805], + [-1.398561158560935, 48.687535479227805], + [-1.403644517387418, 48.68335067722083], + [-1.408493773037451, 48.68069081868821], + [-1.408493773037451, 48.68069081868821] + ] + }, + "length": 1.0608890004938134, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch23138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24068", + "bus2": "MVBus24099", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.408493773037451, 48.68069081868821], + [-1.408493773037451, 48.68069081868821], + [-1.409110034494963, 48.68080865138281], + [-1.409110034494963, 48.68080865138281] + ] + }, + "length": 0.047234359365897635, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08362", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24099", + "bus2": "MVBus24100", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409110034494963, 48.68080865138281], + [-1.409110034494963, 48.68080865138281], + [-1.40965762004385, 48.68091651992885], + [-1.40965762004385, 48.68091651992885] + ] + }, + "length": 0.042069559422674464, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08367", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24100", + "bus2": "MVBus24103", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40965762004385, 48.68091651992885], + [-1.40965762004385, 48.68091651992885], + [-1.410375244576262, 48.68359763038951], + [-1.410375244576262, 48.68359763038951] + ] + }, + "length": 0.3027957426010854, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32881", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24103", + "bus2": "MVBus24104", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410375244576262, 48.68359763038951], + [-1.410375244576262, 48.68359763038951], + [-1.41024833874059, 48.68399934277218], + [-1.410279603008094, 48.68403941670856], + [-1.410094731272296, 48.68454334180209], + [-1.410457520575412, 48.6846248924926], + [-1.410457520575412, 48.6846248924926] + ] + }, + "length": 0.13653314559085525, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37630", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24104", + "bus2": "MVBus24106", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410457520575412, 48.6846248924926], + [-1.410457520575412, 48.6846248924926], + [-1.41052130409578, 48.6846345578222], + [-1.41052130409578, 48.6846345578222] + ] + }, + "length": 0.004817968050677522, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch15248", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24106", + "bus2": "MVBus24107", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.41052130409578, 48.6846345578222], + [-1.41052130409578, 48.6846345578222], + [-1.410557522651376, 48.685621609766095], + [-1.410557522651376, 48.685621609766095] + ] + }, + "length": 0.10979615455757827, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19974", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24107", + "bus2": "MVBus24108", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410557522651376, 48.685621609766095], + [-1.410557522651376, 48.685621609766095], + [-1.409907100020805, 48.68709324149833], + [-1.409907100020805, 48.68709324149833] + ] + }, + "length": 0.1705142628444711, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43460", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24108", + "bus2": "MVLV00546", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409907100020805, 48.68709324149833], + [-1.409907100020805, 48.68709324149833], + [-1.409966510573871, 48.68710442214782], + [-1.409618473717378, 48.687710370706036], + [-1.409510396586243, 48.6879607020776], + [-1.409563445224697, 48.687969213263976], + [-1.409563445224697, 48.687969213263976] + ] + }, + "length": 0.10961108702116706, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40775", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24104", + "bus2": "MVLV10324", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410457520575412, 48.6846248924926], + [-1.410457520575412, 48.6846248924926], + [-1.410526256898795, 48.68463218763467], + [-1.410853373558316, 48.6847031927041], + [-1.410873154098373, 48.68470856092348], + [-1.410867808177468, 48.68472414481989], + [-1.410867808177468, 48.68472414481989] + ] + }, + "length": 0.03382471807901016, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24100", + "bus2": "MVBus24101", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40965762004385, 48.68091651992885], + [-1.40965762004385, 48.68091651992885], + [-1.411072946287639, 48.68122377495599], + [-1.411072946287639, 48.68122377495599] + ] + }, + "length": 0.10967942847151416, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch40281", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24101", + "bus2": "MVLV10323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.411072946287639, 48.68122377495599], + [-1.411072946287639, 48.68122377495599], + [-1.412726298448994, 48.68168800584517], + [-1.413039955009211, 48.681710134344065], + [-1.413039955009211, 48.681710134344065] + ] + }, + "length": 0.1554685335100641, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch15243", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24068", + "bus2": "MVBus24069", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.408493773037451, 48.68069081868821], + [-1.408493773037451, 48.68069081868821], + [-1.413074070122556, 48.67823125435254], + [-1.413074070122556, 48.67823125435254] + ] + }, + "length": 0.43425352725613486, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11154", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24069", + "bus2": "MVBus24070", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.413074070122556, 48.67823125435254], + [-1.413074070122556, 48.67823125435254], + [-1.418220642622635, 48.67558838087891], + [-1.419991973797182, 48.67443548826671], + [-1.419991973797182, 48.67443548826671] + ] + }, + "length": 0.6625168530605734, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch23140", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24070", + "bus2": "MVBus24080", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419991973797182, 48.67443548826671], + [-1.419991973797182, 48.67443548826671], + [-1.42136624107891, 48.67352763843192], + [-1.42136624107891, 48.67352763843192] + ] + }, + "length": 0.1429546741306491, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch15244", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24080", + "bus2": "MVBus24081", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42136624107891, 48.67352763843192], + [-1.42136624107891, 48.67352763843192], + [-1.423458086823049, 48.672063747279815], + [-1.423458086823049, 48.672063747279815] + ] + }, + "length": 0.22413447280940296, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch23143", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24081", + "bus2": "MVBus24082", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.423458086823049, 48.672063747279815], + [-1.423458086823049, 48.672063747279815], + [-1.425433424469281, 48.6704288218968], + [-1.425433424469281, 48.6704288218968] + ] + }, + "length": 0.23285469633794945, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch32483", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24082", + "bus2": "MVBus24084", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.425433424469281, 48.6704288218968], + [-1.425433424469281, 48.6704288218968], + [-1.427550443876756, 48.66832702556939], + [-1.427550443876756, 48.66832702556939] + ] + }, + "length": 0.2809661659950674, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch47851", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24084", + "bus2": "MVBus24085", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.427550443876756, 48.66832702556939], + [-1.427550443876756, 48.66832702556939], + [-1.427541195017932, 48.66832932598601], + [-1.427522044306043, 48.668323589666684], + [-1.427713619882294, 48.66752098506874], + [-1.42773882512684, 48.667518960930806], + [-1.42773882512684, 48.667518960930806] + ] + }, + "length": 0.09450681050023824, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44739", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24085", + "bus2": "MVBus24086", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42773882512684, 48.667518960930806], + [-1.42773882512684, 48.667518960930806], + [-1.428264344005357, 48.66750835777458], + [-1.428661787035208, 48.667467173483466], + [-1.429479811508234, 48.66732761483808], + [-1.429614903110496, 48.66736333333185], + [-1.429690343340474, 48.667355780407235], + [-1.429737921743526, 48.66740399771851], + [-1.429737921743526, 48.66740399771851] + ] + }, + "length": 0.15331713080544543, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45559", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24086", + "bus2": "MVBus24087", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.429737921743526, 48.66740399771851], + [-1.429737921743526, 48.66740399771851], + [-1.430322567466328, 48.66814847999149], + [-1.430244168935322, 48.66816904089627], + [-1.430226347180375, 48.66816721336321], + [-1.430226347180375, 48.66816721336321] + ] + }, + "length": 0.10085818204908785, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch08366", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24087", + "bus2": "MVLV06447", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.430226347180375, 48.66816721336321], + [-1.430226347180375, 48.66816721336321], + [-1.430588113036341, 48.668625325386294], + [-1.432209635049518, 48.67056922323461], + [-1.432209635049518, 48.67056922323461] + ] + }, + "length": 0.30445850037463673, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38639", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24086", + "bus2": "MVBus24089", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.429737921743526, 48.66740399771851], + [-1.429737921743526, 48.66740399771851], + [-1.429711720954316, 48.667347992059526], + [-1.429745098384111, 48.667312105440324], + [-1.429792832944832, 48.667283114939146], + [-1.430600538216654, 48.667162099257006], + [-1.431267185860128, 48.66708041423658], + [-1.43198630630097, 48.667035555474946], + [-1.432243495645382, 48.66699438050295], + [-1.432432678805019, 48.6669315373857], + [-1.432628963779213, 48.66685196387979], + [-1.435725693945472, 48.66495492278176], + [-1.435886014741506, 48.66497381296566], + [-1.435951745674166, 48.66494015250545], + [-1.436119799943683, 48.66495440472515], + [-1.436858835884234, 48.665017086724], + [-1.43697981519529, 48.665059032466075], + [-1.437019059340632, 48.66514211392453], + [-1.437106449289927, 48.665659984314104], + [-1.43714728610558, 48.6657650088189], + [-1.437218640286552, 48.665909404864394], + [-1.437307400738446, 48.66600646047312], + [-1.437604584918256, 48.66619192963684], + [-1.437540172188118, 48.66623721183292], + [-1.437540172188118, 48.66623721183292] + ] + }, + "length": 0.7845793482250173, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch01974", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24089", + "bus2": "MVBus39974", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.437540172188118, 48.66623721183292], + [-1.437540172188118, 48.66623721183292], + [-1.438557514204313, 48.66571332634098], + [-1.438557514204313, 48.66571332634098] + ] + }, + "length": 0.09491870161658982, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch25437", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39974", + "bus2": "MVBus39976", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.438557514204313, 48.66571332634098], + [-1.438557514204313, 48.66571332634098], + [-1.441570933640071, 48.66627762495946], + [-1.441570933640071, 48.66627762495946] + ] + }, + "length": 0.23066760853106663, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch15247", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39976", + "bus2": "MVLV09015", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.441570933640071, 48.66627762495946], + [-1.441570933640071, 48.66627762495946], + [-1.440918679186523, 48.667310323510996], + [-1.438662520784315, 48.66925218910298], + [-1.438449788295261, 48.67104614339778], + [-1.438449788295261, 48.67104614339778] + ] + }, + "length": 0.597075270951156, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11156", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39976", + "bus2": "MVBus39978", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.441570933640071, 48.66627762495946], + [-1.441570933640071, 48.66627762495946], + [-1.443199968358023, 48.66690877873582], + [-1.443199968358023, 48.66690877873582] + ] + }, + "length": 0.13901236964835756, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch43827", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39978", + "bus2": "MVLV06448", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.443199968358023, 48.66690877873582], + [-1.443199968358023, 48.66690877873582], + [-1.444758776426216, 48.66613386722032], + [-1.446034959286904, 48.6655489870267], + [-1.446079710619304, 48.66557326975702], + [-1.446079710619304, 48.66557326975702] + ] + }, + "length": 0.26213193633513093, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25438", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39978", + "bus2": "MVBus39980", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.443199968358023, 48.66690877873582], + [-1.443199968358023, 48.66690877873582], + [-1.444227964428699, 48.668319010605344], + [-1.444227964428699, 48.668319010605344] + ] + }, + "length": 0.17414570776249913, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch48254", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39980", + "bus2": "MVBus39981", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.444227964428699, 48.668319010605344], + [-1.444227964428699, 48.668319010605344], + [-1.444299152272503, 48.6683254786251], + [-1.444502883565754, 48.668578741240715], + [-1.44375635095643, 48.668776616576054], + [-1.44375635095643, 48.668776616576054] + ] + }, + "length": 0.09643044361056909, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40282", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39981", + "bus2": "MVBus39990", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.44375635095643, 48.668776616576054], + [-1.44375635095643, 48.668776616576054], + [-1.443750278118606, 48.66873325448024], + [-1.443773467700237, 48.66871601970379], + [-1.44373218248448, 48.66866074962074], + [-1.44365965172971, 48.668617490680106], + [-1.443450919490711, 48.66851969296421], + [-1.443354882037418, 48.668480512965324], + [-1.443343047955685, 48.66847284504271], + [-1.443343047955685, 48.66847284504271] + ] + }, + "length": 0.04981559861077533, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43828", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39990", + "bus2": "MVLV18919", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.443343047955685, 48.66847284504271], + [-1.443343047955685, 48.66847284504271], + [-1.443288177621643, 48.668471426684015], + [-1.443288177621643, 48.668471426684015] + ] + }, + "length": 0.004044616944947565, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43829", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39981", + "bus2": "MVBus39982", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.44375635095643, 48.668776616576054], + [-1.44375635095643, 48.668776616576054], + [-1.445016178665306, 48.66967538193563], + [-1.445044547761066, 48.66967631292724], + [-1.445201614001252, 48.66950798717624], + [-1.44533275307121, 48.66926638040962], + [-1.445427472704872, 48.669089900926714], + [-1.445506049849497, 48.66907708140258], + [-1.445506049849497, 48.66907708140258] + ] + }, + "length": 0.2158172278970547, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch19973", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39982", + "bus2": "MVBus39983", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.445506049849497, 48.66907708140258], + [-1.445506049849497, 48.66907708140258], + [-1.448362516861079, 48.67139846929151], + [-1.448362516861079, 48.67139846929151] + ] + }, + "length": 0.333021028751415, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch19972", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39983", + "bus2": "MVLV00544", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.448362516861079, 48.67139846929151], + [-1.448362516861079, 48.67139846929151], + [-1.449205686310729, 48.67094761063653], + [-1.449205686310729, 48.67094761063653] + ] + }, + "length": 0.07981412800351775, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31520", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39983", + "bus2": "MVBus39985", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.448362516861079, 48.67139846929151], + [-1.448362516861079, 48.67139846929151], + [-1.450727879884109, 48.67314634305642], + [-1.453998689564143, 48.67360108655294], + [-1.453998689564143, 48.67360108655294] + ] + }, + "length": 0.5071576179737199, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch46239", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39985", + "bus2": "MVBus39986", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.453998689564143, 48.67360108655294], + [-1.453998689564143, 48.67360108655294], + [-1.454111420613221, 48.67365783095757], + [-1.454111420613221, 48.67365783095757] + ] + }, + "length": 0.010428310529919476, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33356", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39986", + "bus2": "MVBus39987", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.454111420613221, 48.67365783095757], + [-1.454111420613221, 48.67365783095757], + [-1.454133606341398, 48.67364249809416], + [-1.454133606341398, 48.67364249809416] + ] + }, + "length": 0.002361576150954956, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34104", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39987", + "bus2": "MVLV14633", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.454133606341398, 48.67364249809416], + [-1.454133606341398, 48.67364249809416], + [-1.4541725680368, 48.67357862747877], + [-1.454178728141187, 48.67356899944076], + [-1.454218958046013, 48.6735238334756], + [-1.454264495217655, 48.67346908471265], + [-1.454321700159414, 48.67341241504533], + [-1.45435423135338, 48.67337292164041], + [-1.454430642005505, 48.67327980327606], + [-1.454488681120271, 48.67320028499911], + [-1.454511747888592, 48.67317020127465], + [-1.45456351300606, 48.67310080060492], + [-1.454612325323693, 48.67301661872196], + [-1.454623822620292, 48.672999125729426], + [-1.454641536256091, 48.67297482859888], + [-1.454664248841753, 48.67294063454721], + [-1.454721439502256, 48.672866821704936], + [-1.454743205831589, 48.67283866032237], + [-1.454781471001512, 48.67279358392653], + [-1.454797278113478, 48.67277631306957], + [-1.454903203350935, 48.672676536097434], + [-1.454926893563537, 48.672657060330124], + [-1.454975649378707, 48.67261274629773], + [-1.455001257845182, 48.67259814970873], + [-1.455010528756687, 48.67259447856786], + [-1.455033900027318, 48.67258852070583], + [-1.455056222027711, 48.67258680799679], + [-1.455093711225001, 48.67258961379867], + [-1.455118470900897, 48.67259375356931], + [-1.45513651275814, 48.6725989360819], + [-1.455189199988478, 48.6726137646719], + [-1.455197741414115, 48.67261648824631], + [-1.455266142267885, 48.672640533387415], + [-1.455323431540651, 48.672663502972156], + [-1.455387921434535, 48.67269167774245], + [-1.455456942862276, 48.67272274027245], + [-1.455543810411399, 48.672760584328145], + [-1.45563645931521, 48.67280000725657], + [-1.4556841196372, 48.67282210574247], + [-1.455742810702578, 48.67285069077081], + [-1.455800027946779, 48.6728791879226], + [-1.455813728807923, 48.672887073937574], + [-1.455821183509333, 48.672890732142434], + [-1.455830310471647, 48.67289403088996], + [-1.455840224843539, 48.672895270642684], + [-1.455855526182402, 48.672900135741365], + [-1.455941809813138, 48.67293518145967], + [-1.455974336144249, 48.67294855775469], + [-1.455984729565733, 48.67295487569655], + [-1.456008638505341, 48.672968959571314], + [-1.456061114868594, 48.67300417762797], + [-1.456115073269813, 48.67303791739178], + [-1.456124932747906, 48.67304287552983], + [-1.456196478538126, 48.673082082136574], + [-1.456238660980065, 48.67310712737256], + [-1.456252367115327, 48.6731175059378], + [-1.456255738113806, 48.67312180769581], + [-1.456259903898959, 48.67313123154897], + [-1.456265619588171, 48.67314308959205], + [-1.456255345960154, 48.673153506275305], + [-1.456255345960154, 48.673153506275305] + ] + }, + "length": 0.2488833099190807, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44485", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39986", + "bus2": "MVBus39989", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.454111420613221, 48.67365783095757], + [-1.454111420613221, 48.67365783095757], + [-1.452869137586615, 48.67521355033912], + [-1.452859664487246, 48.675253242242846], + [-1.452918824683785, 48.67534661635604], + [-1.452891483259132, 48.67540384263697], + [-1.453878103457793, 48.67656219092895], + [-1.453874099031162, 48.67679155352529], + [-1.453773358658158, 48.6769571987286], + [-1.453611963211757, 48.67713094690073], + [-1.453426777794724, 48.677354176343954], + [-1.453245303144872, 48.67766060058007], + [-1.453250092824149, 48.67793832200117], + [-1.453276628510095, 48.67806878893098], + [-1.45339418352316, 48.6782786707411], + [-1.453578179266918, 48.678412699238436], + [-1.453782994328737, 48.67852528308369], + [-1.454086000736322, 48.678566019708], + [-1.454390489163225, 48.678586442199475], + [-1.454785641113466, 48.67861295542413], + [-1.45539974326333, 48.67870188544613], + [-1.456062695059952, 48.678794082577085], + [-1.457150163214201, 48.679020704631384], + [-1.458038894472679, 48.679168724680785], + [-1.458899745289258, 48.67932809655063], + [-1.459506361138027, 48.67947358896414], + [-1.460242190582365, 48.67972907747678], + [-1.461114544187156, 48.680077155369126], + [-1.462816384053341, 48.6808138484481], + [-1.464202643618057, 48.68141389267702], + [-1.464900489793405, 48.68167536746043], + [-1.465903467893022, 48.6818903386856], + [-1.466618503782603, 48.68205774238269], + [-1.467086104963352, 48.68220767349192], + [-1.467734965386224, 48.68257346478001], + [-1.468127601128452, 48.68288392994266], + [-1.468524223605521, 48.68319755066873], + [-1.468855231581498, 48.683383552661674], + [-1.469296303729002, 48.68356868554966], + [-1.469783126460011, 48.683706119835186], + [-1.470153882234667, 48.68374362536548], + [-1.470255748742938, 48.68369708764026], + [-1.470545857490608, 48.683572558820366], + [-1.470958795346202, 48.68358385201439], + [-1.471216002099142, 48.68370079965435], + [-1.47131322589933, 48.68380020562558], + [-1.471635983278531, 48.684130172901796], + [-1.471709586496959, 48.68423921020579], + [-1.471657732047025, 48.68428979476064], + [-1.471512364074963, 48.6843057564178], + [-1.47151580687234, 48.684277424479994], + [-1.471496954704484, 48.684283897260315], + [-1.471496954704484, 48.684283897260315] + ] + }, + "length": 2.1540794924293905, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch08365", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39974", + "bus2": "MVLV18920", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.438557514204313, 48.66571332634098], + [-1.438557514204313, 48.66571332634098], + [-1.435905350518214, 48.665013198677705], + [-1.435905350518214, 48.665013198677705] + ] + }, + "length": 0.21030284000132166, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch33616", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24085", + "bus2": "MVBus24090", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42773882512684, 48.667518960930806], + [-1.42773882512684, 48.667518960930806], + [-1.427625944923735, 48.66750760645042], + [-1.427284113732512, 48.66743188815125], + [-1.427021639730295, 48.667357105414936], + [-1.426533446103999, 48.66718559291378], + [-1.425410181177729, 48.666811433669615], + [-1.425238835752817, 48.66678363710558], + [-1.425143248448931, 48.66672807735636], + [-1.424936393180271, 48.66680628167733], + [-1.424829594309627, 48.66689721253386], + [-1.42436465981737, 48.66755902753136], + [-1.424172230332951, 48.667815763092705], + [-1.424019455111165, 48.667992607111934], + [-1.424019455111165, 48.667992607111934] + ] + }, + "length": 0.37774257520662646, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47852", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24090", + "bus2": "MVLV14266", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.424019455111165, 48.667992607111934], + [-1.424019455111165, 48.667992607111934], + [-1.423991554665524, 48.66801072517383], + [-1.423949664678889, 48.6680024069041], + [-1.423949664678889, 48.6680024069041] + ] + }, + "length": 0.0060991198454417115, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41860", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24082", + "bus2": "MVLV02728", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.425433424469281, 48.6704288218968], + [-1.425433424469281, 48.6704288218968], + [-1.425361813066418, 48.670451620745325], + [-1.425078663899435, 48.67046836136561], + [-1.424623894900225, 48.670481105600174], + [-1.424211243860411, 48.670483873139204], + [-1.424157252985195, 48.67046024446686], + [-1.424157252985195, 48.67046024446686] + ] + }, + "length": 0.09547606697053757, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25435", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24080", + "bus2": "MVLV00547", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42136624107891, 48.67352763843192], + [-1.42136624107891, 48.67352763843192], + [-1.419920011013785, 48.6734160725615], + [-1.419761534530391, 48.67316204924771], + [-1.419761534530391, 48.67316204924771] + ] + }, + "length": 0.13779793646463212, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11155", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24070", + "bus2": "MVBus24071", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419991973797182, 48.67443548826671], + [-1.419991973797182, 48.67443548826671], + [-1.420630681455058, 48.674440314166944], + [-1.420630681455058, 48.674440314166944] + ] + }, + "length": 0.04704228768803644, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23141", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24071", + "bus2": "MVBus24072", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.420630681455058, 48.674440314166944], + [-1.420630681455058, 48.674440314166944], + [-1.421303413674681, 48.67445303930767], + [-1.422160776516778, 48.675074482838696], + [-1.421881023752388, 48.67595325142352], + [-1.421340042028947, 48.67636068076991], + [-1.421340042028947, 48.67636068076991] + ] + }, + "length": 0.30337749386023144, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23142", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24072", + "bus2": "MVLV18922", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.421340042028947, 48.67636068076991], + [-1.421340042028947, 48.67636068076991], + [-1.425056590474113, 48.67762732364768], + [-1.425622793335055, 48.67794155813378], + [-1.425622793335055, 48.67794155813378] + ] + }, + "length": 0.36222154559153724, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25436", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24072", + "bus2": "MVBus24073", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.421340042028947, 48.67636068076991], + [-1.421340042028947, 48.67636068076991], + [-1.420540495730062, 48.67693633672361], + [-1.419810117061095, 48.67734764388789], + [-1.419810117061095, 48.67734764388789] + ] + }, + "length": 0.15758264210247439, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15246", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24073", + "bus2": "MVLV13819", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419810117061095, 48.67734764388789], + [-1.419810117061095, 48.67734764388789], + [-1.418765738504619, 48.677922375626466], + [-1.417411347774322, 48.6790354886807], + [-1.417411347774322, 48.6790354886807] + ] + }, + "length": 0.2589656697239327, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24073", + "bus2": "MVBus24075", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419810117061095, 48.67734764388789], + [-1.419810117061095, 48.67734764388789], + [-1.420328922524153, 48.677875121617966], + [-1.420328922524153, 48.677875121617966] + ] + }, + "length": 0.07000292723351449, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24075", + "bus2": "MVBus24076", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.420328922524153, 48.677875121617966], + [-1.420328922524153, 48.677875121617966], + [-1.424667185742581, 48.68251880629374], + [-1.424667185742581, 48.68251880629374] + ] + }, + "length": 0.6072243094713089, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15313", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24076", + "bus2": "MVLV09363", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.424667185742581, 48.68251880629374], + [-1.424667185742581, 48.68251880629374], + [-1.424579380339677, 48.68254398026742], + [-1.424579380339677, 48.68254398026742] + ] + }, + "length": 0.007045636627968056, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01918", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24076", + "bus2": "MVLV10453", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.424667185742581, 48.68251880629374], + [-1.424667185742581, 48.68251880629374], + [-1.423863031695593, 48.683377524794466], + [-1.422193673110718, 48.68412332239577], + [-1.421450216052972, 48.68482593791207], + [-1.420420507191141, 48.68634791867971], + [-1.420420507191141, 48.68634791867971] + ] + }, + "length": 0.5415034548556188, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08363", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24069", + "bus2": "MVBus24092", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.413074070122556, 48.67823125435254], + [-1.413074070122556, 48.67823125435254], + [-1.411978407328498, 48.676764286658575], + [-1.411978407328498, 48.676764286658575] + ] + }, + "length": 0.18199606601879115, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08364", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24092", + "bus2": "MVBus24093", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.411978407328498, 48.676764286658575], + [-1.411978407328498, 48.676764286658575], + [-1.41094935900405, 48.67588938241899], + [-1.410767426786093, 48.67586486863645], + [-1.410767426786093, 48.67586486863645] + ] + }, + "length": 0.13699784465097406, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31518", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24093", + "bus2": "MVBus24094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410767426786093, 48.67586486863645], + [-1.410767426786093, 48.67586486863645], + [-1.406207660086664, 48.675123055199464], + [-1.406207660086664, 48.675123055199464] + ] + }, + "length": 0.34579223003823056, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31519", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24094", + "bus2": "MVBus24097", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.406207660086664, 48.675123055199464], + [-1.406207660086664, 48.675123055199464], + [-1.407329364348828, 48.67378715489126], + [-1.407329364348828, 48.67378715489126] + ] + }, + "length": 0.16998122619689254, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43826", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24097", + "bus2": "MVLV03222", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.407329364348828, 48.67378715489126], + [-1.407329364348828, 48.67378715489126], + [-1.407502142525449, 48.67373881085122], + [-1.407422703141767, 48.67334726719784], + [-1.408353765225652, 48.67308637801645], + [-1.409229507508, 48.67286043468729], + [-1.410183009384582, 48.67258309151386], + [-1.410177531992409, 48.67251969634844], + [-1.410177531992409, 48.67251969634844] + ] + }, + "length": 0.28518296092705764, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25434", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24094", + "bus2": "MVBus24095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.406207660086664, 48.675123055199464], + [-1.406207660086664, 48.675123055199464], + [-1.403474306377468, 48.67473982769423], + [-1.403066889562038, 48.67459093187115], + [-1.402903063269356, 48.67421149659865], + [-1.402903063269356, 48.67421149659865] + ] + }, + "length": 0.2839203535914608, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32880", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24095", + "bus2": "MVLV00545", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.402903063269356, 48.67421149659865], + [-1.402903063269356, 48.67421149659865], + [-1.402887778117972, 48.67418637690393], + [-1.402720340785575, 48.67422309006748], + [-1.402290181691711, 48.674372968677645], + [-1.402012558869709, 48.67450738187695], + [-1.401711911452538, 48.67470258749458], + [-1.401594889014558, 48.67482389147757], + [-1.401395938329806, 48.67482940726141], + [-1.401395938329806, 48.67482940726141] + ] + }, + "length": 0.13880575619861452, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23661", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24055", + "bus2": "MVBus24056", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.398561158560935, 48.687535479227805], + [-1.398561158560935, 48.687535479227805], + [-1.393362724182627, 48.685320816196224], + [-1.389136030184977, 48.68430691391075], + [-1.389136030184977, 48.68430691391075] + ] + }, + "length": 0.7861628831366249, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11544", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24056", + "bus2": "MVBus24057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.389136030184977, 48.68430691391075], + [-1.389136030184977, 48.68430691391075], + [-1.388369912450079, 48.684359890565865], + [-1.388369912450079, 48.684359890565865] + ] + }, + "length": 0.05671839189802176, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32126", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24057", + "bus2": "MVLV15406", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.388369912450079, 48.684359890565865], + [-1.388369912450079, 48.684359890565865], + [-1.389247638808418, 48.68704140487774], + [-1.389247638808418, 48.68704140487774] + ] + }, + "length": 0.3051172412161234, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18995", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24057", + "bus2": "MVBus24058", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.388369912450079, 48.684359890565865], + [-1.388369912450079, 48.684359890565865], + [-1.387495141567356, 48.683362598407236], + [-1.387495141567356, 48.683362598407236] + ] + }, + "length": 0.1282511394554021, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15994", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24058", + "bus2": "MVLV08246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387495141567356, 48.683362598407236], + [-1.387495141567356, 48.683362598407236], + [-1.387208961037065, 48.68286061089437], + [-1.387208961037065, 48.68286061089437] + ] + }, + "length": 0.059667850234072076, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34976", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24058", + "bus2": "MVBus24059", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387495141567356, 48.683362598407236], + [-1.387495141567356, 48.683362598407236], + [-1.387759531943309, 48.683293500990985], + [-1.387814024954069, 48.683271074752916], + [-1.387826894829556, 48.683254949865876], + [-1.387818960470286, 48.68323790351911], + [-1.387722623145225, 48.683139639342485], + [-1.387673180435401, 48.68309690931768], + [-1.387558220629858, 48.683028367596606], + [-1.387263325437987, 48.68285935388355], + [-1.387269844746174, 48.68276289905099], + [-1.387348437646504, 48.682715311813894], + [-1.387356786475741, 48.68269716024084], + [-1.387678417238547, 48.682493012673895], + [-1.387817559710464, 48.682414421857445], + [-1.38796727720281, 48.68234478542403], + [-1.388823713394605, 48.682060441880395], + [-1.389429594414714, 48.68186397150588], + [-1.389752429232078, 48.681758351969066], + [-1.389808653669071, 48.68175272492027], + [-1.390279612206967, 48.68158793534494], + [-1.39031602673959, 48.68158293056698], + [-1.390789840058094, 48.681425401097336], + [-1.391079557085955, 48.68133008729849], + [-1.391174642348653, 48.681298806546174], + [-1.391199538592418, 48.68128573171901], + [-1.391223663864039, 48.68127574069037], + [-1.391294163018651, 48.681258829737715], + [-1.391320095620501, 48.68124807997599], + [-1.391320095620501, 48.68124807997599] + ] + }, + "length": 0.4450064142173554, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24059", + "bus2": "MVLV06953", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391320095620501, 48.68124807997599], + [-1.391320095620501, 48.68124807997599], + [-1.391322168393567, 48.68125291913266], + [-1.391311904977682, 48.68125609434967], + [-1.391311522906812, 48.681261190645955], + [-1.391314507522578, 48.68127685361685], + [-1.391318871202315, 48.68128407741701], + [-1.391318871202315, 48.68128407741701] + ] + }, + "length": 0.004581756372837862, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35687", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24059", + "bus2": "MVBus24061", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391320095620501, 48.68124807997599], + [-1.391320095620501, 48.68124807997599], + [-1.3913757704759, 48.68123100504328], + [-1.391452827194984, 48.681200551730086], + [-1.391544113131154, 48.68117144180778], + [-1.391578032857149, 48.681158560168356], + [-1.391641417684, 48.681142691530205], + [-1.391897231031268, 48.68105881697471], + [-1.392092195181681, 48.68099718313847], + [-1.392155718516572, 48.68097169020065], + [-1.392199012704665, 48.68095631793636], + [-1.392217767946615, 48.6809516068197], + [-1.392488320110357, 48.680862183213534], + [-1.392779260671652, 48.68076771742702], + [-1.392878950410615, 48.68073737928427], + [-1.392982213665771, 48.680710636158025], + [-1.393036820873943, 48.68069650057501], + [-1.393043528466283, 48.68068316045334], + [-1.393055312133606, 48.680676742711626], + [-1.393447343467384, 48.68059026342986], + [-1.393795017824657, 48.6805354138882], + [-1.393828374426592, 48.68053988988404], + [-1.394255996709342, 48.68047636899161], + [-1.394377170388082, 48.68047255692166], + [-1.395322544559519, 48.68030720020886], + [-1.395635422344027, 48.680253989044964], + [-1.395963743339719, 48.680200299979205], + [-1.39599587277191, 48.68018351390004], + [-1.396086853166442, 48.68016686423779], + [-1.396086853166442, 48.68016686423779] + ] + }, + "length": 0.3744445791717937, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46471", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24061", + "bus2": "MVBus24062", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396086853166442, 48.68016686423779], + [-1.396086853166442, 48.68016686423779], + [-1.3962942121381, 48.68013299922341], + [-1.396488560143423, 48.680102081053114], + [-1.396575419622532, 48.68009182387137], + [-1.396689119419465, 48.68008386227141], + [-1.396689119419465, 48.68008386227141] + ] + }, + "length": 0.045362740179136773, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36644", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24062", + "bus2": "MVBus24064", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396689119419465, 48.68008386227141], + [-1.396689119419465, 48.68008386227141], + [-1.396782321176775, 48.68007733774667], + [-1.39687384253284, 48.68005762884955], + [-1.396968701387716, 48.680047119542785], + [-1.397175010325148, 48.680005646047306], + [-1.397175010325148, 48.680005646047306] + ] + }, + "length": 0.0369480354900679, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33185", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24064", + "bus2": "MVLV02107", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.397175010325148, 48.680005646047306], + [-1.397175010325148, 48.680005646047306], + [-1.397190364000473, 48.68000258900063], + [-1.397198756611179, 48.68002106022296], + [-1.397198756611179, 48.68002106022296] + ] + }, + "length": 0.0033256646425244354, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46121", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24062", + "bus2": "MVLV04069", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396689119419465, 48.68008386227141], + [-1.396689119419465, 48.68008386227141], + [-1.396648913020269, 48.6800488988877], + [-1.394611413407245, 48.67796960367503], + [-1.394568048039803, 48.6779615913739], + [-1.394163276971984, 48.678118702457], + [-1.393845086303829, 48.678271396765766], + [-1.393859245371176, 48.678398121997645], + [-1.393859245371176, 48.678398121997645] + ] + }, + "length": 0.3614631350164427, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch11541", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24052", + "bus2": "MVBus24053", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.390456896571498, 48.694092429012166], + [-1.390456896571498, 48.694092429012166], + [-1.387379276762682, 48.696449094264764], + [-1.387228378138695, 48.69648346340322], + [-1.387228378138695, 48.69648346340322] + ] + }, + "length": 0.3581761272426037, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34079", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24053", + "bus2": "MVLV00763", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387228378138695, 48.69648346340322], + [-1.387228378138695, 48.69648346340322], + [-1.387221166791382, 48.69649361522939], + [-1.387205265351858, 48.696487392402446], + [-1.387107118643517, 48.69645566648759], + [-1.387097484203143, 48.69645685076047], + [-1.387090828303885, 48.6964626118196], + [-1.387029614602151, 48.69657625091903], + [-1.386869072729956, 48.69681438074435], + [-1.386866615728102, 48.69681708545298], + [-1.386858597780683, 48.69681616728629], + [-1.386355132658147, 48.696695396202], + [-1.386347399884585, 48.6966975105803], + [-1.386320350855856, 48.69674688889175], + [-1.386320350855856, 48.69674688889175] + ] + }, + "length": 0.10141843723377124, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34168", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17519", + "bus2": "MVLV02676", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386095076128499, 48.69020544337535], + [-1.386095076128499, 48.69020544337535], + [-1.386101834131236, 48.690227313961685], + [-1.386094764648589, 48.69023810923906], + [-1.386091738376708, 48.69024273053422], + [-1.386086307107507, 48.69024982994571], + [-1.386086307107507, 48.69024982994571] + ] + }, + "length": 0.00523601712228864, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39173", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17518", + "bus2": "MVLV11234", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380593480920253, 48.68951313748911], + [-1.380593480920253, 48.68951313748911], + [-1.380601431977655, 48.689423217060465], + [-1.38072919403013, 48.68853566517583], + [-1.380949803263799, 48.68854929502677], + [-1.381057295037861, 48.68857227401332], + [-1.381057295037861, 48.68857227401332] + ] + }, + "length": 0.13379285548725914, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41216", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17515", + "bus2": "MVBus17523", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361872248455002, 48.698372926745066], + [-1.361872248455002, 48.698372926745066], + [-1.361903822228889, 48.698406874351], + [-1.362246996694102, 48.699408941615545], + [-1.362333415609004, 48.699680825794466], + [-1.362568397912248, 48.69985650909679], + [-1.362545617311338, 48.69987737599273], + [-1.36250058294375, 48.699920974017196], + [-1.36250058294375, 48.699920974017196] + ] + }, + "length": 0.1844208420110156, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch12786", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17523", + "bus2": "MVBus17526", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36250058294375, 48.699920974017196], + [-1.36250058294375, 48.699920974017196], + [-1.364469760819947, 48.702221813021815], + [-1.364469760819947, 48.702221813021815] + ] + }, + "length": 0.29406741281526205, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24944", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17526", + "bus2": "MVBus17527", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364469760819947, 48.702221813021815], + [-1.364469760819947, 48.702221813021815], + [-1.365080155168652, 48.702931226958164], + [-1.365080155168652, 48.702931226958164] + ] + }, + "length": 0.09078650728206882, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30653", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17527", + "bus2": "MVBus17528", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365080155168652, 48.702931226958164], + [-1.365080155168652, 48.702931226958164], + [-1.366857582095782, 48.702909804508195], + [-1.366857582095782, 48.702909804508195] + ] + }, + "length": 0.13085094399203137, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07874", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17528", + "bus2": "MVBus17539", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366857582095782, 48.702909804508195], + [-1.366857582095782, 48.702909804508195], + [-1.368602686985163, 48.702762027953426], + [-1.368602686985163, 48.702762027953426] + ] + }, + "length": 0.12949731231923822, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22298", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17539", + "bus2": "MVBus17540", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.368602686985163, 48.702762027953426], + [-1.368602686985163, 48.702762027953426], + [-1.369391365276649, 48.702312360854734], + [-1.369391365276649, 48.702312360854734] + ] + }, + "length": 0.07661917327285778, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22300", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17540", + "bus2": "MVLV11643", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369391365276649, 48.702312360854734], + [-1.369391365276649, 48.702312360854734], + [-1.36985327513618, 48.70171789916646], + [-1.36985327513618, 48.70171789916646] + ] + }, + "length": 0.0743375036506505, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30655", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17528", + "bus2": "MVBus17529", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366857582095782, 48.702909804508195], + [-1.366857582095782, 48.702909804508195], + [-1.365766216776604, 48.70323344674769], + [-1.365766216776604, 48.70323344674769] + ] + }, + "length": 0.08802463182829624, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02960", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17529", + "bus2": "MVBus17530", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365766216776604, 48.70323344674769], + [-1.365766216776604, 48.70323344674769], + [-1.363833946287064, 48.70377351832192], + [-1.362654078028266, 48.70439394941558], + [-1.362654078028266, 48.70439394941558] + ] + }, + "length": 0.2653000495495086, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07873", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17530", + "bus2": "MVLV12960", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.362654078028266, 48.70439394941558], + [-1.362654078028266, 48.70439394941558], + [-1.361721892311404, 48.70427438531108], + [-1.361146143854642, 48.70373258684646], + [-1.361146143854642, 48.70373258684646] + ] + }, + "length": 0.1435499370827407, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22297", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17530", + "bus2": "MVBus17532", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.362654078028266, 48.70439394941558], + [-1.362654078028266, 48.70439394941558], + [-1.361706222495278, 48.70493345667249], + [-1.361706222495278, 48.70493345667249] + ] + }, + "length": 0.09201445378229363, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30654", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17532", + "bus2": "MVBus17533", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361706222495278, 48.70493345667249], + [-1.361706222495278, 48.70493345667249], + [-1.363787332955464, 48.70687745644073], + [-1.363787332955464, 48.70687745644073] + ] + }, + "length": 0.26494540274416534, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02961", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17533", + "bus2": "MVBus17535", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363787332955464, 48.70687745644073], + [-1.363787332955464, 48.70687745644073], + [-1.365482557431456, 48.70845136474554], + [-1.365482557431456, 48.70845136474554] + ] + }, + "length": 0.21494311509699743, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12787", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17535", + "bus2": "MVBus17536", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365482557431456, 48.70845136474554], + [-1.365482557431456, 48.70845136474554], + [-1.370137877277229, 48.70773714942973], + [-1.371470530798074, 48.708006097671856], + [-1.371470530798074, 48.708006097671856] + ] + }, + "length": 0.4542496808028074, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22299", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17536", + "bus2": "MVLV15838", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371470530798074, 48.708006097671856], + [-1.371470530798074, 48.708006097671856], + [-1.372263248440009, 48.70572814874992], + [-1.372263248440009, 48.70572814874992] + ] + }, + "length": 0.25994927894914815, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24945", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17536", + "bus2": "MVLV05594", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371470530798074, 48.708006097671856], + [-1.371470530798074, 48.708006097671856], + [-1.372474957363736, 48.70819963640383], + [-1.372474957363736, 48.70819963640383] + ] + }, + "length": 0.07699349789243165, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30656", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17533", + "bus2": "MVLV08691", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363787332955464, 48.70687745644073], + [-1.363787332955464, 48.70687745644073], + [-1.362017012011286, 48.707740359055315], + [-1.362017012011286, 48.707740359055315] + ] + }, + "length": 0.16181702009734078, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24943", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17523", + "bus2": "MVBus17524", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36250058294375, 48.699920974017196], + [-1.36250058294375, 48.699920974017196], + [-1.3617748995242, 48.70059026302006], + [-1.360816212595922, 48.70113087837448], + [-1.360816212595922, 48.70113087837448] + ] + }, + "length": 0.1843169641640161, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch36942", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17524", + "bus2": "MVLV12961", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360816212595922, 48.70113087837448], + [-1.360816212595922, 48.70113087837448], + [-1.360722700562462, 48.701166484045686], + [-1.360614861951732, 48.701021506245404], + [-1.360437527815529, 48.700889501225184], + [-1.360278885836657, 48.7008039301189], + [-1.359583849886216, 48.700391396539366], + [-1.359690288894828, 48.70030435899507], + [-1.359690288894828, 48.70030435899507] + ] + }, + "length": 0.14178813460374382, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV06299_production", + "bus": "MVLV06299", + "phases": "abc", + "powers": [ + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0] + ] + }, + { + "id": "MVLV06299_consumption", + "bus": "MVLV06299", + "phases": "abc", + "powers": [ + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961] + ] + }, + { + "id": "MVLV06298_production", + "bus": "MVLV06298", + "phases": "abc", + "powers": [ + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0] + ] + }, + { + "id": "MVLV06298_consumption", + "bus": "MVLV06298", + "phases": "abc", + "powers": [ + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961] + ] + }, + { + "id": "MVLV16807_production", + "bus": "MVLV16807", + "phases": "abc", + "powers": [ + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0] + ] + }, + { + "id": "MVLV16807_consumption", + "bus": "MVLV16807", + "phases": "abc", + "powers": [ + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961] + ] + }, + { + "id": "MVLV13668_production", + "bus": "MVLV13668", + "phases": "abc", + "powers": [ + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0] + ] + }, + { + "id": "MVLV13668_consumption", + "bus": "MVLV13668", + "phases": "abc", + "powers": [ + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961] + ] + }, + { + "id": "MVLV08873_production", + "bus": "MVLV08873", + "phases": "abc", + "powers": [ + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0], + [-491.6666666666667, 0.0] + ] + }, + { + "id": "MVLV08873_consumption", + "bus": "MVLV08873", + "phases": "abc", + "powers": [ + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961], + [12355.633423779325, 4061.100315812961] + ] + }, + { + "id": "MVLV15837_production", + "bus": "MVLV15837", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15837_consumption", + "bus": "MVLV15837", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + }, + { + "id": "MVLV00762_production", + "bus": "MVLV00762", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV00762_consumption", + "bus": "MVLV00762", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV05135_production", + "bus": "MVLV05135", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV05135_consumption", + "bus": "MVLV05135", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV00546_production", + "bus": "MVLV00546", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV00546_consumption", + "bus": "MVLV00546", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV10324_production", + "bus": "MVLV10324", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV10324_consumption", + "bus": "MVLV10324", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV10323_production", + "bus": "MVLV10323", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV10323_consumption", + "bus": "MVLV10323", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV06447_production", + "bus": "MVLV06447", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV06447_consumption", + "bus": "MVLV06447", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV09015_production", + "bus": "MVLV09015", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV09015_consumption", + "bus": "MVLV09015", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV06448_production", + "bus": "MVLV06448", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV06448_consumption", + "bus": "MVLV06448", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV18919_production", + "bus": "MVLV18919", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV18919_consumption", + "bus": "MVLV18919", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV00544_production", + "bus": "MVLV00544", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV00544_consumption", + "bus": "MVLV00544", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV14633_production", + "bus": "MVLV14633", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV14633_consumption", + "bus": "MVLV14633", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV18920_production", + "bus": "MVLV18920", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV18920_consumption", + "bus": "MVLV18920", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV14266_production", + "bus": "MVLV14266", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV14266_consumption", + "bus": "MVLV14266", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV02728_production", + "bus": "MVLV02728", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV02728_consumption", + "bus": "MVLV02728", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV00547_production", + "bus": "MVLV00547", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV00547_consumption", + "bus": "MVLV00547", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV18922_production", + "bus": "MVLV18922", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV18922_consumption", + "bus": "MVLV18922", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV13819_production", + "bus": "MVLV13819", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV13819_consumption", + "bus": "MVLV13819", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV09363_production", + "bus": "MVLV09363", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV09363_consumption", + "bus": "MVLV09363", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV10453_production", + "bus": "MVLV10453", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV10453_consumption", + "bus": "MVLV10453", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV03222_production", + "bus": "MVLV03222", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV03222_consumption", + "bus": "MVLV03222", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV00545_production", + "bus": "MVLV00545", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV00545_consumption", + "bus": "MVLV00545", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV15406_production", + "bus": "MVLV15406", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV15406_consumption", + "bus": "MVLV15406", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV08246_production", + "bus": "MVLV08246", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV08246_consumption", + "bus": "MVLV08246", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV06953_production", + "bus": "MVLV06953", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV06953_consumption", + "bus": "MVLV06953", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV02107_production", + "bus": "MVLV02107", + "phases": "abc", + "powers": [ + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0], + [-509.5238095238096, 0.0] + ] + }, + { + "id": "MVLV02107_consumption", + "bus": "MVLV02107", + "phases": "abc", + "powers": [ + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335], + [3204.98490030292, 1053.4275940678335] + ] + }, + { + "id": "MVLV04069_production", + "bus": "MVLV04069", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV04069_consumption", + "bus": "MVLV04069", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV00763_production", + "bus": "MVLV00763", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV00763_consumption", + "bus": "MVLV00763", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV02676_production", + "bus": "MVLV02676", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV02676_consumption", + "bus": "MVLV02676", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV11234_production", + "bus": "MVLV11234", + "phases": "abc", + "powers": [ + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0], + [-578.2608695652174, 0.0] + ] + }, + { + "id": "MVLV11234_consumption", + "bus": "MVLV11234", + "phases": "abc", + "powers": [ + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508], + [4808.455319990588, 1580.4628341436508] + ] + }, + { + "id": "MVLV11643_production", + "bus": "MVLV11643", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11643_consumption", + "bus": "MVLV11643", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + }, + { + "id": "MVLV12960_production", + "bus": "MVLV12960", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12960_consumption", + "bus": "MVLV12960", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + }, + { + "id": "MVLV15838_production", + "bus": "MVLV15838", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15838_consumption", + "bus": "MVLV15838", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + }, + { + "id": "MVLV05594_production", + "bus": "MVLV05594", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05594_consumption", + "bus": "MVLV05594", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + }, + { + "id": "MVLV08691_production", + "bus": "MVLV08691", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08691_consumption", + "bus": "MVLV08691", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + }, + { + "id": "MVLV12961_production", + "bus": "MVLV12961", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12961_consumption", + "bus": "MVLV12961", + "phases": "abc", + "powers": [ + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133], + [2057.026751874986, 676.1119972690133] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder210_Winter.json b/roseau/load_flow/data/networks/MVFeeder210_Winter.json new file mode 100644 index 00000000..f4c7c6a8 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder210_Winter.json @@ -0,0 +1,5027 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.315508137717839, 48.67552963511552] + } + }, + { + "id": "HVMV14", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.315508137717839, 48.67552963511552] + } + }, + { + "id": "MVLV06299", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3243096308857334, 48.677222514427754] + } + }, + { + "id": "MVBus05026", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.324633327379154, 48.681828081809556] + } + }, + { + "id": "MVBus05027", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.324640695755288, 48.68391926354705] + } + }, + { + "id": "MVBus05028", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.324403471836129, 48.688034195862905] + } + }, + { + "id": "MVLV06298", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.32466065492585, 48.6880640048316] + } + }, + { + "id": "MVBus05030", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332311951909265, 48.6947431871332] + } + }, + { + "id": "MVLV16807", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3324397522750886, 48.69480756439362] + } + }, + { + "id": "MVBus08987", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332696716348577, 48.69475012796576] + } + }, + { + "id": "MVBus08988", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332769653966778, 48.694856436515416] + } + }, + { + "id": "MVBus08989", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.333868868924871, 48.69442417043966] + } + }, + { + "id": "MVBus08990", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.337017272071378, 48.69361150583635] + } + }, + { + "id": "MVLV13668", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.336768360474335, 48.693054819581505] + } + }, + { + "id": "MVLV08873", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.337811745653045, 48.69348041079462] + } + }, + { + "id": "MVBus08231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332456160398833, 48.694750388404394] + } + }, + { + "id": "MVBus08232", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.332662258481913, 48.69470601327688] + } + }, + { + "id": "MVBus08233", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.349090863664277, 48.69988795473] + } + }, + { + "id": "MVBus08234", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.349583389791825, 48.7002449228178] + } + }, + { + "id": "MVBus08235", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.350033533716369, 48.70073831530751] + } + }, + { + "id": "MVLV15837", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3610517542755765, 48.69858050796095] + } + }, + { + "id": "MVBus17515", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361872248455002, 48.698372926745066] + } + }, + { + "id": "MVBus17516", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.370008749538573, 48.69484206776048] + } + }, + { + "id": "MVBus17517", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.37140828752311, 48.69474338047859] + } + }, + { + "id": "MVBus17518", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.380593480920253, 48.68951313748911] + } + }, + { + "id": "MVBus17519", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386095076128499, 48.69020544337535] + } + }, + { + "id": "MVLV00762", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.3860685283105134, 48.69022637502021] + } + }, + { + "id": "MVBus24050", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386585620553674, 48.692516906896316] + } + }, + { + "id": "MVLV05135", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.388721682538931, 48.69170724856656] + } + }, + { + "id": "MVBus24051", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.389640377977582, 48.6936695244645] + } + }, + { + "id": "MVBus24052", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.390456896571498, 48.694092429012166] + } + }, + { + "id": "MVBus24055", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.398561158560935, 48.687535479227805] + } + }, + { + "id": "MVBus24068", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.408493773037451, 48.68069081868821] + } + }, + { + "id": "MVBus24099", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409110034494963, 48.68080865138281] + } + }, + { + "id": "MVBus24100", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.40965762004385, 48.68091651992885] + } + }, + { + "id": "MVBus24103", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410375244576262, 48.68359763038951] + } + }, + { + "id": "MVBus24104", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410457520575412, 48.6846248924926] + } + }, + { + "id": "MVBus24106", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.41052130409578, 48.6846345578222] + } + }, + { + "id": "MVBus24107", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410557522651376, 48.685621609766095] + } + }, + { + "id": "MVBus24108", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409907100020805, 48.68709324149833] + } + }, + { + "id": "MVLV00546", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.409563445224697, 48.687969213263976] + } + }, + { + "id": "MVLV10324", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410867808177468, 48.68472414481989] + } + }, + { + "id": "MVBus24101", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.411072946287639, 48.68122377495599] + } + }, + { + "id": "MVLV10323", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.413039955009211, 48.681710134344065] + } + }, + { + "id": "MVBus24069", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.413074070122556, 48.67823125435254] + } + }, + { + "id": "MVBus24070", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.419991973797182, 48.67443548826671] + } + }, + { + "id": "MVBus24080", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.42136624107891, 48.67352763843192] + } + }, + { + "id": "MVBus24081", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.423458086823049, 48.672063747279815] + } + }, + { + "id": "MVBus24082", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.425433424469281, 48.6704288218968] + } + }, + { + "id": "MVBus24084", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.427550443876756, 48.66832702556939] + } + }, + { + "id": "MVBus24085", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.42773882512684, 48.667518960930806] + } + }, + { + "id": "MVBus24086", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.429737921743526, 48.66740399771851] + } + }, + { + "id": "MVBus24087", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.430226347180375, 48.66816721336321] + } + }, + { + "id": "MVLV06447", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.432209635049518, 48.67056922323461] + } + }, + { + "id": "MVBus24089", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.437540172188118, 48.66623721183292] + } + }, + { + "id": "MVBus39974", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.438557514204313, 48.66571332634098] + } + }, + { + "id": "MVBus39976", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.441570933640071, 48.66627762495946] + } + }, + { + "id": "MVLV09015", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.438449788295261, 48.67104614339778] + } + }, + { + "id": "MVBus39978", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.443199968358023, 48.66690877873582] + } + }, + { + "id": "MVLV06448", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.446079710619304, 48.66557326975702] + } + }, + { + "id": "MVBus39980", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.444227964428699, 48.668319010605344] + } + }, + { + "id": "MVBus39981", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.44375635095643, 48.668776616576054] + } + }, + { + "id": "MVBus39990", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.443343047955685, 48.66847284504271] + } + }, + { + "id": "MVLV18919", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.443288177621643, 48.668471426684015] + } + }, + { + "id": "MVBus39982", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.445506049849497, 48.66907708140258] + } + }, + { + "id": "MVBus39983", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.448362516861079, 48.67139846929151] + } + }, + { + "id": "MVLV00544", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.449205686310729, 48.67094761063653] + } + }, + { + "id": "MVBus39985", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.453998689564143, 48.67360108655294] + } + }, + { + "id": "MVBus39986", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.454111420613221, 48.67365783095757] + } + }, + { + "id": "MVBus39987", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.454133606341398, 48.67364249809416] + } + }, + { + "id": "MVLV14633", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.456255345960154, 48.673153506275305] + } + }, + { + "id": "MVBus39989", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.471496954704484, 48.684283897260315] + } + }, + { + "id": "MVLV18920", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.435905350518214, 48.665013198677705] + } + }, + { + "id": "MVBus24090", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424019455111165, 48.667992607111934] + } + }, + { + "id": "MVLV14266", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.423949664678889, 48.6680024069041] + } + }, + { + "id": "MVLV02728", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424157252985195, 48.67046024446686] + } + }, + { + "id": "MVLV00547", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.419761534530391, 48.67316204924771] + } + }, + { + "id": "MVBus24071", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.420630681455058, 48.674440314166944] + } + }, + { + "id": "MVBus24072", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.421340042028947, 48.67636068076991] + } + }, + { + "id": "MVLV18922", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.425622793335055, 48.67794155813378] + } + }, + { + "id": "MVBus24073", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.419810117061095, 48.67734764388789] + } + }, + { + "id": "MVLV13819", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.417411347774322, 48.6790354886807] + } + }, + { + "id": "MVBus24075", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.420328922524153, 48.677875121617966] + } + }, + { + "id": "MVBus24076", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424667185742581, 48.68251880629374] + } + }, + { + "id": "MVLV09363", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.424579380339677, 48.68254398026742] + } + }, + { + "id": "MVLV10453", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.420420507191141, 48.68634791867971] + } + }, + { + "id": "MVBus24092", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.411978407328498, 48.676764286658575] + } + }, + { + "id": "MVBus24093", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410767426786093, 48.67586486863645] + } + }, + { + "id": "MVBus24094", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.406207660086664, 48.675123055199464] + } + }, + { + "id": "MVBus24097", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.407329364348828, 48.67378715489126] + } + }, + { + "id": "MVLV03222", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.410177531992409, 48.67251969634844] + } + }, + { + "id": "MVBus24095", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.402903063269356, 48.67421149659865] + } + }, + { + "id": "MVLV00545", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.401395938329806, 48.67482940726141] + } + }, + { + "id": "MVBus24056", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.389136030184977, 48.68430691391075] + } + }, + { + "id": "MVBus24057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.388369912450079, 48.684359890565865] + } + }, + { + "id": "MVLV15406", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.389247638808418, 48.68704140487774] + } + }, + { + "id": "MVBus24058", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387495141567356, 48.683362598407236] + } + }, + { + "id": "MVLV08246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387208961037065, 48.68286061089437] + } + }, + { + "id": "MVBus24059", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391320095620501, 48.68124807997599] + } + }, + { + "id": "MVLV06953", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.391318871202315, 48.68128407741701] + } + }, + { + "id": "MVBus24061", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396086853166442, 48.68016686423779] + } + }, + { + "id": "MVBus24062", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.396689119419465, 48.68008386227141] + } + }, + { + "id": "MVBus24064", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.397175010325148, 48.680005646047306] + } + }, + { + "id": "MVLV02107", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.397198756611179, 48.68002106022296] + } + }, + { + "id": "MVLV04069", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.393859245371176, 48.678398121997645] + } + }, + { + "id": "MVBus24053", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.387228378138695, 48.69648346340322] + } + }, + { + "id": "MVLV00763", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386320350855856, 48.69674688889175] + } + }, + { + "id": "MVLV02676", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.386086307107507, 48.69024982994571] + } + }, + { + "id": "MVLV11234", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.381057295037861, 48.68857227401332] + } + }, + { + "id": "MVBus17523", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36250058294375, 48.699920974017196] + } + }, + { + "id": "MVBus17526", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.364469760819947, 48.702221813021815] + } + }, + { + "id": "MVBus17527", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365080155168652, 48.702931226958164] + } + }, + { + "id": "MVBus17528", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.366857582095782, 48.702909804508195] + } + }, + { + "id": "MVBus17539", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.368602686985163, 48.702762027953426] + } + }, + { + "id": "MVBus17540", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.369391365276649, 48.702312360854734] + } + }, + { + "id": "MVLV11643", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.36985327513618, 48.70171789916646] + } + }, + { + "id": "MVBus17529", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365766216776604, 48.70323344674769] + } + }, + { + "id": "MVBus17530", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362654078028266, 48.70439394941558] + } + }, + { + "id": "MVLV12960", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361146143854642, 48.70373258684646] + } + }, + { + "id": "MVBus17532", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.361706222495278, 48.70493345667249] + } + }, + { + "id": "MVBus17533", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.363787332955464, 48.70687745644073] + } + }, + { + "id": "MVBus17535", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.365482557431456, 48.70845136474554] + } + }, + { + "id": "MVBus17536", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.371470530798074, 48.708006097671856] + } + }, + { + "id": "MVLV15838", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372263248440009, 48.70572814874992] + } + }, + { + "id": "MVLV05594", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.372474957363736, 48.70819963640383] + } + }, + { + "id": "MVLV08691", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.362017012011286, 48.707740359055315] + } + }, + { + "id": "MVBus17524", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.360816212595922, 48.70113087837448] + } + }, + { + "id": "MVLV12961", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.359690288894828, 48.70030435899507] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV14", + "geometry": { + "type": "Point", + "coordinates": [-1.315508137717839, 48.67552963511552] + } + }, + { + "id": "MVBranch39944", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV14", + "bus2": "MVLV06299", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.315508137717839, 48.67552963511552], + [-1.315503463460778, 48.675545112303986], + [-1.315503463460778, 48.675545112303986], + [-1.315500848189535, 48.675556242851165], + [-1.315198632188688, 48.67596371052023], + [-1.317871088132522, 48.67581209610027], + [-1.318670051393893, 48.67576675473115], + [-1.31964092142359, 48.67575020213779], + [-1.320984238145868, 48.67572728247795], + [-1.323541968796889, 48.675683594843576], + [-1.323852907070429, 48.67567706472819], + [-1.324195198699835, 48.675669862746695], + [-1.324284678894714, 48.6757184090606], + [-1.32427595282035, 48.67581334177527], + [-1.324208562736317, 48.67602188193846], + [-1.324198289130883, 48.67612822738935], + [-1.324179048878627, 48.676327443285246], + [-1.324177927879868, 48.67653988530394], + [-1.324248646680606, 48.67691893742712], + [-1.324288793975336, 48.6771142230753], + [-1.324305348212575, 48.67719477859688], + [-1.324306673367868, 48.677208199294995], + [-1.3243096308857334, 48.677222514427754] + ] + }, + "length": 0.8907821128978984, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44484", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06299", + "bus2": "MVBus05026", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3243096308857334, 48.677222514427754], + [-1.324312588403599, 48.67723682956052], + [-1.324316950961365, 48.67724610720035], + [-1.324407539328749, 48.67746690264696], + [-1.324752016524325, 48.67788046022347], + [-1.324843979689097, 48.67805145172044], + [-1.324824957712141, 48.678204525954555], + [-1.324608374901279, 48.67845408006145], + [-1.324270214418594, 48.67935067307869], + [-1.32398527816498, 48.67968059475105], + [-1.323915414415546, 48.680238257520585], + [-1.324401306984702, 48.6815097737912], + [-1.324552530119515, 48.68169822823113], + [-1.324633327379154, 48.681828081809556], + [-1.324633327379154, 48.681828081809556] + ] + }, + "length": 0.5407812374987008, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33354", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05026", + "bus2": "MVBus05027", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324633327379154, 48.681828081809556], + [-1.324633327379154, 48.681828081809556], + [-1.324756396743055, 48.682263798619054], + [-1.3248669507068, 48.6824916253855], + [-1.324952123147225, 48.68272566173774], + [-1.324966571570778, 48.68292236987251], + [-1.32496292375523, 48.68311335585766], + [-1.324855378890781, 48.6835003575958], + [-1.324686040704435, 48.683860535074125], + [-1.324640695755288, 48.68391926354705], + [-1.324640695755288, 48.68391926354705] + ] + }, + "length": 0.23885803889542243, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35638", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05027", + "bus2": "MVBus05028", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324640695755288, 48.68391926354705], + [-1.324640695755288, 48.68391926354705], + [-1.324731743147127, 48.684102385727634], + [-1.324612607398126, 48.68420823112392], + [-1.324210835737492, 48.68469847354835], + [-1.323733355875409, 48.68508555428773], + [-1.323247151129281, 48.68609235665885], + [-1.323186423057092, 48.68614168790656], + [-1.322964822084235, 48.68662253126854], + [-1.322727629500577, 48.68774974573568], + [-1.324392042278423, 48.6880208802085], + [-1.324403471836129, 48.688034195862905], + [-1.324403471836129, 48.688034195862905] + ] + }, + "length": 0.5887167838332982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44419", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05028", + "bus2": "MVLV06298", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324403471836129, 48.688034195862905], + [-1.324403471836129, 48.688034195862905], + [-1.324437008831657, 48.68801559589586], + [-1.324656330660879, 48.688047950325824], + [-1.32466065492585, 48.6880640048316], + [-1.32466065492585, 48.6880640048316] + ] + }, + "length": 0.02157870615750059, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37908", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05028", + "bus2": "MVBus05030", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.324403471836129, 48.688034195862905], + [-1.324403471836129, 48.688034195862905], + [-1.324149148043669, 48.68933663489254], + [-1.324197080192804, 48.68939333858261], + [-1.325885968473182, 48.68982120486558], + [-1.326481505570192, 48.69026083730953], + [-1.326639205462656, 48.69044737913898], + [-1.326887269601804, 48.69081554133641], + [-1.326980765300025, 48.69104141783925], + [-1.327044222623438, 48.69129157273886], + [-1.327143567736885, 48.69175069380194], + [-1.327343998045295, 48.69239344320849], + [-1.327523947418851, 48.69284541269855], + [-1.327567107178485, 48.69300748878106], + [-1.327597607039506, 48.69320728091928], + [-1.327569335173674, 48.69340129401491], + [-1.327476282131494, 48.69365103710961], + [-1.327290667822254, 48.69399224550509], + [-1.327292636982018, 48.69399087092771], + [-1.327302797151854, 48.69421180737148], + [-1.327498179998498, 48.694775445551336], + [-1.32758157405069, 48.69511069261121], + [-1.327637773349822, 48.695141656384756], + [-1.329139158360847, 48.694888540438], + [-1.32964290487591, 48.69474310803858], + [-1.330271496452614, 48.69459518180074], + [-1.330520721003228, 48.69457099219727], + [-1.330933520974348, 48.694591559250384], + [-1.332311951909265, 48.6947431871332], + [-1.332311951909265, 48.6947431871332] + ] + }, + "length": 1.2704878570324705, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42832", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05030", + "bus2": "MVLV16807", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332311951909265, 48.6947431871332], + [-1.332311951909265, 48.6947431871332], + [-1.332414749754649, 48.69475008560281], + [-1.332415855968401, 48.6947915696613], + [-1.332416229313139, 48.694805334549706], + [-1.3324397522750886, 48.69480756439362] + ] + }, + "length": 0.013751403625483079, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42299", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16807", + "bus2": "MVBus08987", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3324397522750886, 48.69480756439362], + [-1.332464774190726, 48.69480869206709], + [-1.33246573472015, 48.69479283430077], + [-1.332466383988903, 48.69478219619294], + [-1.332696716348577, 48.69475012796576], + [-1.332696716348577, 48.69475012796576] + ] + }, + "length": 0.020276337243253024, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47750", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08987", + "bus2": "MVBus08988", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332696716348577, 48.69475012796576], + [-1.332696716348577, 48.69475012796576], + [-1.332752887698223, 48.69475831550576], + [-1.332769653966778, 48.694856436515416], + [-1.332769653966778, 48.694856436515416] + ] + }, + "length": 0.015215285499410657, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch08117", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08988", + "bus2": "MVBus08989", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332769653966778, 48.694856436515416], + [-1.332769653966778, 48.694856436515416], + [-1.333868868924871, 48.69442417043966], + [-1.333868868924871, 48.69442417043966] + ] + }, + "length": 0.09412263973083554, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31282", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08989", + "bus2": "MVBus08990", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.333868868924871, 48.69442417043966], + [-1.333868868924871, 48.69442417043966], + [-1.335151937095821, 48.69432457617282], + [-1.337017272071378, 48.69361150583635], + [-1.337017272071378, 48.69361150583635] + ] + }, + "length": 0.2536788424847895, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10895", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08990", + "bus2": "MVLV13668", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.337017272071378, 48.69361150583635], + [-1.337017272071378, 48.69361150583635], + [-1.336768360474335, 48.693054819581505], + [-1.336768360474335, 48.693054819581505] + ] + }, + "length": 0.06456087593189838, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch39299", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08990", + "bus2": "MVLV08873", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.337017272071378, 48.69361150583635], + [-1.337017272071378, 48.69361150583635], + [-1.337811745653045, 48.69348041079462], + [-1.337811745653045, 48.69348041079462] + ] + }, + "length": 0.060278301216926226, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37724", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16807", + "bus2": "MVBus08231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3324397522750886, 48.69480756439362], + [-1.332438253321401, 48.694808666564086], + [-1.332443502553064, 48.69479156034865], + [-1.332456160398833, 48.694750388404394], + [-1.332456160398833, 48.694750388404394] + ] + }, + "length": 0.0066134739308626985, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42831", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08231", + "bus2": "MVBus08232", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332456160398833, 48.694750388404394], + [-1.332456160398833, 48.694750388404394], + [-1.332662258481913, 48.69470601327688], + [-1.332662258481913, 48.69470601327688] + ] + }, + "length": 0.015954819992476985, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41215", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08232", + "bus2": "MVBus08233", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.332662258481913, 48.69470601327688], + [-1.332662258481913, 48.69470601327688], + [-1.334403533710343, 48.69449777888983], + [-1.334737608012648, 48.6945385588819], + [-1.337468319551824, 48.69479076262023], + [-1.338560174992908, 48.69473600803719], + [-1.339110950367838, 48.69497772569214], + [-1.34053457433403, 48.69551252079587], + [-1.341229118621193, 48.695859813180384], + [-1.34158065555616, 48.695897432347785], + [-1.342253607540212, 48.69588639859719], + [-1.343161387869735, 48.696007641304966], + [-1.343470742121568, 48.69609375099156], + [-1.343958767360514, 48.696412422257495], + [-1.344769412777089, 48.69680510651728], + [-1.344847696755994, 48.696914724780584], + [-1.344956332284714, 48.69700472937253], + [-1.345113240552836, 48.69707922515018], + [-1.345667425411271, 48.69728612809096], + [-1.346037144688256, 48.69742153130377], + [-1.346199396336957, 48.697577745085724], + [-1.34633565051282, 48.69770890446633], + [-1.346533287484332, 48.69776112271589], + [-1.346800660298467, 48.69780184396979], + [-1.347026872166945, 48.69780208131676], + [-1.347239757547525, 48.69777251551116], + [-1.347525615978146, 48.697598373510864], + [-1.347794053666933, 48.69737428185959], + [-1.348056445531613, 48.69726054460816], + [-1.348144026797379, 48.697322099639194], + [-1.348054099550095, 48.6976186904504], + [-1.347825443439531, 48.69791500087517], + [-1.347917694846003, 48.69823806607235], + [-1.34838789439191, 48.69920109903526], + [-1.349100811857249, 48.69984036815978], + [-1.349090863664277, 48.69988795473], + [-1.349090863664277, 48.69988795473] + ] + }, + "length": 1.5972493115269248, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43224", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08233", + "bus2": "MVBus08234", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.349090863664277, 48.69988795473], + [-1.349090863664277, 48.69988795473], + [-1.349083292062529, 48.6999270719708], + [-1.349083883067351, 48.69994077613723], + [-1.349084843037833, 48.69994185311251], + [-1.349140909608321, 48.699974323001385], + [-1.349236045168364, 48.700020975213334], + [-1.34927393985865, 48.70003642681342], + [-1.349387010003084, 48.700105179590416], + [-1.349472006439018, 48.700153577233394], + [-1.349507683804376, 48.70017111322575], + [-1.349583389791825, 48.7002449228178], + [-1.349583389791825, 48.7002449228178] + ] + }, + "length": 0.05627094231677252, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46980", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08234", + "bus2": "MVBus08235", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.349583389791825, 48.7002449228178], + [-1.349583389791825, 48.7002449228178], + [-1.349748385026399, 48.700405797260046], + [-1.349781547229223, 48.70045533745463], + [-1.349800820063233, 48.70047637057669], + [-1.349827137474714, 48.700499551351136], + [-1.349847027596675, 48.70052334577209], + [-1.349979562527859, 48.700651457832706], + [-1.350028618635357, 48.7006979575111], + [-1.35003056868882, 48.70070743515395], + [-1.350025023888087, 48.700721833846366], + [-1.350024986880549, 48.70072457049264], + [-1.350033533716369, 48.70073831530751], + [-1.350033533716369, 48.70073831530751] + ] + }, + "length": 0.06487991476065545, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40837", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08235", + "bus2": "MVLV15837", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.350033533716369, 48.70073831530751], + [-1.350033533716369, 48.70073831530751], + [-1.350355480420248, 48.70102878261073], + [-1.351309816091185, 48.70180708948788], + [-1.351610455483424, 48.70196548142909], + [-1.351673413354848, 48.701995963152626], + [-1.352029744876275, 48.702045632317834], + [-1.352466636103471, 48.70201232314792], + [-1.352800204288034, 48.70194984956354], + [-1.353656496921582, 48.70172500086173], + [-1.354121832772898, 48.70156831496038], + [-1.355020097991785, 48.70112971664497], + [-1.355881836396744, 48.70070569137057], + [-1.357240705657859, 48.70004739372588], + [-1.358256195357674, 48.69955330392023], + [-1.360036412980531, 48.69869517239255], + [-1.3600609520485, 48.69870418900822], + [-1.360092750498626, 48.69871588589524], + [-1.360997867228555, 48.69854465511206], + [-1.361038303263266, 48.69857133489028], + [-1.36104380445785, 48.69858140365268], + [-1.3610517542755765, 48.69858050796095] + ] + }, + "length": 0.9959524767430119, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33353", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15837", + "bus2": "MVBus17515", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3610517542755765, 48.69858050796095], + [-1.361059704093303, 48.698579612269214], + [-1.361047371992327, 48.698535238367704], + [-1.361872248455002, 48.698372926745066], + [-1.361872248455002, 48.698372926745066] + ] + }, + "length": 0.06836447371794643, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36563", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17515", + "bus2": "MVBus17516", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361872248455002, 48.698372926745066], + [-1.361872248455002, 48.698372926745066], + [-1.362629132935457, 48.69820729445299], + [-1.363029158829987, 48.698095998025224], + [-1.363488279660191, 48.697927858271804], + [-1.363445651687543, 48.697882998763404], + [-1.363943521716062, 48.69764855349933], + [-1.364231319150016, 48.69749610333351], + [-1.36457856618481, 48.69726222393793], + [-1.364770989793346, 48.69708974795057], + [-1.36483850397913, 48.696999384142416], + [-1.365211141359183, 48.696401900265855], + [-1.365418667508216, 48.696168229810155], + [-1.365710520367382, 48.69589424122478], + [-1.366081966636756, 48.69563355063961], + [-1.366487098573561, 48.695415116903014], + [-1.366719934502484, 48.695316485999676], + [-1.367397492595332, 48.695120975029496], + [-1.368102260761573, 48.6949390347851], + [-1.368517781569113, 48.69486045702395], + [-1.368673419887827, 48.6948394790163], + [-1.368859647394755, 48.694818957991565], + [-1.369176061861146, 48.69484622794454], + [-1.369633161489022, 48.69488625253494], + [-1.369840137641254, 48.694909858321765], + [-1.370008749538573, 48.69484206776048], + [-1.370008749538573, 48.69484206776048] + ] + }, + "length": 0.7716718945900013, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44436", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17516", + "bus2": "MVBus17517", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.370008749538573, 48.69484206776048], + [-1.370008749538573, 48.69484206776048], + [-1.370130340391536, 48.694836576401244], + [-1.370526610360428, 48.69492079156123], + [-1.370932620593153, 48.69485299475301], + [-1.371160826341029, 48.69480660998835], + [-1.37140828752311, 48.69474338047859], + [-1.37140828752311, 48.69474338047859] + ] + }, + "length": 0.10753804778842857, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44435", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17517", + "bus2": "MVBus17518", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.37140828752311, 48.69474338047859], + [-1.37140828752311, 48.69474338047859], + [-1.372108316379351, 48.694582899499785], + [-1.372776995364991, 48.69443116937401], + [-1.372929536273884, 48.69437481928326], + [-1.373004567322684, 48.69433308611805], + [-1.373035696173742, 48.694315771215955], + [-1.373972817438306, 48.69362667631505], + [-1.376669605229281, 48.6916538042244], + [-1.378349128400386, 48.69065179067016], + [-1.378658397432478, 48.69041424189457], + [-1.378829116825462, 48.69020588613805], + [-1.379202004593425, 48.68971142133887], + [-1.379492650503138, 48.68956048905799], + [-1.380181593777458, 48.6896592059833], + [-1.380266592034214, 48.68959851050389], + [-1.380593480920253, 48.68951313748911], + [-1.380593480920253, 48.68951313748911] + ] + }, + "length": 0.9319581720426843, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46238", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17518", + "bus2": "MVBus17519", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380593480920253, 48.68951313748911], + [-1.380593480920253, 48.68951313748911], + [-1.38077081939404, 48.68948115099424], + [-1.381030922180158, 48.689499239232546], + [-1.381622620649323, 48.68956621593823], + [-1.381944230603197, 48.68960261206002], + [-1.382239983321192, 48.689632835058646], + [-1.382604941018307, 48.6897730193813], + [-1.382898135881761, 48.689885640459785], + [-1.382989438641679, 48.68992070666759], + [-1.383080417712247, 48.689951436619616], + [-1.383271623296468, 48.69000498448029], + [-1.383466377608706, 48.690039928558214], + [-1.38378629455312, 48.69006798618082], + [-1.385773855373496, 48.69015142674052], + [-1.38606803163353, 48.69014075498917], + [-1.386095076128499, 48.69020544337535], + [-1.386095076128499, 48.69020544337535] + ] + }, + "length": 0.4240344987125137, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44418", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17519", + "bus2": "MVLV00762", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386095076128499, 48.69020544337535], + [-1.386095076128499, 48.69020544337535], + [-1.386074007914371, 48.69018758536089], + [-1.386045414412386, 48.69019219016974], + [-1.3860685283105134, 48.69022637502021] + ] + }, + "length": 0.004686436383422953, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37164", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00762", + "bus2": "MVBus24050", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.3860685283105134, 48.69022637502021], + [-1.386091642208641, 48.69026055987068], + [-1.386107806027131, 48.690259845618584], + [-1.38612993102133, 48.690258863290296], + [-1.386172893328841, 48.69025694803313], + [-1.386258900261758, 48.69036720873158], + [-1.386327665262383, 48.69048419259067], + [-1.386429285337267, 48.69070998267635], + [-1.386663235642549, 48.691295983208455], + [-1.386710197058936, 48.69195325464215], + [-1.386656207449652, 48.69214037516906], + [-1.386536543614332, 48.692507486905285], + [-1.386585620553674, 48.692516906896316], + [-1.386585620553674, 48.692516906896316] + ] + }, + "length": 0.26724134465610405, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch01719", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24050", + "bus2": "MVLV05135", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386585620553674, 48.692516906896316], + [-1.386585620553674, 48.692516906896316], + [-1.387398231874811, 48.691644860892694], + [-1.388721682538931, 48.69170724856656], + [-1.388721682538931, 48.69170724856656] + ] + }, + "length": 0.21162633478045764, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11543", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24050", + "bus2": "MVBus24051", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386585620553674, 48.692516906896316], + [-1.386585620553674, 48.692516906896316], + [-1.389640377977582, 48.6936695244645], + [-1.389640377977582, 48.6936695244645] + ] + }, + "length": 0.25885409503143514, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11542", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24051", + "bus2": "MVBus24052", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.389640377977582, 48.6936695244645], + [-1.389640377977582, 48.6936695244645], + [-1.390344271878809, 48.69403410174598], + [-1.390456896571498, 48.694092429012166], + [-1.390456896571498, 48.694092429012166] + ] + }, + "length": 0.07632215258057966, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch28132", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24052", + "bus2": "MVBus24055", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.390456896571498, 48.694092429012166], + [-1.390456896571498, 48.694092429012166], + [-1.398561158560935, 48.687535479227805], + [-1.398561158560935, 48.687535479227805] + ] + }, + "length": 0.9421676332786787, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch28134", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24055", + "bus2": "MVBus24068", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.398561158560935, 48.687535479227805], + [-1.398561158560935, 48.687535479227805], + [-1.403644517387418, 48.68335067722083], + [-1.408493773037451, 48.68069081868821], + [-1.408493773037451, 48.68069081868821] + ] + }, + "length": 1.0608890004938134, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch23138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24068", + "bus2": "MVBus24099", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.408493773037451, 48.68069081868821], + [-1.408493773037451, 48.68069081868821], + [-1.409110034494963, 48.68080865138281], + [-1.409110034494963, 48.68080865138281] + ] + }, + "length": 0.047234359365897635, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08362", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24099", + "bus2": "MVBus24100", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409110034494963, 48.68080865138281], + [-1.409110034494963, 48.68080865138281], + [-1.40965762004385, 48.68091651992885], + [-1.40965762004385, 48.68091651992885] + ] + }, + "length": 0.042069559422674464, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08367", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24100", + "bus2": "MVBus24103", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40965762004385, 48.68091651992885], + [-1.40965762004385, 48.68091651992885], + [-1.410375244576262, 48.68359763038951], + [-1.410375244576262, 48.68359763038951] + ] + }, + "length": 0.3027957426010854, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32881", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24103", + "bus2": "MVBus24104", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410375244576262, 48.68359763038951], + [-1.410375244576262, 48.68359763038951], + [-1.41024833874059, 48.68399934277218], + [-1.410279603008094, 48.68403941670856], + [-1.410094731272296, 48.68454334180209], + [-1.410457520575412, 48.6846248924926], + [-1.410457520575412, 48.6846248924926] + ] + }, + "length": 0.13653314559085525, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37630", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24104", + "bus2": "MVBus24106", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410457520575412, 48.6846248924926], + [-1.410457520575412, 48.6846248924926], + [-1.41052130409578, 48.6846345578222], + [-1.41052130409578, 48.6846345578222] + ] + }, + "length": 0.004817968050677522, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch15248", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24106", + "bus2": "MVBus24107", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.41052130409578, 48.6846345578222], + [-1.41052130409578, 48.6846345578222], + [-1.410557522651376, 48.685621609766095], + [-1.410557522651376, 48.685621609766095] + ] + }, + "length": 0.10979615455757827, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19974", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24107", + "bus2": "MVBus24108", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410557522651376, 48.685621609766095], + [-1.410557522651376, 48.685621609766095], + [-1.409907100020805, 48.68709324149833], + [-1.409907100020805, 48.68709324149833] + ] + }, + "length": 0.1705142628444711, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43460", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24108", + "bus2": "MVLV00546", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.409907100020805, 48.68709324149833], + [-1.409907100020805, 48.68709324149833], + [-1.409966510573871, 48.68710442214782], + [-1.409618473717378, 48.687710370706036], + [-1.409510396586243, 48.6879607020776], + [-1.409563445224697, 48.687969213263976], + [-1.409563445224697, 48.687969213263976] + ] + }, + "length": 0.10961108702116706, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40775", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24104", + "bus2": "MVLV10324", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410457520575412, 48.6846248924926], + [-1.410457520575412, 48.6846248924926], + [-1.410526256898795, 48.68463218763467], + [-1.410853373558316, 48.6847031927041], + [-1.410873154098373, 48.68470856092348], + [-1.410867808177468, 48.68472414481989], + [-1.410867808177468, 48.68472414481989] + ] + }, + "length": 0.03382471807901016, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24100", + "bus2": "MVBus24101", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.40965762004385, 48.68091651992885], + [-1.40965762004385, 48.68091651992885], + [-1.411072946287639, 48.68122377495599], + [-1.411072946287639, 48.68122377495599] + ] + }, + "length": 0.10967942847151416, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch40281", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24101", + "bus2": "MVLV10323", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.411072946287639, 48.68122377495599], + [-1.411072946287639, 48.68122377495599], + [-1.412726298448994, 48.68168800584517], + [-1.413039955009211, 48.681710134344065], + [-1.413039955009211, 48.681710134344065] + ] + }, + "length": 0.1554685335100641, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch15243", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24068", + "bus2": "MVBus24069", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.408493773037451, 48.68069081868821], + [-1.408493773037451, 48.68069081868821], + [-1.413074070122556, 48.67823125435254], + [-1.413074070122556, 48.67823125435254] + ] + }, + "length": 0.43425352725613486, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch11154", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24069", + "bus2": "MVBus24070", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.413074070122556, 48.67823125435254], + [-1.413074070122556, 48.67823125435254], + [-1.418220642622635, 48.67558838087891], + [-1.419991973797182, 48.67443548826671], + [-1.419991973797182, 48.67443548826671] + ] + }, + "length": 0.6625168530605734, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch23140", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24070", + "bus2": "MVBus24080", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419991973797182, 48.67443548826671], + [-1.419991973797182, 48.67443548826671], + [-1.42136624107891, 48.67352763843192], + [-1.42136624107891, 48.67352763843192] + ] + }, + "length": 0.1429546741306491, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch15244", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24080", + "bus2": "MVBus24081", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42136624107891, 48.67352763843192], + [-1.42136624107891, 48.67352763843192], + [-1.423458086823049, 48.672063747279815], + [-1.423458086823049, 48.672063747279815] + ] + }, + "length": 0.22413447280940296, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch23143", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24081", + "bus2": "MVBus24082", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.423458086823049, 48.672063747279815], + [-1.423458086823049, 48.672063747279815], + [-1.425433424469281, 48.6704288218968], + [-1.425433424469281, 48.6704288218968] + ] + }, + "length": 0.23285469633794945, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch32483", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24082", + "bus2": "MVBus24084", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.425433424469281, 48.6704288218968], + [-1.425433424469281, 48.6704288218968], + [-1.427550443876756, 48.66832702556939], + [-1.427550443876756, 48.66832702556939] + ] + }, + "length": 0.2809661659950674, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch47851", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24084", + "bus2": "MVBus24085", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.427550443876756, 48.66832702556939], + [-1.427550443876756, 48.66832702556939], + [-1.427541195017932, 48.66832932598601], + [-1.427522044306043, 48.668323589666684], + [-1.427713619882294, 48.66752098506874], + [-1.42773882512684, 48.667518960930806], + [-1.42773882512684, 48.667518960930806] + ] + }, + "length": 0.09450681050023824, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44739", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24085", + "bus2": "MVBus24086", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42773882512684, 48.667518960930806], + [-1.42773882512684, 48.667518960930806], + [-1.428264344005357, 48.66750835777458], + [-1.428661787035208, 48.667467173483466], + [-1.429479811508234, 48.66732761483808], + [-1.429614903110496, 48.66736333333185], + [-1.429690343340474, 48.667355780407235], + [-1.429737921743526, 48.66740399771851], + [-1.429737921743526, 48.66740399771851] + ] + }, + "length": 0.15331713080544543, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45559", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24086", + "bus2": "MVBus24087", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.429737921743526, 48.66740399771851], + [-1.429737921743526, 48.66740399771851], + [-1.430322567466328, 48.66814847999149], + [-1.430244168935322, 48.66816904089627], + [-1.430226347180375, 48.66816721336321], + [-1.430226347180375, 48.66816721336321] + ] + }, + "length": 0.10085818204908785, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch08366", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24087", + "bus2": "MVLV06447", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.430226347180375, 48.66816721336321], + [-1.430226347180375, 48.66816721336321], + [-1.430588113036341, 48.668625325386294], + [-1.432209635049518, 48.67056922323461], + [-1.432209635049518, 48.67056922323461] + ] + }, + "length": 0.30445850037463673, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38639", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24086", + "bus2": "MVBus24089", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.429737921743526, 48.66740399771851], + [-1.429737921743526, 48.66740399771851], + [-1.429711720954316, 48.667347992059526], + [-1.429745098384111, 48.667312105440324], + [-1.429792832944832, 48.667283114939146], + [-1.430600538216654, 48.667162099257006], + [-1.431267185860128, 48.66708041423658], + [-1.43198630630097, 48.667035555474946], + [-1.432243495645382, 48.66699438050295], + [-1.432432678805019, 48.6669315373857], + [-1.432628963779213, 48.66685196387979], + [-1.435725693945472, 48.66495492278176], + [-1.435886014741506, 48.66497381296566], + [-1.435951745674166, 48.66494015250545], + [-1.436119799943683, 48.66495440472515], + [-1.436858835884234, 48.665017086724], + [-1.43697981519529, 48.665059032466075], + [-1.437019059340632, 48.66514211392453], + [-1.437106449289927, 48.665659984314104], + [-1.43714728610558, 48.6657650088189], + [-1.437218640286552, 48.665909404864394], + [-1.437307400738446, 48.66600646047312], + [-1.437604584918256, 48.66619192963684], + [-1.437540172188118, 48.66623721183292], + [-1.437540172188118, 48.66623721183292] + ] + }, + "length": 0.7845793482250173, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch01974", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24089", + "bus2": "MVBus39974", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.437540172188118, 48.66623721183292], + [-1.437540172188118, 48.66623721183292], + [-1.438557514204313, 48.66571332634098], + [-1.438557514204313, 48.66571332634098] + ] + }, + "length": 0.09491870161658982, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch25437", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39974", + "bus2": "MVBus39976", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.438557514204313, 48.66571332634098], + [-1.438557514204313, 48.66571332634098], + [-1.441570933640071, 48.66627762495946], + [-1.441570933640071, 48.66627762495946] + ] + }, + "length": 0.23066760853106663, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch15247", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39976", + "bus2": "MVLV09015", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.441570933640071, 48.66627762495946], + [-1.441570933640071, 48.66627762495946], + [-1.440918679186523, 48.667310323510996], + [-1.438662520784315, 48.66925218910298], + [-1.438449788295261, 48.67104614339778], + [-1.438449788295261, 48.67104614339778] + ] + }, + "length": 0.597075270951156, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11156", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39976", + "bus2": "MVBus39978", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.441570933640071, 48.66627762495946], + [-1.441570933640071, 48.66627762495946], + [-1.443199968358023, 48.66690877873582], + [-1.443199968358023, 48.66690877873582] + ] + }, + "length": 0.13901236964835756, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch43827", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39978", + "bus2": "MVLV06448", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.443199968358023, 48.66690877873582], + [-1.443199968358023, 48.66690877873582], + [-1.444758776426216, 48.66613386722032], + [-1.446034959286904, 48.6655489870267], + [-1.446079710619304, 48.66557326975702], + [-1.446079710619304, 48.66557326975702] + ] + }, + "length": 0.26213193633513093, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25438", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39978", + "bus2": "MVBus39980", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.443199968358023, 48.66690877873582], + [-1.443199968358023, 48.66690877873582], + [-1.444227964428699, 48.668319010605344], + [-1.444227964428699, 48.668319010605344] + ] + }, + "length": 0.17414570776249913, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch48254", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39980", + "bus2": "MVBus39981", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.444227964428699, 48.668319010605344], + [-1.444227964428699, 48.668319010605344], + [-1.444299152272503, 48.6683254786251], + [-1.444502883565754, 48.668578741240715], + [-1.44375635095643, 48.668776616576054], + [-1.44375635095643, 48.668776616576054] + ] + }, + "length": 0.09643044361056909, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40282", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39981", + "bus2": "MVBus39990", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.44375635095643, 48.668776616576054], + [-1.44375635095643, 48.668776616576054], + [-1.443750278118606, 48.66873325448024], + [-1.443773467700237, 48.66871601970379], + [-1.44373218248448, 48.66866074962074], + [-1.44365965172971, 48.668617490680106], + [-1.443450919490711, 48.66851969296421], + [-1.443354882037418, 48.668480512965324], + [-1.443343047955685, 48.66847284504271], + [-1.443343047955685, 48.66847284504271] + ] + }, + "length": 0.04981559861077533, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43828", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39990", + "bus2": "MVLV18919", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.443343047955685, 48.66847284504271], + [-1.443343047955685, 48.66847284504271], + [-1.443288177621643, 48.668471426684015], + [-1.443288177621643, 48.668471426684015] + ] + }, + "length": 0.004044616944947565, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43829", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39981", + "bus2": "MVBus39982", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.44375635095643, 48.668776616576054], + [-1.44375635095643, 48.668776616576054], + [-1.445016178665306, 48.66967538193563], + [-1.445044547761066, 48.66967631292724], + [-1.445201614001252, 48.66950798717624], + [-1.44533275307121, 48.66926638040962], + [-1.445427472704872, 48.669089900926714], + [-1.445506049849497, 48.66907708140258], + [-1.445506049849497, 48.66907708140258] + ] + }, + "length": 0.2158172278970547, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch19973", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39982", + "bus2": "MVBus39983", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.445506049849497, 48.66907708140258], + [-1.445506049849497, 48.66907708140258], + [-1.448362516861079, 48.67139846929151], + [-1.448362516861079, 48.67139846929151] + ] + }, + "length": 0.333021028751415, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch19972", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39983", + "bus2": "MVLV00544", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.448362516861079, 48.67139846929151], + [-1.448362516861079, 48.67139846929151], + [-1.449205686310729, 48.67094761063653], + [-1.449205686310729, 48.67094761063653] + ] + }, + "length": 0.07981412800351775, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31520", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39983", + "bus2": "MVBus39985", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.448362516861079, 48.67139846929151], + [-1.448362516861079, 48.67139846929151], + [-1.450727879884109, 48.67314634305642], + [-1.453998689564143, 48.67360108655294], + [-1.453998689564143, 48.67360108655294] + ] + }, + "length": 0.5071576179737199, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch46239", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39985", + "bus2": "MVBus39986", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.453998689564143, 48.67360108655294], + [-1.453998689564143, 48.67360108655294], + [-1.454111420613221, 48.67365783095757], + [-1.454111420613221, 48.67365783095757] + ] + }, + "length": 0.010428310529919476, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33356", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39986", + "bus2": "MVBus39987", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.454111420613221, 48.67365783095757], + [-1.454111420613221, 48.67365783095757], + [-1.454133606341398, 48.67364249809416], + [-1.454133606341398, 48.67364249809416] + ] + }, + "length": 0.002361576150954956, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34104", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39987", + "bus2": "MVLV14633", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.454133606341398, 48.67364249809416], + [-1.454133606341398, 48.67364249809416], + [-1.4541725680368, 48.67357862747877], + [-1.454178728141187, 48.67356899944076], + [-1.454218958046013, 48.6735238334756], + [-1.454264495217655, 48.67346908471265], + [-1.454321700159414, 48.67341241504533], + [-1.45435423135338, 48.67337292164041], + [-1.454430642005505, 48.67327980327606], + [-1.454488681120271, 48.67320028499911], + [-1.454511747888592, 48.67317020127465], + [-1.45456351300606, 48.67310080060492], + [-1.454612325323693, 48.67301661872196], + [-1.454623822620292, 48.672999125729426], + [-1.454641536256091, 48.67297482859888], + [-1.454664248841753, 48.67294063454721], + [-1.454721439502256, 48.672866821704936], + [-1.454743205831589, 48.67283866032237], + [-1.454781471001512, 48.67279358392653], + [-1.454797278113478, 48.67277631306957], + [-1.454903203350935, 48.672676536097434], + [-1.454926893563537, 48.672657060330124], + [-1.454975649378707, 48.67261274629773], + [-1.455001257845182, 48.67259814970873], + [-1.455010528756687, 48.67259447856786], + [-1.455033900027318, 48.67258852070583], + [-1.455056222027711, 48.67258680799679], + [-1.455093711225001, 48.67258961379867], + [-1.455118470900897, 48.67259375356931], + [-1.45513651275814, 48.6725989360819], + [-1.455189199988478, 48.6726137646719], + [-1.455197741414115, 48.67261648824631], + [-1.455266142267885, 48.672640533387415], + [-1.455323431540651, 48.672663502972156], + [-1.455387921434535, 48.67269167774245], + [-1.455456942862276, 48.67272274027245], + [-1.455543810411399, 48.672760584328145], + [-1.45563645931521, 48.67280000725657], + [-1.4556841196372, 48.67282210574247], + [-1.455742810702578, 48.67285069077081], + [-1.455800027946779, 48.6728791879226], + [-1.455813728807923, 48.672887073937574], + [-1.455821183509333, 48.672890732142434], + [-1.455830310471647, 48.67289403088996], + [-1.455840224843539, 48.672895270642684], + [-1.455855526182402, 48.672900135741365], + [-1.455941809813138, 48.67293518145967], + [-1.455974336144249, 48.67294855775469], + [-1.455984729565733, 48.67295487569655], + [-1.456008638505341, 48.672968959571314], + [-1.456061114868594, 48.67300417762797], + [-1.456115073269813, 48.67303791739178], + [-1.456124932747906, 48.67304287552983], + [-1.456196478538126, 48.673082082136574], + [-1.456238660980065, 48.67310712737256], + [-1.456252367115327, 48.6731175059378], + [-1.456255738113806, 48.67312180769581], + [-1.456259903898959, 48.67313123154897], + [-1.456265619588171, 48.67314308959205], + [-1.456255345960154, 48.673153506275305], + [-1.456255345960154, 48.673153506275305] + ] + }, + "length": 0.2488833099190807, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44485", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39986", + "bus2": "MVBus39989", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.454111420613221, 48.67365783095757], + [-1.454111420613221, 48.67365783095757], + [-1.452869137586615, 48.67521355033912], + [-1.452859664487246, 48.675253242242846], + [-1.452918824683785, 48.67534661635604], + [-1.452891483259132, 48.67540384263697], + [-1.453878103457793, 48.67656219092895], + [-1.453874099031162, 48.67679155352529], + [-1.453773358658158, 48.6769571987286], + [-1.453611963211757, 48.67713094690073], + [-1.453426777794724, 48.677354176343954], + [-1.453245303144872, 48.67766060058007], + [-1.453250092824149, 48.67793832200117], + [-1.453276628510095, 48.67806878893098], + [-1.45339418352316, 48.6782786707411], + [-1.453578179266918, 48.678412699238436], + [-1.453782994328737, 48.67852528308369], + [-1.454086000736322, 48.678566019708], + [-1.454390489163225, 48.678586442199475], + [-1.454785641113466, 48.67861295542413], + [-1.45539974326333, 48.67870188544613], + [-1.456062695059952, 48.678794082577085], + [-1.457150163214201, 48.679020704631384], + [-1.458038894472679, 48.679168724680785], + [-1.458899745289258, 48.67932809655063], + [-1.459506361138027, 48.67947358896414], + [-1.460242190582365, 48.67972907747678], + [-1.461114544187156, 48.680077155369126], + [-1.462816384053341, 48.6808138484481], + [-1.464202643618057, 48.68141389267702], + [-1.464900489793405, 48.68167536746043], + [-1.465903467893022, 48.6818903386856], + [-1.466618503782603, 48.68205774238269], + [-1.467086104963352, 48.68220767349192], + [-1.467734965386224, 48.68257346478001], + [-1.468127601128452, 48.68288392994266], + [-1.468524223605521, 48.68319755066873], + [-1.468855231581498, 48.683383552661674], + [-1.469296303729002, 48.68356868554966], + [-1.469783126460011, 48.683706119835186], + [-1.470153882234667, 48.68374362536548], + [-1.470255748742938, 48.68369708764026], + [-1.470545857490608, 48.683572558820366], + [-1.470958795346202, 48.68358385201439], + [-1.471216002099142, 48.68370079965435], + [-1.47131322589933, 48.68380020562558], + [-1.471635983278531, 48.684130172901796], + [-1.471709586496959, 48.68423921020579], + [-1.471657732047025, 48.68428979476064], + [-1.471512364074963, 48.6843057564178], + [-1.47151580687234, 48.684277424479994], + [-1.471496954704484, 48.684283897260315], + [-1.471496954704484, 48.684283897260315] + ] + }, + "length": 2.1540794924293905, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch08365", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus39974", + "bus2": "MVLV18920", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.438557514204313, 48.66571332634098], + [-1.438557514204313, 48.66571332634098], + [-1.435905350518214, 48.665013198677705], + [-1.435905350518214, 48.665013198677705] + ] + }, + "length": 0.21030284000132166, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch33616", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24085", + "bus2": "MVBus24090", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42773882512684, 48.667518960930806], + [-1.42773882512684, 48.667518960930806], + [-1.427625944923735, 48.66750760645042], + [-1.427284113732512, 48.66743188815125], + [-1.427021639730295, 48.667357105414936], + [-1.426533446103999, 48.66718559291378], + [-1.425410181177729, 48.666811433669615], + [-1.425238835752817, 48.66678363710558], + [-1.425143248448931, 48.66672807735636], + [-1.424936393180271, 48.66680628167733], + [-1.424829594309627, 48.66689721253386], + [-1.42436465981737, 48.66755902753136], + [-1.424172230332951, 48.667815763092705], + [-1.424019455111165, 48.667992607111934], + [-1.424019455111165, 48.667992607111934] + ] + }, + "length": 0.37774257520662646, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47852", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24090", + "bus2": "MVLV14266", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.424019455111165, 48.667992607111934], + [-1.424019455111165, 48.667992607111934], + [-1.423991554665524, 48.66801072517383], + [-1.423949664678889, 48.6680024069041], + [-1.423949664678889, 48.6680024069041] + ] + }, + "length": 0.0060991198454417115, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41860", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24082", + "bus2": "MVLV02728", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.425433424469281, 48.6704288218968], + [-1.425433424469281, 48.6704288218968], + [-1.425361813066418, 48.670451620745325], + [-1.425078663899435, 48.67046836136561], + [-1.424623894900225, 48.670481105600174], + [-1.424211243860411, 48.670483873139204], + [-1.424157252985195, 48.67046024446686], + [-1.424157252985195, 48.67046024446686] + ] + }, + "length": 0.09547606697053757, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25435", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24080", + "bus2": "MVLV00547", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.42136624107891, 48.67352763843192], + [-1.42136624107891, 48.67352763843192], + [-1.419920011013785, 48.6734160725615], + [-1.419761534530391, 48.67316204924771], + [-1.419761534530391, 48.67316204924771] + ] + }, + "length": 0.13779793646463212, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11155", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24070", + "bus2": "MVBus24071", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419991973797182, 48.67443548826671], + [-1.419991973797182, 48.67443548826671], + [-1.420630681455058, 48.674440314166944], + [-1.420630681455058, 48.674440314166944] + ] + }, + "length": 0.04704228768803644, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23141", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24071", + "bus2": "MVBus24072", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.420630681455058, 48.674440314166944], + [-1.420630681455058, 48.674440314166944], + [-1.421303413674681, 48.67445303930767], + [-1.422160776516778, 48.675074482838696], + [-1.421881023752388, 48.67595325142352], + [-1.421340042028947, 48.67636068076991], + [-1.421340042028947, 48.67636068076991] + ] + }, + "length": 0.30337749386023144, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23142", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24072", + "bus2": "MVLV18922", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.421340042028947, 48.67636068076991], + [-1.421340042028947, 48.67636068076991], + [-1.425056590474113, 48.67762732364768], + [-1.425622793335055, 48.67794155813378], + [-1.425622793335055, 48.67794155813378] + ] + }, + "length": 0.36222154559153724, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25436", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24072", + "bus2": "MVBus24073", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.421340042028947, 48.67636068076991], + [-1.421340042028947, 48.67636068076991], + [-1.420540495730062, 48.67693633672361], + [-1.419810117061095, 48.67734764388789], + [-1.419810117061095, 48.67734764388789] + ] + }, + "length": 0.15758264210247439, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15246", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24073", + "bus2": "MVLV13819", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419810117061095, 48.67734764388789], + [-1.419810117061095, 48.67734764388789], + [-1.418765738504619, 48.677922375626466], + [-1.417411347774322, 48.6790354886807], + [-1.417411347774322, 48.6790354886807] + ] + }, + "length": 0.2589656697239327, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15245", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24073", + "bus2": "MVBus24075", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.419810117061095, 48.67734764388789], + [-1.419810117061095, 48.67734764388789], + [-1.420328922524153, 48.677875121617966], + [-1.420328922524153, 48.677875121617966] + ] + }, + "length": 0.07000292723351449, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19971", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24075", + "bus2": "MVBus24076", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.420328922524153, 48.677875121617966], + [-1.420328922524153, 48.677875121617966], + [-1.424667185742581, 48.68251880629374], + [-1.424667185742581, 48.68251880629374] + ] + }, + "length": 0.6072243094713089, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15313", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24076", + "bus2": "MVLV09363", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.424667185742581, 48.68251880629374], + [-1.424667185742581, 48.68251880629374], + [-1.424579380339677, 48.68254398026742], + [-1.424579380339677, 48.68254398026742] + ] + }, + "length": 0.007045636627968056, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01918", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24076", + "bus2": "MVLV10453", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.424667185742581, 48.68251880629374], + [-1.424667185742581, 48.68251880629374], + [-1.423863031695593, 48.683377524794466], + [-1.422193673110718, 48.68412332239577], + [-1.421450216052972, 48.68482593791207], + [-1.420420507191141, 48.68634791867971], + [-1.420420507191141, 48.68634791867971] + ] + }, + "length": 0.5415034548556188, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08363", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24069", + "bus2": "MVBus24092", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.413074070122556, 48.67823125435254], + [-1.413074070122556, 48.67823125435254], + [-1.411978407328498, 48.676764286658575], + [-1.411978407328498, 48.676764286658575] + ] + }, + "length": 0.18199606601879115, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08364", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24092", + "bus2": "MVBus24093", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.411978407328498, 48.676764286658575], + [-1.411978407328498, 48.676764286658575], + [-1.41094935900405, 48.67588938241899], + [-1.410767426786093, 48.67586486863645], + [-1.410767426786093, 48.67586486863645] + ] + }, + "length": 0.13699784465097406, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31518", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24093", + "bus2": "MVBus24094", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.410767426786093, 48.67586486863645], + [-1.410767426786093, 48.67586486863645], + [-1.406207660086664, 48.675123055199464], + [-1.406207660086664, 48.675123055199464] + ] + }, + "length": 0.34579223003823056, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31519", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24094", + "bus2": "MVBus24097", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.406207660086664, 48.675123055199464], + [-1.406207660086664, 48.675123055199464], + [-1.407329364348828, 48.67378715489126], + [-1.407329364348828, 48.67378715489126] + ] + }, + "length": 0.16998122619689254, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43826", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24097", + "bus2": "MVLV03222", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.407329364348828, 48.67378715489126], + [-1.407329364348828, 48.67378715489126], + [-1.407502142525449, 48.67373881085122], + [-1.407422703141767, 48.67334726719784], + [-1.408353765225652, 48.67308637801645], + [-1.409229507508, 48.67286043468729], + [-1.410183009384582, 48.67258309151386], + [-1.410177531992409, 48.67251969634844], + [-1.410177531992409, 48.67251969634844] + ] + }, + "length": 0.28518296092705764, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25434", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24094", + "bus2": "MVBus24095", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.406207660086664, 48.675123055199464], + [-1.406207660086664, 48.675123055199464], + [-1.403474306377468, 48.67473982769423], + [-1.403066889562038, 48.67459093187115], + [-1.402903063269356, 48.67421149659865], + [-1.402903063269356, 48.67421149659865] + ] + }, + "length": 0.2839203535914608, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32880", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24095", + "bus2": "MVLV00545", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.402903063269356, 48.67421149659865], + [-1.402903063269356, 48.67421149659865], + [-1.402887778117972, 48.67418637690393], + [-1.402720340785575, 48.67422309006748], + [-1.402290181691711, 48.674372968677645], + [-1.402012558869709, 48.67450738187695], + [-1.401711911452538, 48.67470258749458], + [-1.401594889014558, 48.67482389147757], + [-1.401395938329806, 48.67482940726141], + [-1.401395938329806, 48.67482940726141] + ] + }, + "length": 0.13880575619861452, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23661", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24055", + "bus2": "MVBus24056", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.398561158560935, 48.687535479227805], + [-1.398561158560935, 48.687535479227805], + [-1.393362724182627, 48.685320816196224], + [-1.389136030184977, 48.68430691391075], + [-1.389136030184977, 48.68430691391075] + ] + }, + "length": 0.7861628831366249, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11544", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24056", + "bus2": "MVBus24057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.389136030184977, 48.68430691391075], + [-1.389136030184977, 48.68430691391075], + [-1.388369912450079, 48.684359890565865], + [-1.388369912450079, 48.684359890565865] + ] + }, + "length": 0.05671839189802176, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch32126", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24057", + "bus2": "MVLV15406", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.388369912450079, 48.684359890565865], + [-1.388369912450079, 48.684359890565865], + [-1.389247638808418, 48.68704140487774], + [-1.389247638808418, 48.68704140487774] + ] + }, + "length": 0.3051172412161234, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18995", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24057", + "bus2": "MVBus24058", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.388369912450079, 48.684359890565865], + [-1.388369912450079, 48.684359890565865], + [-1.387495141567356, 48.683362598407236], + [-1.387495141567356, 48.683362598407236] + ] + }, + "length": 0.1282511394554021, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15994", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24058", + "bus2": "MVLV08246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387495141567356, 48.683362598407236], + [-1.387495141567356, 48.683362598407236], + [-1.387208961037065, 48.68286061089437], + [-1.387208961037065, 48.68286061089437] + ] + }, + "length": 0.059667850234072076, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34976", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24058", + "bus2": "MVBus24059", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387495141567356, 48.683362598407236], + [-1.387495141567356, 48.683362598407236], + [-1.387759531943309, 48.683293500990985], + [-1.387814024954069, 48.683271074752916], + [-1.387826894829556, 48.683254949865876], + [-1.387818960470286, 48.68323790351911], + [-1.387722623145225, 48.683139639342485], + [-1.387673180435401, 48.68309690931768], + [-1.387558220629858, 48.683028367596606], + [-1.387263325437987, 48.68285935388355], + [-1.387269844746174, 48.68276289905099], + [-1.387348437646504, 48.682715311813894], + [-1.387356786475741, 48.68269716024084], + [-1.387678417238547, 48.682493012673895], + [-1.387817559710464, 48.682414421857445], + [-1.38796727720281, 48.68234478542403], + [-1.388823713394605, 48.682060441880395], + [-1.389429594414714, 48.68186397150588], + [-1.389752429232078, 48.681758351969066], + [-1.389808653669071, 48.68175272492027], + [-1.390279612206967, 48.68158793534494], + [-1.39031602673959, 48.68158293056698], + [-1.390789840058094, 48.681425401097336], + [-1.391079557085955, 48.68133008729849], + [-1.391174642348653, 48.681298806546174], + [-1.391199538592418, 48.68128573171901], + [-1.391223663864039, 48.68127574069037], + [-1.391294163018651, 48.681258829737715], + [-1.391320095620501, 48.68124807997599], + [-1.391320095620501, 48.68124807997599] + ] + }, + "length": 0.4450064142173554, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24059", + "bus2": "MVLV06953", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391320095620501, 48.68124807997599], + [-1.391320095620501, 48.68124807997599], + [-1.391322168393567, 48.68125291913266], + [-1.391311904977682, 48.68125609434967], + [-1.391311522906812, 48.681261190645955], + [-1.391314507522578, 48.68127685361685], + [-1.391318871202315, 48.68128407741701], + [-1.391318871202315, 48.68128407741701] + ] + }, + "length": 0.004581756372837862, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35687", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24059", + "bus2": "MVBus24061", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.391320095620501, 48.68124807997599], + [-1.391320095620501, 48.68124807997599], + [-1.3913757704759, 48.68123100504328], + [-1.391452827194984, 48.681200551730086], + [-1.391544113131154, 48.68117144180778], + [-1.391578032857149, 48.681158560168356], + [-1.391641417684, 48.681142691530205], + [-1.391897231031268, 48.68105881697471], + [-1.392092195181681, 48.68099718313847], + [-1.392155718516572, 48.68097169020065], + [-1.392199012704665, 48.68095631793636], + [-1.392217767946615, 48.6809516068197], + [-1.392488320110357, 48.680862183213534], + [-1.392779260671652, 48.68076771742702], + [-1.392878950410615, 48.68073737928427], + [-1.392982213665771, 48.680710636158025], + [-1.393036820873943, 48.68069650057501], + [-1.393043528466283, 48.68068316045334], + [-1.393055312133606, 48.680676742711626], + [-1.393447343467384, 48.68059026342986], + [-1.393795017824657, 48.6805354138882], + [-1.393828374426592, 48.68053988988404], + [-1.394255996709342, 48.68047636899161], + [-1.394377170388082, 48.68047255692166], + [-1.395322544559519, 48.68030720020886], + [-1.395635422344027, 48.680253989044964], + [-1.395963743339719, 48.680200299979205], + [-1.39599587277191, 48.68018351390004], + [-1.396086853166442, 48.68016686423779], + [-1.396086853166442, 48.68016686423779] + ] + }, + "length": 0.3744445791717937, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46471", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24061", + "bus2": "MVBus24062", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396086853166442, 48.68016686423779], + [-1.396086853166442, 48.68016686423779], + [-1.3962942121381, 48.68013299922341], + [-1.396488560143423, 48.680102081053114], + [-1.396575419622532, 48.68009182387137], + [-1.396689119419465, 48.68008386227141], + [-1.396689119419465, 48.68008386227141] + ] + }, + "length": 0.045362740179136773, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36644", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24062", + "bus2": "MVBus24064", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396689119419465, 48.68008386227141], + [-1.396689119419465, 48.68008386227141], + [-1.396782321176775, 48.68007733774667], + [-1.39687384253284, 48.68005762884955], + [-1.396968701387716, 48.680047119542785], + [-1.397175010325148, 48.680005646047306], + [-1.397175010325148, 48.680005646047306] + ] + }, + "length": 0.0369480354900679, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33185", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24064", + "bus2": "MVLV02107", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.397175010325148, 48.680005646047306], + [-1.397175010325148, 48.680005646047306], + [-1.397190364000473, 48.68000258900063], + [-1.397198756611179, 48.68002106022296], + [-1.397198756611179, 48.68002106022296] + ] + }, + "length": 0.0033256646425244354, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46121", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24062", + "bus2": "MVLV04069", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.396689119419465, 48.68008386227141], + [-1.396689119419465, 48.68008386227141], + [-1.396648913020269, 48.6800488988877], + [-1.394611413407245, 48.67796960367503], + [-1.394568048039803, 48.6779615913739], + [-1.394163276971984, 48.678118702457], + [-1.393845086303829, 48.678271396765766], + [-1.393859245371176, 48.678398121997645], + [-1.393859245371176, 48.678398121997645] + ] + }, + "length": 0.3614631350164427, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch11541", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24052", + "bus2": "MVBus24053", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.390456896571498, 48.694092429012166], + [-1.390456896571498, 48.694092429012166], + [-1.387379276762682, 48.696449094264764], + [-1.387228378138695, 48.69648346340322], + [-1.387228378138695, 48.69648346340322] + ] + }, + "length": 0.3581761272426037, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34079", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus24053", + "bus2": "MVLV00763", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.387228378138695, 48.69648346340322], + [-1.387228378138695, 48.69648346340322], + [-1.387221166791382, 48.69649361522939], + [-1.387205265351858, 48.696487392402446], + [-1.387107118643517, 48.69645566648759], + [-1.387097484203143, 48.69645685076047], + [-1.387090828303885, 48.6964626118196], + [-1.387029614602151, 48.69657625091903], + [-1.386869072729956, 48.69681438074435], + [-1.386866615728102, 48.69681708545298], + [-1.386858597780683, 48.69681616728629], + [-1.386355132658147, 48.696695396202], + [-1.386347399884585, 48.6966975105803], + [-1.386320350855856, 48.69674688889175], + [-1.386320350855856, 48.69674688889175] + ] + }, + "length": 0.10141843723377124, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34168", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17519", + "bus2": "MVLV02676", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.386095076128499, 48.69020544337535], + [-1.386095076128499, 48.69020544337535], + [-1.386101834131236, 48.690227313961685], + [-1.386094764648589, 48.69023810923906], + [-1.386091738376708, 48.69024273053422], + [-1.386086307107507, 48.69024982994571], + [-1.386086307107507, 48.69024982994571] + ] + }, + "length": 0.00523601712228864, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39173", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17518", + "bus2": "MVLV11234", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.380593480920253, 48.68951313748911], + [-1.380593480920253, 48.68951313748911], + [-1.380601431977655, 48.689423217060465], + [-1.38072919403013, 48.68853566517583], + [-1.380949803263799, 48.68854929502677], + [-1.381057295037861, 48.68857227401332], + [-1.381057295037861, 48.68857227401332] + ] + }, + "length": 0.13379285548725914, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41216", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17515", + "bus2": "MVBus17523", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361872248455002, 48.698372926745066], + [-1.361872248455002, 48.698372926745066], + [-1.361903822228889, 48.698406874351], + [-1.362246996694102, 48.699408941615545], + [-1.362333415609004, 48.699680825794466], + [-1.362568397912248, 48.69985650909679], + [-1.362545617311338, 48.69987737599273], + [-1.36250058294375, 48.699920974017196], + [-1.36250058294375, 48.699920974017196] + ] + }, + "length": 0.1844208420110156, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch12786", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17523", + "bus2": "MVBus17526", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36250058294375, 48.699920974017196], + [-1.36250058294375, 48.699920974017196], + [-1.364469760819947, 48.702221813021815], + [-1.364469760819947, 48.702221813021815] + ] + }, + "length": 0.29406741281526205, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24944", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17526", + "bus2": "MVBus17527", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.364469760819947, 48.702221813021815], + [-1.364469760819947, 48.702221813021815], + [-1.365080155168652, 48.702931226958164], + [-1.365080155168652, 48.702931226958164] + ] + }, + "length": 0.09078650728206882, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30653", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17527", + "bus2": "MVBus17528", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365080155168652, 48.702931226958164], + [-1.365080155168652, 48.702931226958164], + [-1.366857582095782, 48.702909804508195], + [-1.366857582095782, 48.702909804508195] + ] + }, + "length": 0.13085094399203137, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07874", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17528", + "bus2": "MVBus17539", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366857582095782, 48.702909804508195], + [-1.366857582095782, 48.702909804508195], + [-1.368602686985163, 48.702762027953426], + [-1.368602686985163, 48.702762027953426] + ] + }, + "length": 0.12949731231923822, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22298", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17539", + "bus2": "MVBus17540", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.368602686985163, 48.702762027953426], + [-1.368602686985163, 48.702762027953426], + [-1.369391365276649, 48.702312360854734], + [-1.369391365276649, 48.702312360854734] + ] + }, + "length": 0.07661917327285778, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22300", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17540", + "bus2": "MVLV11643", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.369391365276649, 48.702312360854734], + [-1.369391365276649, 48.702312360854734], + [-1.36985327513618, 48.70171789916646], + [-1.36985327513618, 48.70171789916646] + ] + }, + "length": 0.0743375036506505, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30655", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17528", + "bus2": "MVBus17529", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.366857582095782, 48.702909804508195], + [-1.366857582095782, 48.702909804508195], + [-1.365766216776604, 48.70323344674769], + [-1.365766216776604, 48.70323344674769] + ] + }, + "length": 0.08802463182829624, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02960", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17529", + "bus2": "MVBus17530", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365766216776604, 48.70323344674769], + [-1.365766216776604, 48.70323344674769], + [-1.363833946287064, 48.70377351832192], + [-1.362654078028266, 48.70439394941558], + [-1.362654078028266, 48.70439394941558] + ] + }, + "length": 0.2653000495495086, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch07873", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17530", + "bus2": "MVLV12960", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.362654078028266, 48.70439394941558], + [-1.362654078028266, 48.70439394941558], + [-1.361721892311404, 48.70427438531108], + [-1.361146143854642, 48.70373258684646], + [-1.361146143854642, 48.70373258684646] + ] + }, + "length": 0.1435499370827407, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22297", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17530", + "bus2": "MVBus17532", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.362654078028266, 48.70439394941558], + [-1.362654078028266, 48.70439394941558], + [-1.361706222495278, 48.70493345667249], + [-1.361706222495278, 48.70493345667249] + ] + }, + "length": 0.09201445378229363, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30654", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17532", + "bus2": "MVBus17533", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.361706222495278, 48.70493345667249], + [-1.361706222495278, 48.70493345667249], + [-1.363787332955464, 48.70687745644073], + [-1.363787332955464, 48.70687745644073] + ] + }, + "length": 0.26494540274416534, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch02961", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17533", + "bus2": "MVBus17535", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363787332955464, 48.70687745644073], + [-1.363787332955464, 48.70687745644073], + [-1.365482557431456, 48.70845136474554], + [-1.365482557431456, 48.70845136474554] + ] + }, + "length": 0.21494311509699743, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12787", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17535", + "bus2": "MVBus17536", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.365482557431456, 48.70845136474554], + [-1.365482557431456, 48.70845136474554], + [-1.370137877277229, 48.70773714942973], + [-1.371470530798074, 48.708006097671856], + [-1.371470530798074, 48.708006097671856] + ] + }, + "length": 0.4542496808028074, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22299", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17536", + "bus2": "MVLV15838", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371470530798074, 48.708006097671856], + [-1.371470530798074, 48.708006097671856], + [-1.372263248440009, 48.70572814874992], + [-1.372263248440009, 48.70572814874992] + ] + }, + "length": 0.25994927894914815, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24945", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17536", + "bus2": "MVLV05594", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.371470530798074, 48.708006097671856], + [-1.371470530798074, 48.708006097671856], + [-1.372474957363736, 48.70819963640383], + [-1.372474957363736, 48.70819963640383] + ] + }, + "length": 0.07699349789243165, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30656", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17533", + "bus2": "MVLV08691", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.363787332955464, 48.70687745644073], + [-1.363787332955464, 48.70687745644073], + [-1.362017012011286, 48.707740359055315], + [-1.362017012011286, 48.707740359055315] + ] + }, + "length": 0.16181702009734078, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24943", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17523", + "bus2": "MVBus17524", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.36250058294375, 48.699920974017196], + [-1.36250058294375, 48.699920974017196], + [-1.3617748995242, 48.70059026302006], + [-1.360816212595922, 48.70113087837448], + [-1.360816212595922, 48.70113087837448] + ] + }, + "length": 0.1843169641640161, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch36942", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17524", + "bus2": "MVLV12961", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.360816212595922, 48.70113087837448], + [-1.360816212595922, 48.70113087837448], + [-1.360722700562462, 48.701166484045686], + [-1.360614861951732, 48.701021506245404], + [-1.360437527815529, 48.700889501225184], + [-1.360278885836657, 48.7008039301189], + [-1.359583849886216, 48.700391396539366], + [-1.359690288894828, 48.70030435899507], + [-1.359690288894828, 48.70030435899507] + ] + }, + "length": 0.14178813460374382, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV06299_production", + "bus": "MVLV06299", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06299_consumption", + "bus": "MVLV06299", + "phases": "abc", + "powers": [ + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807] + ] + }, + { + "id": "MVLV06298_production", + "bus": "MVLV06298", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06298_consumption", + "bus": "MVLV06298", + "phases": "abc", + "powers": [ + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807] + ] + }, + { + "id": "MVLV16807_production", + "bus": "MVLV16807", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16807_consumption", + "bus": "MVLV16807", + "phases": "abc", + "powers": [ + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807] + ] + }, + { + "id": "MVLV13668_production", + "bus": "MVLV13668", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13668_consumption", + "bus": "MVLV13668", + "phases": "abc", + "powers": [ + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807] + ] + }, + { + "id": "MVLV08873_production", + "bus": "MVLV08873", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08873_consumption", + "bus": "MVLV08873", + "phases": "abc", + "powers": [ + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807], + [61778.16711889662, 20305.501579064807] + ] + }, + { + "id": "MVLV15837_production", + "bus": "MVLV15837", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15837_consumption", + "bus": "MVLV15837", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + }, + { + "id": "MVLV00762_production", + "bus": "MVLV00762", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00762_consumption", + "bus": "MVLV00762", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV05135_production", + "bus": "MVLV05135", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05135_consumption", + "bus": "MVLV05135", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV00546_production", + "bus": "MVLV00546", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00546_consumption", + "bus": "MVLV00546", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV10324_production", + "bus": "MVLV10324", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10324_consumption", + "bus": "MVLV10324", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV10323_production", + "bus": "MVLV10323", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10323_consumption", + "bus": "MVLV10323", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV06447_production", + "bus": "MVLV06447", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06447_consumption", + "bus": "MVLV06447", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV09015_production", + "bus": "MVLV09015", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09015_consumption", + "bus": "MVLV09015", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV06448_production", + "bus": "MVLV06448", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06448_consumption", + "bus": "MVLV06448", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV18919_production", + "bus": "MVLV18919", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18919_consumption", + "bus": "MVLV18919", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV00544_production", + "bus": "MVLV00544", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00544_consumption", + "bus": "MVLV00544", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV14633_production", + "bus": "MVLV14633", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14633_consumption", + "bus": "MVLV14633", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV18920_production", + "bus": "MVLV18920", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18920_consumption", + "bus": "MVLV18920", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV14266_production", + "bus": "MVLV14266", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14266_consumption", + "bus": "MVLV14266", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV02728_production", + "bus": "MVLV02728", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02728_consumption", + "bus": "MVLV02728", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV00547_production", + "bus": "MVLV00547", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00547_consumption", + "bus": "MVLV00547", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV18922_production", + "bus": "MVLV18922", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18922_consumption", + "bus": "MVLV18922", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV13819_production", + "bus": "MVLV13819", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13819_consumption", + "bus": "MVLV13819", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV09363_production", + "bus": "MVLV09363", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09363_consumption", + "bus": "MVLV09363", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV10453_production", + "bus": "MVLV10453", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10453_consumption", + "bus": "MVLV10453", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV03222_production", + "bus": "MVLV03222", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03222_consumption", + "bus": "MVLV03222", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV00545_production", + "bus": "MVLV00545", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00545_consumption", + "bus": "MVLV00545", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV15406_production", + "bus": "MVLV15406", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15406_consumption", + "bus": "MVLV15406", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV08246_production", + "bus": "MVLV08246", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08246_consumption", + "bus": "MVLV08246", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV06953_production", + "bus": "MVLV06953", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06953_consumption", + "bus": "MVLV06953", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV02107_production", + "bus": "MVLV02107", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02107_consumption", + "bus": "MVLV02107", + "phases": "abc", + "powers": [ + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168], + [16024.9245015146, 5267.137970339168] + ] + }, + { + "id": "MVLV04069_production", + "bus": "MVLV04069", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04069_consumption", + "bus": "MVLV04069", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV00763_production", + "bus": "MVLV00763", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00763_consumption", + "bus": "MVLV00763", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV02676_production", + "bus": "MVLV02676", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02676_consumption", + "bus": "MVLV02676", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV11234_production", + "bus": "MVLV11234", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11234_consumption", + "bus": "MVLV11234", + "phases": "abc", + "powers": [ + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252], + [24042.276599952937, 7902.314170718252] + ] + }, + { + "id": "MVLV11643_production", + "bus": "MVLV11643", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11643_consumption", + "bus": "MVLV11643", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + }, + { + "id": "MVLV12960_production", + "bus": "MVLV12960", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12960_consumption", + "bus": "MVLV12960", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + }, + { + "id": "MVLV15838_production", + "bus": "MVLV15838", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15838_consumption", + "bus": "MVLV15838", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + }, + { + "id": "MVLV05594_production", + "bus": "MVLV05594", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05594_consumption", + "bus": "MVLV05594", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + }, + { + "id": "MVLV08691_production", + "bus": "MVLV08691", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08691_consumption", + "bus": "MVLV08691", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + }, + { + "id": "MVLV12961_production", + "bus": "MVLV12961", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12961_consumption", + "bus": "MVLV12961", + "phases": "abc", + "powers": [ + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066], + [10285.133759374929, 3380.559986345066] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder217_Summer.json b/roseau/load_flow/data/networks/MVFeeder217_Summer.json new file mode 100644 index 00000000..768291df --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder217_Summer.json @@ -0,0 +1,2650 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.751702612915616, 49.653801085335864] + } + }, + { + "id": "HVMV15", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.751702612915616, 49.653801085335864] + } + }, + { + "id": "MVBus01881", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.75134861697713, 49.6546228164401] + } + }, + { + "id": "MVBus01882", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.740479446878883, 49.65987962629042] + } + }, + { + "id": "MVBus01883", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.733888052209557, 49.656314900145844] + } + }, + { + "id": "MVBus01884", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.728312906960772, 49.656559479695645] + } + }, + { + "id": "MVBus01885", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.727739462930876, 49.65677285538332] + } + }, + { + "id": "MVBus01886", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.727382824582085, 49.656858137125596] + } + }, + { + "id": "MVBus01887", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.723625804781101, 49.65673682886024] + } + }, + { + "id": "MVBus01888", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.715447633958364, 49.654538430245495] + } + }, + { + "id": "MVLV16887", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7134923699166786, 49.656042385779635] + } + }, + { + "id": "MVBus09389", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.712231384433458, 49.65739404176467] + } + }, + { + "id": "MVLV12762", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7123893567716906, 49.65869383173553] + } + }, + { + "id": "MVBus11449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.712256396489699, 49.658696483631566] + } + }, + { + "id": "MVLV04334", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7102518017180843, 49.65805029431179] + } + }, + { + "id": "MVBus12338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.709027337065763, 49.6575131235305] + } + }, + { + "id": "MVLV15648", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7093355253425884, 49.65668006698276] + } + }, + { + "id": "MVBus13302", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.708997902725297, 49.65748382115472] + } + }, + { + "id": "MVLV11486", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7079120407255814, 49.65821598234879] + } + }, + { + "id": "MVLV12761", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7065522989454331, 49.658565793845284] + } + }, + { + "id": "MVLV08515", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.704521667859076, 49.65632654314429] + } + }, + { + "id": "MVLV08514", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7044656244128835, 49.657095165588956] + } + }, + { + "id": "MVLV08517", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7018474404969435, 49.65682712281345] + } + }, + { + "id": "MVLV11487", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7005694121374195, 49.65663345325234] + } + }, + { + "id": "MVLV15647", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.699553504846526, 49.65715834002786] + } + }, + { + "id": "MVLV08518", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.697825356573214, 49.65683842436038] + } + }, + { + "id": "MVLV12764", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6956447814282445, 49.65763502482898] + } + }, + { + "id": "MVBus20890", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.694881325517064, 49.65753685714968] + } + }, + { + "id": "MVBus20891", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.694653623707265, 49.657307207334895] + } + }, + { + "id": "MVLV09710", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6931544029856775, 49.65682690034362] + } + }, + { + "id": "MVBus21726", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6899144761105565, 49.65734579505471] + } + }, + { + "id": "MVBus22602", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.687000916584208, 49.65872643345839] + } + }, + { + "id": "MVBus22603", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.678752083502674, 49.657632600450846] + } + }, + { + "id": "MVBus22604", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.673893732207176, 49.65699408075931] + } + }, + { + "id": "MVLV01706", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6706848356208555, 49.656587653461884] + } + }, + { + "id": "MVBus26721", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.674277152501746, 49.65696686252891] + } + }, + { + "id": "MVLV01698", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.67396768671466, 49.655955025085554] + } + }, + { + "id": "MVLV10776", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6752788266700036, 49.65550693267713] + } + }, + { + "id": "MVLV09700", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6773448547737, 49.65466658066605] + } + }, + { + "id": "MVLV09696", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6780747779003309, 49.655274905822935] + } + }, + { + "id": "MVLV01697", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.678922603714337, 49.65539083429302] + } + }, + { + "id": "MVLV10768", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6806498367623357, 49.654726771172655] + } + }, + { + "id": "MVBus32481", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.676470873384789, 49.653553577574854] + } + }, + { + "id": "MVLV13410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.679931285366726, 49.65155465719737] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV15", + "geometry": { + "type": "Point", + "coordinates": [-1.751702612915616, 49.653801085335864] + } + }, + { + "id": "MVBranch34116", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV15", + "bus2": "MVBus01881", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.751702612915616, 49.653801085335864], + [-1.751748734460548, 49.65384507495183], + [-1.751748734460548, 49.65384507495183], + [-1.751790150159045, 49.65387028475741], + [-1.751810276327588, 49.653882545108324], + [-1.751814757753236, 49.65389524435384], + [-1.751729575993817, 49.65395420280918], + [-1.751750236824847, 49.65398470050129], + [-1.751694134911765, 49.65402853028565], + [-1.751692487066552, 49.65403907159969], + [-1.751699941927443, 49.654046877174686], + [-1.751709491778441, 49.654048334955746], + [-1.751726443067687, 49.654059695439734], + [-1.75173645898574, 49.654076290348044], + [-1.751739217834648, 49.6540951449433], + [-1.75173215522583, 49.65411554554525], + [-1.751722757422452, 49.65412997291849], + [-1.751723830062776, 49.654135575152736], + [-1.751742356405606, 49.654165191753165], + [-1.751764818899627, 49.654189828179526], + [-1.751764648988911, 49.65419548140606], + [-1.751690469929741, 49.65426935566007], + [-1.751501935380691, 49.65445071012209], + [-1.751420572147751, 49.65453570827406], + [-1.75134861697713, 49.6546228164401], + [-1.75134861697713, 49.6546228164401] + ] + }, + "length": 0.1036641105058596, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42102", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01881", + "bus2": "MVBus01882", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.75134861697713, 49.6546228164401], + [-1.75134861697713, 49.6546228164401], + [-1.751301699863922, 49.654679626910905], + [-1.751224296376544, 49.65476771947278], + [-1.751100546133867, 49.6548972883225], + [-1.751052576033689, 49.654996076649034], + [-1.751044408350226, 49.655049167363906], + [-1.751003680661414, 49.655114248702745], + [-1.750901483223386, 49.65519511233728], + [-1.750794860278051, 49.65526725852473], + [-1.750704441102756, 49.65534006208172], + [-1.75039486080823, 49.65556098118696], + [-1.75011787106141, 49.65575459326522], + [-1.749888936348456, 49.655912318591824], + [-1.749655937995882, 49.656058076413316], + [-1.749388737788516, 49.65619571752415], + [-1.749247494883003, 49.65626217011036], + [-1.749129755819926, 49.6563427566015], + [-1.748892816046397, 49.65647049847278], + [-1.748772980648936, 49.656540669802745], + [-1.748513557560205, 49.65669780317539], + [-1.748186064783585, 49.65692013000711], + [-1.747983666507208, 49.65706807916889], + [-1.747642077288224, 49.657300556491506], + [-1.747516729666441, 49.65738703651531], + [-1.747388981747892, 49.65748246427945], + [-1.7472760210709, 49.657560863966594], + [-1.7471836220006, 49.657640188043864], + [-1.746934468053926, 49.65781859834436], + [-1.746526064290259, 49.658154217090946], + [-1.746164656561502, 49.65841493919094], + [-1.745754213658427, 49.658724526713115], + [-1.745452963376744, 49.65895863891651], + [-1.745214800654465, 49.659158724246375], + [-1.744923711583319, 49.65937412884914], + [-1.744573940809986, 49.65963748318975], + [-1.744491303074585, 49.659699713023215], + [-1.74438219095979, 49.65979272771007], + [-1.744198002184347, 49.659834102921934], + [-1.744122641731567, 49.65983999045752], + [-1.744064463406356, 49.659839875727315], + [-1.744000344370419, 49.65984203868371], + [-1.743862639428613, 49.65987398568658], + [-1.743638085419002, 49.659918691013885], + [-1.743442887572666, 49.65998781915069], + [-1.743212138485946, 49.660083208629096], + [-1.743084759818112, 49.66014327731511], + [-1.7427775612443, 49.660310245114104], + [-1.742533892358992, 49.660445025208595], + [-1.742360146615032, 49.66054527117987], + [-1.742178625896325, 49.66063077022418], + [-1.741827036292318, 49.660779915779905], + [-1.741334539666645, 49.660985302414524], + [-1.741161366808124, 49.661056570729464], + [-1.741063903212354, 49.6610966810873], + [-1.74092799477829, 49.661147682404945], + [-1.74077063337072, 49.661203956936156], + [-1.740341448723128, 49.661343132411396], + [-1.740302514703939, 49.661351719623156], + [-1.740290461268839, 49.66135066902887], + [-1.740283184756773, 49.66134196655046], + [-1.740274413606927, 49.66131821574936], + [-1.740310141813682, 49.661051161297074], + [-1.740339303023295, 49.66088039681988], + [-1.740344908404654, 49.66083028057313], + [-1.740359131482788, 49.66074761715677], + [-1.740384337160247, 49.660660240124315], + [-1.740420562289238, 49.66056428137167], + [-1.740481426478069, 49.66038339262529], + [-1.740501661219831, 49.66029189355094], + [-1.740514314072042, 49.66014336661246], + [-1.740512856267667, 49.66010903671811], + [-1.740479446878883, 49.65987962629042], + [-1.740479446878883, 49.65987962629042] + ] + }, + "length": 1.2806813373079808, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34946", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01882", + "bus2": "MVBus01883", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.740479446878883, 49.65987962629042], + [-1.740479446878883, 49.65987962629042], + [-1.740474071432376, 49.65985329702724], + [-1.740475099216177, 49.65984155390997], + [-1.740480619730333, 49.659832635948426], + [-1.74049378387742, 49.65982090644167], + [-1.740501648745728, 49.65981254794499], + [-1.740507517331799, 49.65980382508198], + [-1.740510880721519, 49.65979668843317], + [-1.740510884394161, 49.659788594891516], + [-1.74050937689303, 49.65978204506886], + [-1.740500875379599, 49.65976997565485], + [-1.740421007668303, 49.659690249537704], + [-1.74022852633044, 49.659502935316866], + [-1.740108664693464, 49.65937833446222], + [-1.739964296243733, 49.6592305039367], + [-1.739948388256929, 49.659212083450164], + [-1.739936335416193, 49.65920098798228], + [-1.739922300862214, 49.65918953664039], + [-1.739893746325947, 49.659173035119764], + [-1.739879121085537, 49.65916649570173], + [-1.739831249884304, 49.659121688670226], + [-1.739767953307384, 49.659048211167374], + [-1.739676058101628, 49.65892459189616], + [-1.739615603991094, 49.658841441313264], + [-1.739602095296559, 49.65881612347223], + [-1.739593072243265, 49.65878938650556], + [-1.739574501702686, 49.658651578794704], + [-1.739563651314382, 49.65853651422431], + [-1.739564241361584, 49.658453644657506], + [-1.739562513116073, 49.65844433250798], + [-1.739556691304043, 49.658433027032444], + [-1.739549264879466, 49.658426253989326], + [-1.739527369643052, 49.658415067486075], + [-1.739513122167437, 49.658405107066926], + [-1.739506132999521, 49.65839150282499], + [-1.739504943559619, 49.658327433987914], + [-1.739501605994963, 49.65818315074582], + [-1.739493288053887, 49.65811187615185], + [-1.739453961641885, 49.657968805593946], + [-1.739377911403589, 49.65776457213422], + [-1.739304317806408, 49.65757026470002], + [-1.739266299317639, 49.65750105197944], + [-1.739256976487962, 49.65748407315334], + [-1.739246116056332, 49.657470212647816], + [-1.739232476857514, 49.657455555495524], + [-1.739217779813456, 49.65744412639509], + [-1.739198824306653, 49.65743262495761], + [-1.739179044079239, 49.657423282576474], + [-1.739130507250704, 49.657407022537775], + [-1.739061957345631, 49.65739080731378], + [-1.739025458978518, 49.657385643274345], + [-1.738915539587075, 49.65737315995609], + [-1.738881067549643, 49.657371335834526], + [-1.738860053103217, 49.65736890541017], + [-1.738821540846347, 49.657357784054184], + [-1.73876757639012, 49.6573507354131], + [-1.73867161536302, 49.65733663053159], + [-1.738601732838121, 49.65733025300006], + [-1.73850233662905, 49.65732567907416], + [-1.738398217897442, 49.65732250515459], + [-1.738194313133802, 49.657314904991445], + [-1.738089932756446, 49.65730845728815], + [-1.737982516156575, 49.657292966200124], + [-1.737882857629756, 49.65726656634259], + [-1.737746916927861, 49.65722037258456], + [-1.737698927096434, 49.65720384177042], + [-1.737601693439361, 49.65717640678765], + [-1.73750784755023, 49.65715963986516], + [-1.737408183156507, 49.657151530966466], + [-1.737311770684144, 49.65714753902869], + [-1.737215513894139, 49.657147921212555], + [-1.737108532106675, 49.65714306206995], + [-1.737006773914737, 49.65714307181737], + [-1.736910746753859, 49.65713852702422], + [-1.736814255557686, 49.657122801883055], + [-1.736724861578887, 49.65710384310347], + [-1.736637269834277, 49.657083861353335], + [-1.736461741207677, 49.65704200284033], + [-1.73626444365085, 49.65699363795306], + [-1.736175947284714, 49.65697533200083], + [-1.735876871097662, 49.65690555558378], + [-1.73557208872794, 49.65683283210489], + [-1.735297533928657, 49.65677000744627], + [-1.735204918608509, 49.656747469017866], + [-1.735109019192504, 49.656726129183966], + [-1.734880330154187, 49.65666885490597], + [-1.734524089167194, 49.65655414752372], + [-1.734355293943281, 49.656491097487056], + [-1.73427080139386, 49.656456126886056], + [-1.734259751213325, 49.65645079741933], + [-1.734249204739566, 49.65644258233416], + [-1.734240217541812, 49.65643099647164], + [-1.734232635057423, 49.65642121582566], + [-1.73422233807747, 49.65641352290978], + [-1.734205948614401, 49.65640551345711], + [-1.734109939342267, 49.6563730705961], + [-1.734051494509664, 49.656356728369346], + [-1.733969098249313, 49.656338809084446], + [-1.733888052209557, 49.656314900145844], + [-1.733888052209557, 49.656314900145844] + ] + }, + "length": 0.7059455867207443, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42411", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01883", + "bus2": "MVBus01884", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.733888052209557, 49.656314900145844], + [-1.733888052209557, 49.656314900145844], + [-1.733820007778513, 49.65628016708811], + [-1.733763752106464, 49.656247869986075], + [-1.733710070903023, 49.65621450602487], + [-1.733640511623304, 49.6561677376844], + [-1.733539253676595, 49.65610372684678], + [-1.733467343239139, 49.65606480720204], + [-1.733343931417372, 49.65601790833194], + [-1.733283539586307, 49.65600024638956], + [-1.73320693907129, 49.65598811172926], + [-1.733134113689259, 49.65598058015306], + [-1.732764388265359, 49.655963883059265], + [-1.732455019590271, 49.655959030137886], + [-1.732308861926483, 49.65595895590221], + [-1.732156086784187, 49.65595632535174], + [-1.732071515123761, 49.655956948938424], + [-1.731988798417747, 49.65595391300292], + [-1.731813324684369, 49.655956200132806], + [-1.731619674397655, 49.655955501280054], + [-1.731515826317521, 49.65595011823244], + [-1.731404434610655, 49.65595192214882], + [-1.731288262322996, 49.65596359881823], + [-1.731171657834058, 49.65598582931513], + [-1.731065502343024, 49.656015756745845], + [-1.730869722261673, 49.656073949329844], + [-1.730761570787878, 49.65611115571432], + [-1.73043046871671, 49.65621412200755], + [-1.730326055201905, 49.656244538733], + [-1.730217744128323, 49.656268989382525], + [-1.729903556452437, 49.65634230320746], + [-1.729795845570611, 49.656351535697574], + [-1.729682898084139, 49.65636597102383], + [-1.729570647608569, 49.65637438471132], + [-1.729448850872821, 49.65638989066015], + [-1.729213793071298, 49.65644594757036], + [-1.729129184628637, 49.65646852136912], + [-1.729014250779628, 49.6564953967068], + [-1.728901490965555, 49.65651601191794], + [-1.728791966639698, 49.65652491776152], + [-1.728662672874595, 49.65653622350812], + [-1.728516880886691, 49.65654596131145], + [-1.728475245323393, 49.65653576004882], + [-1.728411991139697, 49.65654194149451], + [-1.728370140263912, 49.656547799304136], + [-1.728312906960772, 49.656559479695645], + [-1.728312906960772, 49.656559479695645] + ] + }, + "length": 0.42800395801572233, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34037", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01884", + "bus2": "MVBus01885", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.728312906960772, 49.656559479695645], + [-1.728312906960772, 49.656559479695645], + [-1.728274454180884, 49.65656660814347], + [-1.728233685202301, 49.656576826950065], + [-1.728205776997936, 49.656585732281826], + [-1.728161474180365, 49.65660270638717], + [-1.728061212388786, 49.65664456408184], + [-1.727946166206508, 49.65668029090196], + [-1.727817705683487, 49.65673592842011], + [-1.727739462930876, 49.65677285538332], + [-1.727739462930876, 49.65677285538332] + ] + }, + "length": 0.047953236893901165, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42412", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01885", + "bus2": "MVBus01886", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.727739462930876, 49.65677285538332], + [-1.727739462930876, 49.65677285538332], + [-1.727707492689713, 49.656786411383656], + [-1.727596864159143, 49.656817960710654], + [-1.727485560714758, 49.656841394270465], + [-1.727382824582085, 49.656858137125596], + [-1.727382824582085, 49.656858137125596] + ] + }, + "length": 0.027578746668158054, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40756", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01886", + "bus2": "MVBus01887", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.727382824582085, 49.656858137125596], + [-1.727382824582085, 49.656858137125596], + [-1.727255130419084, 49.656876141052194], + [-1.727120294379758, 49.65688309901938], + [-1.726979327246614, 49.65688004717326], + [-1.726843528677935, 49.65687180364602], + [-1.726712400318607, 49.65686184736043], + [-1.726577844568127, 49.65685563908711], + [-1.726303410859262, 49.656853436636425], + [-1.726171836378063, 49.656854564681474], + [-1.72585793709381, 49.656842095274015], + [-1.725666382306666, 49.65683313312166], + [-1.725605568753938, 49.656832576567226], + [-1.725485392503197, 49.656832808501164], + [-1.725251464483659, 49.65683062826861], + [-1.725025826734552, 49.656825228625394], + [-1.724798199183486, 49.65682180180917], + [-1.724685456448137, 49.65681849206072], + [-1.7245698809084, 49.65681631146881], + [-1.72445706960357, 49.65681214051932], + [-1.72435163705248, 49.65680356715185], + [-1.724250281210615, 49.6567924378171], + [-1.723947318268317, 49.6567544799531], + [-1.723840359322548, 49.656747782887855], + [-1.723728787517464, 49.65674490955833], + [-1.723625804781101, 49.65673682886024], + [-1.723625804781101, 49.65673682886024] + ] + }, + "length": 0.2724446957927151, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43049", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01887", + "bus2": "MVBus01888", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.723625804781101, 49.65673682886024], + [-1.723625804781101, 49.65673682886024], + [-1.723520377064923, 49.656727616140266], + [-1.723422239509832, 49.65671706153705], + [-1.723311255510849, 49.65671043616149], + [-1.723198071900167, 49.65669323725738], + [-1.723127687111947, 49.65669077053708], + [-1.722701786187468, 49.65666164777939], + [-1.722598063002425, 49.65666565914847], + [-1.722487643297865, 49.65665811482743], + [-1.721660003373815, 49.65657170621557], + [-1.721549796078765, 49.65656682472705], + [-1.721538047690914, 49.65656453908364], + [-1.721481223908684, 49.65654553767339], + [-1.721465358631225, 49.656543390140634], + [-1.721448147102664, 49.65654503768671], + [-1.721255295561688, 49.65660136244499], + [-1.721069041713968, 49.65666818473525], + [-1.720715544870907, 49.65682262907381], + [-1.720625975255681, 49.656869589236436], + [-1.720559774543294, 49.656919515420164], + [-1.720502049314613, 49.65697237663683], + [-1.720432929839997, 49.657027229656556], + [-1.720368762404759, 49.65707172793302], + [-1.720011956842451, 49.65733730345117], + [-1.719951248175017, 49.65738715296471], + [-1.719840359650761, 49.65746667914164], + [-1.719546904359343, 49.65767631694214], + [-1.719519017524534, 49.65769091177698], + [-1.719509007047312, 49.657693756377626], + [-1.719501528831518, 49.657691866901644], + [-1.71947780320136, 49.6576811159884], + [-1.719446489720156, 49.65766692355118], + [-1.719227931378966, 49.657576259766756], + [-1.71900357914789, 49.657490762758826], + [-1.718885676065933, 49.65744245086185], + [-1.718681878423483, 49.657368404133045], + [-1.718654363643581, 49.65735999227237], + [-1.718534760648144, 49.657332267095995], + [-1.718410586473253, 49.65730750072945], + [-1.718162801127251, 49.657240835877104], + [-1.718011097134541, 49.6571830809291], + [-1.717981256567952, 49.65716945924549], + [-1.717977370360496, 49.65716274615818], + [-1.718043519437144, 49.657084622500825], + [-1.718045612695117, 49.65708081142184], + [-1.718041416313051, 49.657076293929585], + [-1.717999506135629, 49.65704938112844], + [-1.717887107372415, 49.65698595611869], + [-1.717832819310818, 49.656942048523675], + [-1.717730881850192, 49.65680516306199], + [-1.717691274506387, 49.65674084477619], + [-1.71767883685665, 49.6567110825568], + [-1.717562557812384, 49.656502197440894], + [-1.717554983546297, 49.65648533842219], + [-1.717554640217861, 49.65643277929776], + [-1.717493476214133, 49.656356746702166], + [-1.717495896332177, 49.65633893221701], + [-1.717447994085462, 49.65618250205623], + [-1.717439573011385, 49.6561006550268], + [-1.717461902305589, 49.656001905449315], + [-1.717487775937777, 49.655815008627954], + [-1.717500134567444, 49.65563914002085], + [-1.717514947328719, 49.655542198021614], + [-1.717514531824025, 49.65544048776329], + [-1.717503391856739, 49.655336645997224], + [-1.717488942745687, 49.655245360880855], + [-1.717460651659158, 49.65514862256692], + [-1.717420766249411, 49.65506284813152], + [-1.717375544103659, 49.65497632630912], + [-1.717274162708445, 49.65478000763229], + [-1.717167398701707, 49.654606566567345], + [-1.717061652365184, 49.654433720776446], + [-1.716959036949793, 49.65427010427631], + [-1.716914447426297, 49.654185422525465], + [-1.7168409726092, 49.654008698305404], + [-1.716811740245133, 49.65391821420138], + [-1.716763546412261, 49.65375806135427], + [-1.716732522799451, 49.653638078556575], + [-1.716689212363299, 49.65343795173439], + [-1.71667331127041, 49.65336443948759], + [-1.716670378709844, 49.65335769438859], + [-1.716662418509404, 49.653353914472994], + [-1.716653156141748, 49.65335204865622], + [-1.716596781264168, 49.65334802969377], + [-1.716559930839835, 49.653348644085064], + [-1.716551546324883, 49.65335172175416], + [-1.716544091, 49.65336038866352], + [-1.716472226277132, 49.653426869160796], + [-1.716395457773024, 49.65349787533786], + [-1.716316735389152, 49.65356242728845], + [-1.716236904998456, 49.65364318499962], + [-1.716023337473649, 49.65386188282999], + [-1.715893174600961, 49.65400872264407], + [-1.715704903113184, 49.65422035831509], + [-1.71553225529787, 49.65439942059411], + [-1.715471504984857, 49.65444283069003], + [-1.715456092169358, 49.65446605331468], + [-1.715449572571996, 49.65448649605519], + [-1.715447633958364, 49.654538430245495], + [-1.715447633958364, 49.654538430245495] + ] + }, + "length": 1.0872513297341535, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37385", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01888", + "bus2": "MVLV16887", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.715447633958364, 49.654538430245495], + [-1.715447633958364, 49.654538430245495], + [-1.715448192070262, 49.65460696204013], + [-1.715457004433096, 49.6546500380675], + [-1.715471451256319, 49.65469969675278], + [-1.715498603110257, 49.654796617488635], + [-1.715526802946384, 49.65491560687598], + [-1.715556713031621, 49.65504286608316], + [-1.715567040711619, 49.65508827435797], + [-1.715570275973833, 49.6551110251187], + [-1.715571036710964, 49.655132617801705], + [-1.715564102439639, 49.65519436836121], + [-1.71555179727194, 49.655249716275684], + [-1.715530624332355, 49.655313742345704], + [-1.715489586974421, 49.65542933186875], + [-1.715414558894032, 49.65562509579396], + [-1.715402884330536, 49.6556427256538], + [-1.715388083085744, 49.65565639560863], + [-1.715372240448655, 49.65566236683133], + [-1.715351608436699, 49.65566524317796], + [-1.715312147792104, 49.655666672968934], + [-1.715260598108026, 49.65566222189718], + [-1.715152477351462, 49.65563005324065], + [-1.71508526536511, 49.655598465577974], + [-1.715020937895638, 49.65555803148393], + [-1.71498123049807, 49.65552202435255], + [-1.714894808491883, 49.65542981362902], + [-1.714823166712625, 49.655365839066796], + [-1.71474497215027, 49.655310563942564], + [-1.714658157317202, 49.65526289744951], + [-1.714576855973218, 49.65523301340164], + [-1.714461502531446, 49.655200277069156], + [-1.71438049769835, 49.65518701922765], + [-1.714302012179009, 49.655179666014696], + [-1.714125088683956, 49.655184925691366], + [-1.714045455182909, 49.65518892341494], + [-1.713974032499748, 49.65520595513098], + [-1.713930000794875, 49.65521940775234], + [-1.713805483504456, 49.65526483536296], + [-1.713580541187305, 49.65536220340899], + [-1.713317541539384, 49.65547082699354], + [-1.713257574448967, 49.655490136501335], + [-1.713201716977964, 49.65549666483663], + [-1.713154040780268, 49.65549755066954], + [-1.713105457586083, 49.65549730680938], + [-1.713073893758862, 49.65551479298841], + [-1.713232659435066, 49.655672728402635], + [-1.713342741318447, 49.65578643159105], + [-1.713512475201262, 49.655959133893184], + [-1.713535733563725, 49.65598425370082], + [-1.713540888669226, 49.65600398162917], + [-1.713529570082037, 49.65603080774028], + [-1.713499411849716, 49.65604942497534], + [-1.7134923699166786, 49.656042385779635] + ] + }, + "length": 0.39624899055842877, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38550", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16887", + "bus2": "MVBus09389", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7134923699166786, 49.656042385779635], + [-1.713485327983641, 49.65603534658393], + [-1.713509722594212, 49.65601863092429], + [-1.713518356067376, 49.65600176855485], + [-1.713516623396457, 49.6559923394178], + [-1.71339757826996, 49.65586730012102], + [-1.713061830997298, 49.65552876662905], + [-1.713022374869907, 49.655547164491274], + [-1.712983219393751, 49.65556934713522], + [-1.712941021202669, 49.6555887989746], + [-1.712115718830422, 49.65593034753014], + [-1.711730719092233, 49.65608848126368], + [-1.711675834553732, 49.65611913028859], + [-1.711668127535593, 49.65613859631369], + [-1.711689943331042, 49.656157074266176], + [-1.711909209699889, 49.65638021466925], + [-1.711927197560893, 49.656420429795006], + [-1.712045895311028, 49.65654130047773], + [-1.712066626044882, 49.65665720397143], + [-1.712493720851563, 49.65708091694548], + [-1.712596763887438, 49.657184290066596], + [-1.712616120654328, 49.65720371345815], + [-1.712605257166425, 49.65721761988691], + [-1.712231384433458, 49.65739404176467], + [-1.712231384433458, 49.65739404176467] + ] + }, + "length": 0.36205172525827967, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09389", + "bus2": "MVLV12762", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.712231384433458, 49.65739404176467], + [-1.712231384433458, 49.65739404176467], + [-1.712192984930894, 49.6574121610954], + [-1.712159321627441, 49.65741875531577], + [-1.712145875642629, 49.657418288129165], + [-1.712130679684726, 49.65741375193847], + [-1.712115156745159, 49.65740509911443], + [-1.711907540458581, 49.657280918818046], + [-1.711916605385292, 49.65727052579175], + [-1.711725937688394, 49.65713753178156], + [-1.711583842498299, 49.65702903526348], + [-1.711572488149354, 49.657020368759845], + [-1.711558455636018, 49.657020712484226], + [-1.711543004997499, 49.65702168818157], + [-1.71152412661641, 49.6570241544492], + [-1.711495638379682, 49.657030152654194], + [-1.711471050112896, 49.657040606532085], + [-1.711427640974446, 49.65706314674895], + [-1.711326401126814, 49.65713576828944], + [-1.711178373342992, 49.657241591156435], + [-1.711129545502673, 49.65730718898692], + [-1.710964863616365, 49.65743007013069], + [-1.710917324898205, 49.657471785508555], + [-1.710902208297853, 49.65748604090393], + [-1.710900130160686, 49.657490921444534], + [-1.710903842733294, 49.65750662407541], + [-1.710943091855127, 49.65756513807867], + [-1.711091955908279, 49.65770985551921], + [-1.711172613908541, 49.657764933515004], + [-1.71127897930944, 49.657801489868255], + [-1.711395063912293, 49.657840247784556], + [-1.711606505041342, 49.65791019285251], + [-1.711681734703578, 49.65793702679832], + [-1.711779863054719, 49.65798096249784], + [-1.711870622953638, 49.6580343261077], + [-1.712056337251808, 49.6581450223316], + [-1.712245397356525, 49.65826661315606], + [-1.712324524894339, 49.658324718178164], + [-1.712350010711977, 49.65834770431951], + [-1.712353846470791, 49.65836041726462], + [-1.712354377241995, 49.65837599254943], + [-1.712347265709976, 49.65839319050284], + [-1.712216987090673, 49.65855367044792], + [-1.71219274716793, 49.65857305135032], + [-1.712191541104686, 49.65858890957691], + [-1.712193644176653, 49.65860649152026], + [-1.712198457245705, 49.65861825451696], + [-1.712223707211668, 49.65863391067126], + [-1.71235660303629, 49.6586886063232], + [-1.712366471624233, 49.65869286219185], + [-1.712372867915333, 49.658693340519584], + [-1.712387282718283, 49.658688038029595], + [-1.7123893567716906, 49.65869383173553] + ] + }, + "length": 0.33609166663042095, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40786", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12762", + "bus2": "MVBus11449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7123893567716906, 49.65869383173553], + [-1.712391430825098, 49.65869962544148], + [-1.712366463491168, 49.65870984935149], + [-1.712329867044583, 49.658722602724524], + [-1.712256396489699, 49.658696483631566], + [-1.712256396489699, 49.658696483631566] + ] + }, + "length": 0.011178451298859964, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39715", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11449", + "bus2": "MVLV04334", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.712256396489699, 49.658696483631566], + [-1.712256396489699, 49.658696483631566], + [-1.710321852037981, 49.658025946056945], + [-1.710282778109626, 49.658045355239715], + [-1.710266574479118, 49.65805377478471], + [-1.7102518017180843, 49.65805029431179] + ] + }, + "length": 0.1633930998192143, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32752", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04334", + "bus2": "MVBus12338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7102518017180843, 49.65805029431179], + [-1.710237028957051, 49.65804681383888], + [-1.710235630991269, 49.65803409122527], + [-1.710233210541606, 49.65798894880261], + [-1.709742877897143, 49.65781336148406], + [-1.709027236507815, 49.657513252788995], + [-1.709027337065763, 49.6575131235305], + [-1.709027337065763, 49.6575131235305] + ] + }, + "length": 0.10840662368023206, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47369", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus12338", + "bus2": "MVLV15648", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.709027337065763, 49.6575131235305], + [-1.709027337065763, 49.6575131235305], + [-1.709078447439429, 49.65744483349543], + [-1.70910413685254, 49.65743672632054], + [-1.709243868571788, 49.65728147298309], + [-1.70927004463494, 49.657178802084346], + [-1.709171592842444, 49.65691119515829], + [-1.709161114035063, 49.656835019230506], + [-1.709178943717271, 49.65678216730157], + [-1.709213577618374, 49.65673143308517], + [-1.709282230422975, 49.65668940781868], + [-1.709309897104711, 49.656687718058556], + [-1.709330561303463, 49.65668646034894], + [-1.7093355253425884, 49.65668006698276] + ] + }, + "length": 0.10369591850421968, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36355", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15648", + "bus2": "MVBus13302", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7093355253425884, 49.65668006698276], + [-1.709340489381714, 49.65667367361657], + [-1.709329753267087, 49.6566621445962], + [-1.709314685856429, 49.65664595843759], + [-1.70925708239761, 49.65667047439064], + [-1.7091817362423, 49.65671543026812], + [-1.709140181584584, 49.65676640494441], + [-1.709119175557376, 49.656831071376075], + [-1.709128857491687, 49.65691448596497], + [-1.709231752244283, 49.65718554132338], + [-1.709204094962056, 49.657270249726935], + [-1.709079928431331, 49.65741235692905], + [-1.709050308659278, 49.65742330230102], + [-1.708997902725297, 49.65748382115472], + [-1.708997902725297, 49.65748382115472] + ] + }, + "length": 0.10806723339486324, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44963", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13302", + "bus2": "MVLV11486", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.708997902725297, 49.65748382115472], + [-1.708997902725297, 49.65748382115472], + [-1.70899080914577, 49.65749200778738], + [-1.708641350771502, 49.65735922107077], + [-1.708317824143707, 49.657271455070045], + [-1.708232158722505, 49.65749326945597], + [-1.708031958614799, 49.65762181227458], + [-1.707995714311626, 49.657971564930534], + [-1.707765211274663, 49.658052551836846], + [-1.707832434285355, 49.6581942833001], + [-1.707891788280491, 49.65820681270175], + [-1.707911526188136, 49.65821098173353], + [-1.7079120407255814, 49.65821598234879] + ] + }, + "length": 0.181775916833722, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35158", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11486", + "bus2": "MVLV12761", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7079120407255814, 49.65821598234879], + [-1.707912555263027, 49.65822098296406], + [-1.707893846422766, 49.658226815163104], + [-1.70728082013845, 49.658417934068844], + [-1.706987688532517, 49.65839573781715], + [-1.706732680877934, 49.65836500960757], + [-1.706573219851772, 49.65854252791546], + [-1.706562769941867, 49.658554162777016], + [-1.7065522989454331, 49.658565793845284] + ] + }, + "length": 0.1149889768842972, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38115", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12761", + "bus2": "MVLV08515", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7065522989454331, 49.658565793845284], + [-1.706541827948999, 49.65857742491355], + [-1.706531335866019, 49.658589052188546], + [-1.706465928106193, 49.65866156864659], + [-1.706357742718672, 49.65844381625389], + [-1.706249486789871, 49.65787307454641], + [-1.706179981081413, 49.65731809616411], + [-1.705463418519071, 49.65740881212725], + [-1.705422985876509, 49.65730576926649], + [-1.705572328002484, 49.65728345028136], + [-1.705621360881812, 49.657255634576565], + [-1.705643949030106, 49.657226931042544], + [-1.705636377162732, 49.657185773595714], + [-1.705617410761321, 49.65715761340412], + [-1.705003391939472, 49.656878257686316], + [-1.704779965956333, 49.65682661494423], + [-1.704621314587347, 49.656820432037435], + [-1.704585739342022, 49.656339910157776], + [-1.704544587394893, 49.65632874945311], + [-1.704525433983989, 49.65632355320998], + [-1.704521667859076, 49.65632654314429] + ] + }, + "length": 0.3950658324564448, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08515", + "bus2": "MVLV08514", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.704521667859076, 49.65632654314429], + [-1.704517901734163, 49.656329533078605], + [-1.704529522185396, 49.65634070022345], + [-1.704551489265828, 49.65636181811624], + [-1.704600877122317, 49.65709309298921], + [-1.70448739715825, 49.657097055026256], + [-1.704466676196257, 49.657097774245564], + [-1.7044656244128835, 49.657095165588956] + ] + }, + "length": 0.0954492734387459, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08514", + "bus2": "MVLV08517", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7044656244128835, 49.657095165588956], + [-1.70446457262951, 49.65709255693235], + [-1.704483189309966, 49.65708661143169], + [-1.704537865828387, 49.65706917381683], + [-1.704527658725012, 49.65679488388282], + [-1.704336196685355, 49.65679434696009], + [-1.701970101623435, 49.65681465555627], + [-1.701869445153427, 49.656827134535476], + [-1.701849061214368, 49.65682965853941], + [-1.7018474404969435, 49.65682712281345] + ] + }, + "length": 0.22999332122252053, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08517", + "bus2": "MVLV11487", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7018474404969435, 49.65682712281345], + [-1.701845819779519, 49.6568245870875], + [-1.701862948465297, 49.65681699209384], + [-1.701866146588843, 49.656815572417344], + [-1.70151764275735, 49.65681149732632], + [-1.701052135176404, 49.656834914108856], + [-1.700747383895348, 49.65687343948882], + [-1.700678846977321, 49.65671554402016], + [-1.700584261442887, 49.65664307418332], + [-1.700570842071872, 49.656632794038615], + [-1.7005694121374195, 49.65663345325234] + ] + }, + "length": 0.11338442666594911, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39714", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11487", + "bus2": "MVLV15647", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7005694121374195, 49.65663345325234], + [-1.700567982202967, 49.656634112466065], + [-1.700578541704473, 49.65664571103876], + [-1.700633692345302, 49.6567063051086], + [-1.700642458227036, 49.656812258665404], + [-1.700306136582797, 49.65692212180891], + [-1.699922879766692, 49.65708494217042], + [-1.699587068199308, 49.65714653256768], + [-1.699567092677405, 49.65715019358661], + [-1.699553504846526, 49.65715834002786] + ] + }, + "length": 0.10807935641066367, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43708", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15647", + "bus2": "MVLV08518", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.699553504846526, 49.65715834002786], + [-1.699539917015647, 49.65716648646911], + [-1.699532716875093, 49.657179118335385], + [-1.699439304912264, 49.6573431103775], + [-1.699263351694736, 49.65739605663836], + [-1.699336463270182, 49.65745834504667], + [-1.699268465181139, 49.657458014960646], + [-1.69920943625858, 49.65746546981428], + [-1.699113182504093, 49.657408485634605], + [-1.698304527016932, 49.65755999876808], + [-1.698062893911774, 49.6575567010572], + [-1.697461583041591, 49.657565011758095], + [-1.697218490084788, 49.656871994905885], + [-1.697744693442282, 49.65672671709386], + [-1.697786406850478, 49.65682882008235], + [-1.697797954859862, 49.656833839394665], + [-1.69781519840905, 49.6568413395046], + [-1.697825356573214, 49.65683842436038] + ] + }, + "length": 0.3185546944113785, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39229", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08518", + "bus2": "MVLV12764", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.697825356573214, 49.65683842436038], + [-1.697835514737378, 49.65683550921616], + [-1.697838602035088, 49.65682218732805], + [-1.697840623409652, 49.65681342419931], + [-1.697778838018975, 49.656686811786194], + [-1.697146739811798, 49.65684296795896], + [-1.69739248718273, 49.65756831420456], + [-1.696496172131778, 49.65761570120611], + [-1.696265553264628, 49.65763343469004], + [-1.695681449886193, 49.65758803548188], + [-1.695669456761429, 49.65762239072309], + [-1.695665022605017, 49.65763480422198], + [-1.6956447814282445, 49.65763502482898] + ] + }, + "length": 0.2782026664562803, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39585", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12764", + "bus2": "MVBus20890", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6956447814282445, 49.65763502482898], + [-1.695624540251472, 49.657635245435976], + [-1.69561746988984, 49.65762308953775], + [-1.695596591587301, 49.657584524501154], + [-1.694976984193771, 49.65752805771521], + [-1.694881325517064, 49.65753685714968], + [-1.694881325517064, 49.65753685714968] + ] + }, + "length": 0.058144213787439426, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38558", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20890", + "bus2": "MVBus20891", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.694881325517064, 49.65753685714968], + [-1.694881325517064, 49.65753685714968], + [-1.694870805593646, 49.657538529645755], + [-1.694867677118124, 49.657541007914595], + [-1.694864664470505, 49.6575433744138], + [-1.694863785438515, 49.657545570887244], + [-1.694864353970346, 49.65754890611801], + [-1.694865902262429, 49.65755131844428], + [-1.694869182876066, 49.657554266536636], + [-1.694872469706283, 49.65755554182855], + [-1.694900047651829, 49.65756428058578], + [-1.69495085752137, 49.657573045378875], + [-1.69497044900775, 49.657574856348404], + [-1.694972621131005, 49.65757359695261], + [-1.694972633356441, 49.6575718250351], + [-1.694970869752442, 49.657570193235706], + [-1.694950269519778, 49.65756263374962], + [-1.694811584170032, 49.6574286644253], + [-1.694754658072436, 49.65738985285587], + [-1.694675833199034, 49.65732705985422], + [-1.694653623707265, 49.657307207334895], + [-1.694653623707265, 49.657307207334895] + ] + }, + "length": 0.0485068386520877, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37274", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20891", + "bus2": "MVLV09710", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.694653623707265, 49.657307207334895], + [-1.694653623707265, 49.657307207334895], + [-1.694648566234924, 49.657308239155654], + [-1.694616194921495, 49.657292834828844], + [-1.694596778440511, 49.65726626179332], + [-1.694512415501688, 49.65720139614901], + [-1.694445549994414, 49.65717316705252], + [-1.694191078550513, 49.65711696436926], + [-1.694134447528161, 49.6571158569682], + [-1.69406229696653, 49.65711800936961], + [-1.693954598809285, 49.6571400864365], + [-1.693845082201221, 49.65717595544083], + [-1.69371451513302, 49.6572215181459], + [-1.693658901335396, 49.65723923375691], + [-1.693418375417, 49.657295635655856], + [-1.693343187764655, 49.65731071200743], + [-1.693264776748028, 49.65731970890518], + [-1.693142450457068, 49.657327246203685], + [-1.693015767034796, 49.65733100782697], + [-1.692887212891164, 49.657323546138336], + [-1.692811884510095, 49.65731494078992], + [-1.692721682262498, 49.65728324371582], + [-1.692711097980776, 49.65728077265942], + [-1.692711156367779, 49.657279583714285], + [-1.692735809065025, 49.657273753742984], + [-1.692739415519118, 49.65727153837497], + [-1.692740306193944, 49.657266859621686], + [-1.692772970921632, 49.65725584390002], + [-1.693065527594914, 49.657190012477756], + [-1.693106803183528, 49.657178934615764], + [-1.693158118507119, 49.65716379041707], + [-1.693240604745891, 49.657135908596906], + [-1.693368485511657, 49.6570808949317], + [-1.693409573087288, 49.657057629485564], + [-1.693405926102143, 49.65703585441595], + [-1.693390492821437, 49.65701024557583], + [-1.693365773667793, 49.656988426172354], + [-1.693308320628536, 49.656955017980884], + [-1.693248146998977, 49.65692591785079], + [-1.693207826064977, 49.656910346367596], + [-1.693125303768984, 49.65683596744389], + [-1.693128378483538, 49.65682842827083], + [-1.693130756861769, 49.65682259388035], + [-1.693135790036104, 49.656818451549476], + [-1.693156295865918, 49.656820969721146], + [-1.6931544029856775, 49.65682690034362] + ] + }, + "length": 0.2472968140411514, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42413", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09710", + "bus2": "MVBus21726", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6931544029856775, 49.65682690034362], + [-1.693152510105437, 49.656832830966096], + [-1.693140690954655, 49.65683523901614], + [-1.6931427118128, 49.65683942511384], + [-1.693151481587454, 49.65684750491125], + [-1.693209476595427, 49.65690091227353], + [-1.693252669441853, 49.65691759306439], + [-1.693316316485088, 49.656947701527976], + [-1.693373238151906, 49.656981046487076], + [-1.693400287616367, 49.657004307973416], + [-1.693417151422491, 49.65703119104043], + [-1.693418858866021, 49.657062598676404], + [-1.693374304427203, 49.65708774214384], + [-1.693298166698752, 49.65712023250288], + [-1.693244050883247, 49.65714217841551], + [-1.69316248707433, 49.657169813689386], + [-1.693107868783109, 49.65718522978719], + [-1.692888546978312, 49.65723633810071], + [-1.692779778709486, 49.65726048203007], + [-1.692698423186007, 49.65727621305517], + [-1.692654583441833, 49.657281315287605], + [-1.692542193906826, 49.657285058904975], + [-1.692484466808352, 49.65728620836523], + [-1.692424940469563, 49.657286851204006], + [-1.692292977895417, 49.65728550935727], + [-1.692259680432823, 49.65728221209627], + [-1.692186219099461, 49.657281979071804], + [-1.692110428824001, 49.65727856831186], + [-1.692049488588526, 49.65727656932213], + [-1.691962037720081, 49.65727547120089], + [-1.691854401241619, 49.65727450571742], + [-1.69169634795539, 49.65727709853729], + [-1.691577772454402, 49.65727863729285], + [-1.691391974011256, 49.657284563616756], + [-1.691212884622486, 49.65729212768768], + [-1.69108212142755, 49.65730193115109], + [-1.690998013026594, 49.65731000121259], + [-1.690813290305129, 49.657319550737675], + [-1.690697196909293, 49.65732322711233], + [-1.69051864108191, 49.657326150283794], + [-1.690323406593425, 49.65732380134952], + [-1.690219763089159, 49.65731972499459], + [-1.690038602812441, 49.65730440762694], + [-1.689973494217544, 49.65730382327296], + [-1.689957419253372, 49.65730619281971], + [-1.689938164927739, 49.6573130295151], + [-1.689928953469567, 49.65731723884458], + [-1.689922508665218, 49.65732525878499], + [-1.689926846029425, 49.65734439413178], + [-1.6899144761105565, 49.65734579505471] + ] + }, + "length": 0.29618321913091505, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43082", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus21726", + "bus2": "MVBus22602", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6899144761105565, 49.65734579505471], + [-1.689902106191688, 49.65734719597764], + [-1.689893952537334, 49.65733253099631], + [-1.689883517880255, 49.657327042259574], + [-1.689866566150205, 49.65732760652712], + [-1.689851832710317, 49.65732714375777], + [-1.689837756416026, 49.657320094654246], + [-1.689811194338158, 49.65732472864215], + [-1.689770822990218, 49.65734147643931], + [-1.68974781289917, 49.65735056931736], + [-1.689639749072734, 49.657403291763586], + [-1.689584894501837, 49.65743133942712], + [-1.689495601152914, 49.657486359498435], + [-1.689369875436402, 49.657567141318275], + [-1.689210031692182, 49.65767072116982], + [-1.689133511386455, 49.65772489319007], + [-1.688932299690713, 49.657873138758184], + [-1.688824045288466, 49.65796416534145], + [-1.688729443121585, 49.658049333075624], + [-1.688672923286662, 49.65809700313144], + [-1.688567768981974, 49.6581783583668], + [-1.688447336562443, 49.65826937611586], + [-1.688292981370783, 49.658385675994005], + [-1.688230391886822, 49.65843771123023], + [-1.688178301282593, 49.65846026177342], + [-1.688100506152315, 49.65850656213375], + [-1.68805498079456, 49.65852963155985], + [-1.68801859926527, 49.65854728007973], + [-1.687985278906541, 49.65856282143969], + [-1.68797193962116, 49.65856756360029], + [-1.687904903945472, 49.65859592573689], + [-1.687836406772483, 49.658618761177216], + [-1.687773406152993, 49.65864173744049], + [-1.687707055307805, 49.65866421364127], + [-1.687632341914936, 49.658685340380906], + [-1.687597756271063, 49.658693981598304], + [-1.6875535692144, 49.65870295120399], + [-1.687513904909563, 49.65871218398774], + [-1.687477338221695, 49.658720998979575], + [-1.687435773069277, 49.658727911989054], + [-1.687385894109799, 49.65873725072297], + [-1.687284757646732, 49.658750749410686], + [-1.687245627175155, 49.65875235679245], + [-1.687226644410474, 49.65875176526927], + [-1.687185800600312, 49.65874974274826], + [-1.687137085084551, 49.65874398943454], + [-1.687033931127971, 49.65873175588405], + [-1.687000916584208, 49.65872643345839], + [-1.687000916584208, 49.65872643345839] + ] + }, + "length": 0.27575724267606383, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47802", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22602", + "bus2": "MVBus22603", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.687000916584208, 49.65872643345839], + [-1.687000916584208, 49.65872643345839], + [-1.686970742780532, 49.658721825850186], + [-1.686864833669288, 49.65871276818489], + [-1.686750491666597, 49.65869620350682], + [-1.686520660235055, 49.65866625932611], + [-1.6862083366353, 49.65862557849003], + [-1.685909066963389, 49.6585867108749], + [-1.685685278281926, 49.6585573195575], + [-1.685476654697023, 49.65853280104184], + [-1.685442421346384, 49.65852870571752], + [-1.685112527216627, 49.65849354312171], + [-1.68488785090189, 49.65846447661544], + [-1.684736289368716, 49.658441063276726], + [-1.684603220068488, 49.658427124465256], + [-1.684470644531766, 49.658411190775794], + [-1.684344595507814, 49.65839826826076], + [-1.684220756570289, 49.658380524186136], + [-1.684094066483814, 49.65836456531888], + [-1.683971924911957, 49.65835007376753], + [-1.683761701283773, 49.65832087554532], + [-1.683691553446464, 49.65831032985342], + [-1.683572945631358, 49.65829427269268], + [-1.683356190893484, 49.65826673860415], + [-1.683221700182995, 49.65824951836259], + [-1.683098453486965, 49.658232598763526], + [-1.682968009314595, 49.65821469524507], + [-1.682850931220949, 49.65819888330731], + [-1.682764141959558, 49.65818897097931], + [-1.6826586781223, 49.65817569546537], + [-1.682623811273247, 49.6581705862859], + [-1.682558714169335, 49.65816435932101], + [-1.682453680575476, 49.65814336288646], + [-1.682345827490233, 49.65812297260189], + [-1.682233236042189, 49.658107136908164], + [-1.682123664688506, 49.6580979810145], + [-1.682014125147201, 49.65808272714925], + [-1.681904761130945, 49.658071280114264], + [-1.681797002800972, 49.65805876350617], + [-1.681580726631921, 49.658023917601746], + [-1.681473886690803, 49.65801145113601], + [-1.68136716295708, 49.65799711930074], + [-1.68126114165059, 49.657983438468484], + [-1.681110470795186, 49.65796302152122], + [-1.681041500542145, 49.65795404484363], + [-1.68093167446423, 49.65794006745609], + [-1.680756367723196, 49.65791674545396], + [-1.680650300094999, 49.657902472140094], + [-1.680544953383338, 49.65789224832794], + [-1.68044501573429, 49.657874552005886], + [-1.68034703628985, 49.65786518043657], + [-1.680244269316751, 49.65785148058563], + [-1.680161831826119, 49.65783718652244], + [-1.680092302984831, 49.65782779623007], + [-1.680008059258093, 49.65781712301027], + [-1.679921209671613, 49.65780484569685], + [-1.679752365909624, 49.657782314814504], + [-1.67968053626866, 49.65777343231517], + [-1.679465260113473, 49.657744736240076], + [-1.679356242520934, 49.65773116224051], + [-1.679204681506407, 49.65771085345038], + [-1.679075473908005, 49.65768786006316], + [-1.679026837248203, 49.65768184914107], + [-1.67897866340961, 49.65767344885779], + [-1.678926035329053, 49.65766477377808], + [-1.678883054155872, 49.65765933940972], + [-1.678846191645214, 49.65765192143305], + [-1.678785217146016, 49.657641742870545], + [-1.678752083502674, 49.657632600450846], + [-1.678752083502674, 49.657632600450846] + ] + }, + "length": 0.6082420532559634, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45639", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22603", + "bus2": "MVBus22604", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.678752083502674, 49.657632600450846], + [-1.678752083502674, 49.657632600450846], + [-1.678655771591739, 49.657619943933625], + [-1.67854619816165, 49.65760546145833], + [-1.678443407774987, 49.65759479130411], + [-1.678341877746072, 49.65757989779403], + [-1.678140109130628, 49.657554545845564], + [-1.678041590760031, 49.6575425375894], + [-1.67783766814151, 49.6575162135232], + [-1.677539407645088, 49.65747819134837], + [-1.677336141016467, 49.65745139506758], + [-1.67707260443018, 49.65741790267715], + [-1.676933881645884, 49.65739929630037], + [-1.676827859548407, 49.65738574657], + [-1.676619652239228, 49.657357764183985], + [-1.676530441792488, 49.6573467947611], + [-1.676437178503299, 49.6573343141322], + [-1.676244579576855, 49.6573080523875], + [-1.676050342062734, 49.65728455138865], + [-1.675954139358735, 49.65726991981983], + [-1.675892723527981, 49.65726327047057], + [-1.675856254239052, 49.65725714244844], + [-1.67569549060223, 49.65724570429279], + [-1.675651975270466, 49.65724385646937], + [-1.675641965335153, 49.6572426867701], + [-1.675631965147522, 49.65723583359685], + [-1.675569391305867, 49.657209367441276], + [-1.675398407174624, 49.65718528332874], + [-1.67531716495159, 49.6571754067692], + [-1.675186271725575, 49.65715594555002], + [-1.675092779518475, 49.65714582769529], + [-1.674930244527375, 49.657125428348955], + [-1.674868614969784, 49.65711887563815], + [-1.674804747012458, 49.6571097533888], + [-1.674692561111355, 49.657094958714595], + [-1.674600142995935, 49.65708546130469], + [-1.674486934848108, 49.65707070034376], + [-1.674416818339161, 49.65705979780329], + [-1.674329314720484, 49.65704814991709], + [-1.674269819481414, 49.65703756051881], + [-1.674195246251969, 49.65702687757574], + [-1.674086000254391, 49.65701881003487], + [-1.673966304130941, 49.657014011399724], + [-1.673934457361715, 49.65701363757407], + [-1.673928516287633, 49.65701154152207], + [-1.673927343536305, 49.65700543865399], + [-1.673924391873185, 49.65700014113187], + [-1.673922973085514, 49.656996896986335], + [-1.673920117920933, 49.65699564280755], + [-1.673893732207176, 49.65699408075931], + [-1.673893732207176, 49.65699408075931] + ] + }, + "length": 0.35978615142983944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38007", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22604", + "bus2": "MVLV01706", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.673893732207176, 49.65699408075931], + [-1.673893732207176, 49.65699408075931], + [-1.673707310915567, 49.65697781693429], + [-1.673406236814339, 49.65695676628434], + [-1.673209625311018, 49.6569555239853], + [-1.672890090963208, 49.65695318556568], + [-1.672307056857197, 49.65696001158772], + [-1.670580370829152, 49.65698705886373], + [-1.67057193383152, 49.656677104031814], + [-1.670680684591789, 49.65660224611452], + [-1.670679585514564, 49.656588794073365], + [-1.6706848356208555, 49.656587653461884] + ] + }, + "length": 0.2869541126249135, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36813", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01706", + "bus2": "MVBus26721", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6706848356208555, 49.656587653461884], + [-1.670690085727147, 49.656586512850396], + [-1.67070169883703, 49.6565976832098], + [-1.670635519700989, 49.656687766511745], + [-1.67064106690749, 49.65696571458043], + [-1.672937131365823, 49.65694244508355], + [-1.673393205346661, 49.65694342208668], + [-1.673714225148667, 49.656963056106264], + [-1.674125972813084, 49.65699482395728], + [-1.674275818087714, 49.656969091911975], + [-1.674277152501746, 49.65696686252891], + [-1.674277152501746, 49.65696686252891] + ] + }, + "length": 0.30693215195631945, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41423", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus26721", + "bus2": "MVLV01698", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.674277152501746, 49.65696686252891], + [-1.674277152501746, 49.65696686252891], + [-1.675071025881376, 49.6556395065306], + [-1.674725960202185, 49.655558698636405], + [-1.674487217505072, 49.6555903649928], + [-1.674286160954233, 49.65589538000418], + [-1.674089395171112, 49.65604986454216], + [-1.673979041567607, 49.65596695458006], + [-1.673965482110437, 49.655956757270765], + [-1.67396768671466, 49.655955025085554] + ] + }, + "length": 0.2753332481217924, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32648", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01698", + "bus2": "MVLV10776", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.67396768671466, 49.655955025085554], + [-1.673969891318883, 49.65595329290034], + [-1.67398785998382, 49.65596002583815], + [-1.674042081236127, 49.655980358059864], + [-1.674226487934641, 49.655844313039566], + [-1.674444469242429, 49.655508999198744], + [-1.674715024543798, 49.65547623289931], + [-1.675128102066041, 49.6555744962176], + [-1.675176000480159, 49.65549899947378], + [-1.675255547689846, 49.65550814095187], + [-1.675275983450737, 49.65551049353201], + [-1.6752788266700036, 49.65550693267713] + ] + }, + "length": 0.13470701833430523, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47234", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10776", + "bus2": "MVLV09700", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6752788266700036, 49.65550693267713], + [-1.67528166988927, 49.65550337182224], + [-1.67526690675527, 49.655493897992116], + [-1.675208568631158, 49.65545645555238], + [-1.676192776458766, 49.65384476857928], + [-1.676286536254999, 49.65377038451844], + [-1.67637377763908, 49.653734955738095], + [-1.677036721521781, 49.65400466253389], + [-1.677494415781153, 49.654173412998034], + [-1.677347146971025, 49.65465303404376], + [-1.677343089919127, 49.65466624356853], + [-1.6773448547737, 49.65466658066605] + ] + }, + "length": 0.36876498865043383, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35242", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09700", + "bus2": "MVLV09696", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6773448547737, 49.65466658066605], + [-1.677346619628273, 49.65466691776358], + [-1.67735420638769, 49.6546543824335], + [-1.677628463706782, 49.6542011840085], + [-1.678113900867778, 49.654302342084655], + [-1.678667036130465, 49.654332711132014], + [-1.679010455358163, 49.65430911684581], + [-1.678880187127391, 49.654799883819], + [-1.678770591808817, 49.65490092737212], + [-1.678634464207953, 49.65523611346554], + [-1.678097528581897, 49.655268926155365], + [-1.678076864895278, 49.65527018750508], + [-1.6780747779003309, 49.655274905822935] + ] + }, + "length": 0.3056172779538304, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40080", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09696", + "bus2": "MVLV01697", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6780747779003309, 49.655274905822935], + [-1.678072690905384, 49.65527962414078], + [-1.678089181314788, 49.65528780839687], + [-1.678144418098371, 49.6553152181978], + [-1.67866190791389, 49.65530000143054], + [-1.678875756206534, 49.655404254920114], + [-1.678899802351542, 49.65540039026296], + [-1.6789199507355, 49.65539715856858], + [-1.678922603714337, 49.65539083429302] + ] + }, + "length": 0.06652125023066995, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43579", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01697", + "bus2": "MVLV10768", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.678922603714337, 49.65539083429302], + [-1.678925256693174, 49.65538451001746], + [-1.678910414981441, 49.655375102131124], + [-1.678736703536458, 49.65526499317018], + [-1.678829534214599, 49.655010547963066], + [-1.678973702731857, 49.65484076098087], + [-1.679144308889874, 49.65428376571825], + [-1.680034460154386, 49.65416198357893], + [-1.680088848218442, 49.65482375205744], + [-1.680622201035775, 49.65473798528497], + [-1.680629997114304, 49.65473672820811], + [-1.680650220947472, 49.654729537058294], + [-1.6806498367623357, 49.654726771172655] + ] + }, + "length": 0.3141553288143411, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44845", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10768", + "bus2": "MVBus32481", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6806498367623357, 49.654726771172655], + [-1.680649452577199, 49.654724005287015], + [-1.680620082467265, 49.654724108466446], + [-1.680617720428734, 49.654724366761755], + [-1.680198212687284, 49.65477043741846], + [-1.680146921626781, 49.65409595873909], + [-1.679058120325391, 49.65423091938446], + [-1.678679042911614, 49.654259357440885], + [-1.678125611370777, 49.654225392366186], + [-1.677614535697321, 49.65411612883299], + [-1.677087691774939, 49.653949763364736], + [-1.676459009396345, 49.65365816574056], + [-1.676468589659444, 49.65355518204723], + [-1.676470873384789, 49.653553577574854], + [-1.676470873384789, 49.653553577574854] + ] + }, + "length": 0.4045281743946701, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35243", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32481", + "bus2": "MVLV13410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.676470873384789, 49.653553577574854], + [-1.676470873384789, 49.653553577574854], + [-1.676424765437117, 49.653482511979], + [-1.676521421331345, 49.65344053000349], + [-1.676858481206689, 49.65325319473666], + [-1.678152565183635, 49.65269022736848], + [-1.678544385244714, 49.65250613193956], + [-1.679098718928381, 49.65214385975146], + [-1.679151650142219, 49.652057816640855], + [-1.679181001130015, 49.651886589081585], + [-1.679277799252331, 49.65181342328669], + [-1.679907774876601, 49.65152996245496], + [-1.679918713866793, 49.65154223352049], + [-1.679931285366726, 49.65155465719737], + [-1.679931285366726, 49.65155465719737] + ] + }, + "length": 0.3519938016465228, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV16887_production", + "bus": "MVLV16887", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV16887_consumption", + "bus": "MVLV16887", + "phases": "abc", + "powers": [ + [4198.57778641622, 1380.0057827520677], + [4198.57778641622, 1380.0057827520677], + [4198.57778641622, 1380.0057827520677] + ] + }, + { + "id": "MVLV12762_production", + "bus": "MVLV12762", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV12762_consumption", + "bus": "MVLV12762", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV04334_production", + "bus": "MVLV04334", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV04334_consumption", + "bus": "MVLV04334", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV15648_production", + "bus": "MVLV15648", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV15648_consumption", + "bus": "MVLV15648", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV11486_production", + "bus": "MVLV11486", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV11486_consumption", + "bus": "MVLV11486", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV12761_production", + "bus": "MVLV12761", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV12761_consumption", + "bus": "MVLV12761", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV08515_production", + "bus": "MVLV08515", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV08515_consumption", + "bus": "MVLV08515", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV08514_production", + "bus": "MVLV08514", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV08514_consumption", + "bus": "MVLV08514", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV08517_production", + "bus": "MVLV08517", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV08517_consumption", + "bus": "MVLV08517", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV11487_production", + "bus": "MVLV11487", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV11487_consumption", + "bus": "MVLV11487", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV15647_production", + "bus": "MVLV15647", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV15647_consumption", + "bus": "MVLV15647", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV08518_production", + "bus": "MVLV08518", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV08518_consumption", + "bus": "MVLV08518", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV12764_production", + "bus": "MVLV12764", + "phases": "abc", + "powers": [ + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0], + [-1618.3754189073336, 0.0] + ] + }, + { + "id": "MVLV12764_consumption", + "bus": "MVLV12764", + "phases": "abc", + "powers": [ + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166], + [6834.3234944043215, 2246.333502261166] + ] + }, + { + "id": "MVLV09710_production", + "bus": "MVLV09710", + "phases": "abc", + "powers": [ + [-1939.3341703008675, 0.0], + [-1939.3341703008675, 0.0], + [-1939.3341703008675, 0.0] + ] + }, + { + "id": "MVLV09710_consumption", + "bus": "MVLV09710", + "phases": "abc", + "powers": [ + [6460.4361326632325, 2123.4426693296105], + [6460.4361326632325, 2123.4426693296105], + [6460.4361326632325, 2123.4426693296105] + ] + }, + { + "id": "MVLV01706_production", + "bus": "MVLV01706", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV01706_consumption", + "bus": "MVLV01706", + "phases": "abc", + "powers": [ + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137] + ] + }, + { + "id": "MVLV01698_production", + "bus": "MVLV01698", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV01698_consumption", + "bus": "MVLV01698", + "phases": "abc", + "powers": [ + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137] + ] + }, + { + "id": "MVLV10776_production", + "bus": "MVLV10776", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV10776_consumption", + "bus": "MVLV10776", + "phases": "abc", + "powers": [ + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137] + ] + }, + { + "id": "MVLV09700_production", + "bus": "MVLV09700", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09700_consumption", + "bus": "MVLV09700", + "phases": "abc", + "powers": [ + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137] + ] + }, + { + "id": "MVLV09696_production", + "bus": "MVLV09696", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV09696_consumption", + "bus": "MVLV09696", + "phases": "abc", + "powers": [ + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137] + ] + }, + { + "id": "MVLV01697_production", + "bus": "MVLV01697", + "phases": "abc", + "powers": [ + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0], + [-213.24721377912866, 0.0] + ] + }, + { + "id": "MVLV01697_consumption", + "bus": "MVLV01697", + "phases": "abc", + "powers": [ + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137], + [7384.143658907343, 2427.050651040137] + ] + }, + { + "id": "MVLV10768_production", + "bus": "MVLV10768", + "phases": "abc", + "powers": [ + [-1939.3341703008675, 0.0], + [-1939.3341703008675, 0.0], + [-1939.3341703008675, 0.0] + ] + }, + { + "id": "MVLV10768_consumption", + "bus": "MVLV10768", + "phases": "abc", + "powers": [ + [6460.4361326632325, 2123.4426693296105], + [6460.4361326632325, 2123.4426693296105], + [6460.4361326632325, 2123.4426693296105] + ] + }, + { + "id": "MVLV13410_production", + "bus": "MVLV13410", + "phases": "abc", + "powers": [ + [-1939.3341703008675, 0.0], + [-1939.3341703008675, 0.0], + [-1939.3341703008675, 0.0] + ] + }, + { + "id": "MVLV13410_consumption", + "bus": "MVLV13410", + "phases": "abc", + "powers": [ + [6460.4361326632325, 2123.4426693296105], + [6460.4361326632325, 2123.4426693296105], + [6460.4361326632325, 2123.4426693296105] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder217_Winter.json b/roseau/load_flow/data/networks/MVFeeder217_Winter.json new file mode 100644 index 00000000..92fbe489 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder217_Winter.json @@ -0,0 +1,2650 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.751702612915616, 49.653801085335864] + } + }, + { + "id": "HVMV15", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.751702612915616, 49.653801085335864] + } + }, + { + "id": "MVBus01881", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.75134861697713, 49.6546228164401] + } + }, + { + "id": "MVBus01882", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.740479446878883, 49.65987962629042] + } + }, + { + "id": "MVBus01883", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.733888052209557, 49.656314900145844] + } + }, + { + "id": "MVBus01884", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.728312906960772, 49.656559479695645] + } + }, + { + "id": "MVBus01885", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.727739462930876, 49.65677285538332] + } + }, + { + "id": "MVBus01886", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.727382824582085, 49.656858137125596] + } + }, + { + "id": "MVBus01887", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.723625804781101, 49.65673682886024] + } + }, + { + "id": "MVBus01888", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.715447633958364, 49.654538430245495] + } + }, + { + "id": "MVLV16887", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7134923699166786, 49.656042385779635] + } + }, + { + "id": "MVBus09389", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.712231384433458, 49.65739404176467] + } + }, + { + "id": "MVLV12762", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7123893567716906, 49.65869383173553] + } + }, + { + "id": "MVBus11449", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.712256396489699, 49.658696483631566] + } + }, + { + "id": "MVLV04334", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7102518017180843, 49.65805029431179] + } + }, + { + "id": "MVBus12338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.709027337065763, 49.6575131235305] + } + }, + { + "id": "MVLV15648", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7093355253425884, 49.65668006698276] + } + }, + { + "id": "MVBus13302", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.708997902725297, 49.65748382115472] + } + }, + { + "id": "MVLV11486", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7079120407255814, 49.65821598234879] + } + }, + { + "id": "MVLV12761", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7065522989454331, 49.658565793845284] + } + }, + { + "id": "MVLV08515", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.704521667859076, 49.65632654314429] + } + }, + { + "id": "MVLV08514", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7044656244128835, 49.657095165588956] + } + }, + { + "id": "MVLV08517", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7018474404969435, 49.65682712281345] + } + }, + { + "id": "MVLV11487", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.7005694121374195, 49.65663345325234] + } + }, + { + "id": "MVLV15647", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.699553504846526, 49.65715834002786] + } + }, + { + "id": "MVLV08518", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.697825356573214, 49.65683842436038] + } + }, + { + "id": "MVLV12764", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6956447814282445, 49.65763502482898] + } + }, + { + "id": "MVBus20890", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.694881325517064, 49.65753685714968] + } + }, + { + "id": "MVBus20891", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.694653623707265, 49.657307207334895] + } + }, + { + "id": "MVLV09710", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6931544029856775, 49.65682690034362] + } + }, + { + "id": "MVBus21726", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6899144761105565, 49.65734579505471] + } + }, + { + "id": "MVBus22602", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.687000916584208, 49.65872643345839] + } + }, + { + "id": "MVBus22603", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.678752083502674, 49.657632600450846] + } + }, + { + "id": "MVBus22604", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.673893732207176, 49.65699408075931] + } + }, + { + "id": "MVLV01706", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6706848356208555, 49.656587653461884] + } + }, + { + "id": "MVBus26721", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.674277152501746, 49.65696686252891] + } + }, + { + "id": "MVLV01698", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.67396768671466, 49.655955025085554] + } + }, + { + "id": "MVLV10776", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6752788266700036, 49.65550693267713] + } + }, + { + "id": "MVLV09700", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6773448547737, 49.65466658066605] + } + }, + { + "id": "MVLV09696", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6780747779003309, 49.655274905822935] + } + }, + { + "id": "MVLV01697", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.678922603714337, 49.65539083429302] + } + }, + { + "id": "MVLV10768", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.6806498367623357, 49.654726771172655] + } + }, + { + "id": "MVBus32481", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.676470873384789, 49.653553577574854] + } + }, + { + "id": "MVLV13410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.679931285366726, 49.65155465719737] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV15", + "geometry": { + "type": "Point", + "coordinates": [-1.751702612915616, 49.653801085335864] + } + }, + { + "id": "MVBranch34116", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV15", + "bus2": "MVBus01881", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.751702612915616, 49.653801085335864], + [-1.751748734460548, 49.65384507495183], + [-1.751748734460548, 49.65384507495183], + [-1.751790150159045, 49.65387028475741], + [-1.751810276327588, 49.653882545108324], + [-1.751814757753236, 49.65389524435384], + [-1.751729575993817, 49.65395420280918], + [-1.751750236824847, 49.65398470050129], + [-1.751694134911765, 49.65402853028565], + [-1.751692487066552, 49.65403907159969], + [-1.751699941927443, 49.654046877174686], + [-1.751709491778441, 49.654048334955746], + [-1.751726443067687, 49.654059695439734], + [-1.75173645898574, 49.654076290348044], + [-1.751739217834648, 49.6540951449433], + [-1.75173215522583, 49.65411554554525], + [-1.751722757422452, 49.65412997291849], + [-1.751723830062776, 49.654135575152736], + [-1.751742356405606, 49.654165191753165], + [-1.751764818899627, 49.654189828179526], + [-1.751764648988911, 49.65419548140606], + [-1.751690469929741, 49.65426935566007], + [-1.751501935380691, 49.65445071012209], + [-1.751420572147751, 49.65453570827406], + [-1.75134861697713, 49.6546228164401], + [-1.75134861697713, 49.6546228164401] + ] + }, + "length": 0.1036641105058596, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42102", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01881", + "bus2": "MVBus01882", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.75134861697713, 49.6546228164401], + [-1.75134861697713, 49.6546228164401], + [-1.751301699863922, 49.654679626910905], + [-1.751224296376544, 49.65476771947278], + [-1.751100546133867, 49.6548972883225], + [-1.751052576033689, 49.654996076649034], + [-1.751044408350226, 49.655049167363906], + [-1.751003680661414, 49.655114248702745], + [-1.750901483223386, 49.65519511233728], + [-1.750794860278051, 49.65526725852473], + [-1.750704441102756, 49.65534006208172], + [-1.75039486080823, 49.65556098118696], + [-1.75011787106141, 49.65575459326522], + [-1.749888936348456, 49.655912318591824], + [-1.749655937995882, 49.656058076413316], + [-1.749388737788516, 49.65619571752415], + [-1.749247494883003, 49.65626217011036], + [-1.749129755819926, 49.6563427566015], + [-1.748892816046397, 49.65647049847278], + [-1.748772980648936, 49.656540669802745], + [-1.748513557560205, 49.65669780317539], + [-1.748186064783585, 49.65692013000711], + [-1.747983666507208, 49.65706807916889], + [-1.747642077288224, 49.657300556491506], + [-1.747516729666441, 49.65738703651531], + [-1.747388981747892, 49.65748246427945], + [-1.7472760210709, 49.657560863966594], + [-1.7471836220006, 49.657640188043864], + [-1.746934468053926, 49.65781859834436], + [-1.746526064290259, 49.658154217090946], + [-1.746164656561502, 49.65841493919094], + [-1.745754213658427, 49.658724526713115], + [-1.745452963376744, 49.65895863891651], + [-1.745214800654465, 49.659158724246375], + [-1.744923711583319, 49.65937412884914], + [-1.744573940809986, 49.65963748318975], + [-1.744491303074585, 49.659699713023215], + [-1.74438219095979, 49.65979272771007], + [-1.744198002184347, 49.659834102921934], + [-1.744122641731567, 49.65983999045752], + [-1.744064463406356, 49.659839875727315], + [-1.744000344370419, 49.65984203868371], + [-1.743862639428613, 49.65987398568658], + [-1.743638085419002, 49.659918691013885], + [-1.743442887572666, 49.65998781915069], + [-1.743212138485946, 49.660083208629096], + [-1.743084759818112, 49.66014327731511], + [-1.7427775612443, 49.660310245114104], + [-1.742533892358992, 49.660445025208595], + [-1.742360146615032, 49.66054527117987], + [-1.742178625896325, 49.66063077022418], + [-1.741827036292318, 49.660779915779905], + [-1.741334539666645, 49.660985302414524], + [-1.741161366808124, 49.661056570729464], + [-1.741063903212354, 49.6610966810873], + [-1.74092799477829, 49.661147682404945], + [-1.74077063337072, 49.661203956936156], + [-1.740341448723128, 49.661343132411396], + [-1.740302514703939, 49.661351719623156], + [-1.740290461268839, 49.66135066902887], + [-1.740283184756773, 49.66134196655046], + [-1.740274413606927, 49.66131821574936], + [-1.740310141813682, 49.661051161297074], + [-1.740339303023295, 49.66088039681988], + [-1.740344908404654, 49.66083028057313], + [-1.740359131482788, 49.66074761715677], + [-1.740384337160247, 49.660660240124315], + [-1.740420562289238, 49.66056428137167], + [-1.740481426478069, 49.66038339262529], + [-1.740501661219831, 49.66029189355094], + [-1.740514314072042, 49.66014336661246], + [-1.740512856267667, 49.66010903671811], + [-1.740479446878883, 49.65987962629042], + [-1.740479446878883, 49.65987962629042] + ] + }, + "length": 1.2806813373079808, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34946", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01882", + "bus2": "MVBus01883", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.740479446878883, 49.65987962629042], + [-1.740479446878883, 49.65987962629042], + [-1.740474071432376, 49.65985329702724], + [-1.740475099216177, 49.65984155390997], + [-1.740480619730333, 49.659832635948426], + [-1.74049378387742, 49.65982090644167], + [-1.740501648745728, 49.65981254794499], + [-1.740507517331799, 49.65980382508198], + [-1.740510880721519, 49.65979668843317], + [-1.740510884394161, 49.659788594891516], + [-1.74050937689303, 49.65978204506886], + [-1.740500875379599, 49.65976997565485], + [-1.740421007668303, 49.659690249537704], + [-1.74022852633044, 49.659502935316866], + [-1.740108664693464, 49.65937833446222], + [-1.739964296243733, 49.6592305039367], + [-1.739948388256929, 49.659212083450164], + [-1.739936335416193, 49.65920098798228], + [-1.739922300862214, 49.65918953664039], + [-1.739893746325947, 49.659173035119764], + [-1.739879121085537, 49.65916649570173], + [-1.739831249884304, 49.659121688670226], + [-1.739767953307384, 49.659048211167374], + [-1.739676058101628, 49.65892459189616], + [-1.739615603991094, 49.658841441313264], + [-1.739602095296559, 49.65881612347223], + [-1.739593072243265, 49.65878938650556], + [-1.739574501702686, 49.658651578794704], + [-1.739563651314382, 49.65853651422431], + [-1.739564241361584, 49.658453644657506], + [-1.739562513116073, 49.65844433250798], + [-1.739556691304043, 49.658433027032444], + [-1.739549264879466, 49.658426253989326], + [-1.739527369643052, 49.658415067486075], + [-1.739513122167437, 49.658405107066926], + [-1.739506132999521, 49.65839150282499], + [-1.739504943559619, 49.658327433987914], + [-1.739501605994963, 49.65818315074582], + [-1.739493288053887, 49.65811187615185], + [-1.739453961641885, 49.657968805593946], + [-1.739377911403589, 49.65776457213422], + [-1.739304317806408, 49.65757026470002], + [-1.739266299317639, 49.65750105197944], + [-1.739256976487962, 49.65748407315334], + [-1.739246116056332, 49.657470212647816], + [-1.739232476857514, 49.657455555495524], + [-1.739217779813456, 49.65744412639509], + [-1.739198824306653, 49.65743262495761], + [-1.739179044079239, 49.657423282576474], + [-1.739130507250704, 49.657407022537775], + [-1.739061957345631, 49.65739080731378], + [-1.739025458978518, 49.657385643274345], + [-1.738915539587075, 49.65737315995609], + [-1.738881067549643, 49.657371335834526], + [-1.738860053103217, 49.65736890541017], + [-1.738821540846347, 49.657357784054184], + [-1.73876757639012, 49.6573507354131], + [-1.73867161536302, 49.65733663053159], + [-1.738601732838121, 49.65733025300006], + [-1.73850233662905, 49.65732567907416], + [-1.738398217897442, 49.65732250515459], + [-1.738194313133802, 49.657314904991445], + [-1.738089932756446, 49.65730845728815], + [-1.737982516156575, 49.657292966200124], + [-1.737882857629756, 49.65726656634259], + [-1.737746916927861, 49.65722037258456], + [-1.737698927096434, 49.65720384177042], + [-1.737601693439361, 49.65717640678765], + [-1.73750784755023, 49.65715963986516], + [-1.737408183156507, 49.657151530966466], + [-1.737311770684144, 49.65714753902869], + [-1.737215513894139, 49.657147921212555], + [-1.737108532106675, 49.65714306206995], + [-1.737006773914737, 49.65714307181737], + [-1.736910746753859, 49.65713852702422], + [-1.736814255557686, 49.657122801883055], + [-1.736724861578887, 49.65710384310347], + [-1.736637269834277, 49.657083861353335], + [-1.736461741207677, 49.65704200284033], + [-1.73626444365085, 49.65699363795306], + [-1.736175947284714, 49.65697533200083], + [-1.735876871097662, 49.65690555558378], + [-1.73557208872794, 49.65683283210489], + [-1.735297533928657, 49.65677000744627], + [-1.735204918608509, 49.656747469017866], + [-1.735109019192504, 49.656726129183966], + [-1.734880330154187, 49.65666885490597], + [-1.734524089167194, 49.65655414752372], + [-1.734355293943281, 49.656491097487056], + [-1.73427080139386, 49.656456126886056], + [-1.734259751213325, 49.65645079741933], + [-1.734249204739566, 49.65644258233416], + [-1.734240217541812, 49.65643099647164], + [-1.734232635057423, 49.65642121582566], + [-1.73422233807747, 49.65641352290978], + [-1.734205948614401, 49.65640551345711], + [-1.734109939342267, 49.6563730705961], + [-1.734051494509664, 49.656356728369346], + [-1.733969098249313, 49.656338809084446], + [-1.733888052209557, 49.656314900145844], + [-1.733888052209557, 49.656314900145844] + ] + }, + "length": 0.7059455867207443, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42411", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01883", + "bus2": "MVBus01884", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.733888052209557, 49.656314900145844], + [-1.733888052209557, 49.656314900145844], + [-1.733820007778513, 49.65628016708811], + [-1.733763752106464, 49.656247869986075], + [-1.733710070903023, 49.65621450602487], + [-1.733640511623304, 49.6561677376844], + [-1.733539253676595, 49.65610372684678], + [-1.733467343239139, 49.65606480720204], + [-1.733343931417372, 49.65601790833194], + [-1.733283539586307, 49.65600024638956], + [-1.73320693907129, 49.65598811172926], + [-1.733134113689259, 49.65598058015306], + [-1.732764388265359, 49.655963883059265], + [-1.732455019590271, 49.655959030137886], + [-1.732308861926483, 49.65595895590221], + [-1.732156086784187, 49.65595632535174], + [-1.732071515123761, 49.655956948938424], + [-1.731988798417747, 49.65595391300292], + [-1.731813324684369, 49.655956200132806], + [-1.731619674397655, 49.655955501280054], + [-1.731515826317521, 49.65595011823244], + [-1.731404434610655, 49.65595192214882], + [-1.731288262322996, 49.65596359881823], + [-1.731171657834058, 49.65598582931513], + [-1.731065502343024, 49.656015756745845], + [-1.730869722261673, 49.656073949329844], + [-1.730761570787878, 49.65611115571432], + [-1.73043046871671, 49.65621412200755], + [-1.730326055201905, 49.656244538733], + [-1.730217744128323, 49.656268989382525], + [-1.729903556452437, 49.65634230320746], + [-1.729795845570611, 49.656351535697574], + [-1.729682898084139, 49.65636597102383], + [-1.729570647608569, 49.65637438471132], + [-1.729448850872821, 49.65638989066015], + [-1.729213793071298, 49.65644594757036], + [-1.729129184628637, 49.65646852136912], + [-1.729014250779628, 49.6564953967068], + [-1.728901490965555, 49.65651601191794], + [-1.728791966639698, 49.65652491776152], + [-1.728662672874595, 49.65653622350812], + [-1.728516880886691, 49.65654596131145], + [-1.728475245323393, 49.65653576004882], + [-1.728411991139697, 49.65654194149451], + [-1.728370140263912, 49.656547799304136], + [-1.728312906960772, 49.656559479695645], + [-1.728312906960772, 49.656559479695645] + ] + }, + "length": 0.42800395801572233, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34037", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01884", + "bus2": "MVBus01885", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.728312906960772, 49.656559479695645], + [-1.728312906960772, 49.656559479695645], + [-1.728274454180884, 49.65656660814347], + [-1.728233685202301, 49.656576826950065], + [-1.728205776997936, 49.656585732281826], + [-1.728161474180365, 49.65660270638717], + [-1.728061212388786, 49.65664456408184], + [-1.727946166206508, 49.65668029090196], + [-1.727817705683487, 49.65673592842011], + [-1.727739462930876, 49.65677285538332], + [-1.727739462930876, 49.65677285538332] + ] + }, + "length": 0.047953236893901165, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42412", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01885", + "bus2": "MVBus01886", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.727739462930876, 49.65677285538332], + [-1.727739462930876, 49.65677285538332], + [-1.727707492689713, 49.656786411383656], + [-1.727596864159143, 49.656817960710654], + [-1.727485560714758, 49.656841394270465], + [-1.727382824582085, 49.656858137125596], + [-1.727382824582085, 49.656858137125596] + ] + }, + "length": 0.027578746668158054, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40756", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01886", + "bus2": "MVBus01887", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.727382824582085, 49.656858137125596], + [-1.727382824582085, 49.656858137125596], + [-1.727255130419084, 49.656876141052194], + [-1.727120294379758, 49.65688309901938], + [-1.726979327246614, 49.65688004717326], + [-1.726843528677935, 49.65687180364602], + [-1.726712400318607, 49.65686184736043], + [-1.726577844568127, 49.65685563908711], + [-1.726303410859262, 49.656853436636425], + [-1.726171836378063, 49.656854564681474], + [-1.72585793709381, 49.656842095274015], + [-1.725666382306666, 49.65683313312166], + [-1.725605568753938, 49.656832576567226], + [-1.725485392503197, 49.656832808501164], + [-1.725251464483659, 49.65683062826861], + [-1.725025826734552, 49.656825228625394], + [-1.724798199183486, 49.65682180180917], + [-1.724685456448137, 49.65681849206072], + [-1.7245698809084, 49.65681631146881], + [-1.72445706960357, 49.65681214051932], + [-1.72435163705248, 49.65680356715185], + [-1.724250281210615, 49.6567924378171], + [-1.723947318268317, 49.6567544799531], + [-1.723840359322548, 49.656747782887855], + [-1.723728787517464, 49.65674490955833], + [-1.723625804781101, 49.65673682886024], + [-1.723625804781101, 49.65673682886024] + ] + }, + "length": 0.2724446957927151, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43049", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01887", + "bus2": "MVBus01888", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.723625804781101, 49.65673682886024], + [-1.723625804781101, 49.65673682886024], + [-1.723520377064923, 49.656727616140266], + [-1.723422239509832, 49.65671706153705], + [-1.723311255510849, 49.65671043616149], + [-1.723198071900167, 49.65669323725738], + [-1.723127687111947, 49.65669077053708], + [-1.722701786187468, 49.65666164777939], + [-1.722598063002425, 49.65666565914847], + [-1.722487643297865, 49.65665811482743], + [-1.721660003373815, 49.65657170621557], + [-1.721549796078765, 49.65656682472705], + [-1.721538047690914, 49.65656453908364], + [-1.721481223908684, 49.65654553767339], + [-1.721465358631225, 49.656543390140634], + [-1.721448147102664, 49.65654503768671], + [-1.721255295561688, 49.65660136244499], + [-1.721069041713968, 49.65666818473525], + [-1.720715544870907, 49.65682262907381], + [-1.720625975255681, 49.656869589236436], + [-1.720559774543294, 49.656919515420164], + [-1.720502049314613, 49.65697237663683], + [-1.720432929839997, 49.657027229656556], + [-1.720368762404759, 49.65707172793302], + [-1.720011956842451, 49.65733730345117], + [-1.719951248175017, 49.65738715296471], + [-1.719840359650761, 49.65746667914164], + [-1.719546904359343, 49.65767631694214], + [-1.719519017524534, 49.65769091177698], + [-1.719509007047312, 49.657693756377626], + [-1.719501528831518, 49.657691866901644], + [-1.71947780320136, 49.6576811159884], + [-1.719446489720156, 49.65766692355118], + [-1.719227931378966, 49.657576259766756], + [-1.71900357914789, 49.657490762758826], + [-1.718885676065933, 49.65744245086185], + [-1.718681878423483, 49.657368404133045], + [-1.718654363643581, 49.65735999227237], + [-1.718534760648144, 49.657332267095995], + [-1.718410586473253, 49.65730750072945], + [-1.718162801127251, 49.657240835877104], + [-1.718011097134541, 49.6571830809291], + [-1.717981256567952, 49.65716945924549], + [-1.717977370360496, 49.65716274615818], + [-1.718043519437144, 49.657084622500825], + [-1.718045612695117, 49.65708081142184], + [-1.718041416313051, 49.657076293929585], + [-1.717999506135629, 49.65704938112844], + [-1.717887107372415, 49.65698595611869], + [-1.717832819310818, 49.656942048523675], + [-1.717730881850192, 49.65680516306199], + [-1.717691274506387, 49.65674084477619], + [-1.71767883685665, 49.6567110825568], + [-1.717562557812384, 49.656502197440894], + [-1.717554983546297, 49.65648533842219], + [-1.717554640217861, 49.65643277929776], + [-1.717493476214133, 49.656356746702166], + [-1.717495896332177, 49.65633893221701], + [-1.717447994085462, 49.65618250205623], + [-1.717439573011385, 49.6561006550268], + [-1.717461902305589, 49.656001905449315], + [-1.717487775937777, 49.655815008627954], + [-1.717500134567444, 49.65563914002085], + [-1.717514947328719, 49.655542198021614], + [-1.717514531824025, 49.65544048776329], + [-1.717503391856739, 49.655336645997224], + [-1.717488942745687, 49.655245360880855], + [-1.717460651659158, 49.65514862256692], + [-1.717420766249411, 49.65506284813152], + [-1.717375544103659, 49.65497632630912], + [-1.717274162708445, 49.65478000763229], + [-1.717167398701707, 49.654606566567345], + [-1.717061652365184, 49.654433720776446], + [-1.716959036949793, 49.65427010427631], + [-1.716914447426297, 49.654185422525465], + [-1.7168409726092, 49.654008698305404], + [-1.716811740245133, 49.65391821420138], + [-1.716763546412261, 49.65375806135427], + [-1.716732522799451, 49.653638078556575], + [-1.716689212363299, 49.65343795173439], + [-1.71667331127041, 49.65336443948759], + [-1.716670378709844, 49.65335769438859], + [-1.716662418509404, 49.653353914472994], + [-1.716653156141748, 49.65335204865622], + [-1.716596781264168, 49.65334802969377], + [-1.716559930839835, 49.653348644085064], + [-1.716551546324883, 49.65335172175416], + [-1.716544091, 49.65336038866352], + [-1.716472226277132, 49.653426869160796], + [-1.716395457773024, 49.65349787533786], + [-1.716316735389152, 49.65356242728845], + [-1.716236904998456, 49.65364318499962], + [-1.716023337473649, 49.65386188282999], + [-1.715893174600961, 49.65400872264407], + [-1.715704903113184, 49.65422035831509], + [-1.71553225529787, 49.65439942059411], + [-1.715471504984857, 49.65444283069003], + [-1.715456092169358, 49.65446605331468], + [-1.715449572571996, 49.65448649605519], + [-1.715447633958364, 49.654538430245495], + [-1.715447633958364, 49.654538430245495] + ] + }, + "length": 1.0872513297341535, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37385", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus01888", + "bus2": "MVLV16887", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.715447633958364, 49.654538430245495], + [-1.715447633958364, 49.654538430245495], + [-1.715448192070262, 49.65460696204013], + [-1.715457004433096, 49.6546500380675], + [-1.715471451256319, 49.65469969675278], + [-1.715498603110257, 49.654796617488635], + [-1.715526802946384, 49.65491560687598], + [-1.715556713031621, 49.65504286608316], + [-1.715567040711619, 49.65508827435797], + [-1.715570275973833, 49.6551110251187], + [-1.715571036710964, 49.655132617801705], + [-1.715564102439639, 49.65519436836121], + [-1.71555179727194, 49.655249716275684], + [-1.715530624332355, 49.655313742345704], + [-1.715489586974421, 49.65542933186875], + [-1.715414558894032, 49.65562509579396], + [-1.715402884330536, 49.6556427256538], + [-1.715388083085744, 49.65565639560863], + [-1.715372240448655, 49.65566236683133], + [-1.715351608436699, 49.65566524317796], + [-1.715312147792104, 49.655666672968934], + [-1.715260598108026, 49.65566222189718], + [-1.715152477351462, 49.65563005324065], + [-1.71508526536511, 49.655598465577974], + [-1.715020937895638, 49.65555803148393], + [-1.71498123049807, 49.65552202435255], + [-1.714894808491883, 49.65542981362902], + [-1.714823166712625, 49.655365839066796], + [-1.71474497215027, 49.655310563942564], + [-1.714658157317202, 49.65526289744951], + [-1.714576855973218, 49.65523301340164], + [-1.714461502531446, 49.655200277069156], + [-1.71438049769835, 49.65518701922765], + [-1.714302012179009, 49.655179666014696], + [-1.714125088683956, 49.655184925691366], + [-1.714045455182909, 49.65518892341494], + [-1.713974032499748, 49.65520595513098], + [-1.713930000794875, 49.65521940775234], + [-1.713805483504456, 49.65526483536296], + [-1.713580541187305, 49.65536220340899], + [-1.713317541539384, 49.65547082699354], + [-1.713257574448967, 49.655490136501335], + [-1.713201716977964, 49.65549666483663], + [-1.713154040780268, 49.65549755066954], + [-1.713105457586083, 49.65549730680938], + [-1.713073893758862, 49.65551479298841], + [-1.713232659435066, 49.655672728402635], + [-1.713342741318447, 49.65578643159105], + [-1.713512475201262, 49.655959133893184], + [-1.713535733563725, 49.65598425370082], + [-1.713540888669226, 49.65600398162917], + [-1.713529570082037, 49.65603080774028], + [-1.713499411849716, 49.65604942497534], + [-1.7134923699166786, 49.656042385779635] + ] + }, + "length": 0.39624899055842877, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38550", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16887", + "bus2": "MVBus09389", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7134923699166786, 49.656042385779635], + [-1.713485327983641, 49.65603534658393], + [-1.713509722594212, 49.65601863092429], + [-1.713518356067376, 49.65600176855485], + [-1.713516623396457, 49.6559923394178], + [-1.71339757826996, 49.65586730012102], + [-1.713061830997298, 49.65552876662905], + [-1.713022374869907, 49.655547164491274], + [-1.712983219393751, 49.65556934713522], + [-1.712941021202669, 49.6555887989746], + [-1.712115718830422, 49.65593034753014], + [-1.711730719092233, 49.65608848126368], + [-1.711675834553732, 49.65611913028859], + [-1.711668127535593, 49.65613859631369], + [-1.711689943331042, 49.656157074266176], + [-1.711909209699889, 49.65638021466925], + [-1.711927197560893, 49.656420429795006], + [-1.712045895311028, 49.65654130047773], + [-1.712066626044882, 49.65665720397143], + [-1.712493720851563, 49.65708091694548], + [-1.712596763887438, 49.657184290066596], + [-1.712616120654328, 49.65720371345815], + [-1.712605257166425, 49.65721761988691], + [-1.712231384433458, 49.65739404176467], + [-1.712231384433458, 49.65739404176467] + ] + }, + "length": 0.36205172525827967, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09389", + "bus2": "MVLV12762", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.712231384433458, 49.65739404176467], + [-1.712231384433458, 49.65739404176467], + [-1.712192984930894, 49.6574121610954], + [-1.712159321627441, 49.65741875531577], + [-1.712145875642629, 49.657418288129165], + [-1.712130679684726, 49.65741375193847], + [-1.712115156745159, 49.65740509911443], + [-1.711907540458581, 49.657280918818046], + [-1.711916605385292, 49.65727052579175], + [-1.711725937688394, 49.65713753178156], + [-1.711583842498299, 49.65702903526348], + [-1.711572488149354, 49.657020368759845], + [-1.711558455636018, 49.657020712484226], + [-1.711543004997499, 49.65702168818157], + [-1.71152412661641, 49.6570241544492], + [-1.711495638379682, 49.657030152654194], + [-1.711471050112896, 49.657040606532085], + [-1.711427640974446, 49.65706314674895], + [-1.711326401126814, 49.65713576828944], + [-1.711178373342992, 49.657241591156435], + [-1.711129545502673, 49.65730718898692], + [-1.710964863616365, 49.65743007013069], + [-1.710917324898205, 49.657471785508555], + [-1.710902208297853, 49.65748604090393], + [-1.710900130160686, 49.657490921444534], + [-1.710903842733294, 49.65750662407541], + [-1.710943091855127, 49.65756513807867], + [-1.711091955908279, 49.65770985551921], + [-1.711172613908541, 49.657764933515004], + [-1.71127897930944, 49.657801489868255], + [-1.711395063912293, 49.657840247784556], + [-1.711606505041342, 49.65791019285251], + [-1.711681734703578, 49.65793702679832], + [-1.711779863054719, 49.65798096249784], + [-1.711870622953638, 49.6580343261077], + [-1.712056337251808, 49.6581450223316], + [-1.712245397356525, 49.65826661315606], + [-1.712324524894339, 49.658324718178164], + [-1.712350010711977, 49.65834770431951], + [-1.712353846470791, 49.65836041726462], + [-1.712354377241995, 49.65837599254943], + [-1.712347265709976, 49.65839319050284], + [-1.712216987090673, 49.65855367044792], + [-1.71219274716793, 49.65857305135032], + [-1.712191541104686, 49.65858890957691], + [-1.712193644176653, 49.65860649152026], + [-1.712198457245705, 49.65861825451696], + [-1.712223707211668, 49.65863391067126], + [-1.71235660303629, 49.6586886063232], + [-1.712366471624233, 49.65869286219185], + [-1.712372867915333, 49.658693340519584], + [-1.712387282718283, 49.658688038029595], + [-1.7123893567716906, 49.65869383173553] + ] + }, + "length": 0.33609166663042095, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40786", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12762", + "bus2": "MVBus11449", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7123893567716906, 49.65869383173553], + [-1.712391430825098, 49.65869962544148], + [-1.712366463491168, 49.65870984935149], + [-1.712329867044583, 49.658722602724524], + [-1.712256396489699, 49.658696483631566], + [-1.712256396489699, 49.658696483631566] + ] + }, + "length": 0.011178451298859964, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39715", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11449", + "bus2": "MVLV04334", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.712256396489699, 49.658696483631566], + [-1.712256396489699, 49.658696483631566], + [-1.710321852037981, 49.658025946056945], + [-1.710282778109626, 49.658045355239715], + [-1.710266574479118, 49.65805377478471], + [-1.7102518017180843, 49.65805029431179] + ] + }, + "length": 0.1633930998192143, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32752", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04334", + "bus2": "MVBus12338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7102518017180843, 49.65805029431179], + [-1.710237028957051, 49.65804681383888], + [-1.710235630991269, 49.65803409122527], + [-1.710233210541606, 49.65798894880261], + [-1.709742877897143, 49.65781336148406], + [-1.709027236507815, 49.657513252788995], + [-1.709027337065763, 49.6575131235305], + [-1.709027337065763, 49.6575131235305] + ] + }, + "length": 0.10840662368023206, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47369", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus12338", + "bus2": "MVLV15648", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.709027337065763, 49.6575131235305], + [-1.709027337065763, 49.6575131235305], + [-1.709078447439429, 49.65744483349543], + [-1.70910413685254, 49.65743672632054], + [-1.709243868571788, 49.65728147298309], + [-1.70927004463494, 49.657178802084346], + [-1.709171592842444, 49.65691119515829], + [-1.709161114035063, 49.656835019230506], + [-1.709178943717271, 49.65678216730157], + [-1.709213577618374, 49.65673143308517], + [-1.709282230422975, 49.65668940781868], + [-1.709309897104711, 49.656687718058556], + [-1.709330561303463, 49.65668646034894], + [-1.7093355253425884, 49.65668006698276] + ] + }, + "length": 0.10369591850421968, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36355", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15648", + "bus2": "MVBus13302", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7093355253425884, 49.65668006698276], + [-1.709340489381714, 49.65667367361657], + [-1.709329753267087, 49.6566621445962], + [-1.709314685856429, 49.65664595843759], + [-1.70925708239761, 49.65667047439064], + [-1.7091817362423, 49.65671543026812], + [-1.709140181584584, 49.65676640494441], + [-1.709119175557376, 49.656831071376075], + [-1.709128857491687, 49.65691448596497], + [-1.709231752244283, 49.65718554132338], + [-1.709204094962056, 49.657270249726935], + [-1.709079928431331, 49.65741235692905], + [-1.709050308659278, 49.65742330230102], + [-1.708997902725297, 49.65748382115472], + [-1.708997902725297, 49.65748382115472] + ] + }, + "length": 0.10806723339486324, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44963", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus13302", + "bus2": "MVLV11486", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.708997902725297, 49.65748382115472], + [-1.708997902725297, 49.65748382115472], + [-1.70899080914577, 49.65749200778738], + [-1.708641350771502, 49.65735922107077], + [-1.708317824143707, 49.657271455070045], + [-1.708232158722505, 49.65749326945597], + [-1.708031958614799, 49.65762181227458], + [-1.707995714311626, 49.657971564930534], + [-1.707765211274663, 49.658052551836846], + [-1.707832434285355, 49.6581942833001], + [-1.707891788280491, 49.65820681270175], + [-1.707911526188136, 49.65821098173353], + [-1.7079120407255814, 49.65821598234879] + ] + }, + "length": 0.181775916833722, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35158", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11486", + "bus2": "MVLV12761", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7079120407255814, 49.65821598234879], + [-1.707912555263027, 49.65822098296406], + [-1.707893846422766, 49.658226815163104], + [-1.70728082013845, 49.658417934068844], + [-1.706987688532517, 49.65839573781715], + [-1.706732680877934, 49.65836500960757], + [-1.706573219851772, 49.65854252791546], + [-1.706562769941867, 49.658554162777016], + [-1.7065522989454331, 49.658565793845284] + ] + }, + "length": 0.1149889768842972, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38115", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12761", + "bus2": "MVLV08515", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7065522989454331, 49.658565793845284], + [-1.706541827948999, 49.65857742491355], + [-1.706531335866019, 49.658589052188546], + [-1.706465928106193, 49.65866156864659], + [-1.706357742718672, 49.65844381625389], + [-1.706249486789871, 49.65787307454641], + [-1.706179981081413, 49.65731809616411], + [-1.705463418519071, 49.65740881212725], + [-1.705422985876509, 49.65730576926649], + [-1.705572328002484, 49.65728345028136], + [-1.705621360881812, 49.657255634576565], + [-1.705643949030106, 49.657226931042544], + [-1.705636377162732, 49.657185773595714], + [-1.705617410761321, 49.65715761340412], + [-1.705003391939472, 49.656878257686316], + [-1.704779965956333, 49.65682661494423], + [-1.704621314587347, 49.656820432037435], + [-1.704585739342022, 49.656339910157776], + [-1.704544587394893, 49.65632874945311], + [-1.704525433983989, 49.65632355320998], + [-1.704521667859076, 49.65632654314429] + ] + }, + "length": 0.3950658324564448, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08515", + "bus2": "MVLV08514", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.704521667859076, 49.65632654314429], + [-1.704517901734163, 49.656329533078605], + [-1.704529522185396, 49.65634070022345], + [-1.704551489265828, 49.65636181811624], + [-1.704600877122317, 49.65709309298921], + [-1.70448739715825, 49.657097055026256], + [-1.704466676196257, 49.657097774245564], + [-1.7044656244128835, 49.657095165588956] + ] + }, + "length": 0.0954492734387459, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08514", + "bus2": "MVLV08517", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7044656244128835, 49.657095165588956], + [-1.70446457262951, 49.65709255693235], + [-1.704483189309966, 49.65708661143169], + [-1.704537865828387, 49.65706917381683], + [-1.704527658725012, 49.65679488388282], + [-1.704336196685355, 49.65679434696009], + [-1.701970101623435, 49.65681465555627], + [-1.701869445153427, 49.656827134535476], + [-1.701849061214368, 49.65682965853941], + [-1.7018474404969435, 49.65682712281345] + ] + }, + "length": 0.22999332122252053, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08517", + "bus2": "MVLV11487", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7018474404969435, 49.65682712281345], + [-1.701845819779519, 49.6568245870875], + [-1.701862948465297, 49.65681699209384], + [-1.701866146588843, 49.656815572417344], + [-1.70151764275735, 49.65681149732632], + [-1.701052135176404, 49.656834914108856], + [-1.700747383895348, 49.65687343948882], + [-1.700678846977321, 49.65671554402016], + [-1.700584261442887, 49.65664307418332], + [-1.700570842071872, 49.656632794038615], + [-1.7005694121374195, 49.65663345325234] + ] + }, + "length": 0.11338442666594911, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39714", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11487", + "bus2": "MVLV15647", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.7005694121374195, 49.65663345325234], + [-1.700567982202967, 49.656634112466065], + [-1.700578541704473, 49.65664571103876], + [-1.700633692345302, 49.6567063051086], + [-1.700642458227036, 49.656812258665404], + [-1.700306136582797, 49.65692212180891], + [-1.699922879766692, 49.65708494217042], + [-1.699587068199308, 49.65714653256768], + [-1.699567092677405, 49.65715019358661], + [-1.699553504846526, 49.65715834002786] + ] + }, + "length": 0.10807935641066367, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43708", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15647", + "bus2": "MVLV08518", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.699553504846526, 49.65715834002786], + [-1.699539917015647, 49.65716648646911], + [-1.699532716875093, 49.657179118335385], + [-1.699439304912264, 49.6573431103775], + [-1.699263351694736, 49.65739605663836], + [-1.699336463270182, 49.65745834504667], + [-1.699268465181139, 49.657458014960646], + [-1.69920943625858, 49.65746546981428], + [-1.699113182504093, 49.657408485634605], + [-1.698304527016932, 49.65755999876808], + [-1.698062893911774, 49.6575567010572], + [-1.697461583041591, 49.657565011758095], + [-1.697218490084788, 49.656871994905885], + [-1.697744693442282, 49.65672671709386], + [-1.697786406850478, 49.65682882008235], + [-1.697797954859862, 49.656833839394665], + [-1.69781519840905, 49.6568413395046], + [-1.697825356573214, 49.65683842436038] + ] + }, + "length": 0.3185546944113785, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39229", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08518", + "bus2": "MVLV12764", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.697825356573214, 49.65683842436038], + [-1.697835514737378, 49.65683550921616], + [-1.697838602035088, 49.65682218732805], + [-1.697840623409652, 49.65681342419931], + [-1.697778838018975, 49.656686811786194], + [-1.697146739811798, 49.65684296795896], + [-1.69739248718273, 49.65756831420456], + [-1.696496172131778, 49.65761570120611], + [-1.696265553264628, 49.65763343469004], + [-1.695681449886193, 49.65758803548188], + [-1.695669456761429, 49.65762239072309], + [-1.695665022605017, 49.65763480422198], + [-1.6956447814282445, 49.65763502482898] + ] + }, + "length": 0.2782026664562803, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39585", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12764", + "bus2": "MVBus20890", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6956447814282445, 49.65763502482898], + [-1.695624540251472, 49.657635245435976], + [-1.69561746988984, 49.65762308953775], + [-1.695596591587301, 49.657584524501154], + [-1.694976984193771, 49.65752805771521], + [-1.694881325517064, 49.65753685714968], + [-1.694881325517064, 49.65753685714968] + ] + }, + "length": 0.058144213787439426, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38558", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20890", + "bus2": "MVBus20891", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.694881325517064, 49.65753685714968], + [-1.694881325517064, 49.65753685714968], + [-1.694870805593646, 49.657538529645755], + [-1.694867677118124, 49.657541007914595], + [-1.694864664470505, 49.6575433744138], + [-1.694863785438515, 49.657545570887244], + [-1.694864353970346, 49.65754890611801], + [-1.694865902262429, 49.65755131844428], + [-1.694869182876066, 49.657554266536636], + [-1.694872469706283, 49.65755554182855], + [-1.694900047651829, 49.65756428058578], + [-1.69495085752137, 49.657573045378875], + [-1.69497044900775, 49.657574856348404], + [-1.694972621131005, 49.65757359695261], + [-1.694972633356441, 49.6575718250351], + [-1.694970869752442, 49.657570193235706], + [-1.694950269519778, 49.65756263374962], + [-1.694811584170032, 49.6574286644253], + [-1.694754658072436, 49.65738985285587], + [-1.694675833199034, 49.65732705985422], + [-1.694653623707265, 49.657307207334895], + [-1.694653623707265, 49.657307207334895] + ] + }, + "length": 0.0485068386520877, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37274", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus20891", + "bus2": "MVLV09710", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.694653623707265, 49.657307207334895], + [-1.694653623707265, 49.657307207334895], + [-1.694648566234924, 49.657308239155654], + [-1.694616194921495, 49.657292834828844], + [-1.694596778440511, 49.65726626179332], + [-1.694512415501688, 49.65720139614901], + [-1.694445549994414, 49.65717316705252], + [-1.694191078550513, 49.65711696436926], + [-1.694134447528161, 49.6571158569682], + [-1.69406229696653, 49.65711800936961], + [-1.693954598809285, 49.6571400864365], + [-1.693845082201221, 49.65717595544083], + [-1.69371451513302, 49.6572215181459], + [-1.693658901335396, 49.65723923375691], + [-1.693418375417, 49.657295635655856], + [-1.693343187764655, 49.65731071200743], + [-1.693264776748028, 49.65731970890518], + [-1.693142450457068, 49.657327246203685], + [-1.693015767034796, 49.65733100782697], + [-1.692887212891164, 49.657323546138336], + [-1.692811884510095, 49.65731494078992], + [-1.692721682262498, 49.65728324371582], + [-1.692711097980776, 49.65728077265942], + [-1.692711156367779, 49.657279583714285], + [-1.692735809065025, 49.657273753742984], + [-1.692739415519118, 49.65727153837497], + [-1.692740306193944, 49.657266859621686], + [-1.692772970921632, 49.65725584390002], + [-1.693065527594914, 49.657190012477756], + [-1.693106803183528, 49.657178934615764], + [-1.693158118507119, 49.65716379041707], + [-1.693240604745891, 49.657135908596906], + [-1.693368485511657, 49.6570808949317], + [-1.693409573087288, 49.657057629485564], + [-1.693405926102143, 49.65703585441595], + [-1.693390492821437, 49.65701024557583], + [-1.693365773667793, 49.656988426172354], + [-1.693308320628536, 49.656955017980884], + [-1.693248146998977, 49.65692591785079], + [-1.693207826064977, 49.656910346367596], + [-1.693125303768984, 49.65683596744389], + [-1.693128378483538, 49.65682842827083], + [-1.693130756861769, 49.65682259388035], + [-1.693135790036104, 49.656818451549476], + [-1.693156295865918, 49.656820969721146], + [-1.6931544029856775, 49.65682690034362] + ] + }, + "length": 0.2472968140411514, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42413", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09710", + "bus2": "MVBus21726", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6931544029856775, 49.65682690034362], + [-1.693152510105437, 49.656832830966096], + [-1.693140690954655, 49.65683523901614], + [-1.6931427118128, 49.65683942511384], + [-1.693151481587454, 49.65684750491125], + [-1.693209476595427, 49.65690091227353], + [-1.693252669441853, 49.65691759306439], + [-1.693316316485088, 49.656947701527976], + [-1.693373238151906, 49.656981046487076], + [-1.693400287616367, 49.657004307973416], + [-1.693417151422491, 49.65703119104043], + [-1.693418858866021, 49.657062598676404], + [-1.693374304427203, 49.65708774214384], + [-1.693298166698752, 49.65712023250288], + [-1.693244050883247, 49.65714217841551], + [-1.69316248707433, 49.657169813689386], + [-1.693107868783109, 49.65718522978719], + [-1.692888546978312, 49.65723633810071], + [-1.692779778709486, 49.65726048203007], + [-1.692698423186007, 49.65727621305517], + [-1.692654583441833, 49.657281315287605], + [-1.692542193906826, 49.657285058904975], + [-1.692484466808352, 49.65728620836523], + [-1.692424940469563, 49.657286851204006], + [-1.692292977895417, 49.65728550935727], + [-1.692259680432823, 49.65728221209627], + [-1.692186219099461, 49.657281979071804], + [-1.692110428824001, 49.65727856831186], + [-1.692049488588526, 49.65727656932213], + [-1.691962037720081, 49.65727547120089], + [-1.691854401241619, 49.65727450571742], + [-1.69169634795539, 49.65727709853729], + [-1.691577772454402, 49.65727863729285], + [-1.691391974011256, 49.657284563616756], + [-1.691212884622486, 49.65729212768768], + [-1.69108212142755, 49.65730193115109], + [-1.690998013026594, 49.65731000121259], + [-1.690813290305129, 49.657319550737675], + [-1.690697196909293, 49.65732322711233], + [-1.69051864108191, 49.657326150283794], + [-1.690323406593425, 49.65732380134952], + [-1.690219763089159, 49.65731972499459], + [-1.690038602812441, 49.65730440762694], + [-1.689973494217544, 49.65730382327296], + [-1.689957419253372, 49.65730619281971], + [-1.689938164927739, 49.6573130295151], + [-1.689928953469567, 49.65731723884458], + [-1.689922508665218, 49.65732525878499], + [-1.689926846029425, 49.65734439413178], + [-1.6899144761105565, 49.65734579505471] + ] + }, + "length": 0.29618321913091505, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43082", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus21726", + "bus2": "MVBus22602", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6899144761105565, 49.65734579505471], + [-1.689902106191688, 49.65734719597764], + [-1.689893952537334, 49.65733253099631], + [-1.689883517880255, 49.657327042259574], + [-1.689866566150205, 49.65732760652712], + [-1.689851832710317, 49.65732714375777], + [-1.689837756416026, 49.657320094654246], + [-1.689811194338158, 49.65732472864215], + [-1.689770822990218, 49.65734147643931], + [-1.68974781289917, 49.65735056931736], + [-1.689639749072734, 49.657403291763586], + [-1.689584894501837, 49.65743133942712], + [-1.689495601152914, 49.657486359498435], + [-1.689369875436402, 49.657567141318275], + [-1.689210031692182, 49.65767072116982], + [-1.689133511386455, 49.65772489319007], + [-1.688932299690713, 49.657873138758184], + [-1.688824045288466, 49.65796416534145], + [-1.688729443121585, 49.658049333075624], + [-1.688672923286662, 49.65809700313144], + [-1.688567768981974, 49.6581783583668], + [-1.688447336562443, 49.65826937611586], + [-1.688292981370783, 49.658385675994005], + [-1.688230391886822, 49.65843771123023], + [-1.688178301282593, 49.65846026177342], + [-1.688100506152315, 49.65850656213375], + [-1.68805498079456, 49.65852963155985], + [-1.68801859926527, 49.65854728007973], + [-1.687985278906541, 49.65856282143969], + [-1.68797193962116, 49.65856756360029], + [-1.687904903945472, 49.65859592573689], + [-1.687836406772483, 49.658618761177216], + [-1.687773406152993, 49.65864173744049], + [-1.687707055307805, 49.65866421364127], + [-1.687632341914936, 49.658685340380906], + [-1.687597756271063, 49.658693981598304], + [-1.6875535692144, 49.65870295120399], + [-1.687513904909563, 49.65871218398774], + [-1.687477338221695, 49.658720998979575], + [-1.687435773069277, 49.658727911989054], + [-1.687385894109799, 49.65873725072297], + [-1.687284757646732, 49.658750749410686], + [-1.687245627175155, 49.65875235679245], + [-1.687226644410474, 49.65875176526927], + [-1.687185800600312, 49.65874974274826], + [-1.687137085084551, 49.65874398943454], + [-1.687033931127971, 49.65873175588405], + [-1.687000916584208, 49.65872643345839], + [-1.687000916584208, 49.65872643345839] + ] + }, + "length": 0.27575724267606383, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47802", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22602", + "bus2": "MVBus22603", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.687000916584208, 49.65872643345839], + [-1.687000916584208, 49.65872643345839], + [-1.686970742780532, 49.658721825850186], + [-1.686864833669288, 49.65871276818489], + [-1.686750491666597, 49.65869620350682], + [-1.686520660235055, 49.65866625932611], + [-1.6862083366353, 49.65862557849003], + [-1.685909066963389, 49.6585867108749], + [-1.685685278281926, 49.6585573195575], + [-1.685476654697023, 49.65853280104184], + [-1.685442421346384, 49.65852870571752], + [-1.685112527216627, 49.65849354312171], + [-1.68488785090189, 49.65846447661544], + [-1.684736289368716, 49.658441063276726], + [-1.684603220068488, 49.658427124465256], + [-1.684470644531766, 49.658411190775794], + [-1.684344595507814, 49.65839826826076], + [-1.684220756570289, 49.658380524186136], + [-1.684094066483814, 49.65836456531888], + [-1.683971924911957, 49.65835007376753], + [-1.683761701283773, 49.65832087554532], + [-1.683691553446464, 49.65831032985342], + [-1.683572945631358, 49.65829427269268], + [-1.683356190893484, 49.65826673860415], + [-1.683221700182995, 49.65824951836259], + [-1.683098453486965, 49.658232598763526], + [-1.682968009314595, 49.65821469524507], + [-1.682850931220949, 49.65819888330731], + [-1.682764141959558, 49.65818897097931], + [-1.6826586781223, 49.65817569546537], + [-1.682623811273247, 49.6581705862859], + [-1.682558714169335, 49.65816435932101], + [-1.682453680575476, 49.65814336288646], + [-1.682345827490233, 49.65812297260189], + [-1.682233236042189, 49.658107136908164], + [-1.682123664688506, 49.6580979810145], + [-1.682014125147201, 49.65808272714925], + [-1.681904761130945, 49.658071280114264], + [-1.681797002800972, 49.65805876350617], + [-1.681580726631921, 49.658023917601746], + [-1.681473886690803, 49.65801145113601], + [-1.68136716295708, 49.65799711930074], + [-1.68126114165059, 49.657983438468484], + [-1.681110470795186, 49.65796302152122], + [-1.681041500542145, 49.65795404484363], + [-1.68093167446423, 49.65794006745609], + [-1.680756367723196, 49.65791674545396], + [-1.680650300094999, 49.657902472140094], + [-1.680544953383338, 49.65789224832794], + [-1.68044501573429, 49.657874552005886], + [-1.68034703628985, 49.65786518043657], + [-1.680244269316751, 49.65785148058563], + [-1.680161831826119, 49.65783718652244], + [-1.680092302984831, 49.65782779623007], + [-1.680008059258093, 49.65781712301027], + [-1.679921209671613, 49.65780484569685], + [-1.679752365909624, 49.657782314814504], + [-1.67968053626866, 49.65777343231517], + [-1.679465260113473, 49.657744736240076], + [-1.679356242520934, 49.65773116224051], + [-1.679204681506407, 49.65771085345038], + [-1.679075473908005, 49.65768786006316], + [-1.679026837248203, 49.65768184914107], + [-1.67897866340961, 49.65767344885779], + [-1.678926035329053, 49.65766477377808], + [-1.678883054155872, 49.65765933940972], + [-1.678846191645214, 49.65765192143305], + [-1.678785217146016, 49.657641742870545], + [-1.678752083502674, 49.657632600450846], + [-1.678752083502674, 49.657632600450846] + ] + }, + "length": 0.6082420532559634, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45639", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22603", + "bus2": "MVBus22604", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.678752083502674, 49.657632600450846], + [-1.678752083502674, 49.657632600450846], + [-1.678655771591739, 49.657619943933625], + [-1.67854619816165, 49.65760546145833], + [-1.678443407774987, 49.65759479130411], + [-1.678341877746072, 49.65757989779403], + [-1.678140109130628, 49.657554545845564], + [-1.678041590760031, 49.6575425375894], + [-1.67783766814151, 49.6575162135232], + [-1.677539407645088, 49.65747819134837], + [-1.677336141016467, 49.65745139506758], + [-1.67707260443018, 49.65741790267715], + [-1.676933881645884, 49.65739929630037], + [-1.676827859548407, 49.65738574657], + [-1.676619652239228, 49.657357764183985], + [-1.676530441792488, 49.6573467947611], + [-1.676437178503299, 49.6573343141322], + [-1.676244579576855, 49.6573080523875], + [-1.676050342062734, 49.65728455138865], + [-1.675954139358735, 49.65726991981983], + [-1.675892723527981, 49.65726327047057], + [-1.675856254239052, 49.65725714244844], + [-1.67569549060223, 49.65724570429279], + [-1.675651975270466, 49.65724385646937], + [-1.675641965335153, 49.6572426867701], + [-1.675631965147522, 49.65723583359685], + [-1.675569391305867, 49.657209367441276], + [-1.675398407174624, 49.65718528332874], + [-1.67531716495159, 49.6571754067692], + [-1.675186271725575, 49.65715594555002], + [-1.675092779518475, 49.65714582769529], + [-1.674930244527375, 49.657125428348955], + [-1.674868614969784, 49.65711887563815], + [-1.674804747012458, 49.6571097533888], + [-1.674692561111355, 49.657094958714595], + [-1.674600142995935, 49.65708546130469], + [-1.674486934848108, 49.65707070034376], + [-1.674416818339161, 49.65705979780329], + [-1.674329314720484, 49.65704814991709], + [-1.674269819481414, 49.65703756051881], + [-1.674195246251969, 49.65702687757574], + [-1.674086000254391, 49.65701881003487], + [-1.673966304130941, 49.657014011399724], + [-1.673934457361715, 49.65701363757407], + [-1.673928516287633, 49.65701154152207], + [-1.673927343536305, 49.65700543865399], + [-1.673924391873185, 49.65700014113187], + [-1.673922973085514, 49.656996896986335], + [-1.673920117920933, 49.65699564280755], + [-1.673893732207176, 49.65699408075931], + [-1.673893732207176, 49.65699408075931] + ] + }, + "length": 0.35978615142983944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38007", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22604", + "bus2": "MVLV01706", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.673893732207176, 49.65699408075931], + [-1.673893732207176, 49.65699408075931], + [-1.673707310915567, 49.65697781693429], + [-1.673406236814339, 49.65695676628434], + [-1.673209625311018, 49.6569555239853], + [-1.672890090963208, 49.65695318556568], + [-1.672307056857197, 49.65696001158772], + [-1.670580370829152, 49.65698705886373], + [-1.67057193383152, 49.656677104031814], + [-1.670680684591789, 49.65660224611452], + [-1.670679585514564, 49.656588794073365], + [-1.6706848356208555, 49.656587653461884] + ] + }, + "length": 0.2869541126249135, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36813", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01706", + "bus2": "MVBus26721", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6706848356208555, 49.656587653461884], + [-1.670690085727147, 49.656586512850396], + [-1.67070169883703, 49.6565976832098], + [-1.670635519700989, 49.656687766511745], + [-1.67064106690749, 49.65696571458043], + [-1.672937131365823, 49.65694244508355], + [-1.673393205346661, 49.65694342208668], + [-1.673714225148667, 49.656963056106264], + [-1.674125972813084, 49.65699482395728], + [-1.674275818087714, 49.656969091911975], + [-1.674277152501746, 49.65696686252891], + [-1.674277152501746, 49.65696686252891] + ] + }, + "length": 0.30693215195631945, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41423", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus26721", + "bus2": "MVLV01698", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.674277152501746, 49.65696686252891], + [-1.674277152501746, 49.65696686252891], + [-1.675071025881376, 49.6556395065306], + [-1.674725960202185, 49.655558698636405], + [-1.674487217505072, 49.6555903649928], + [-1.674286160954233, 49.65589538000418], + [-1.674089395171112, 49.65604986454216], + [-1.673979041567607, 49.65596695458006], + [-1.673965482110437, 49.655956757270765], + [-1.67396768671466, 49.655955025085554] + ] + }, + "length": 0.2753332481217924, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32648", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01698", + "bus2": "MVLV10776", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.67396768671466, 49.655955025085554], + [-1.673969891318883, 49.65595329290034], + [-1.67398785998382, 49.65596002583815], + [-1.674042081236127, 49.655980358059864], + [-1.674226487934641, 49.655844313039566], + [-1.674444469242429, 49.655508999198744], + [-1.674715024543798, 49.65547623289931], + [-1.675128102066041, 49.6555744962176], + [-1.675176000480159, 49.65549899947378], + [-1.675255547689846, 49.65550814095187], + [-1.675275983450737, 49.65551049353201], + [-1.6752788266700036, 49.65550693267713] + ] + }, + "length": 0.13470701833430523, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47234", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10776", + "bus2": "MVLV09700", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6752788266700036, 49.65550693267713], + [-1.67528166988927, 49.65550337182224], + [-1.67526690675527, 49.655493897992116], + [-1.675208568631158, 49.65545645555238], + [-1.676192776458766, 49.65384476857928], + [-1.676286536254999, 49.65377038451844], + [-1.67637377763908, 49.653734955738095], + [-1.677036721521781, 49.65400466253389], + [-1.677494415781153, 49.654173412998034], + [-1.677347146971025, 49.65465303404376], + [-1.677343089919127, 49.65466624356853], + [-1.6773448547737, 49.65466658066605] + ] + }, + "length": 0.36876498865043383, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35242", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09700", + "bus2": "MVLV09696", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6773448547737, 49.65466658066605], + [-1.677346619628273, 49.65466691776358], + [-1.67735420638769, 49.6546543824335], + [-1.677628463706782, 49.6542011840085], + [-1.678113900867778, 49.654302342084655], + [-1.678667036130465, 49.654332711132014], + [-1.679010455358163, 49.65430911684581], + [-1.678880187127391, 49.654799883819], + [-1.678770591808817, 49.65490092737212], + [-1.678634464207953, 49.65523611346554], + [-1.678097528581897, 49.655268926155365], + [-1.678076864895278, 49.65527018750508], + [-1.6780747779003309, 49.655274905822935] + ] + }, + "length": 0.3056172779538304, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40080", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09696", + "bus2": "MVLV01697", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6780747779003309, 49.655274905822935], + [-1.678072690905384, 49.65527962414078], + [-1.678089181314788, 49.65528780839687], + [-1.678144418098371, 49.6553152181978], + [-1.67866190791389, 49.65530000143054], + [-1.678875756206534, 49.655404254920114], + [-1.678899802351542, 49.65540039026296], + [-1.6789199507355, 49.65539715856858], + [-1.678922603714337, 49.65539083429302] + ] + }, + "length": 0.06652125023066995, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43579", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01697", + "bus2": "MVLV10768", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.678922603714337, 49.65539083429302], + [-1.678925256693174, 49.65538451001746], + [-1.678910414981441, 49.655375102131124], + [-1.678736703536458, 49.65526499317018], + [-1.678829534214599, 49.655010547963066], + [-1.678973702731857, 49.65484076098087], + [-1.679144308889874, 49.65428376571825], + [-1.680034460154386, 49.65416198357893], + [-1.680088848218442, 49.65482375205744], + [-1.680622201035775, 49.65473798528497], + [-1.680629997114304, 49.65473672820811], + [-1.680650220947472, 49.654729537058294], + [-1.6806498367623357, 49.654726771172655] + ] + }, + "length": 0.3141553288143411, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44845", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10768", + "bus2": "MVBus32481", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.6806498367623357, 49.654726771172655], + [-1.680649452577199, 49.654724005287015], + [-1.680620082467265, 49.654724108466446], + [-1.680617720428734, 49.654724366761755], + [-1.680198212687284, 49.65477043741846], + [-1.680146921626781, 49.65409595873909], + [-1.679058120325391, 49.65423091938446], + [-1.678679042911614, 49.654259357440885], + [-1.678125611370777, 49.654225392366186], + [-1.677614535697321, 49.65411612883299], + [-1.677087691774939, 49.653949763364736], + [-1.676459009396345, 49.65365816574056], + [-1.676468589659444, 49.65355518204723], + [-1.676470873384789, 49.653553577574854], + [-1.676470873384789, 49.653553577574854] + ] + }, + "length": 0.4045281743946701, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35243", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32481", + "bus2": "MVLV13410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.676470873384789, 49.653553577574854], + [-1.676470873384789, 49.653553577574854], + [-1.676424765437117, 49.653482511979], + [-1.676521421331345, 49.65344053000349], + [-1.676858481206689, 49.65325319473666], + [-1.678152565183635, 49.65269022736848], + [-1.678544385244714, 49.65250613193956], + [-1.679098718928381, 49.65214385975146], + [-1.679151650142219, 49.652057816640855], + [-1.679181001130015, 49.651886589081585], + [-1.679277799252331, 49.65181342328669], + [-1.679907774876601, 49.65152996245496], + [-1.679918713866793, 49.65154223352049], + [-1.679931285366726, 49.65155465719737], + [-1.679931285366726, 49.65155465719737] + ] + }, + "length": 0.3519938016465228, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV16887_production", + "bus": "MVLV16887", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16887_consumption", + "bus": "MVLV16887", + "phases": "abc", + "powers": [ + [20992.888932081103, 6900.028913760339], + [20992.888932081103, 6900.028913760339], + [20992.888932081103, 6900.028913760339] + ] + }, + { + "id": "MVLV12762_production", + "bus": "MVLV12762", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12762_consumption", + "bus": "MVLV12762", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV04334_production", + "bus": "MVLV04334", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04334_consumption", + "bus": "MVLV04334", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV15648_production", + "bus": "MVLV15648", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15648_consumption", + "bus": "MVLV15648", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV11486_production", + "bus": "MVLV11486", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11486_consumption", + "bus": "MVLV11486", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV12761_production", + "bus": "MVLV12761", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12761_consumption", + "bus": "MVLV12761", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV08515_production", + "bus": "MVLV08515", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08515_consumption", + "bus": "MVLV08515", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV08514_production", + "bus": "MVLV08514", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08514_consumption", + "bus": "MVLV08514", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV08517_production", + "bus": "MVLV08517", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08517_consumption", + "bus": "MVLV08517", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV11487_production", + "bus": "MVLV11487", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11487_consumption", + "bus": "MVLV11487", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV15647_production", + "bus": "MVLV15647", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15647_consumption", + "bus": "MVLV15647", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV08518_production", + "bus": "MVLV08518", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08518_consumption", + "bus": "MVLV08518", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV12764_production", + "bus": "MVLV12764", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12764_consumption", + "bus": "MVLV12764", + "phases": "abc", + "powers": [ + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828], + [34171.6174720216, 11231.667511305828] + ] + }, + { + "id": "MVLV09710_production", + "bus": "MVLV09710", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09710_consumption", + "bus": "MVLV09710", + "phases": "abc", + "powers": [ + [32302.18066331616, 10617.21334664805], + [32302.18066331616, 10617.21334664805], + [32302.18066331616, 10617.21334664805] + ] + }, + { + "id": "MVLV01706_production", + "bus": "MVLV01706", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01706_consumption", + "bus": "MVLV01706", + "phases": "abc", + "powers": [ + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683] + ] + }, + { + "id": "MVLV01698_production", + "bus": "MVLV01698", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01698_consumption", + "bus": "MVLV01698", + "phases": "abc", + "powers": [ + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683] + ] + }, + { + "id": "MVLV10776_production", + "bus": "MVLV10776", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10776_consumption", + "bus": "MVLV10776", + "phases": "abc", + "powers": [ + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683] + ] + }, + { + "id": "MVLV09700_production", + "bus": "MVLV09700", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09700_consumption", + "bus": "MVLV09700", + "phases": "abc", + "powers": [ + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683] + ] + }, + { + "id": "MVLV09696_production", + "bus": "MVLV09696", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09696_consumption", + "bus": "MVLV09696", + "phases": "abc", + "powers": [ + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683] + ] + }, + { + "id": "MVLV01697_production", + "bus": "MVLV01697", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01697_consumption", + "bus": "MVLV01697", + "phases": "abc", + "powers": [ + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683], + [36920.71829453672, 12135.253255200683] + ] + }, + { + "id": "MVLV10768_production", + "bus": "MVLV10768", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10768_consumption", + "bus": "MVLV10768", + "phases": "abc", + "powers": [ + [32302.18066331616, 10617.21334664805], + [32302.18066331616, 10617.21334664805], + [32302.18066331616, 10617.21334664805] + ] + }, + { + "id": "MVLV13410_production", + "bus": "MVLV13410", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13410_consumption", + "bus": "MVLV13410", + "phases": "abc", + "powers": [ + [32302.18066331616, 10617.21334664805], + [32302.18066331616, 10617.21334664805], + [32302.18066331616, 10617.21334664805] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder232_Summer.json b/roseau/load_flow/data/networks/MVFeeder232_Summer.json new file mode 100644 index 00000000..0fa5532d --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder232_Summer.json @@ -0,0 +1,2449 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.480951121955717, 48.55306081426247] + } + }, + { + "id": "HVMV16", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.480951121955717, 48.55306081426247] + } + }, + { + "id": "MVBus02065", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.481478941947719, 48.5516792566919] + } + }, + { + "id": "MVBus02066", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540711137646514, 48.52866172204854] + } + }, + { + "id": "MVLV19187", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5407393002418477, 48.528722416439514] + } + }, + { + "id": "MVBus18124", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541250132048243, 48.52901194360347] + } + }, + { + "id": "MVBus18125", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543773388049549, 48.527435714338985] + } + }, + { + "id": "MVBus18126", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54368927326359, 48.52651719085881] + } + }, + { + "id": "MVBus18127", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543597094297414, 48.521270762668024] + } + }, + { + "id": "MVBus18128", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543018988027638, 48.51811436140585] + } + }, + { + "id": "MVBus18129", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541950199528134, 48.51627467859784] + } + }, + { + "id": "MVLV08087", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541892791108224, 48.516275500246905] + } + }, + { + "id": "MVBus18131", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542713276498972, 48.51630019405735] + } + }, + { + "id": "MVBus18132", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546595110847239, 48.51351840557732] + } + }, + { + "id": "MVLV11693", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549874417076119, 48.51328696908033] + } + }, + { + "id": "MVBus18134", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54648288050085, 48.51180724058062] + } + }, + { + "id": "MVLV11692", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.545202242552729, 48.51236649794666] + } + }, + { + "id": "MVBus18135", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549484139904866, 48.50883339939408] + } + }, + { + "id": "MVBus18136", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550206823560244, 48.506594905291905] + } + }, + { + "id": "MVLV12206", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550657327418384, 48.50670965386375] + } + }, + { + "id": "MVBus18151", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544330135848701, 48.50625699483946] + } + }, + { + "id": "MVLV16510", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544273568518067, 48.50713848580767] + } + }, + { + "id": "MVLV04916", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.539812687057545, 48.50495238135772] + } + }, + { + "id": "MVBus18137", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.552517516036617, 48.50070436464574] + } + }, + { + "id": "MVBus18139", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550525792181719, 48.50046445820923] + } + }, + { + "id": "MVBus18142", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54594405881023, 48.49991244299773] + } + }, + { + "id": "MVLV04549", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54471216962048, 48.500812011051494] + } + }, + { + "id": "MVBus18143", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546039604662548, 48.49955827259096] + } + }, + { + "id": "MVBus18144", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546208588807372, 48.49617619322259] + } + }, + { + "id": "MVBus18145", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546335613494759, 48.49363356982077] + } + }, + { + "id": "MVBus18147", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.545472108046927, 48.489233170871124] + } + }, + { + "id": "MVBus18146", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.547791851449651, 48.49306953019419] + } + }, + { + "id": "MVLV06933", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544750853574297, 48.49637633726677] + } + }, + { + "id": "MVBus18140", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550757687157653, 48.49985363073012] + } + }, + { + "id": "MVBus18141", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.554517778746445, 48.499844603554735] + } + }, + { + "id": "MVBus18138", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.561462602065331, 48.5008956649214] + } + }, + { + "id": "MVBus18155", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543311826142846, 48.526335372317355] + } + }, + { + "id": "MVLV17074", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.53943409979167, 48.52453662061788] + } + }, + { + "id": "MVBus16271", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541816399593816, 48.530014800295405] + } + }, + { + "id": "MVBus16272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549975000651848, 48.5281505762032] + } + }, + { + "id": "MVBus16274", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.554764788314803, 48.52669185049975] + } + }, + { + "id": "MVBus16276", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.558800346431667, 48.525433783523816] + } + }, + { + "id": "MVLV17143", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.557789595923771, 48.52501638217188] + } + }, + { + "id": "MVBus16277", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.560628107060558, 48.524941267714205] + } + }, + { + "id": "MVBus16278", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.566380318628245, 48.524694266551045] + } + }, + { + "id": "MVBus16280", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.566448158932665, 48.52407357603867] + } + }, + { + "id": "MVLV14272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.566423881056259, 48.52407453059369] + } + }, + { + "id": "MVBus16281", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.56465394114039, 48.520033791014896] + } + }, + { + "id": "MVBus16282", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564491960080981, 48.51992212672882] + } + }, + { + "id": "MVBus16283", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564111995320302, 48.51963491292472] + } + }, + { + "id": "MVBus16284", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.563127054612326, 48.51828552233302] + } + }, + { + "id": "MVBus16285", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564133081404684, 48.51575028018875] + } + }, + { + "id": "MVBus16286", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.568066585866426, 48.51554364477023] + } + }, + { + "id": "MVLV13935", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564471040507244, 48.51989277253283] + } + }, + { + "id": "MVLV17075", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564445711356673, 48.527963271453274] + } + }, + { + "id": "MVBus16289", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.567188445296061, 48.52466235447822] + } + }, + { + "id": "MVBus16290", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.572574753072218, 48.52414323836759] + } + }, + { + "id": "MVBus16291", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.571147770590084, 48.52818479539541] + } + }, + { + "id": "MVLV17142", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.572116843944956, 48.52806284345167] + } + }, + { + "id": "MVBus16292", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.570735844206441, 48.52929767150866] + } + }, + { + "id": "MVLV16629", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.57027769540357, 48.53031039976622] + } + }, + { + "id": "MVBus25989", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.569311917293301, 48.53149360990055] + } + }, + { + "id": "MVLV11702", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.567415544559584, 48.53152557552724] + } + }, + { + "id": "MVBus26847", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.562613678447487, 48.53155108903226] + } + }, + { + "id": "MVLV13936", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.555103571193291, 48.52185325111848] + } + }, + { + "id": "MVLV04950", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550220693123534, 48.528615590660756] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV16", + "geometry": { + "type": "Point", + "coordinates": [-1.480951121955717, 48.55306081426247] + } + }, + { + "id": "MVBranch41967", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV16", + "bus2": "MVBus02065", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.480951121955717, 48.55306081426247], + [-1.480931792761967, 48.55304566991032], + [-1.480931792761967, 48.55304566991032], + [-1.480931435591994, 48.55303375632181], + [-1.481478941947719, 48.5516792566919], + [-1.481478941947719, 48.5516792566919] + ] + }, + "length": 0.15727597000329052, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch13860", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02065", + "bus2": "MVBus02066", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.481478941947719, 48.5516792566919], + [-1.481478941947719, 48.5516792566919], + [-1.48367217582773, 48.5402473763072], + [-1.489363378721545, 48.5365353015778], + [-1.500796614988101, 48.5331497253835], + [-1.51788862856628, 48.5309917145436], + [-1.540711137646514, 48.52866172204854], + [-1.540711137646514, 48.52866172204854] + ] + }, + "length": 5.785430947880203, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch39425", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02066", + "bus2": "MVLV19187", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540711137646514, 48.52866172204854], + [-1.540711137646514, 48.52866172204854], + [-1.540749990969175, 48.52865191532068], + [-1.54077019147986, 48.52867793056845], + [-1.540725639151505, 48.528692739508685], + [-1.540725763228532, 48.52869878382927], + [-1.540726030049279, 48.528712581968364], + [-1.5407393002418477, 48.528722416439514] + ] + }, + "length": 0.012211272156633606, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45749", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV19187", + "bus2": "MVBus18124", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407393002418477, 48.528722416439514], + [-1.540745475848779, 48.52873044944361], + [-1.540764636969021, 48.52873482538227], + [-1.540772728885903, 48.528736675145396], + [-1.540804174679467, 48.52871745370808], + [-1.540838394843269, 48.52873573669866], + [-1.54092764073007, 48.528794058758066], + [-1.54105013145268, 48.52885735681454], + [-1.541136010715773, 48.528901739235266], + [-1.54124186648001, 48.52898023563977], + [-1.541250132048243, 48.52901194360347], + [-1.541250132048243, 48.52901194360347] + ] + }, + "length": 0.052572379997209664, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32488", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18124", + "bus2": "MVBus18125", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541250132048243, 48.52901194360347], + [-1.541250132048243, 48.52901194360347], + [-1.543513734086843, 48.528734247115395], + [-1.543773388049549, 48.527435714338985], + [-1.543773388049549, 48.527435714338985] + ] + }, + "length": 0.31568185930032555, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05815", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18125", + "bus2": "MVBus18126", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543773388049549, 48.527435714338985], + [-1.543773388049549, 48.527435714338985], + [-1.54368927326359, 48.52651719085881], + [-1.54368927326359, 48.52651719085881] + ] + }, + "length": 0.10232911084034518, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05816", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18126", + "bus2": "MVBus18127", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54368927326359, 48.52651719085881], + [-1.54368927326359, 48.52651719085881], + [-1.543597094297414, 48.521270762668024], + [-1.543597094297414, 48.521270762668024] + ] + }, + "length": 0.5834451909876508, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11801", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18127", + "bus2": "MVBus18128", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543597094297414, 48.521270762668024], + [-1.543597094297414, 48.521270762668024], + [-1.543584054670605, 48.520997625091454], + [-1.543018988027638, 48.51811436140585], + [-1.543018988027638, 48.51811436140585] + ] + }, + "length": 0.35371438128793947, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch41934", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18128", + "bus2": "MVBus18129", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543018988027638, 48.51811436140585], + [-1.543018988027638, 48.51811436140585], + [-1.541856025801888, 48.5181255230969], + [-1.541883218474555, 48.51750718588299], + [-1.541950199528134, 48.51627467859784], + [-1.541950199528134, 48.51627467859784] + ] + }, + "length": 0.29185611922074794, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37318", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18129", + "bus2": "MVLV08087", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541950199528134, 48.51627467859784], + [-1.541950199528134, 48.51627467859784], + [-1.541928543732977, 48.516260376076275], + [-1.541892791108224, 48.516275500246905], + [-1.541892791108224, 48.516275500246905] + ] + }, + "length": 0.005387219437622075, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48379", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18129", + "bus2": "MVBus18131", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541950199528134, 48.51627467859784], + [-1.541950199528134, 48.51627467859784], + [-1.542713276498972, 48.51630019405735], + [-1.542713276498972, 48.51630019405735] + ] + }, + "length": 0.05644575283858191, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch13476", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18131", + "bus2": "MVBus18132", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542713276498972, 48.51630019405735], + [-1.542713276498972, 48.51630019405735], + [-1.546595110847239, 48.51351840557732], + [-1.546595110847239, 48.51351840557732] + ] + }, + "length": 0.42182520865833195, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05798", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18132", + "bus2": "MVLV11693", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546595110847239, 48.51351840557732], + [-1.546595110847239, 48.51351840557732], + [-1.549874417076119, 48.51328696908033], + [-1.549874417076119, 48.51328696908033] + ] + }, + "length": 0.24364449345962885, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18132", + "bus2": "MVBus18134", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546595110847239, 48.51351840557732], + [-1.546595110847239, 48.51351840557732], + [-1.54648288050085, 48.51180724058062], + [-1.54648288050085, 48.51180724058062] + ] + }, + "length": 0.19046261936131878, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05386", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18134", + "bus2": "MVLV11692", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54648288050085, 48.51180724058062], + [-1.54648288050085, 48.51180724058062], + [-1.545202242552729, 48.51236649794666], + [-1.545202242552729, 48.51236649794666] + ] + }, + "length": 0.11322629500890477, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05797", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18134", + "bus2": "MVBus18135", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54648288050085, 48.51180724058062], + [-1.54648288050085, 48.51180724058062], + [-1.548740374214826, 48.510549453587466], + [-1.549484139904866, 48.50883339939408], + [-1.549484139904866, 48.50883339939408] + ] + }, + "length": 0.41625799562163196, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13478", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18135", + "bus2": "MVBus18136", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549484139904866, 48.50883339939408], + [-1.549484139904866, 48.50883339939408], + [-1.54949314386119, 48.508805516010526], + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905] + ] + }, + "length": 0.2545842245220032, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20766", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18136", + "bus2": "MVLV12206", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905], + [-1.550657327418384, 48.50670965386375], + [-1.550657327418384, 48.50670965386375] + ] + }, + "length": 0.035650306156386105, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13856", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18136", + "bus2": "MVBus18151", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905], + [-1.544330135848701, 48.50625699483946], + [-1.544330135848701, 48.50625699483946] + ] + }, + "length": 0.43586333573182945, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13479", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18151", + "bus2": "MVLV16510", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544330135848701, 48.50625699483946], + [-1.544330135848701, 48.50625699483946], + [-1.544273568518067, 48.50713848580767], + [-1.544273568518067, 48.50713848580767] + ] + }, + "length": 0.09811102382463735, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22620", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18151", + "bus2": "MVLV04916", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544330135848701, 48.50625699483946], + [-1.544330135848701, 48.50625699483946], + [-1.539812687057545, 48.50495238135772], + [-1.539812687057545, 48.50495238135772] + ] + }, + "length": 0.36397075238192916, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13477", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18136", + "bus2": "MVBus18137", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905], + [-1.55207876009101, 48.50117784633596], + [-1.552517516036617, 48.50070436464574], + [-1.552517516036617, 48.50070436464574] + ] + }, + "length": 0.6798903811193758, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00912", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18137", + "bus2": "MVBus18139", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.552517516036617, 48.50070436464574], + [-1.552517516036617, 48.50070436464574], + [-1.550525792181719, 48.50046445820923], + [-1.550525792181719, 48.50046445820923] + ] + }, + "length": 0.14958758934150304, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05387", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18139", + "bus2": "MVBus18142", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550525792181719, 48.50046445820923], + [-1.550525792181719, 48.50046445820923], + [-1.54594405881023, 48.49991244299773], + [-1.54594405881023, 48.49991244299773] + ] + }, + "length": 0.3441145016340234, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30134", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18142", + "bus2": "MVLV04549", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54594405881023, 48.49991244299773], + [-1.54594405881023, 48.49991244299773], + [-1.54471216962048, 48.500812011051494], + [-1.54471216962048, 48.500812011051494] + ] + }, + "length": 0.13525629710923887, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05388", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18142", + "bus2": "MVBus18143", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54594405881023, 48.49991244299773], + [-1.54594405881023, 48.49991244299773], + [-1.546039604662548, 48.49955827259096], + [-1.546039604662548, 48.49955827259096] + ] + }, + "length": 0.04001173001394585, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24251", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18143", + "bus2": "MVBus18144", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546039604662548, 48.49955827259096], + [-1.546039604662548, 48.49955827259096], + [-1.546208588807372, 48.49617619322259], + [-1.546208588807372, 48.49617619322259] + ] + }, + "length": 0.37629451918835716, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20644", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18144", + "bus2": "MVBus18145", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546208588807372, 48.49617619322259], + [-1.546208588807372, 48.49617619322259], + [-1.546335613494759, 48.49363356982077], + [-1.546335613494759, 48.49363356982077] + ] + }, + "length": 0.2828953957730023, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13480", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18145", + "bus2": "MVBus18147", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546335613494759, 48.49363356982077], + [-1.546335613494759, 48.49363356982077], + [-1.546205487762659, 48.49268519779081], + [-1.545472108046927, 48.489233170871124], + [-1.545472108046927, 48.489233170871124] + ] + }, + "length": 0.49357001977129167, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30133", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18145", + "bus2": "MVBus18146", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546335613494759, 48.49363356982077], + [-1.546335613494759, 48.49363356982077], + [-1.547791851449651, 48.49306953019419], + [-1.547791851449651, 48.49306953019419] + ] + }, + "length": 0.12457373286961472, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch33658", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18144", + "bus2": "MVLV06933", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546208588807372, 48.49617619322259], + [-1.546208588807372, 48.49617619322259], + [-1.546163206596123, 48.496179637750856], + [-1.546114923356977, 48.49617339370539], + [-1.546030643906099, 48.496150033846824], + [-1.545868816468609, 48.49609658517436], + [-1.545796565157224, 48.496067609444296], + [-1.545671171471222, 48.496037337547], + [-1.545510144970415, 48.496040171181996], + [-1.545377464569481, 48.4960517671586], + [-1.545209770161014, 48.49611390079066], + [-1.545048525080701, 48.49617316705424], + [-1.544928843007531, 48.49622188686486], + [-1.544766294952047, 48.496341770962836], + [-1.544750853574297, 48.49637633726677], + [-1.544750853574297, 48.49637633726677] + ] + }, + "length": 0.12514318360867333, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch00657", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18139", + "bus2": "MVBus18140", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550525792181719, 48.50046445820923], + [-1.550525792181719, 48.50046445820923], + [-1.550757687157653, 48.49985363073012], + [-1.550757687157653, 48.49985363073012] + ] + }, + "length": 0.07005257277568233, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42241", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18140", + "bus2": "MVBus18141", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550757687157653, 48.49985363073012], + [-1.550757687157653, 48.49985363073012], + [-1.550772920837456, 48.49983795418307], + [-1.552300093595419, 48.499815434140395], + [-1.553737200240187, 48.499816696612484], + [-1.554507829081777, 48.499800341029264], + [-1.554517778746445, 48.499844603554735], + [-1.554517778746445, 48.499844603554735] + ] + }, + "length": 0.2831246479931285, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20767", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18137", + "bus2": "MVBus18138", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.552517516036617, 48.50070436464574], + [-1.552517516036617, 48.50070436464574], + [-1.561462602065331, 48.5008956649214], + [-1.561462602065331, 48.5008956649214] + ] + }, + "length": 0.6613862657253364, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18126", + "bus2": "MVBus18155", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54368927326359, 48.52651719085881], + [-1.54368927326359, 48.52651719085881], + [-1.543311826142846, 48.526335372317355], + [-1.543311826142846, 48.526335372317355] + ] + }, + "length": 0.03443893142478112, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11802", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18155", + "bus2": "MVLV17074", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543311826142846, 48.526335372317355], + [-1.543311826142846, 48.526335372317355], + [-1.53943409979167, 48.52453662061788], + [-1.53943409979167, 48.52453662061788] + ] + }, + "length": 0.34935474936375255, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38453", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV19187", + "bus2": "MVBus16271", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407393002418477, 48.528722416439514], + [-1.540746394827485, 48.52872421790658], + [-1.540766852758472, 48.528722340916254], + [-1.540772532661135, 48.5287218216232], + [-1.540827231054627, 48.52869001084777], + [-1.54083643538341, 48.52869698145708], + [-1.540913344838151, 48.52874903867408], + [-1.541001267117247, 48.528801949738096], + [-1.541139461047629, 48.528867765886204], + [-1.541292189389803, 48.52898161829941], + [-1.541405470228495, 48.52922304255998], + [-1.541438595716016, 48.52932975599046], + [-1.541503427183287, 48.529538666079794], + [-1.541585313196577, 48.52982949800695], + [-1.54164978603542, 48.53003356843414], + [-1.541816399593816, 48.530014800295405], + [-1.541816399593816, 48.530014800295405] + ] + }, + "length": 0.18726485334894744, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch05215", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16271", + "bus2": "MVBus16272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541816399593816, 48.530014800295405], + [-1.541816399593816, 48.530014800295405], + [-1.547088740782389, 48.52912712179258], + [-1.549975000651848, 48.5281505762032], + [-1.549975000651848, 48.5281505762032] + ] + }, + "length": 0.640966387076621, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20711", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16272", + "bus2": "MVBus16274", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549975000651848, 48.5281505762032], + [-1.549975000651848, 48.5281505762032], + [-1.554764788314803, 48.52669185049975], + [-1.554764788314803, 48.52669185049975] + ] + }, + "length": 0.3891959981728256, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20712", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16274", + "bus2": "MVBus16276", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.554764788314803, 48.52669185049975], + [-1.554764788314803, 48.52669185049975], + [-1.558800346431667, 48.525433783523816], + [-1.558800346431667, 48.525433783523816] + ] + }, + "length": 0.32927704767560245, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20713", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16276", + "bus2": "MVLV17143", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558800346431667, 48.525433783523816], + [-1.558800346431667, 48.525433783523816], + [-1.557789595923771, 48.52501638217188], + [-1.557789595923771, 48.52501638217188] + ] + }, + "length": 0.08791083568496559, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05813", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16276", + "bus2": "MVBus16277", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558800346431667, 48.525433783523816], + [-1.558800346431667, 48.525433783523816], + [-1.560628107060558, 48.524941267714205], + [-1.560628107060558, 48.524941267714205] + ] + }, + "length": 0.14569306278429903, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05812", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16277", + "bus2": "MVBus16278", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.560628107060558, 48.524941267714205], + [-1.560628107060558, 48.524941267714205], + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045] + ] + }, + "length": 0.42577585741145935, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01013", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16278", + "bus2": "MVBus16280", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045], + [-1.566448158932665, 48.52407357603867], + [-1.566448158932665, 48.52407357603867] + ] + }, + "length": 0.06920277281002768, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28782", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16280", + "bus2": "MVLV14272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566448158932665, 48.52407357603867], + [-1.566448158932665, 48.52407357603867], + [-1.566423881056259, 48.52407453059369], + [-1.566423881056259, 48.52407453059369] + ] + }, + "length": 0.001796458276207273, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05494", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16280", + "bus2": "MVBus16281", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566448158932665, 48.52407357603867], + [-1.566448158932665, 48.52407357603867], + [-1.565875606024219, 48.52174143428685], + [-1.565715041632176, 48.520765254848165], + [-1.56465394114039, 48.520033791014896], + [-1.56465394114039, 48.520033791014896] + ] + }, + "length": 0.4849205732180417, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05472", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16281", + "bus2": "MVBus16282", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56465394114039, 48.520033791014896], + [-1.56465394114039, 48.520033791014896], + [-1.564491960080981, 48.51992212672882], + [-1.564491960080981, 48.51992212672882] + ] + }, + "length": 0.017244364937418964, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01014", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16282", + "bus2": "MVBus16283", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564491960080981, 48.51992212672882], + [-1.564491960080981, 48.51992212672882], + [-1.564111995320302, 48.51963491292472], + [-1.564111995320302, 48.51963491292472] + ] + }, + "length": 0.042519688607768884, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch41113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16283", + "bus2": "MVBus16284", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564111995320302, 48.51963491292472], + [-1.564111995320302, 48.51963491292472], + [-1.564175078572279, 48.51960012244928], + [-1.563938659171826, 48.5192810968531], + [-1.563417933641942, 48.51853573291047], + [-1.563270349565037, 48.51842734538977], + [-1.563260203282294, 48.51836628586064], + [-1.563127054612326, 48.51828552233302], + [-1.563127054612326, 48.51828552233302] + ] + }, + "length": 0.17337809445854596, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45763", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16284", + "bus2": "MVBus16285", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.563127054612326, 48.51828552233302], + [-1.563127054612326, 48.51828552233302], + [-1.563103711027032, 48.51802724117635], + [-1.56309817518798, 48.51785892928983], + [-1.563226358271758, 48.51731177334673], + [-1.563445525624898, 48.51637620131981], + [-1.563580998662717, 48.51607146496962], + [-1.563792819417851, 48.515904738400195], + [-1.563982601915087, 48.51578012430562], + [-1.564133081404684, 48.51575028018875], + [-1.564133081404684, 48.51575028018875] + ] + }, + "length": 0.3052687696299153, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42587", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16285", + "bus2": "MVBus16286", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564133081404684, 48.51575028018875], + [-1.564133081404684, 48.51575028018875], + [-1.564392283444212, 48.515616272787724], + [-1.564539416777802, 48.51560455816154], + [-1.564681069129749, 48.51566195237741], + [-1.565708543899329, 48.51562243657093], + [-1.565918626404687, 48.51560700380665], + [-1.566843367289996, 48.51534946795782], + [-1.567208174700681, 48.5153359976752], + [-1.56783448751535, 48.51544410310774], + [-1.567853542559899, 48.51548872977923], + [-1.568060857712863, 48.515521412957426], + [-1.568066585866426, 48.51554364477023], + [-1.568066585866426, 48.51554364477023] + ] + }, + "length": 0.31140773779321634, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch24310", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16282", + "bus2": "MVLV13935", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564491960080981, 48.51992212672882], + [-1.564491960080981, 48.51992212672882], + [-1.564471040507244, 48.51989277253283], + [-1.564471040507244, 48.51989277253283] + ] + }, + "length": 0.0036115366476767467, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05814", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16278", + "bus2": "MVLV17075", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045], + [-1.564445711356673, 48.527963271453274], + [-1.564445711356673, 48.527963271453274] + ] + }, + "length": 0.3905925912818533, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13642", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16278", + "bus2": "MVBus16289", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045], + [-1.567117273440814, 48.52466516368389], + [-1.567188445296061, 48.52466235447822], + [-1.567188445296061, 48.52466235447822] + ] + }, + "length": 0.059798093805106575, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05217", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16289", + "bus2": "MVBus16290", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.567188445296061, 48.52466235447822], + [-1.567188445296061, 48.52466235447822], + [-1.572574753072218, 48.52414323836759], + [-1.572574753072218, 48.52414323836759] + ] + }, + "length": 0.4020305539474718, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16290", + "bus2": "MVBus16291", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.572574753072218, 48.52414323836759], + [-1.572574753072218, 48.52414323836759], + [-1.571147770590084, 48.52818479539541], + [-1.571147770590084, 48.52818479539541] + ] + }, + "length": 0.46161767653803065, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24311", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16291", + "bus2": "MVLV17142", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.571147770590084, 48.52818479539541], + [-1.571147770590084, 48.52818479539541], + [-1.572116843944956, 48.52806284345167], + [-1.572116843944956, 48.52806284345167] + ] + }, + "length": 0.07284961003559856, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13645", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16291", + "bus2": "MVBus16292", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.571147770590084, 48.52818479539541], + [-1.571147770590084, 48.52818479539541], + [-1.570735844206441, 48.52929767150866], + [-1.570735844206441, 48.52929767150866] + ] + }, + "length": 0.12743760303491475, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch47818", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16292", + "bus2": "MVLV16629", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.570735844206441, 48.52929767150866], + [-1.570735844206441, 48.52929767150866], + [-1.570677092899632, 48.52932852352307], + [-1.570642393275525, 48.52934939989932], + [-1.570586839704426, 48.529368670236636], + [-1.570489638562891, 48.52938064912953], + [-1.570153949385153, 48.52938796158549], + [-1.570110083737531, 48.5296910168923], + [-1.570084209194029, 48.529753553928536], + [-1.570081557271373, 48.529904322934826], + [-1.569934163182408, 48.530181411392846], + [-1.570322285875, 48.530272482332926], + [-1.57030022185984, 48.53029760341768], + [-1.570289807881036, 48.53030945947996], + [-1.57027769540357, 48.53031039976622] + ] + }, + "length": 0.1714026584830801, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37631", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16629", + "bus2": "MVBus25989", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.57027769540357, 48.53031039976622], + [-1.570265582926104, 48.530311340052485], + [-1.57025135558707, 48.53030141432346], + [-1.570243348276653, 48.530295828433886], + [-1.570090366625953, 48.530259858025346], + [-1.569946769725084, 48.53052921530994], + [-1.569727341285589, 48.53068338415963], + [-1.569412514645828, 48.530706818312346], + [-1.569447918220324, 48.53091663481042], + [-1.569404696726503, 48.5309525804769], + [-1.569421242700044, 48.5311326244695], + [-1.569427214879668, 48.53142463575786], + [-1.569400871719194, 48.531464470163044], + [-1.569361363922504, 48.53149174241094], + [-1.569311917293301, 48.53149360990055], + [-1.569311917293301, 48.53149360990055] + ] + }, + "length": 0.18696207511301322, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33472", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus25989", + "bus2": "MVLV11702", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.569311917293301, 48.53149360990055], + [-1.569311917293301, 48.53149360990055], + [-1.569121425035223, 48.531474340569105], + [-1.567571515361342, 48.531528949142995], + [-1.567461862300803, 48.531527259420685], + [-1.567430317531325, 48.53152677087583], + [-1.567415544559584, 48.53152557552724] + ] + }, + "length": 0.1392927077735165, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42182", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11702", + "bus2": "MVBus26847", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.567415544559584, 48.53152557552724], + [-1.567400771587843, 48.531524380178645], + [-1.567360837337889, 48.53152080235734], + [-1.567284750986531, 48.531525249725895], + [-1.567260887537324, 48.5313838623755], + [-1.56724352327969, 48.53135899968272], + [-1.56720704476641, 48.531357773909626], + [-1.567101590881959, 48.531362209717024], + [-1.566711709985445, 48.53137859172699], + [-1.565943408133776, 48.53132906719382], + [-1.565560059562574, 48.53105146478999], + [-1.565190981724465, 48.53111764922949], + [-1.565165881153204, 48.531597314878304], + [-1.564900480161369, 48.53237923250737], + [-1.563496393254041, 48.53221493855495], + [-1.562874903784543, 48.532244770504626], + [-1.562863514197719, 48.53182470616985], + [-1.562551725882172, 48.53162495755879], + [-1.562603772564722, 48.53156596081666], + [-1.562613678447487, 48.53155108903226], + [-1.562613678447487, 48.53155108903226] + ] + }, + "length": 0.5759150366774, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch13639", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16274", + "bus2": "MVLV13936", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.554764788314803, 48.52669185049975], + [-1.554764788314803, 48.52669185049975], + [-1.554218558791524, 48.526036488018605], + [-1.553579595290158, 48.52557067761526], + [-1.555103571193291, 48.52185325111848], + [-1.555103571193291, 48.52185325111848] + ] + }, + "length": 0.5818083295433246, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05817", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16272", + "bus2": "MVLV04950", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549975000651848, 48.5281505762032], + [-1.549975000651848, 48.5281505762032], + [-1.550220693123534, 48.528615590660756], + [-1.550220693123534, 48.528615590660756] + ] + }, + "length": 0.05480165380197354, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV19187_production", + "bus": "MVLV19187", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV19187_consumption", + "bus": "MVLV19187", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV08087_production", + "bus": "MVLV08087", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08087_consumption", + "bus": "MVLV08087", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV11693_production", + "bus": "MVLV11693", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11693_consumption", + "bus": "MVLV11693", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV11692_production", + "bus": "MVLV11692", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11692_consumption", + "bus": "MVLV11692", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV12206_production", + "bus": "MVLV12206", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12206_consumption", + "bus": "MVLV12206", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV16510_production", + "bus": "MVLV16510", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16510_consumption", + "bus": "MVLV16510", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV04916_production", + "bus": "MVLV04916", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04916_consumption", + "bus": "MVLV04916", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV04549_production", + "bus": "MVLV04549", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04549_consumption", + "bus": "MVLV04549", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV06933_production", + "bus": "MVLV06933", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06933_consumption", + "bus": "MVLV06933", + "phases": "abc", + "powers": [ + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299], + [3969.894245863307, 1304.841137856299] + ] + }, + { + "id": "MVLV17074_production", + "bus": "MVLV17074", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV17074_consumption", + "bus": "MVLV17074", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV17143_production", + "bus": "MVLV17143", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV17143_consumption", + "bus": "MVLV17143", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV14272_production", + "bus": "MVLV14272", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV14272_consumption", + "bus": "MVLV14272", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV13935_production", + "bus": "MVLV13935", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV13935_consumption", + "bus": "MVLV13935", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV17075_production", + "bus": "MVLV17075", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV17075_consumption", + "bus": "MVLV17075", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV17142_production", + "bus": "MVLV17142", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV17142_consumption", + "bus": "MVLV17142", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV16629_production", + "bus": "MVLV16629", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV16629_consumption", + "bus": "MVLV16629", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV11702_production", + "bus": "MVLV11702", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV11702_consumption", + "bus": "MVLV11702", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV13936_production", + "bus": "MVLV13936", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV13936_consumption", + "bus": "MVLV13936", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + }, + { + "id": "MVLV04950_production", + "bus": "MVLV04950", + "phases": "abc", + "powers": [ + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0], + [-2465.858585858586, 0.0] + ] + }, + { + "id": "MVLV04950_consumption", + "bus": "MVLV04950", + "phases": "abc", + "powers": [ + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883], + [6501.6746079056, 2136.9971006635883] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder232_Winter.json b/roseau/load_flow/data/networks/MVFeeder232_Winter.json new file mode 100644 index 00000000..4743be5a --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder232_Winter.json @@ -0,0 +1,2449 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.480951121955717, 48.55306081426247] + } + }, + { + "id": "HVMV16", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.480951121955717, 48.55306081426247] + } + }, + { + "id": "MVBus02065", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.481478941947719, 48.5516792566919] + } + }, + { + "id": "MVBus02066", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540711137646514, 48.52866172204854] + } + }, + { + "id": "MVLV19187", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5407393002418477, 48.528722416439514] + } + }, + { + "id": "MVBus18124", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541250132048243, 48.52901194360347] + } + }, + { + "id": "MVBus18125", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543773388049549, 48.527435714338985] + } + }, + { + "id": "MVBus18126", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54368927326359, 48.52651719085881] + } + }, + { + "id": "MVBus18127", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543597094297414, 48.521270762668024] + } + }, + { + "id": "MVBus18128", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543018988027638, 48.51811436140585] + } + }, + { + "id": "MVBus18129", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541950199528134, 48.51627467859784] + } + }, + { + "id": "MVLV08087", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541892791108224, 48.516275500246905] + } + }, + { + "id": "MVBus18131", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542713276498972, 48.51630019405735] + } + }, + { + "id": "MVBus18132", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546595110847239, 48.51351840557732] + } + }, + { + "id": "MVLV11693", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549874417076119, 48.51328696908033] + } + }, + { + "id": "MVBus18134", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54648288050085, 48.51180724058062] + } + }, + { + "id": "MVLV11692", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.545202242552729, 48.51236649794666] + } + }, + { + "id": "MVBus18135", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549484139904866, 48.50883339939408] + } + }, + { + "id": "MVBus18136", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550206823560244, 48.506594905291905] + } + }, + { + "id": "MVLV12206", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550657327418384, 48.50670965386375] + } + }, + { + "id": "MVBus18151", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544330135848701, 48.50625699483946] + } + }, + { + "id": "MVLV16510", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544273568518067, 48.50713848580767] + } + }, + { + "id": "MVLV04916", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.539812687057545, 48.50495238135772] + } + }, + { + "id": "MVBus18137", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.552517516036617, 48.50070436464574] + } + }, + { + "id": "MVBus18139", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550525792181719, 48.50046445820923] + } + }, + { + "id": "MVBus18142", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54594405881023, 48.49991244299773] + } + }, + { + "id": "MVLV04549", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.54471216962048, 48.500812011051494] + } + }, + { + "id": "MVBus18143", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546039604662548, 48.49955827259096] + } + }, + { + "id": "MVBus18144", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546208588807372, 48.49617619322259] + } + }, + { + "id": "MVBus18145", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.546335613494759, 48.49363356982077] + } + }, + { + "id": "MVBus18147", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.545472108046927, 48.489233170871124] + } + }, + { + "id": "MVBus18146", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.547791851449651, 48.49306953019419] + } + }, + { + "id": "MVLV06933", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544750853574297, 48.49637633726677] + } + }, + { + "id": "MVBus18140", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550757687157653, 48.49985363073012] + } + }, + { + "id": "MVBus18141", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.554517778746445, 48.499844603554735] + } + }, + { + "id": "MVBus18138", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.561462602065331, 48.5008956649214] + } + }, + { + "id": "MVBus18155", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543311826142846, 48.526335372317355] + } + }, + { + "id": "MVLV17074", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.53943409979167, 48.52453662061788] + } + }, + { + "id": "MVBus16271", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541816399593816, 48.530014800295405] + } + }, + { + "id": "MVBus16272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549975000651848, 48.5281505762032] + } + }, + { + "id": "MVBus16274", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.554764788314803, 48.52669185049975] + } + }, + { + "id": "MVBus16276", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.558800346431667, 48.525433783523816] + } + }, + { + "id": "MVLV17143", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.557789595923771, 48.52501638217188] + } + }, + { + "id": "MVBus16277", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.560628107060558, 48.524941267714205] + } + }, + { + "id": "MVBus16278", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.566380318628245, 48.524694266551045] + } + }, + { + "id": "MVBus16280", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.566448158932665, 48.52407357603867] + } + }, + { + "id": "MVLV14272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.566423881056259, 48.52407453059369] + } + }, + { + "id": "MVBus16281", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.56465394114039, 48.520033791014896] + } + }, + { + "id": "MVBus16282", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564491960080981, 48.51992212672882] + } + }, + { + "id": "MVBus16283", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564111995320302, 48.51963491292472] + } + }, + { + "id": "MVBus16284", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.563127054612326, 48.51828552233302] + } + }, + { + "id": "MVBus16285", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564133081404684, 48.51575028018875] + } + }, + { + "id": "MVBus16286", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.568066585866426, 48.51554364477023] + } + }, + { + "id": "MVLV13935", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564471040507244, 48.51989277253283] + } + }, + { + "id": "MVLV17075", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.564445711356673, 48.527963271453274] + } + }, + { + "id": "MVBus16289", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.567188445296061, 48.52466235447822] + } + }, + { + "id": "MVBus16290", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.572574753072218, 48.52414323836759] + } + }, + { + "id": "MVBus16291", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.571147770590084, 48.52818479539541] + } + }, + { + "id": "MVLV17142", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.572116843944956, 48.52806284345167] + } + }, + { + "id": "MVBus16292", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.570735844206441, 48.52929767150866] + } + }, + { + "id": "MVLV16629", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.57027769540357, 48.53031039976622] + } + }, + { + "id": "MVBus25989", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.569311917293301, 48.53149360990055] + } + }, + { + "id": "MVLV11702", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.567415544559584, 48.53152557552724] + } + }, + { + "id": "MVBus26847", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.562613678447487, 48.53155108903226] + } + }, + { + "id": "MVLV13936", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.555103571193291, 48.52185325111848] + } + }, + { + "id": "MVLV04950", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550220693123534, 48.528615590660756] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV16", + "geometry": { + "type": "Point", + "coordinates": [-1.480951121955717, 48.55306081426247] + } + }, + { + "id": "MVBranch41967", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV16", + "bus2": "MVBus02065", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.480951121955717, 48.55306081426247], + [-1.480931792761967, 48.55304566991032], + [-1.480931792761967, 48.55304566991032], + [-1.480931435591994, 48.55303375632181], + [-1.481478941947719, 48.5516792566919], + [-1.481478941947719, 48.5516792566919] + ] + }, + "length": 0.15727597000329052, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch13860", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02065", + "bus2": "MVBus02066", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.481478941947719, 48.5516792566919], + [-1.481478941947719, 48.5516792566919], + [-1.48367217582773, 48.5402473763072], + [-1.489363378721545, 48.5365353015778], + [-1.500796614988101, 48.5331497253835], + [-1.51788862856628, 48.5309917145436], + [-1.540711137646514, 48.52866172204854], + [-1.540711137646514, 48.52866172204854] + ] + }, + "length": 5.785430947880203, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch39425", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02066", + "bus2": "MVLV19187", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540711137646514, 48.52866172204854], + [-1.540711137646514, 48.52866172204854], + [-1.540749990969175, 48.52865191532068], + [-1.54077019147986, 48.52867793056845], + [-1.540725639151505, 48.528692739508685], + [-1.540725763228532, 48.52869878382927], + [-1.540726030049279, 48.528712581968364], + [-1.5407393002418477, 48.528722416439514] + ] + }, + "length": 0.012211272156633606, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45749", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV19187", + "bus2": "MVBus18124", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407393002418477, 48.528722416439514], + [-1.540745475848779, 48.52873044944361], + [-1.540764636969021, 48.52873482538227], + [-1.540772728885903, 48.528736675145396], + [-1.540804174679467, 48.52871745370808], + [-1.540838394843269, 48.52873573669866], + [-1.54092764073007, 48.528794058758066], + [-1.54105013145268, 48.52885735681454], + [-1.541136010715773, 48.528901739235266], + [-1.54124186648001, 48.52898023563977], + [-1.541250132048243, 48.52901194360347], + [-1.541250132048243, 48.52901194360347] + ] + }, + "length": 0.052572379997209664, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32488", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18124", + "bus2": "MVBus18125", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541250132048243, 48.52901194360347], + [-1.541250132048243, 48.52901194360347], + [-1.543513734086843, 48.528734247115395], + [-1.543773388049549, 48.527435714338985], + [-1.543773388049549, 48.527435714338985] + ] + }, + "length": 0.31568185930032555, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05815", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18125", + "bus2": "MVBus18126", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543773388049549, 48.527435714338985], + [-1.543773388049549, 48.527435714338985], + [-1.54368927326359, 48.52651719085881], + [-1.54368927326359, 48.52651719085881] + ] + }, + "length": 0.10232911084034518, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05816", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18126", + "bus2": "MVBus18127", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54368927326359, 48.52651719085881], + [-1.54368927326359, 48.52651719085881], + [-1.543597094297414, 48.521270762668024], + [-1.543597094297414, 48.521270762668024] + ] + }, + "length": 0.5834451909876508, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11801", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18127", + "bus2": "MVBus18128", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543597094297414, 48.521270762668024], + [-1.543597094297414, 48.521270762668024], + [-1.543584054670605, 48.520997625091454], + [-1.543018988027638, 48.51811436140585], + [-1.543018988027638, 48.51811436140585] + ] + }, + "length": 0.35371438128793947, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch41934", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18128", + "bus2": "MVBus18129", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543018988027638, 48.51811436140585], + [-1.543018988027638, 48.51811436140585], + [-1.541856025801888, 48.5181255230969], + [-1.541883218474555, 48.51750718588299], + [-1.541950199528134, 48.51627467859784], + [-1.541950199528134, 48.51627467859784] + ] + }, + "length": 0.29185611922074794, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37318", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18129", + "bus2": "MVLV08087", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541950199528134, 48.51627467859784], + [-1.541950199528134, 48.51627467859784], + [-1.541928543732977, 48.516260376076275], + [-1.541892791108224, 48.516275500246905], + [-1.541892791108224, 48.516275500246905] + ] + }, + "length": 0.005387219437622075, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48379", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18129", + "bus2": "MVBus18131", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541950199528134, 48.51627467859784], + [-1.541950199528134, 48.51627467859784], + [-1.542713276498972, 48.51630019405735], + [-1.542713276498972, 48.51630019405735] + ] + }, + "length": 0.05644575283858191, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch13476", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18131", + "bus2": "MVBus18132", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542713276498972, 48.51630019405735], + [-1.542713276498972, 48.51630019405735], + [-1.546595110847239, 48.51351840557732], + [-1.546595110847239, 48.51351840557732] + ] + }, + "length": 0.42182520865833195, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05798", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18132", + "bus2": "MVLV11693", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546595110847239, 48.51351840557732], + [-1.546595110847239, 48.51351840557732], + [-1.549874417076119, 48.51328696908033], + [-1.549874417076119, 48.51328696908033] + ] + }, + "length": 0.24364449345962885, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18132", + "bus2": "MVBus18134", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546595110847239, 48.51351840557732], + [-1.546595110847239, 48.51351840557732], + [-1.54648288050085, 48.51180724058062], + [-1.54648288050085, 48.51180724058062] + ] + }, + "length": 0.19046261936131878, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05386", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18134", + "bus2": "MVLV11692", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54648288050085, 48.51180724058062], + [-1.54648288050085, 48.51180724058062], + [-1.545202242552729, 48.51236649794666], + [-1.545202242552729, 48.51236649794666] + ] + }, + "length": 0.11322629500890477, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05797", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18134", + "bus2": "MVBus18135", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54648288050085, 48.51180724058062], + [-1.54648288050085, 48.51180724058062], + [-1.548740374214826, 48.510549453587466], + [-1.549484139904866, 48.50883339939408], + [-1.549484139904866, 48.50883339939408] + ] + }, + "length": 0.41625799562163196, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13478", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18135", + "bus2": "MVBus18136", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549484139904866, 48.50883339939408], + [-1.549484139904866, 48.50883339939408], + [-1.54949314386119, 48.508805516010526], + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905] + ] + }, + "length": 0.2545842245220032, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20766", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18136", + "bus2": "MVLV12206", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905], + [-1.550657327418384, 48.50670965386375], + [-1.550657327418384, 48.50670965386375] + ] + }, + "length": 0.035650306156386105, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13856", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18136", + "bus2": "MVBus18151", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905], + [-1.544330135848701, 48.50625699483946], + [-1.544330135848701, 48.50625699483946] + ] + }, + "length": 0.43586333573182945, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13479", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18151", + "bus2": "MVLV16510", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544330135848701, 48.50625699483946], + [-1.544330135848701, 48.50625699483946], + [-1.544273568518067, 48.50713848580767], + [-1.544273568518067, 48.50713848580767] + ] + }, + "length": 0.09811102382463735, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch22620", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18151", + "bus2": "MVLV04916", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544330135848701, 48.50625699483946], + [-1.544330135848701, 48.50625699483946], + [-1.539812687057545, 48.50495238135772], + [-1.539812687057545, 48.50495238135772] + ] + }, + "length": 0.36397075238192916, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13477", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18136", + "bus2": "MVBus18137", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550206823560244, 48.506594905291905], + [-1.550206823560244, 48.506594905291905], + [-1.55207876009101, 48.50117784633596], + [-1.552517516036617, 48.50070436464574], + [-1.552517516036617, 48.50070436464574] + ] + }, + "length": 0.6798903811193758, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch00912", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18137", + "bus2": "MVBus18139", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.552517516036617, 48.50070436464574], + [-1.552517516036617, 48.50070436464574], + [-1.550525792181719, 48.50046445820923], + [-1.550525792181719, 48.50046445820923] + ] + }, + "length": 0.14958758934150304, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05387", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18139", + "bus2": "MVBus18142", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550525792181719, 48.50046445820923], + [-1.550525792181719, 48.50046445820923], + [-1.54594405881023, 48.49991244299773], + [-1.54594405881023, 48.49991244299773] + ] + }, + "length": 0.3441145016340234, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30134", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18142", + "bus2": "MVLV04549", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54594405881023, 48.49991244299773], + [-1.54594405881023, 48.49991244299773], + [-1.54471216962048, 48.500812011051494], + [-1.54471216962048, 48.500812011051494] + ] + }, + "length": 0.13525629710923887, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05388", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18142", + "bus2": "MVBus18143", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54594405881023, 48.49991244299773], + [-1.54594405881023, 48.49991244299773], + [-1.546039604662548, 48.49955827259096], + [-1.546039604662548, 48.49955827259096] + ] + }, + "length": 0.04001173001394585, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24251", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18143", + "bus2": "MVBus18144", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546039604662548, 48.49955827259096], + [-1.546039604662548, 48.49955827259096], + [-1.546208588807372, 48.49617619322259], + [-1.546208588807372, 48.49617619322259] + ] + }, + "length": 0.37629451918835716, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20644", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18144", + "bus2": "MVBus18145", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546208588807372, 48.49617619322259], + [-1.546208588807372, 48.49617619322259], + [-1.546335613494759, 48.49363356982077], + [-1.546335613494759, 48.49363356982077] + ] + }, + "length": 0.2828953957730023, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13480", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18145", + "bus2": "MVBus18147", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546335613494759, 48.49363356982077], + [-1.546335613494759, 48.49363356982077], + [-1.546205487762659, 48.49268519779081], + [-1.545472108046927, 48.489233170871124], + [-1.545472108046927, 48.489233170871124] + ] + }, + "length": 0.49357001977129167, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch30133", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18145", + "bus2": "MVBus18146", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546335613494759, 48.49363356982077], + [-1.546335613494759, 48.49363356982077], + [-1.547791851449651, 48.49306953019419], + [-1.547791851449651, 48.49306953019419] + ] + }, + "length": 0.12457373286961472, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch33658", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18144", + "bus2": "MVLV06933", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.546208588807372, 48.49617619322259], + [-1.546208588807372, 48.49617619322259], + [-1.546163206596123, 48.496179637750856], + [-1.546114923356977, 48.49617339370539], + [-1.546030643906099, 48.496150033846824], + [-1.545868816468609, 48.49609658517436], + [-1.545796565157224, 48.496067609444296], + [-1.545671171471222, 48.496037337547], + [-1.545510144970415, 48.496040171181996], + [-1.545377464569481, 48.4960517671586], + [-1.545209770161014, 48.49611390079066], + [-1.545048525080701, 48.49617316705424], + [-1.544928843007531, 48.49622188686486], + [-1.544766294952047, 48.496341770962836], + [-1.544750853574297, 48.49637633726677], + [-1.544750853574297, 48.49637633726677] + ] + }, + "length": 0.12514318360867333, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch00657", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18139", + "bus2": "MVBus18140", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550525792181719, 48.50046445820923], + [-1.550525792181719, 48.50046445820923], + [-1.550757687157653, 48.49985363073012], + [-1.550757687157653, 48.49985363073012] + ] + }, + "length": 0.07005257277568233, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch42241", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18140", + "bus2": "MVBus18141", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550757687157653, 48.49985363073012], + [-1.550757687157653, 48.49985363073012], + [-1.550772920837456, 48.49983795418307], + [-1.552300093595419, 48.499815434140395], + [-1.553737200240187, 48.499816696612484], + [-1.554507829081777, 48.499800341029264], + [-1.554517778746445, 48.499844603554735], + [-1.554517778746445, 48.499844603554735] + ] + }, + "length": 0.2831246479931285, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch20767", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18137", + "bus2": "MVBus18138", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.552517516036617, 48.50070436464574], + [-1.552517516036617, 48.50070436464574], + [-1.561462602065331, 48.5008956649214], + [-1.561462602065331, 48.5008956649214] + ] + }, + "length": 0.6613862657253364, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13643", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18126", + "bus2": "MVBus18155", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.54368927326359, 48.52651719085881], + [-1.54368927326359, 48.52651719085881], + [-1.543311826142846, 48.526335372317355], + [-1.543311826142846, 48.526335372317355] + ] + }, + "length": 0.03443893142478112, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11802", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus18155", + "bus2": "MVLV17074", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.543311826142846, 48.526335372317355], + [-1.543311826142846, 48.526335372317355], + [-1.53943409979167, 48.52453662061788], + [-1.53943409979167, 48.52453662061788] + ] + }, + "length": 0.34935474936375255, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38453", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV19187", + "bus2": "MVBus16271", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407393002418477, 48.528722416439514], + [-1.540746394827485, 48.52872421790658], + [-1.540766852758472, 48.528722340916254], + [-1.540772532661135, 48.5287218216232], + [-1.540827231054627, 48.52869001084777], + [-1.54083643538341, 48.52869698145708], + [-1.540913344838151, 48.52874903867408], + [-1.541001267117247, 48.528801949738096], + [-1.541139461047629, 48.528867765886204], + [-1.541292189389803, 48.52898161829941], + [-1.541405470228495, 48.52922304255998], + [-1.541438595716016, 48.52932975599046], + [-1.541503427183287, 48.529538666079794], + [-1.541585313196577, 48.52982949800695], + [-1.54164978603542, 48.53003356843414], + [-1.541816399593816, 48.530014800295405], + [-1.541816399593816, 48.530014800295405] + ] + }, + "length": 0.18726485334894744, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch05215", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16271", + "bus2": "MVBus16272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541816399593816, 48.530014800295405], + [-1.541816399593816, 48.530014800295405], + [-1.547088740782389, 48.52912712179258], + [-1.549975000651848, 48.5281505762032], + [-1.549975000651848, 48.5281505762032] + ] + }, + "length": 0.640966387076621, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20711", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16272", + "bus2": "MVBus16274", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549975000651848, 48.5281505762032], + [-1.549975000651848, 48.5281505762032], + [-1.554764788314803, 48.52669185049975], + [-1.554764788314803, 48.52669185049975] + ] + }, + "length": 0.3891959981728256, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20712", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16274", + "bus2": "MVBus16276", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.554764788314803, 48.52669185049975], + [-1.554764788314803, 48.52669185049975], + [-1.558800346431667, 48.525433783523816], + [-1.558800346431667, 48.525433783523816] + ] + }, + "length": 0.32927704767560245, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch20713", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16276", + "bus2": "MVLV17143", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558800346431667, 48.525433783523816], + [-1.558800346431667, 48.525433783523816], + [-1.557789595923771, 48.52501638217188], + [-1.557789595923771, 48.52501638217188] + ] + }, + "length": 0.08791083568496559, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05813", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16276", + "bus2": "MVBus16277", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558800346431667, 48.525433783523816], + [-1.558800346431667, 48.525433783523816], + [-1.560628107060558, 48.524941267714205], + [-1.560628107060558, 48.524941267714205] + ] + }, + "length": 0.14569306278429903, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05812", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16277", + "bus2": "MVBus16278", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.560628107060558, 48.524941267714205], + [-1.560628107060558, 48.524941267714205], + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045] + ] + }, + "length": 0.42577585741145935, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01013", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16278", + "bus2": "MVBus16280", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045], + [-1.566448158932665, 48.52407357603867], + [-1.566448158932665, 48.52407357603867] + ] + }, + "length": 0.06920277281002768, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch28782", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16280", + "bus2": "MVLV14272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566448158932665, 48.52407357603867], + [-1.566448158932665, 48.52407357603867], + [-1.566423881056259, 48.52407453059369], + [-1.566423881056259, 48.52407453059369] + ] + }, + "length": 0.001796458276207273, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05494", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16280", + "bus2": "MVBus16281", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566448158932665, 48.52407357603867], + [-1.566448158932665, 48.52407357603867], + [-1.565875606024219, 48.52174143428685], + [-1.565715041632176, 48.520765254848165], + [-1.56465394114039, 48.520033791014896], + [-1.56465394114039, 48.520033791014896] + ] + }, + "length": 0.4849205732180417, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05472", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16281", + "bus2": "MVBus16282", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.56465394114039, 48.520033791014896], + [-1.56465394114039, 48.520033791014896], + [-1.564491960080981, 48.51992212672882], + [-1.564491960080981, 48.51992212672882] + ] + }, + "length": 0.017244364937418964, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01014", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16282", + "bus2": "MVBus16283", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564491960080981, 48.51992212672882], + [-1.564491960080981, 48.51992212672882], + [-1.564111995320302, 48.51963491292472], + [-1.564111995320302, 48.51963491292472] + ] + }, + "length": 0.042519688607768884, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch41113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16283", + "bus2": "MVBus16284", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564111995320302, 48.51963491292472], + [-1.564111995320302, 48.51963491292472], + [-1.564175078572279, 48.51960012244928], + [-1.563938659171826, 48.5192810968531], + [-1.563417933641942, 48.51853573291047], + [-1.563270349565037, 48.51842734538977], + [-1.563260203282294, 48.51836628586064], + [-1.563127054612326, 48.51828552233302], + [-1.563127054612326, 48.51828552233302] + ] + }, + "length": 0.17337809445854596, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45763", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16284", + "bus2": "MVBus16285", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.563127054612326, 48.51828552233302], + [-1.563127054612326, 48.51828552233302], + [-1.563103711027032, 48.51802724117635], + [-1.56309817518798, 48.51785892928983], + [-1.563226358271758, 48.51731177334673], + [-1.563445525624898, 48.51637620131981], + [-1.563580998662717, 48.51607146496962], + [-1.563792819417851, 48.515904738400195], + [-1.563982601915087, 48.51578012430562], + [-1.564133081404684, 48.51575028018875], + [-1.564133081404684, 48.51575028018875] + ] + }, + "length": 0.3052687696299153, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42587", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16285", + "bus2": "MVBus16286", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564133081404684, 48.51575028018875], + [-1.564133081404684, 48.51575028018875], + [-1.564392283444212, 48.515616272787724], + [-1.564539416777802, 48.51560455816154], + [-1.564681069129749, 48.51566195237741], + [-1.565708543899329, 48.51562243657093], + [-1.565918626404687, 48.51560700380665], + [-1.566843367289996, 48.51534946795782], + [-1.567208174700681, 48.5153359976752], + [-1.56783448751535, 48.51544410310774], + [-1.567853542559899, 48.51548872977923], + [-1.568060857712863, 48.515521412957426], + [-1.568066585866426, 48.51554364477023], + [-1.568066585866426, 48.51554364477023] + ] + }, + "length": 0.31140773779321634, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch24310", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16282", + "bus2": "MVLV13935", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.564491960080981, 48.51992212672882], + [-1.564491960080981, 48.51992212672882], + [-1.564471040507244, 48.51989277253283], + [-1.564471040507244, 48.51989277253283] + ] + }, + "length": 0.0036115366476767467, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05814", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16278", + "bus2": "MVLV17075", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045], + [-1.564445711356673, 48.527963271453274], + [-1.564445711356673, 48.527963271453274] + ] + }, + "length": 0.3905925912818533, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13642", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16278", + "bus2": "MVBus16289", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.566380318628245, 48.524694266551045], + [-1.566380318628245, 48.524694266551045], + [-1.567117273440814, 48.52466516368389], + [-1.567188445296061, 48.52466235447822], + [-1.567188445296061, 48.52466235447822] + ] + }, + "length": 0.059798093805106575, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05217", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16289", + "bus2": "MVBus16290", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.567188445296061, 48.52466235447822], + [-1.567188445296061, 48.52466235447822], + [-1.572574753072218, 48.52414323836759], + [-1.572574753072218, 48.52414323836759] + ] + }, + "length": 0.4020305539474718, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16290", + "bus2": "MVBus16291", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.572574753072218, 48.52414323836759], + [-1.572574753072218, 48.52414323836759], + [-1.571147770590084, 48.52818479539541], + [-1.571147770590084, 48.52818479539541] + ] + }, + "length": 0.46161767653803065, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch24311", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16291", + "bus2": "MVLV17142", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.571147770590084, 48.52818479539541], + [-1.571147770590084, 48.52818479539541], + [-1.572116843944956, 48.52806284345167], + [-1.572116843944956, 48.52806284345167] + ] + }, + "length": 0.07284961003559856, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch13645", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16291", + "bus2": "MVBus16292", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.571147770590084, 48.52818479539541], + [-1.571147770590084, 48.52818479539541], + [-1.570735844206441, 48.52929767150866], + [-1.570735844206441, 48.52929767150866] + ] + }, + "length": 0.12743760303491475, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch47818", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16292", + "bus2": "MVLV16629", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.570735844206441, 48.52929767150866], + [-1.570735844206441, 48.52929767150866], + [-1.570677092899632, 48.52932852352307], + [-1.570642393275525, 48.52934939989932], + [-1.570586839704426, 48.529368670236636], + [-1.570489638562891, 48.52938064912953], + [-1.570153949385153, 48.52938796158549], + [-1.570110083737531, 48.5296910168923], + [-1.570084209194029, 48.529753553928536], + [-1.570081557271373, 48.529904322934826], + [-1.569934163182408, 48.530181411392846], + [-1.570322285875, 48.530272482332926], + [-1.57030022185984, 48.53029760341768], + [-1.570289807881036, 48.53030945947996], + [-1.57027769540357, 48.53031039976622] + ] + }, + "length": 0.1714026584830801, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37631", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV16629", + "bus2": "MVBus25989", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.57027769540357, 48.53031039976622], + [-1.570265582926104, 48.530311340052485], + [-1.57025135558707, 48.53030141432346], + [-1.570243348276653, 48.530295828433886], + [-1.570090366625953, 48.530259858025346], + [-1.569946769725084, 48.53052921530994], + [-1.569727341285589, 48.53068338415963], + [-1.569412514645828, 48.530706818312346], + [-1.569447918220324, 48.53091663481042], + [-1.569404696726503, 48.5309525804769], + [-1.569421242700044, 48.5311326244695], + [-1.569427214879668, 48.53142463575786], + [-1.569400871719194, 48.531464470163044], + [-1.569361363922504, 48.53149174241094], + [-1.569311917293301, 48.53149360990055], + [-1.569311917293301, 48.53149360990055] + ] + }, + "length": 0.18696207511301322, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33472", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus25989", + "bus2": "MVLV11702", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.569311917293301, 48.53149360990055], + [-1.569311917293301, 48.53149360990055], + [-1.569121425035223, 48.531474340569105], + [-1.567571515361342, 48.531528949142995], + [-1.567461862300803, 48.531527259420685], + [-1.567430317531325, 48.53152677087583], + [-1.567415544559584, 48.53152557552724] + ] + }, + "length": 0.1392927077735165, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42182", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV11702", + "bus2": "MVBus26847", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.567415544559584, 48.53152557552724], + [-1.567400771587843, 48.531524380178645], + [-1.567360837337889, 48.53152080235734], + [-1.567284750986531, 48.531525249725895], + [-1.567260887537324, 48.5313838623755], + [-1.56724352327969, 48.53135899968272], + [-1.56720704476641, 48.531357773909626], + [-1.567101590881959, 48.531362209717024], + [-1.566711709985445, 48.53137859172699], + [-1.565943408133776, 48.53132906719382], + [-1.565560059562574, 48.53105146478999], + [-1.565190981724465, 48.53111764922949], + [-1.565165881153204, 48.531597314878304], + [-1.564900480161369, 48.53237923250737], + [-1.563496393254041, 48.53221493855495], + [-1.562874903784543, 48.532244770504626], + [-1.562863514197719, 48.53182470616985], + [-1.562551725882172, 48.53162495755879], + [-1.562603772564722, 48.53156596081666], + [-1.562613678447487, 48.53155108903226], + [-1.562613678447487, 48.53155108903226] + ] + }, + "length": 0.5759150366774, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch13639", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16274", + "bus2": "MVLV13936", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.554764788314803, 48.52669185049975], + [-1.554764788314803, 48.52669185049975], + [-1.554218558791524, 48.526036488018605], + [-1.553579595290158, 48.52557067761526], + [-1.555103571193291, 48.52185325111848], + [-1.555103571193291, 48.52185325111848] + ] + }, + "length": 0.5818083295433246, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05817", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus16272", + "bus2": "MVLV04950", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549975000651848, 48.5281505762032], + [-1.549975000651848, 48.5281505762032], + [-1.550220693123534, 48.528615590660756], + [-1.550220693123534, 48.528615590660756] + ] + }, + "length": 0.05480165380197354, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV19187_production", + "bus": "MVLV19187", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19187_consumption", + "bus": "MVLV19187", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV08087_production", + "bus": "MVLV08087", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08087_consumption", + "bus": "MVLV08087", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV11693_production", + "bus": "MVLV11693", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11693_consumption", + "bus": "MVLV11693", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV11692_production", + "bus": "MVLV11692", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11692_consumption", + "bus": "MVLV11692", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV12206_production", + "bus": "MVLV12206", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12206_consumption", + "bus": "MVLV12206", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV16510_production", + "bus": "MVLV16510", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16510_consumption", + "bus": "MVLV16510", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV04916_production", + "bus": "MVLV04916", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04916_consumption", + "bus": "MVLV04916", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV04549_production", + "bus": "MVLV04549", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04549_consumption", + "bus": "MVLV04549", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV06933_production", + "bus": "MVLV06933", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06933_consumption", + "bus": "MVLV06933", + "phases": "abc", + "powers": [ + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494], + [19849.471229316532, 6524.205689281494] + ] + }, + { + "id": "MVLV17074_production", + "bus": "MVLV17074", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17074_consumption", + "bus": "MVLV17074", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV17143_production", + "bus": "MVLV17143", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17143_consumption", + "bus": "MVLV17143", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV14272_production", + "bus": "MVLV14272", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14272_consumption", + "bus": "MVLV14272", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV13935_production", + "bus": "MVLV13935", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13935_consumption", + "bus": "MVLV13935", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV17075_production", + "bus": "MVLV17075", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17075_consumption", + "bus": "MVLV17075", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV17142_production", + "bus": "MVLV17142", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17142_consumption", + "bus": "MVLV17142", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV16629_production", + "bus": "MVLV16629", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16629_consumption", + "bus": "MVLV16629", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV11702_production", + "bus": "MVLV11702", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11702_consumption", + "bus": "MVLV11702", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV13936_production", + "bus": "MVLV13936", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13936_consumption", + "bus": "MVLV13936", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + }, + { + "id": "MVLV04950_production", + "bus": "MVLV04950", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04950_consumption", + "bus": "MVLV04950", + "phases": "abc", + "powers": [ + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943], + [32508.373039528, 10684.985503317943] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder251_Summer.json b/roseau/load_flow/data/networks/MVFeeder251_Summer.json new file mode 100644 index 00000000..e02b3b7f --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder251_Summer.json @@ -0,0 +1,5280 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.544122777559802, 49.28792921131057] + } + }, + { + "id": "HVMV17", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544122777559802, 49.28792921131057] + } + }, + { + "id": "MVBus02317", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544278715354673, 49.28819278593066] + } + }, + { + "id": "MVBus02318", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.545353494551501, 49.288203281286165] + } + }, + { + "id": "MVBus02319", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548968224727916, 49.288476803005885] + } + }, + { + "id": "MVBus02320", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549076450270867, 49.28842758779228] + } + }, + { + "id": "MVBus02321", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550843810591999, 49.28835713931457] + } + }, + { + "id": "MVBus02322", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.558363431607862, 49.293103186411905] + } + }, + { + "id": "MVLV07004", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5580257550948962, 49.29312307703382] + } + }, + { + "id": "MVBus05969", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.558365114135587, 49.29312791296315] + } + }, + { + "id": "MVBus05970", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.556899752581278, 49.294687718159565] + } + }, + { + "id": "MVLV10176", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5557191205984735, 49.29423783326932] + } + }, + { + "id": "MVBus06431", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.556855381394924, 49.294703989676044] + } + }, + { + "id": "MVBus06432", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.553605845662367, 49.300981342922235] + } + }, + { + "id": "MVLV12189", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.557217555766814, 49.303017120020975] + } + }, + { + "id": "MVLV08091", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5407539952262903, 49.305622831378344] + } + }, + { + "id": "MVBus09269", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540486402010409, 49.308234227444785] + } + }, + { + "id": "MVLV05282", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540443543412636, 49.30824396710194] + } + }, + { + "id": "MVLV14297", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.538193007833593, 49.31216799569018] + } + }, + { + "id": "MVBus11803", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.536534847236821, 49.321120183051995] + } + }, + { + "id": "MVLV06470", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5339935260812059, 49.32782537754664] + } + }, + { + "id": "MVLV14298", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5329799874850207, 49.33507754804151] + } + }, + { + "id": "MVBus22066", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.533131628048518, 49.33571004547227] + } + }, + { + "id": "MVBus22072", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.533046984107669, 49.335762285638104] + } + }, + { + "id": "MVBus22073", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.533057531446026, 49.33486137550976] + } + }, + { + "id": "MVLV07424", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.534883420349337, 49.33506643532471] + } + }, + { + "id": "MVLV03792", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.532877816023977, 49.33303061717324] + } + }, + { + "id": "MVLV15114", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.532053313651179, 49.337907928002785] + } + }, + { + "id": "MVBus22067", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.532403732174482, 49.35257682859679] + } + }, + { + "id": "MVLV18758", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531733080868806, 49.352784404544984] + } + }, + { + "id": "MVBus22069", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531441732019706, 49.3553465205665] + } + }, + { + "id": "MVLV14458", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.526507526635254, 49.35513073595609] + } + }, + { + "id": "MVLV02134", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531585636721146, 49.36510976245396] + } + }, + { + "id": "MVBus32942", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527320367955829, 49.373951706325954] + } + }, + { + "id": "MVBus32948", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.528727248595691, 49.37807677444229] + } + }, + { + "id": "MVBus32950", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527625344427467, 49.38114490026094] + } + }, + { + "id": "MVBus32951", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527156505637376, 49.38105323794978] + } + }, + { + "id": "MVLV00376", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.526160390385847, 49.381286355063466] + } + }, + { + "id": "MVBus32953", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.517504389409401, 49.38872725310879] + } + }, + { + "id": "MVLV03057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531109516842623, 49.374778041057695] + } + }, + { + "id": "MVBus32943", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.522950716921357, 49.37216582565863] + } + }, + { + "id": "MVBus32944", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.51909312942812, 49.37219771660025] + } + }, + { + "id": "MVBus32945", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5179650794455, 49.372197550213805] + } + }, + { + "id": "MVLV19162", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.518256530861644, 49.37146823421635] + } + }, + { + "id": "MVLV08862", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.514287610518751, 49.37219695446738] + } + }, + { + "id": "MVBus34410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530854289006823, 49.36466877623434] + } + }, + { + "id": "MVLV06284", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531589190610127, 49.36492882285905] + } + }, + { + "id": "MVBus34411", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.529769581166713, 49.364480054902444] + } + }, + { + "id": "MVLV03060", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.535568417050356, 49.36472085133499] + } + }, + { + "id": "MVBus34412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.52856610290105, 49.36430611482931] + } + }, + { + "id": "MVBus34413", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.520096239743545, 49.361924579760256] + } + }, + { + "id": "MVBus34414", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.519139011907793, 49.36212948743184] + } + }, + { + "id": "MVBus34416", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.514492224885197, 49.36467005047749] + } + }, + { + "id": "MVBus34418", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.510635276449318, 49.36476553532519] + } + }, + { + "id": "MVBus34429", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.509289955481284, 49.361120529396175] + } + }, + { + "id": "MVBus34430", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.510721727829247, 49.3581988444997] + } + }, + { + "id": "MVLV10164", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.509866575618648, 49.35795541122072] + } + }, + { + "id": "MVBus34419", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.508108365725732, 49.364432954296966] + } + }, + { + "id": "MVBus34420", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.504233252185425, 49.36406601752124] + } + }, + { + "id": "MVBus34421", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.503321601957881, 49.36235272639792] + } + }, + { + "id": "MVLV10159", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.50417103993675, 49.360882830762066] + } + }, + { + "id": "MVBus34423", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.50445347690626, 49.36467905920785] + } + }, + { + "id": "MVBus34424", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.49892473707318, 49.364392249251054] + } + }, + { + "id": "MVLV13646", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.493997799159938, 49.36470190719969] + } + }, + { + "id": "MVLV00373", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.49790226678558, 49.364741187553236] + } + }, + { + "id": "MVLV00375", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.505218708194213, 49.36706491493334] + } + }, + { + "id": "MVLV13649", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.508471587649024, 49.36306583437844] + } + }, + { + "id": "MVLV10158", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.514068875814502, 49.36644570324624] + } + }, + { + "id": "MVLV16575", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.520552683911972, 49.36221285227293] + } + }, + { + "id": "MVBus23647", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.52674422159139, 49.335008438613734] + } + }, + { + "id": "MVBus23649", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.525990741835495, 49.3352494526061] + } + }, + { + "id": "MVBus23650", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.516088184722974, 49.33830826797327] + } + }, + { + "id": "MVLV13841", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.51474496203316, 49.33546599960393] + } + }, + { + "id": "MVBus23651", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.511792612037957, 49.339128954091514] + } + }, + { + "id": "MVBus23653", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.506374434040589, 49.33702907136982] + } + }, + { + "id": "MVBus23654", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.501088222606753, 49.33532522876661] + } + }, + { + "id": "MVBus23656", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.500188561543648, 49.33493741338863] + } + }, + { + "id": "MVLV18938", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.501331914032815, 49.33384038654791] + } + }, + { + "id": "MVBus23658", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.495520666720995, 49.33409063193276] + } + }, + { + "id": "MVBus23659", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.484133426908198, 49.33134359624456] + } + }, + { + "id": "MVBus23663", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.478918590402116, 49.330026289077466] + } + }, + { + "id": "MVLV10338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.478484932562386, 49.327578929121835] + } + }, + { + "id": "MVBus23664", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.477379351775069, 49.3300143463499] + } + }, + { + "id": "MVBus23665", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.469473420583994, 49.33253844546463] + } + }, + { + "id": "MVBus23660", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.482695123969117, 49.333934930040506] + } + }, + { + "id": "MVLV03243", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.486548333330025, 49.33618052052723] + } + }, + { + "id": "MVLV16207", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.478685676715247, 49.33494320019281] + } + }, + { + "id": "MVLV00556", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.497950206009199, 49.338225291933846] + } + }, + { + "id": "MVLV00557", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.500250673650373, 49.34212810136862] + } + }, + { + "id": "MVBus23669", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.498817642378083, 49.34189422851426] + } + }, + { + "id": "MVLV16630", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.495517486299349, 49.34353092753231] + } + }, + { + "id": "MVBus23668", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.500237842828451, 49.34213599416101] + } + }, + { + "id": "MVLV16209", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.511308187603026, 49.33950177292033] + } + }, + { + "id": "MVLV10753", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527661328563556, 49.334799790674595] + } + }, + { + "id": "MVLV04212", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.536408762697852, 49.32104609385472] + } + }, + { + "id": "MVBus14674", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.535713313391154, 49.312254360208854] + } + }, + { + "id": "MVBus14676", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530785822896225, 49.31237819129319] + } + }, + { + "id": "MVBus14677", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.529735073884145, 49.31219514900721] + } + }, + { + "id": "MVBus14678", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.528425285894258, 49.31235791228221] + } + }, + { + "id": "MVLV13843", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.526075820963424, 49.316179302994485] + } + }, + { + "id": "MVBus14679", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527098863522479, 49.312303382214324] + } + }, + { + "id": "MVBus14681", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.524153720605166, 49.31233014733411] + } + }, + { + "id": "MVBus14682", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.522584528407902, 49.31253675757177] + } + }, + { + "id": "MVLV00558", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.513063287685275, 49.31448992931678] + } + }, + { + "id": "MVLV15540", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.523128830492736, 49.31217904723409] + } + }, + { + "id": "MVLV00901", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530018730823778, 49.30732834984887] + } + }, + { + "id": "MVLV14088", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.535652057142803, 49.312189495608315] + } + }, + { + "id": "MVBus10224", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541937703242198, 49.30336187256208] + } + }, + { + "id": "MVLV13673", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540211585895342, 49.302759829436454] + } + }, + { + "id": "MVBus10226", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542223387630054, 49.302440303362495] + } + }, + { + "id": "MVLV12002", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543721334528962, 49.30340473390545] + } + }, + { + "id": "MVBus10227", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542801364055465, 49.30079264624719] + } + }, + { + "id": "MVLV18774", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5432777670666975, 49.29954408210185] + } + }, + { + "id": "MVLV15279", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540722291595128, 49.29754240257251] + } + }, + { + "id": "MVBus14650", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541323068619209, 49.297148442866344] + } + }, + { + "id": "MVLV14464", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5413683400166376, 49.29720035014075] + } + }, + { + "id": "MVBus15061", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.538555666205925, 49.29770355732112] + } + }, + { + "id": "MVBus15062", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.537662421485925, 49.29783948270921] + } + }, + { + "id": "MVLV05023", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.537550409693325, 49.29779259087647] + } + }, + { + "id": "MVLV09251", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.537446392202924, 49.29874144503897] + } + }, + { + "id": "MVBus17206", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541353993106287, 49.29714270383739] + } + }, + { + "id": "MVBus17207", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541378117392617, 49.2971385246556] + } + }, + { + "id": "MVLV00382", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543989146153294, 49.29615131859048] + } + }, + { + "id": "MVBus17209", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541402610105714, 49.29717365001366] + } + }, + { + "id": "MVLV11101", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541178395735151, 49.2967821229966] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV17", + "geometry": { + "type": "Point", + "coordinates": [-1.544122777559802, 49.28792921131057] + } + }, + { + "id": "MVBranch38653", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV17", + "bus2": "MVBus02317", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544122777559802, 49.28792921131057], + [-1.544064545911348, 49.28798295843586], + [-1.544064545911348, 49.28798295843586], + [-1.544077653421258, 49.288012119047494], + [-1.544278715354673, 49.28819278593066], + [-1.544278715354673, 49.28819278593066] + ] + }, + "length": 0.028233461470556193, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42953", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02317", + "bus2": "MVBus02318", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544278715354673, 49.28819278593066], + [-1.544278715354673, 49.28819278593066], + [-1.544303558063525, 49.28822274548962], + [-1.54435607356844, 49.28824604470486], + [-1.545130203710099, 49.28833265255595], + [-1.545209700990572, 49.28819838727139], + [-1.545353494551501, 49.288203281286165], + [-1.545353494551501, 49.288203281286165] + ] + }, + "length": 0.09202958332239944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42071", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02318", + "bus2": "MVBus02319", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.545353494551501, 49.288203281286165], + [-1.545353494551501, 49.288203281286165], + [-1.546008060470975, 49.28826332879754], + [-1.548968224727916, 49.288476803005885], + [-1.548968224727916, 49.288476803005885] + ] + }, + "length": 0.26473687880197855, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45726", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02319", + "bus2": "MVBus02320", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548968224727916, 49.288476803005885], + [-1.548968224727916, 49.288476803005885], + [-1.548982258759324, 49.28847690646835], + [-1.548995094108262, 49.28847588837704], + [-1.549006195572715, 49.28847230887253], + [-1.549076450270867, 49.28842758779228], + [-1.549076450270867, 49.28842758779228] + ] + }, + "length": 0.009993540367716214, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41856", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02320", + "bus2": "MVBus02321", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549076450270867, 49.28842758779228], + [-1.549076450270867, 49.28842758779228], + [-1.549707744573232, 49.288011977627775], + [-1.550695748472193, 49.28845703745152], + [-1.550843810591999, 49.28835713931457], + [-1.550843810591999, 49.28835713931457] + ] + }, + "length": 0.16790378725191302, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37561", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02321", + "bus2": "MVBus02322", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550843810591999, 49.28835713931457], + [-1.550843810591999, 49.28835713931457], + [-1.551839432502873, 49.287688941766646], + [-1.553279985823405, 49.28708984593353], + [-1.553503940504962, 49.28707924282997], + [-1.553543166339699, 49.28709133827926], + [-1.553899215320274, 49.28735040531045], + [-1.553968724727013, 49.28734820661443], + [-1.554241009766557, 49.287469701434006], + [-1.555416921953299, 49.28829202690255], + [-1.556178942262156, 49.28894397726274], + [-1.556385200192579, 49.2891377783652], + [-1.556720883237592, 49.2894904431109], + [-1.556809603307307, 49.28959833018744], + [-1.557245758799447, 49.290198938107046], + [-1.557690435710151, 49.29093012703566], + [-1.557942459673677, 49.291503900155284], + [-1.558222844204846, 49.29214220902152], + [-1.558348944311179, 49.29289019680917], + [-1.558363431607862, 49.293103186411905], + [-1.558363431607862, 49.293103186411905] + ] + }, + "length": 1.02694858466435, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45571", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02322", + "bus2": "MVLV07004", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558363431607862, 49.293103186411905], + [-1.558363431607862, 49.293103186411905], + [-1.55805054665262, 49.293113318348006], + [-1.558020461421296, 49.29311429426378], + [-1.5580257550948962, 49.29312307703382] + ] + }, + "length": 0.024978720138269347, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39992", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07004", + "bus2": "MVBus05969", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5580257550948962, 49.29312307703382], + [-1.558031048768496, 49.29313185980386], + [-1.558050477712716, 49.293131634333434], + [-1.558365114135587, 49.29312791296315], + [-1.558365114135587, 49.29312791296315] + ] + }, + "length": 0.02430435716809026, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33409", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05969", + "bus2": "MVBus05970", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558365114135587, 49.29312791296315], + [-1.558365114135587, 49.29312791296315], + [-1.558392089694838, 49.293524624310635], + [-1.558280714090231, 49.29394800525873], + [-1.558040077361262, 49.294485515181684], + [-1.557938886183728, 49.29471153951785], + [-1.557700469612923, 49.29479684511406], + [-1.557428898309983, 49.29485499934382], + [-1.556899752581278, 49.294687718159565], + [-1.556899752581278, 49.294687718159565] + ] + }, + "length": 0.2637279374416299, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42258", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05970", + "bus2": "MVLV10176", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.556899752581278, 49.294687718159565], + [-1.556899752581278, 49.294687718159565], + [-1.556814469048323, 49.294640705664165], + [-1.556718802029458, 49.294597681758205], + [-1.556591039727252, 49.29454853850857], + [-1.556494810813047, 49.29451152328497], + [-1.556432842835297, 49.29448288677953], + [-1.556392651342564, 49.29446085705984], + [-1.556328001464675, 49.29434167440167], + [-1.55628925265661, 49.294269181207206], + [-1.556304925080461, 49.29410180781812], + [-1.556343839970858, 49.293982343461415], + [-1.556362771102496, 49.29390859171891], + [-1.556381207489351, 49.29378549172503], + [-1.556396318378328, 49.2936845641523], + [-1.556210487577078, 49.29368286278066], + [-1.55618574224843, 49.29377353362615], + [-1.556152807001273, 49.29389423427251], + [-1.556116150076947, 49.293994502101754], + [-1.556083366586389, 49.294084183201825], + [-1.556026524815464, 49.29415964970232], + [-1.555981200868604, 49.29420326944431], + [-1.55592979929424, 49.29424708620182], + [-1.555880909499325, 49.294259806939614], + [-1.555819110006087, 49.29426260199422], + [-1.55577362005528, 49.294256125199816], + [-1.555747863745295, 49.294247812327605], + [-1.555727196290815, 49.294236600015545], + [-1.5557191205984735, 49.29423783326932] + ] + }, + "length": 0.22922896329104542, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36528", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10176", + "bus2": "MVBus06431", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5557191205984735, 49.29423783326932], + [-1.555711044906132, 49.2942390665231], + [-1.555709905069873, 49.294253243523166], + [-1.555709198985772, 49.29426189256228], + [-1.555709931822406, 49.29426357784397], + [-1.555712490740126, 49.294266130406406], + [-1.555720317511327, 49.29426996037984], + [-1.555735095779786, 49.294273511027], + [-1.555779595703046, 49.294283438009664], + [-1.555829091516181, 49.29428687956951], + [-1.555864717826817, 49.29428587750309], + [-1.555891111460949, 49.29428372656106], + [-1.555923156242119, 49.294276840962326], + [-1.555948604950386, 49.294266940016115], + [-1.555969287987201, 49.294254585035404], + [-1.556003276956387, 49.29422853112254], + [-1.556034803230663, 49.29420373537883], + [-1.556076994421136, 49.29415180690991], + [-1.556125826648493, 49.29409169358501], + [-1.556157939117807, 49.294005317383096], + [-1.556200655048918, 49.293893177649416], + [-1.556250700331611, 49.293706996683525], + [-1.556348259995224, 49.2937066128991], + [-1.556329617172461, 49.29388432792322], + [-1.556307256366287, 49.293973797096946], + [-1.556271881582729, 49.294098417698], + [-1.556266782426805, 49.294178116340724], + [-1.556265015824324, 49.294209062262105], + [-1.556261763331609, 49.2942664925027], + [-1.556281986378516, 49.29432718233691], + [-1.556374544382792, 49.294476897467476], + [-1.556392908305692, 49.29449817774516], + [-1.556429590489454, 49.29451818045427], + [-1.556572271027878, 49.294575988002045], + [-1.556662459852183, 49.294611696866966], + [-1.556743180009085, 49.2946442316602], + [-1.55680296771059, 49.29467077093173], + [-1.556855381394924, 49.294703989676044], + [-1.556855381394924, 49.294703989676044] + ] + }, + "length": 0.22660860033133476, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33646", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06431", + "bus2": "MVBus06432", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.556855381394924, 49.294703989676044], + [-1.556855381394924, 49.294703989676044], + [-1.557385961413851, 49.294889826086106], + [-1.557374224253447, 49.29495595979581], + [-1.557377472157742, 49.29510927224081], + [-1.557447574394346, 49.29526041646288], + [-1.557600012496063, 49.295392456490234], + [-1.556759096316054, 49.29634572864169], + [-1.556579087547653, 49.29654977774208], + [-1.555315453710993, 49.29874313638626], + [-1.554888850513974, 49.299483579715265], + [-1.554252138743037, 49.30030083592989], + [-1.553884931034575, 49.30070834655858], + [-1.553605845662367, 49.300981342922235], + [-1.553605845662367, 49.300981342922235] + ] + }, + "length": 0.792612707543813, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33079", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06432", + "bus2": "MVLV12189", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.553605845662367, 49.300981342922235], + [-1.553605845662367, 49.300981342922235], + [-1.553555508523467, 49.30093328593693], + [-1.553551549135147, 49.30092205367382], + [-1.553557411221908, 49.30091137574002], + [-1.553565984347756, 49.30090089781547], + [-1.553578063367311, 49.30089584715829], + [-1.553597811397932, 49.30089580106276], + [-1.553613958204717, 49.30089905581698], + [-1.553633862540597, 49.300903070336815], + [-1.55399009915498, 49.300936395487454], + [-1.554190468669792, 49.300958453231885], + [-1.554302270953267, 49.30096414937148], + [-1.554481280001602, 49.300974953552796], + [-1.554711951660181, 49.300997197877564], + [-1.555065407876741, 49.30104662987325], + [-1.55519228638043, 49.30106903482119], + [-1.555269650336245, 49.30107876053144], + [-1.555331080802683, 49.30108405541743], + [-1.555688720860971, 49.30113567969149], + [-1.555850105479012, 49.30116074334859], + [-1.556008531656012, 49.30119377322279], + [-1.556270060929051, 49.30125871150144], + [-1.556647434206616, 49.301359228140356], + [-1.556970056453826, 49.30144257564067], + [-1.557205950358328, 49.30150425946166], + [-1.557253925503791, 49.301526009590695], + [-1.557306142946434, 49.301574139085304], + [-1.557313041661406, 49.301582946256744], + [-1.557319745327957, 49.301600790625756], + [-1.557329814618145, 49.30162202487161], + [-1.557334447431986, 49.30165246627675], + [-1.557325963696158, 49.30171799032931], + [-1.557299542459669, 49.30192190675507], + [-1.557274931690841, 49.302161312222125], + [-1.557262743114333, 49.30220627711829], + [-1.557256612186251, 49.302283966875386], + [-1.557240764678853, 49.30236285318992], + [-1.557226800025733, 49.30247255788512], + [-1.557204594706673, 49.3025851472808], + [-1.557191013422283, 49.30266453575059], + [-1.557185802101667, 49.302713358051335], + [-1.55718402632807, 49.302760323945265], + [-1.557181059621486, 49.302809361296035], + [-1.55718051443686, 49.3028609466328], + [-1.557161679238428, 49.30299440275693], + [-1.557161933080845, 49.30300954190518], + [-1.5571667754686, 49.30301462890893], + [-1.557171573633508, 49.30301913267917], + [-1.557180431404835, 49.303024386316736], + [-1.557203846225003, 49.30303132671748], + [-1.557214339020699, 49.30303093252168], + [-1.557217555766814, 49.303017120020975], + [-1.557217555766814, 49.303017120020975] + ] + }, + "length": 0.4629762715887536, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42712", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06432", + "bus2": "MVLV08091", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.553605845662367, 49.300981342922235], + [-1.553605845662367, 49.300981342922235], + [-1.553560795305768, 49.301027407964334], + [-1.552594969124907, 49.301762685000945], + [-1.551512962290502, 49.302411397240476], + [-1.550412629007579, 49.302929196038185], + [-1.549429388234952, 49.30333360172381], + [-1.547763099915991, 49.30390255410561], + [-1.545811760819645, 49.30456880161366], + [-1.543162515540441, 49.30547325882959], + [-1.542670038667878, 49.3055849261342], + [-1.542005868259237, 49.305666643144605], + [-1.541857568293667, 49.30558924736994], + [-1.541685849847407, 49.305534527944204], + [-1.541177197726519, 49.30556738651739], + [-1.540953239587985, 49.30560106237891], + [-1.540811464642975, 49.305606593293135], + [-1.540803495450311, 49.30560325268304], + [-1.540755659370213, 49.30563466872761], + [-1.540753463779378, 49.305623262296365], + [-1.5407539952262903, 49.305622831378344] + ] + }, + "length": 1.103705815148244, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41857", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08091", + "bus2": "MVBus09269", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407539952262903, 49.305622831378344], + [-1.540737589952468, 49.30561579643945], + [-1.540733252043573, 49.30562848418592], + [-1.540667639081251, 49.30568953620466], + [-1.540956808587693, 49.3058488877968], + [-1.540971261033053, 49.30595957843265], + [-1.541027931857217, 49.306038413687574], + [-1.541096484657075, 49.30609990114828], + [-1.541117458642052, 49.30621442882496], + [-1.541109133809264, 49.30633006440599], + [-1.541093430236417, 49.30639899457513], + [-1.54094106280494, 49.30684465715278], + [-1.540784234481206, 49.307252046706346], + [-1.540713405873436, 49.30747395814078], + [-1.540621244350711, 49.30777498333838], + [-1.540486402010409, 49.308234227444785], + [-1.540486402010409, 49.308234227444785] + ] + }, + "length": 0.31007777091499894, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42713", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09269", + "bus2": "MVLV05282", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540486402010409, 49.308234227444785], + [-1.540486402010409, 49.308234227444785], + [-1.540443543412636, 49.30824396710194], + [-1.540443543412636, 49.30824396710194] + ] + }, + "length": 0.0032995137003003863, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44335", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09269", + "bus2": "MVLV14297", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540486402010409, 49.308234227444785], + [-1.540486402010409, 49.308234227444785], + [-1.540357106825738, 49.30865765491602], + [-1.540115246377979, 49.309496781924345], + [-1.54000806287199, 49.30987352256521], + [-1.539654921138788, 49.31102038614626], + [-1.539401148113282, 49.31187276493722], + [-1.539286999629095, 49.31225615071473], + [-1.538879004282582, 49.31227395691951], + [-1.538256034072516, 49.31220261581701], + [-1.538237184293533, 49.312188004900676], + [-1.538211714626803, 49.312168255698744], + [-1.538193007833593, 49.31216799569018] + ] + }, + "length": 0.5364504470557699, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39369", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14297", + "bus2": "MVBus11803", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.538193007833593, 49.31216799569018], + [-1.53819725642402, 49.31217209513156], + [-1.5382016944777, 49.312192073085164], + [-1.538205743115031, 49.31221035460955], + [-1.538897043950175, 49.3122871277447], + [-1.539044227710228, 49.312284843196664], + [-1.53908960859427, 49.31233526028656], + [-1.539222826034261, 49.31234824943974], + [-1.538556981108027, 49.314640036218165], + [-1.537956343956155, 49.31670716342029], + [-1.537320265163982, 49.31868196165967], + [-1.536534847236821, 49.321120183051995], + [-1.536534847236821, 49.321120183051995] + ] + }, + "length": 1.0773011885807644, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39368", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11803", + "bus2": "MVLV06470", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.536534847236821, 49.321120183051995], + [-1.536534847236821, 49.321120183051995], + [-1.536501546561255, 49.32122356129653], + [-1.534655567865235, 49.32770166357225], + [-1.534061875940245, 49.327845581054355], + [-1.534014836367798, 49.327815255782454], + [-1.5339935260812059, 49.32782537754664] + ] + }, + "length": 0.7954401697427387, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45860", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06470", + "bus2": "MVLV14298", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5339935260812059, 49.32782537754664], + [-1.533972215794614, 49.32783549931082], + [-1.534038075431918, 49.327884178788445], + [-1.534317828192986, 49.327814201326994], + [-1.534372586757423, 49.32785308344783], + [-1.53449046786076, 49.32783573977103], + [-1.533170628988937, 49.33232559921571], + [-1.533134314554963, 49.333141749962856], + [-1.533094342636425, 49.33508909025087], + [-1.532986027192007, 49.33515101521379], + [-1.533020283768441, 49.335088030199934], + [-1.53301283434399, 49.335066629402824], + [-1.5329799874850207, 49.33507754804151] + ] + }, + "length": 0.8798759256032205, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37781", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14298", + "bus2": "MVBus22066", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5329799874850207, 49.33507754804151], + [-1.532979533929907, 49.335080051117835], + [-1.532986300373905, 49.33509951311616], + [-1.532994928163547, 49.33512431185406], + [-1.532921199659583, 49.33516213315831], + [-1.53273432520775, 49.33518066177989], + [-1.532746921746389, 49.33530537812459], + [-1.532899599785382, 49.335298788967386], + [-1.533024909995921, 49.33535272317475], + [-1.533121262658806, 49.33544554638144], + [-1.533131628048518, 49.33571004547227], + [-1.533131628048518, 49.33571004547227] + ] + }, + "length": 0.10342519827364842, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37825", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22066", + "bus2": "MVBus22072", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533131628048518, 49.33571004547227], + [-1.533131628048518, 49.33571004547227], + [-1.533046984107669, 49.335762285638104], + [-1.533046984107669, 49.335762285638104] + ] + }, + "length": 0.008461700673569049, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch12288", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22072", + "bus2": "MVBus22073", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533046984107669, 49.335762285638104], + [-1.533046984107669, 49.335762285638104], + [-1.533057531446026, 49.33486137550976], + [-1.533057531446026, 49.33486137550976] + ] + }, + "length": 0.10019875986664627, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29389", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22073", + "bus2": "MVLV07424", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533057531446026, 49.33486137550976], + [-1.533057531446026, 49.33486137550976], + [-1.53398943703501, 49.335195989512854], + [-1.534883420349337, 49.33506643532471], + [-1.534883420349337, 49.33506643532471] + ] + }, + "length": 0.14383385188322648, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29388", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22073", + "bus2": "MVLV03792", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533057531446026, 49.33486137550976], + [-1.533057531446026, 49.33486137550976], + [-1.533011979073309, 49.334190631787195], + [-1.533039825764406, 49.33345854723634], + [-1.532877816023977, 49.33303061717324], + [-1.532877816023977, 49.33303061717324] + ] + }, + "length": 0.2051436384266768, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29382", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22072", + "bus2": "MVLV15114", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533046984107669, 49.335762285638104], + [-1.533046984107669, 49.335762285638104], + [-1.532053313651179, 49.337907928002785], + [-1.532053313651179, 49.337907928002785] + ] + }, + "length": 0.2493185426177021, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch44471", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22066", + "bus2": "MVBus22067", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533131628048518, 49.33571004547227], + [-1.533131628048518, 49.33571004547227], + [-1.532947292298687, 49.3411369986952], + [-1.532740413744813, 49.3415789077134], + [-1.53278160534124, 49.34165620164864], + [-1.532878494600845, 49.34163934779399], + [-1.532915555431578, 49.34163283888735], + [-1.532983237310681, 49.34162824926677], + [-1.532957908744556, 49.34210447299129], + [-1.532908563438801, 49.34277497516311], + [-1.532771270861551, 49.34290282535032], + [-1.532844701353445, 49.34301204574741], + [-1.5327744631901, 49.34345244180959], + [-1.532729045377297, 49.343639853956425], + [-1.532657756778632, 49.35045146206623], + [-1.532087461291756, 49.350791247571166], + [-1.531904838815109, 49.35129708296319], + [-1.532261866158014, 49.35231340901049], + [-1.532403732174482, 49.35257682859679], + [-1.532403732174482, 49.35257682859679] + ] + }, + "length": 1.926359122832335, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22067", + "bus2": "MVLV18758", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.532403732174482, 49.35257682859679], + [-1.532403732174482, 49.35257682859679], + [-1.532318582392134, 49.352663449981854], + [-1.532227468992275, 49.35265986145356], + [-1.531733080868806, 49.352784404544984], + [-1.531733080868806, 49.352784404544984] + ] + }, + "length": 0.056578106178282746, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45337", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22067", + "bus2": "MVBus22069", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.532403732174482, 49.35257682859679], + [-1.532403732174482, 49.35257682859679], + [-1.53264913595584, 49.35317922079326], + [-1.532702848551083, 49.35332108602859], + [-1.532684420052383, 49.35339347169895], + [-1.532621439228901, 49.35344544416329], + [-1.532498902629156, 49.353468114175726], + [-1.532392156566066, 49.35344658155164], + [-1.532277977981303, 49.3534533772329], + [-1.532032779700746, 49.353623588265485], + [-1.531927759460042, 49.353751835653576], + [-1.531856350066794, 49.35388212237224], + [-1.531882224053266, 49.353971808328446], + [-1.53192882130631, 49.354082692532], + [-1.531975708734858, 49.35413425002378], + [-1.532009720320815, 49.354204947960284], + [-1.531998695945411, 49.354249005985515], + [-1.531912223146382, 49.35432251075777], + [-1.531787395530182, 49.35436193807548], + [-1.531706052936165, 49.35442387283807], + [-1.531583857413184, 49.35457764053744], + [-1.531499002561331, 49.35478327288385], + [-1.531441732019706, 49.3553465205665], + [-1.531441732019706, 49.3553465205665] + ] + }, + "length": 0.36238372555403137, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47705", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22069", + "bus2": "MVLV14458", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531441732019706, 49.3553465205665], + [-1.531441732019706, 49.3553465205665], + [-1.531385451423608, 49.355335289663294], + [-1.531386067616132, 49.35536774817351], + [-1.531380218497825, 49.355395539800796], + [-1.531370833342849, 49.35544016555585], + [-1.531319051605202, 49.35549407932305], + [-1.531274757250741, 49.35551745944992], + [-1.531238305393986, 49.355533823548285], + [-1.531159340552414, 49.35555428064477], + [-1.531036689240641, 49.35557860757163], + [-1.530903052239168, 49.35559949219689], + [-1.530724987624325, 49.35562665376268], + [-1.530499971586221, 49.35566113563619], + [-1.530348254933174, 49.355679273310365], + [-1.530185595337207, 49.35569563111755], + [-1.52996260291213, 49.35571385719575], + [-1.529735820241337, 49.35572491040191], + [-1.529645084310406, 49.35578741545591], + [-1.529598017950466, 49.3557943076446], + [-1.529538683016079, 49.35580375297779], + [-1.52947746702286, 49.355817288201635], + [-1.529423260505689, 49.355830472065875], + [-1.529279032626479, 49.355876735437576], + [-1.528932104851519, 49.35600241475257], + [-1.528828966383681, 49.35603958534019], + [-1.528740910796219, 49.356068427902315], + [-1.528628993181144, 49.35609690430503], + [-1.528470005240302, 49.35613222748504], + [-1.52833777959128, 49.35615615781715], + [-1.528271201209621, 49.35616687869827], + [-1.528245202657719, 49.35616885676052], + [-1.528185214942384, 49.3561700116971], + [-1.52812785415475, 49.35617112712831], + [-1.528044023158241, 49.35616722919092], + [-1.527996840282627, 49.356151198132466], + [-1.527952634906449, 49.35611492422224], + [-1.527923982819329, 49.356087162577886], + [-1.527856224359591, 49.356025742300524], + [-1.527785666176666, 49.355963710428966], + [-1.527660854309551, 49.35586214777877], + [-1.527489768884338, 49.3557368704239], + [-1.527413041989026, 49.35567628681694], + [-1.527291831390711, 49.355573159979755], + [-1.527150278499086, 49.355449478360086], + [-1.52695226508292, 49.35535858728895], + [-1.52648157487598, 49.355177575474116], + [-1.526481408963931, 49.35516787600893], + [-1.526507526635254, 49.35513073595609], + [-1.526507526635254, 49.35513073595609] + ] + }, + "length": 0.44321442367888547, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34135", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22069", + "bus2": "MVLV02134", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531441732019706, 49.3553465205665], + [-1.531441732019706, 49.3553465205665], + [-1.531463965605725, 49.3554264568919], + [-1.531664465304281, 49.35549834583802], + [-1.53183991724384, 49.35554299629057], + [-1.53189239271028, 49.35555434043819], + [-1.532281840418759, 49.355696626571635], + [-1.532672047395941, 49.35599425424982], + [-1.532778121387907, 49.356213439668494], + [-1.532308183717842, 49.362295885970966], + [-1.532300355928635, 49.362378506927946], + [-1.531996134805592, 49.36510477099037], + [-1.531858186575423, 49.365100044004556], + [-1.531683659565037, 49.36503102487483], + [-1.531637653396617, 49.36507344646523], + [-1.531599957535678, 49.36510700224723], + [-1.531585636721146, 49.36510976245396] + ] + }, + "length": 1.1707233869850964, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39913", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02134", + "bus2": "MVBus32942", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531585636721146, 49.36510976245396], + [-1.531591077797617, 49.36512913479824], + [-1.53165298114622, 49.36521550234027], + [-1.531843685074216, 49.3655053751369], + [-1.531665988640638, 49.36821135085916], + [-1.528833824377521, 49.37087365739615], + [-1.528200911840818, 49.371626624153215], + [-1.528160682391598, 49.371665764231246], + [-1.52784953601465, 49.37195498518486], + [-1.527669458759808, 49.37240437899802], + [-1.527592831367765, 49.37276712698362], + [-1.527320367955829, 49.373951706325954], + [-1.527320367955829, 49.373951706325954] + ] + }, + "length": 1.0731453489406135, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32942", + "bus2": "MVBus32948", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527320367955829, 49.373951706325954], + [-1.527320367955829, 49.373951706325954], + [-1.527400051396363, 49.37446682801028], + [-1.527421005225278, 49.37482422732028], + [-1.527401991409717, 49.37501242778035], + [-1.527315739745103, 49.375253928704204], + [-1.527226268859421, 49.37545290097939], + [-1.527283293402961, 49.375689789762255], + [-1.527441313500359, 49.37588081086286], + [-1.527621122274153, 49.376148732579026], + [-1.527893984631622, 49.37639386819455], + [-1.527968338296842, 49.37653329764479], + [-1.528139295529732, 49.3768646413651], + [-1.528291978122515, 49.37730895291319], + [-1.528727248595691, 49.37807677444229], + [-1.528727248595691, 49.37807677444229] + ] + }, + "length": 0.4830376263026058, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39914", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32948", + "bus2": "MVBus32950", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528727248595691, 49.37807677444229], + [-1.528727248595691, 49.37807677444229], + [-1.528601099201575, 49.378123766068285], + [-1.528608157069455, 49.37821337193959], + [-1.528462993116187, 49.378311835849416], + [-1.528065698686118, 49.37858221876822], + [-1.527697869402059, 49.37891150892088], + [-1.527458293715266, 49.37914643129591], + [-1.527257948239472, 49.37936307612514], + [-1.527454042954106, 49.379610786425374], + [-1.527548552366555, 49.37977615468656], + [-1.527599769425953, 49.38008194354724], + [-1.527633494827969, 49.38033805357043], + [-1.527842423424155, 49.380345830698545], + [-1.527791056549856, 49.38095960598652], + [-1.527625344427467, 49.38114490026094], + [-1.527625344427467, 49.38114490026094] + ] + }, + "length": 0.40312747799055015, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48422", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32950", + "bus2": "MVBus32951", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527625344427467, 49.38114490026094], + [-1.527625344427467, 49.38114490026094], + [-1.527246457920927, 49.3810555650266], + [-1.527156505637376, 49.38105323794978], + [-1.527156505637376, 49.38105323794978] + ] + }, + "length": 0.03578752012234594, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35426", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32951", + "bus2": "MVLV00376", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527156505637376, 49.38105323794978], + [-1.527156505637376, 49.38105323794978], + [-1.52620738657595, 49.38120782106345], + [-1.526160390385847, 49.381286355063466], + [-1.526160390385847, 49.381286355063466] + ] + }, + "length": 0.08040663184049307, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33515", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32950", + "bus2": "MVBus32953", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527625344427467, 49.38114490026094], + [-1.527625344427467, 49.38114490026094], + [-1.527515449617921, 49.38148627328165], + [-1.527512212844316, 49.381560308147634], + [-1.52752355936672, 49.38158948901832], + [-1.528031859335662, 49.38178753170748], + [-1.528397231736701, 49.38193653351875], + [-1.52837450900985, 49.381972088501556], + [-1.52876321837867, 49.38211393565683], + [-1.528625406061104, 49.38225742972185], + [-1.528850748151494, 49.382633909622115], + [-1.528942469770747, 49.38290815789958], + [-1.529029796174817, 49.38310400253717], + [-1.529035658108145, 49.383181747337815], + [-1.528927917985613, 49.3834602736569], + [-1.528800423755089, 49.383569816433365], + [-1.528341538492892, 49.38381683158706], + [-1.527533355757772, 49.38430382816528], + [-1.527522220550659, 49.38429537173722], + [-1.527072768441347, 49.38456352013355], + [-1.527048139325459, 49.38457508599294], + [-1.526736368640366, 49.38423756222454], + [-1.526665658751571, 49.384214236217375], + [-1.525901425053955, 49.38438116143926], + [-1.525119948105659, 49.38426600815902], + [-1.523752775329072, 49.384649044110766], + [-1.523604201076715, 49.38484602213671], + [-1.522605210011718, 49.38696375611163], + [-1.522844837792189, 49.38748145010745], + [-1.522789669743934, 49.38754308366898], + [-1.522509569982801, 49.38759575281451], + [-1.522247974294246, 49.38768285014764], + [-1.521969001368021, 49.38783031392183], + [-1.521766920366799, 49.38799169785384], + [-1.521623302265864, 49.38825420494629], + [-1.521588808311371, 49.38857902971922], + [-1.5216530848726, 49.38891498711093], + [-1.52165752519756, 49.38893133057315], + [-1.521635553101718, 49.38897329936228], + [-1.521496951908399, 49.388977933160554], + [-1.521389289415794, 49.38901451939029], + [-1.520957401427379, 49.38891098889611], + [-1.520275943139262, 49.388752329878855], + [-1.519703064871274, 49.388691197359144], + [-1.518494880436735, 49.38868354650642], + [-1.517510891907542, 49.38868857786499], + [-1.517506396412699, 49.388715280883034], + [-1.517504389409401, 49.38872725310879], + [-1.517504389409401, 49.38872725310879] + ] + }, + "length": 1.6326161105779273, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48421", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32948", + "bus2": "MVLV03057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528727248595691, 49.37807677444229], + [-1.528727248595691, 49.37807677444229], + [-1.528808973458675, 49.3781180390623], + [-1.529743545000941, 49.37760751041046], + [-1.531015923828987, 49.37701826001692], + [-1.531090817819815, 49.37477848949631], + [-1.531109516842623, 49.374778041057695], + [-1.531109516842623, 49.374778041057695] + ] + }, + "length": 0.4597844729770908, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48420", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32942", + "bus2": "MVBus32943", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527320367955829, 49.373951706325954], + [-1.527320367955829, 49.373951706325954], + [-1.52705392159122, 49.373806503430025], + [-1.526569246098225, 49.373510670681604], + [-1.526273175627114, 49.37341298911873], + [-1.525869852601984, 49.37331350789843], + [-1.525394677976571, 49.37324334195383], + [-1.524897363677829, 49.37320619178711], + [-1.524338110483229, 49.37300971022446], + [-1.523788343680933, 49.372829039052675], + [-1.523256494223086, 49.37235184919758], + [-1.523075288509421, 49.37216479580243], + [-1.522950716921357, 49.37216582565863], + [-1.522950716921357, 49.37216582565863] + ] + }, + "length": 0.39063953902460974, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch10876", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32943", + "bus2": "MVBus32944", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.522950716921357, 49.37216582565863], + [-1.522950716921357, 49.37216582565863], + [-1.51909312942812, 49.37219771660025], + [-1.51909312942812, 49.37219771660025] + ] + }, + "length": 0.28017990056768277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch09992", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32944", + "bus2": "MVBus32945", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.51909312942812, 49.37219771660025], + [-1.51909312942812, 49.37219771660025], + [-1.5179650794455, 49.372197550213805], + [-1.5179650794455, 49.372197550213805] + ] + }, + "length": 0.08192465202152102, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05584", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32945", + "bus2": "MVLV19162", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5179650794455, 49.372197550213805], + [-1.5179650794455, 49.372197550213805], + [-1.518256530861644, 49.37146823421635], + [-1.518256530861644, 49.37146823421635] + ] + }, + "length": 0.08382862257920029, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14895", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32945", + "bus2": "MVLV08862", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5179650794455, 49.372197550213805], + [-1.5179650794455, 49.372197550213805], + [-1.514287610518751, 49.37219695446738], + [-1.514287610518751, 49.37219695446738] + ] + }, + "length": 0.26707625608160257, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch36578", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02134", + "bus2": "MVBus34410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531585636721146, 49.36510976245396], + [-1.531565874830143, 49.36509315031643], + [-1.531583643366446, 49.365064525826554], + [-1.531639602388052, 49.36498827170826], + [-1.531234928266094, 49.364842577821825], + [-1.53089448046018, 49.3647106826351], + [-1.530838952226338, 49.36469878845856], + [-1.530854289006823, 49.36466877623434], + [-1.530854289006823, 49.36466877623434] + ] + }, + "length": 0.08291962228537283, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25201", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34410", + "bus2": "MVLV06284", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530854289006823, 49.36466877623434], + [-1.530854289006823, 49.36466877623434], + [-1.531589190610127, 49.36492882285905], + [-1.531589190610127, 49.36492882285905] + ] + }, + "length": 0.0607116755354689, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10148", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34410", + "bus2": "MVBus34411", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530854289006823, 49.36466877623434], + [-1.530854289006823, 49.36466877623434], + [-1.529769581166713, 49.364480054902444], + [-1.529769581166713, 49.364480054902444] + ] + }, + "length": 0.08153686761905633, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch22885", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34411", + "bus2": "MVLV03060", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.529769581166713, 49.364480054902444], + [-1.529769581166713, 49.364480054902444], + [-1.531632792071112, 49.3631560479711], + [-1.535568417050356, 49.36472085133499], + [-1.535568417050356, 49.36472085133499] + ] + }, + "length": 0.5346788249293161, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08104", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34411", + "bus2": "MVBus34412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.529769581166713, 49.364480054902444], + [-1.529769581166713, 49.364480054902444], + [-1.52856610290105, 49.36430611482931], + [-1.52856610290105, 49.36430611482931] + ] + }, + "length": 0.08953139053423927, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19724", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34412", + "bus2": "MVBus34413", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.52856610290105, 49.36430611482931], + [-1.52856610290105, 49.36430611482931], + [-1.527342148691834, 49.364099542493356], + [-1.52452541132236, 49.363413261367334], + [-1.520096239743545, 49.361924579760256], + [-1.520096239743545, 49.361924579760256] + ] + }, + "length": 0.6720310690910645, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14883", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34413", + "bus2": "MVBus34414", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.520096239743545, 49.361924579760256], + [-1.520096239743545, 49.361924579760256], + [-1.519139011907793, 49.36212948743184], + [-1.519139011907793, 49.36212948743184] + ] + }, + "length": 0.07317231902175302, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08093", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34414", + "bus2": "MVBus34416", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.519139011907793, 49.36212948743184], + [-1.519139011907793, 49.36212948743184], + [-1.516622875854373, 49.36268995750727], + [-1.514492224885197, 49.36467005047749], + [-1.514492224885197, 49.36467005047749] + ] + }, + "length": 0.46227121366192264, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19725", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34416", + "bus2": "MVBus34418", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.514492224885197, 49.36467005047749], + [-1.514492224885197, 49.36467005047749], + [-1.510635276449318, 49.36476553532519], + [-1.510635276449318, 49.36476553532519] + ] + }, + "length": 0.280354646989838, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08095", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34418", + "bus2": "MVBus34429", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.510635276449318, 49.36476553532519], + [-1.510635276449318, 49.36476553532519], + [-1.51065692468431, 49.36349162254032], + [-1.50914873596642, 49.36141247978162], + [-1.509289955481284, 49.361120529396175], + [-1.509289955481284, 49.361120529396175] + ] + }, + "length": 0.4316157313277553, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19738", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34429", + "bus2": "MVBus34430", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.509289955481284, 49.361120529396175], + [-1.509289955481284, 49.361120529396175], + [-1.510342313002278, 49.35913601325839], + [-1.510721727829247, 49.3581988444997], + [-1.510721727829247, 49.3581988444997] + ] + }, + "length": 0.34138710270072825, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43784", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34430", + "bus2": "MVLV10164", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.510721727829247, 49.3581988444997], + [-1.510721727829247, 49.3581988444997], + [-1.510779652100793, 49.358063122197834], + [-1.509866575618648, 49.35795541122072], + [-1.509866575618648, 49.35795541122072] + ] + }, + "length": 0.08307445089227075, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25194", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34418", + "bus2": "MVBus34419", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.510635276449318, 49.36476553532519], + [-1.510635276449318, 49.36476553532519], + [-1.508108365725732, 49.364432954296966], + [-1.508108365725732, 49.364432954296966] + ] + }, + "length": 0.1872351576860677, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04512", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34419", + "bus2": "MVBus34420", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.508108365725732, 49.364432954296966], + [-1.508108365725732, 49.364432954296966], + [-1.504233252185425, 49.36406601752124], + [-1.504233252185425, 49.36406601752124] + ] + }, + "length": 0.28441854620385315, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34420", + "bus2": "MVBus34421", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.504233252185425, 49.36406601752124], + [-1.504233252185425, 49.36406601752124], + [-1.503321601957881, 49.36235272639792], + [-1.503321601957881, 49.36235272639792] + ] + }, + "length": 0.20172561841725256, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08096", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34421", + "bus2": "MVLV10159", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.503321601957881, 49.36235272639792], + [-1.503321601957881, 49.36235272639792], + [-1.503302547939844, 49.36231691797257], + [-1.50327030090469, 49.361515722753715], + [-1.50417103993675, 49.360882830762066], + [-1.50417103993675, 49.360882830762066] + ] + }, + "length": 0.18945571956595136, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04513", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34420", + "bus2": "MVBus34423", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.504233252185425, 49.36406601752124], + [-1.504233252185425, 49.36406601752124], + [-1.50445347690626, 49.36467905920785], + [-1.50445347690626, 49.36467905920785] + ] + }, + "length": 0.07003190855528035, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25202", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34423", + "bus2": "MVBus34424", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.50445347690626, 49.36467905920785], + [-1.50445347690626, 49.36467905920785], + [-1.500002523513261, 49.3641231754568], + [-1.49892473707318, 49.364392249251054], + [-1.49892473707318, 49.364392249251054] + ] + }, + "length": 0.4129712656640833, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch46764", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34424", + "bus2": "MVLV13646", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.49892473707318, 49.364392249251054], + [-1.49892473707318, 49.364392249251054], + [-1.498817753367313, 49.36425805336535], + [-1.49829710059671, 49.364476161252625], + [-1.497741790400166, 49.364656256931], + [-1.497414067164997, 49.364697556264154], + [-1.496298636860344, 49.3648494718576], + [-1.495629295366785, 49.36495277686566], + [-1.495055046610993, 49.3650157768793], + [-1.494889212838484, 49.36501115870508], + [-1.494712626489046, 49.364971734421616], + [-1.494391642802679, 49.36479781849538], + [-1.493997799159938, 49.36470190719969], + [-1.493997799159938, 49.36470190719969] + ] + }, + "length": 0.3924871147476781, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch19733", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34424", + "bus2": "MVLV00373", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.49892473707318, 49.364392249251054], + [-1.49892473707318, 49.364392249251054], + [-1.49790226678558, 49.364741187553236], + [-1.49790226678558, 49.364741187553236] + ] + }, + "length": 0.08379643799941182, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31267", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34423", + "bus2": "MVLV00375", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.50445347690626, 49.36467905920785], + [-1.50445347690626, 49.36467905920785], + [-1.505076514084524, 49.36635377603919], + [-1.505218708194213, 49.36706491493334], + [-1.505218708194213, 49.36706491493334] + ] + }, + "length": 0.271437589653534, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08094", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34419", + "bus2": "MVLV13649", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.508108365725732, 49.364432954296966], + [-1.508108365725732, 49.364432954296966], + [-1.50817403755374, 49.363721240526324], + [-1.508471587649024, 49.36306583437844], + [-1.508471587649024, 49.36306583437844] + ] + }, + "length": 0.15532711411755915, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10874", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34416", + "bus2": "MVLV10158", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.514492224885197, 49.36467005047749], + [-1.514492224885197, 49.36467005047749], + [-1.514068875814502, 49.36644570324624], + [-1.514068875814502, 49.36644570324624] + ] + }, + "length": 0.19986212906546252, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08097", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34414", + "bus2": "MVLV16575", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.519139011907793, 49.36212948743184], + [-1.519139011907793, 49.36212948743184], + [-1.520552683911972, 49.36221285227293], + [-1.520552683911972, 49.36221285227293] + ] + }, + "length": 0.10310654010388842, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch41858", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14298", + "bus2": "MVBus23647", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5329799874850207, 49.33507754804151], + [-1.532947594181165, 49.33508596360389], + [-1.532956035298951, 49.33510573145595], + [-1.532962504448413, 49.335120885685875], + [-1.532892636361214, 49.335142914309635], + [-1.532691081116922, 49.33516917412243], + [-1.532692599129636, 49.33531416991168], + [-1.532409721660146, 49.33535093579553], + [-1.531830125253673, 49.335361734054494], + [-1.53130087325173, 49.33530712043941], + [-1.530815733550139, 49.335257057185764], + [-1.530503620526786, 49.33525673091457], + [-1.530034216965783, 49.33531119527789], + [-1.529658507987354, 49.33531094329507], + [-1.528393772734871, 49.33531748446953], + [-1.527788020909013, 49.33538779312547], + [-1.527092091099686, 49.3354685534104], + [-1.52674422159139, 49.335008438613734], + [-1.52674422159139, 49.335008438613734] + ] + }, + "length": 0.508202408525906, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch24031", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23647", + "bus2": "MVBus23649", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.52674422159139, 49.335008438613734], + [-1.52674422159139, 49.335008438613734], + [-1.525990741835495, 49.3352494526061], + [-1.525990741835495, 49.3352494526061] + ] + }, + "length": 0.06097076611982121, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch06915", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23649", + "bus2": "MVBus23650", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.525990741835495, 49.3352494526061], + [-1.525990741835495, 49.3352494526061], + [-1.52505817676497, 49.335459726265235], + [-1.524033277563845, 49.33560302726533], + [-1.522945805275997, 49.33609058385038], + [-1.522052595380504, 49.336437453147326], + [-1.521043370614789, 49.33660541758927], + [-1.520041961210907, 49.33687305899442], + [-1.518818728766924, 49.33726426734355], + [-1.517139278478294, 49.33800568121021], + [-1.516088184722974, 49.33830826797327], + [-1.516088184722974, 49.33830826797327] + ] + }, + "length": 0.8033045776755825, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23650", + "bus2": "MVLV13841", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.516088184722974, 49.33830826797327], + [-1.516088184722974, 49.33830826797327], + [-1.51474496203316, 49.33546599960393], + [-1.51474496203316, 49.33546599960393] + ] + }, + "length": 0.330837173677165, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03516", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23650", + "bus2": "MVBus23651", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.516088184722974, 49.33830826797327], + [-1.516088184722974, 49.33830826797327], + [-1.5138569422553, 49.33904286520298], + [-1.511792612037957, 49.339128954091514], + [-1.511792612037957, 49.339128954091514] + ] + }, + "length": 0.33190085523301377, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08382", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23651", + "bus2": "MVBus23653", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.511792612037957, 49.339128954091514], + [-1.511792612037957, 49.339128954091514], + [-1.51086413684498, 49.339185179204556], + [-1.508210361683165, 49.33779438766284], + [-1.506374434040589, 49.33702907136982], + [-1.506374434040589, 49.33702907136982] + ] + }, + "length": 0.4732570571516864, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25449", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23653", + "bus2": "MVBus23654", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.506374434040589, 49.33702907136982], + [-1.506374434040589, 49.33702907136982], + [-1.505591997150413, 49.336678793899225], + [-1.502256473181538, 49.3358706723199], + [-1.501088222606753, 49.33532522876661], + [-1.501088222606753, 49.33532522876661] + ] + }, + "length": 0.43182383669511015, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15262", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23654", + "bus2": "MVBus23656", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.501088222606753, 49.33532522876661], + [-1.501088222606753, 49.33532522876661], + [-1.500188561543648, 49.33493741338863], + [-1.500188561543648, 49.33493741338863] + ] + }, + "length": 0.07833119469092044, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31540", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23656", + "bus2": "MVLV18938", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500188561543648, 49.33493741338863], + [-1.500188561543648, 49.33493741338863], + [-1.501331914032815, 49.33384038654791], + [-1.501331914032815, 49.33384038654791] + ] + }, + "length": 0.14761877610763896, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23158", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23656", + "bus2": "MVBus23658", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500188561543648, 49.33493741338863], + [-1.500188561543648, 49.33493741338863], + [-1.498913519757045, 49.3343117664599], + [-1.495520666720995, 49.33409063193276], + [-1.495520666720995, 49.33409063193276] + ] + }, + "length": 0.3637049063758763, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19987", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23658", + "bus2": "MVBus23659", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.495520666720995, 49.33409063193276], + [-1.495520666720995, 49.33409063193276], + [-1.49381386709555, 49.33368729563582], + [-1.490483706138056, 49.333598090614345], + [-1.48934684129875, 49.333276591614855], + [-1.487250563907883, 49.33229272802707], + [-1.486258441762622, 49.33202492246158], + [-1.484133426908198, 49.33134359624456], + [-1.484133426908198, 49.33134359624456] + ] + }, + "length": 0.9018397404516275, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23159", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23659", + "bus2": "MVBus23663", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.484133426908198, 49.33134359624456], + [-1.484133426908198, 49.33134359624456], + [-1.482602209287364, 49.33005818027853], + [-1.478918590402116, 49.330026289077466], + [-1.478918590402116, 49.330026289077466] + ] + }, + "length": 0.4489506342270319, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04351", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23663", + "bus2": "MVLV10338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.478918590402116, 49.330026289077466], + [-1.478918590402116, 49.330026289077466], + [-1.478484932562386, 49.327578929121835], + [-1.478484932562386, 49.327578929121835] + ] + }, + "length": 0.2740050631911384, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01995", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23663", + "bus2": "MVBus23664", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.478918590402116, 49.330026289077466], + [-1.478918590402116, 49.330026289077466], + [-1.477382860443532, 49.330013227631625], + [-1.477379351775069, 49.3300143463499], + [-1.477379351775069, 49.3300143463499] + ] + }, + "length": 0.1119210277032705, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11164", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23664", + "bus2": "MVBus23665", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.477379351775069, 49.3300143463499], + [-1.477379351775069, 49.3300143463499], + [-1.469473420583994, 49.33253844546463], + [-1.469473420583994, 49.33253844546463] + ] + }, + "length": 0.6395473100197062, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15263", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23659", + "bus2": "MVBus23660", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.484133426908198, 49.33134359624456], + [-1.484133426908198, 49.33134359624456], + [-1.482695123969117, 49.333934930040506], + [-1.482695123969117, 49.333934930040506] + ] + }, + "length": 0.3065729223546083, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19991", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23660", + "bus2": "MVLV03243", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.482695123969117, 49.333934930040506], + [-1.482695123969117, 49.333934930040506], + [-1.484443100222334, 49.334958340796625], + [-1.486548333330025, 49.33618052052723], + [-1.486548333330025, 49.33618052052723] + ] + }, + "length": 0.37523568002671814, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23448", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23660", + "bus2": "MVLV16207", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.482695123969117, 49.333934930040506], + [-1.482695123969117, 49.333934930040506], + [-1.480173475885151, 49.33423279739736], + [-1.479392536599125, 49.33457381549308], + [-1.478685676715247, 49.33494320019281], + [-1.478685676715247, 49.33494320019281] + ] + }, + "length": 0.32029104368682343, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23157", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23654", + "bus2": "MVLV00556", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.501088222606753, 49.33532522876661], + [-1.501088222606753, 49.33532522876661], + [-1.49991598353188, 49.33737849775162], + [-1.499432801241324, 49.33770253259602], + [-1.498718124072025, 49.338044170722846], + [-1.497950206009199, 49.338225291933846], + [-1.497950206009199, 49.338225291933846] + ] + }, + "length": 0.4177356164704489, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03872", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23653", + "bus2": "MVLV00557", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.506374434040589, 49.33702907136982], + [-1.506374434040589, 49.33702907136982], + [-1.505789916628994, 49.33871883648804], + [-1.500250673650373, 49.34212810136862], + [-1.500250673650373, 49.34212810136862] + ] + }, + "length": 0.74567234079204, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03873", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00557", + "bus2": "MVBus23669", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500250673650373, 49.34212810136862], + [-1.500250673650373, 49.34212810136862], + [-1.499633063956089, 49.34213404600997], + [-1.498817642378083, 49.34189422851426], + [-1.498817642378083, 49.34189422851426] + ] + }, + "length": 0.10986828457659217, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch46135", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23669", + "bus2": "MVLV16630", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.498817642378083, 49.34189422851426], + [-1.498817642378083, 49.34189422851426], + [-1.498800537496032, 49.3418784588689], + [-1.498671610462556, 49.34178853864639], + [-1.498595317975536, 49.341635589229384], + [-1.498082515137614, 49.34165195177634], + [-1.497818290739259, 49.34168392863495], + [-1.497474517759035, 49.34177650915794], + [-1.49734890745959, 49.341734996507654], + [-1.497156280695769, 49.34192163668587], + [-1.496946824844434, 49.342204547472356], + [-1.496721937085727, 49.34250829478752], + [-1.495544520706128, 49.34354086758737], + [-1.495517486299349, 49.34353092753231], + [-1.495517486299349, 49.34353092753231] + ] + }, + "length": 0.37081031837191913, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch19986", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00557", + "bus2": "MVBus23668", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500250673650373, 49.34212810136862], + [-1.500250673650373, 49.34212810136862], + [-1.500237842828451, 49.34213599416101], + [-1.500237842828451, 49.34213599416101] + ] + }, + "length": 0.0012805970531591306, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08588", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23651", + "bus2": "MVLV16209", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.511792612037957, 49.339128954091514], + [-1.511792612037957, 49.339128954091514], + [-1.511308187603026, 49.33950177292033], + [-1.511308187603026, 49.33950177292033] + ] + }, + "length": 0.05439303367334706, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29387", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23647", + "bus2": "MVLV10753", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.52674422159139, 49.335008438613734], + [-1.52674422159139, 49.335008438613734], + [-1.527661328563556, 49.334799790674595], + [-1.527661328563556, 49.334799790674595] + ] + }, + "length": 0.07057903647257757, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34988", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11803", + "bus2": "MVLV04212", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.536534847236821, 49.321120183051995], + [-1.536534847236821, 49.321120183051995], + [-1.536406592515027, 49.321066023906944], + [-1.536408762697852, 49.32104609385472], + [-1.536408762697852, 49.32104609385472] + ] + }, + "length": 0.01332263067374734, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41778", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14297", + "bus2": "MVBus14674", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.538193007833593, 49.31216799569018], + [-1.538170052449956, 49.31216363624025], + [-1.538137849537636, 49.312177168723125], + [-1.538123901866753, 49.312183033472245], + [-1.537626963128404, 49.31214575188578], + [-1.53708557469033, 49.312147121825525], + [-1.536217870153149, 49.31222740691322], + [-1.535713313391154, 49.312254360208854], + [-1.535713313391154, 49.312254360208854] + ] + }, + "length": 0.1802597631984163, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48294", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14674", + "bus2": "MVBus14676", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.535713313391154, 49.312254360208854], + [-1.535713313391154, 49.312254360208854], + [-1.535457931048004, 49.31226799908143], + [-1.534338948275798, 49.31227992497371], + [-1.533606760999899, 49.31228772489628], + [-1.532943608155652, 49.31229478946092], + [-1.532608028380869, 49.3122552389903], + [-1.532263978912218, 49.312262300885415], + [-1.531725612374166, 49.312303773396195], + [-1.530879514782274, 49.31226263351347], + [-1.530785822896225, 49.31237819129319], + [-1.530785822896225, 49.31237819129319] + ] + }, + "length": 0.3669595001259236, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23315", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14676", + "bus2": "MVBus14677", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530785822896225, 49.31237819129319], + [-1.530785822896225, 49.31237819129319], + [-1.529735073884145, 49.31219514900721], + [-1.529735073884145, 49.31219514900721] + ] + }, + "length": 0.07906888946602389, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10671", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14677", + "bus2": "MVBus14678", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.529735073884145, 49.31219514900721], + [-1.529735073884145, 49.31219514900721], + [-1.528425285894258, 49.31235791228221], + [-1.528425285894258, 49.31235791228221] + ] + }, + "length": 0.09694397235096873, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08411", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14678", + "bus2": "MVLV13843", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528425285894258, 49.31235791228221], + [-1.528425285894258, 49.31235791228221], + [-1.526075820963424, 49.316179302994485], + [-1.526075820963424, 49.316179302994485] + ] + }, + "length": 0.4580472166707575, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18509", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14678", + "bus2": "MVBus14679", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528425285894258, 49.31235791228221], + [-1.528425285894258, 49.31235791228221], + [-1.527098863522479, 49.312303382214324], + [-1.527098863522479, 49.312303382214324] + ] + }, + "length": 0.09663886198510684, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18510", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14679", + "bus2": "MVBus14681", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527098863522479, 49.312303382214324], + [-1.527098863522479, 49.312303382214324], + [-1.524153720605166, 49.31233014733411], + [-1.524153720605166, 49.31233014733411] + ] + }, + "length": 0.21417143761172072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch27894", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14681", + "bus2": "MVBus14682", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.524153720605166, 49.31233014733411], + [-1.524153720605166, 49.31233014733411], + [-1.522586050277545, 49.31253577323639], + [-1.522584528407902, 49.31253675757177], + [-1.522584528407902, 49.31253675757177] + ] + }, + "length": 0.11641707040119277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38085", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14682", + "bus2": "MVLV00558", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.522584528407902, 49.31253675757177], + [-1.522584528407902, 49.31253675757177], + [-1.521550179657872, 49.31320078591419], + [-1.520245543534837, 49.313775748036875], + [-1.518102246333365, 49.31437348265132], + [-1.517082918956999, 49.314367863780625], + [-1.513409597282692, 49.31441871052916], + [-1.513063287685275, 49.31448992931678], + [-1.513063287685275, 49.31448992931678] + ] + }, + "length": 0.756896951853965, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch31695", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14681", + "bus2": "MVLV15540", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.524153720605166, 49.31233014733411], + [-1.524153720605166, 49.31233014733411], + [-1.523128830492736, 49.31217904723409], + [-1.523128830492736, 49.31217904723409] + ] + }, + "length": 0.07639433946605165, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31694", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14679", + "bus2": "MVLV00901", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527098863522479, 49.312303382214324], + [-1.527098863522479, 49.312303382214324], + [-1.530018730823778, 49.30732834984887], + [-1.530018730823778, 49.30732834984887] + ] + }, + "length": 0.5926417980284098, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43479", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14674", + "bus2": "MVLV14088", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.535713313391154, 49.312254360208854], + [-1.535713313391154, 49.312254360208854], + [-1.535678506609903, 49.31221750682438], + [-1.535652057142803, 49.312189495608315], + [-1.535652057142803, 49.312189495608315] + ] + }, + "length": 0.008478251107719109, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39367", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08091", + "bus2": "MVBus10224", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407539952262903, 49.305622831378344], + [-1.540770931947025, 49.30562943539922], + [-1.540778659181527, 49.30562173825415], + [-1.540823703328984, 49.30557684823684], + [-1.540950318339718, 49.30557276022702], + [-1.541173966163845, 49.30553989492004], + [-1.541379243388977, 49.305477435953634], + [-1.54139881330825, 49.30521727794323], + [-1.541529995899582, 49.304738927306005], + [-1.54172129145631, 49.3042176546864], + [-1.541908258779853, 49.30355280245655], + [-1.541937703242198, 49.30336187256208], + [-1.541937703242198, 49.30336187256208] + ] + }, + "length": 0.288510435240511, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35790", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10224", + "bus2": "MVLV13673", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541937703242198, 49.30336187256208], + [-1.541937703242198, 49.30336187256208], + [-1.541529677889739, 49.30318964937108], + [-1.541298719792966, 49.30334524282238], + [-1.540966177982104, 49.30308440121235], + [-1.540658106472455, 49.30288582211388], + [-1.540401264694867, 49.302781670637664], + [-1.540211585895342, 49.302759829436454], + [-1.540211585895342, 49.302759829436454] + ] + }, + "length": 0.16464985621011782, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33037", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10224", + "bus2": "MVBus10226", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541937703242198, 49.30336187256208], + [-1.541937703242198, 49.30336187256208], + [-1.542223387630054, 49.302440303362495], + [-1.542223387630054, 49.302440303362495] + ] + }, + "length": 0.10457758935540795, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46055", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10226", + "bus2": "MVLV12002", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542223387630054, 49.302440303362495], + [-1.542223387630054, 49.302440303362495], + [-1.542286507604268, 49.302491459800805], + [-1.542347944838915, 49.30249575369062], + [-1.543287745475706, 49.30308795956141], + [-1.54331998363382, 49.30314452967704], + [-1.54365550869017, 49.30338825061464], + [-1.543721334528962, 49.30340473390545], + [-1.543721334528962, 49.30340473390545] + ] + }, + "length": 0.1550339128722013, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43483", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10226", + "bus2": "MVBus10227", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542223387630054, 49.302440303362495], + [-1.542223387630054, 49.302440303362495], + [-1.542471534666646, 49.301639764738134], + [-1.542801364055465, 49.30079264624719], + [-1.542801364055465, 49.30079264624719] + ] + }, + "length": 0.1880618514463853, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34596", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10227", + "bus2": "MVLV18774", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542801364055465, 49.30079264624719], + [-1.542801364055465, 49.30079264624719], + [-1.543074812336536, 49.29952906998616], + [-1.543255810475533, 49.299545016408466], + [-1.543276233423465, 49.299546812114606], + [-1.5432777670666975, 49.29954408210185] + ] + }, + "length": 0.15671172166017394, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44086", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18774", + "bus2": "MVLV15279", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5432777670666975, 49.29954408210185], + [-1.54327930070993, 49.2995413520891], + [-1.543261945051934, 49.299534096358364], + [-1.543021981793605, 49.2994048852615], + [-1.543729397162779, 49.29685079708619], + [-1.54364517698851, 49.2966555419782], + [-1.542321475676577, 49.296886267646975], + [-1.542253353754012, 49.29698185278405], + [-1.541914524945784, 49.297041585899535], + [-1.541412556221464, 49.29714362782427], + [-1.540845933502151, 49.29724261036738], + [-1.540834644587022, 49.297248839543464], + [-1.540823676571206, 49.297262416131204], + [-1.540633277065016, 49.297300900788], + [-1.540622591437736, 49.297308198837065], + [-1.54059443877525, 49.29740002766545], + [-1.540595595770228, 49.29741535348045], + [-1.540603073636934, 49.29743114980665], + [-1.540696198869637, 49.297511129080256], + [-1.540728848225262, 49.297539164091546], + [-1.540722291595128, 49.29754240257251] + ] + }, + "length": 0.6005951041406843, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37342", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15279", + "bus2": "MVBus14650", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540722291595128, 49.29754240257251], + [-1.540715734964994, 49.297545641053475], + [-1.540683189104523, 49.297517701640146], + [-1.540588185781181, 49.29743616393078], + [-1.540579233993002, 49.29741724002069], + [-1.540577873784522, 49.29739922231761], + [-1.540607373135704, 49.297303005504524], + [-1.540624323791336, 49.297291430497545], + [-1.540812284829669, 49.297253438358865], + [-1.540821567466289, 49.29724194902918], + [-1.54083812472163, 49.29723281529839], + [-1.541323068619209, 49.297148442866344], + [-1.541323068619209, 49.297148442866344] + ] + }, + "length": 0.08604247104581982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34273", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14650", + "bus2": "MVLV14464", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541323068619209, 49.297148442866344], + [-1.541323068619209, 49.297148442866344], + [-1.541338137388253, 49.297145644527156], + [-1.541351775372225, 49.29717034464484], + [-1.541368392977678, 49.297200444375925], + [-1.5413683400166376, 49.29720035014075] + ] + }, + "length": 0.007619096156059685, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43429", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14464", + "bus2": "MVBus15061", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5413683400166376, 49.29720035014075], + [-1.541352879564613, 49.29720409359873], + [-1.541341248751791, 49.297183025536185], + [-1.54131626380843, 49.29718764626811], + [-1.541245229313058, 49.2972007881631], + [-1.541179712248823, 49.297214507395836], + [-1.541139579823809, 49.29723472860372], + [-1.540862267611248, 49.297291365605844], + [-1.540812055194363, 49.297295757478814], + [-1.54062931439739, 49.297332942414116], + [-1.540564748011375, 49.29735142484719], + [-1.540534809864111, 49.297363491163246], + [-1.540526227749276, 49.29737260120101], + [-1.540520377731841, 49.29738474422715], + [-1.540514564448229, 49.29738790022909], + [-1.540490696381317, 49.297394382629165], + [-1.54043856088713, 49.29740463810236], + [-1.540354075240552, 49.29742124502784], + [-1.540226564258623, 49.297439798733656], + [-1.539886332441949, 49.29750123526946], + [-1.53974488122933, 49.29752825288703], + [-1.539556385875935, 49.29756082766095], + [-1.539438860653758, 49.29758304286213], + [-1.539369820557496, 49.29759838592583], + [-1.539272544623011, 49.297617923481724], + [-1.539197102850192, 49.297630450820364], + [-1.539162986540141, 49.29763837010339], + [-1.539130908405831, 49.29764267962889], + [-1.538855465272838, 49.297693701699366], + [-1.538802634415764, 49.29769894178305], + [-1.538665445659885, 49.297700257242624], + [-1.538597742892225, 49.29770452904011], + [-1.538581300759887, 49.297707722144374], + [-1.538567408521974, 49.29770807154465], + [-1.538555666205925, 49.29770355732112], + [-1.538555666205925, 49.29770355732112] + ] + }, + "length": 0.21550751613824057, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37240", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15061", + "bus2": "MVBus15062", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.538555666205925, 49.29770355732112], + [-1.538555666205925, 49.29770355732112], + [-1.538536902163315, 49.29770040305343], + [-1.538518431778451, 49.29770132295329], + [-1.537662421485925, 49.29783948270921], + [-1.537662421485925, 49.29783948270921] + ] + }, + "length": 0.06688605844940153, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44877", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15062", + "bus2": "MVLV05023", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.537662421485925, 49.29783948270921], + [-1.537662421485925, 49.29783948270921], + [-1.537600824756657, 49.29785086070992], + [-1.537550409693325, 49.29779259087647], + [-1.537550409693325, 49.29779259087647] + ] + }, + "length": 0.012101505956263555, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36615", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15062", + "bus2": "MVLV09251", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.537662421485925, 49.29783948270921], + [-1.537662421485925, 49.29783948270921], + [-1.537606280596458, 49.297883803574834], + [-1.537580332100724, 49.29791722899418], + [-1.537576022127304, 49.29800631773501], + [-1.537697829254288, 49.298418604441736], + [-1.537601100516259, 49.298617353403465], + [-1.537403224954161, 49.298684272565666], + [-1.537446392202924, 49.29874144503897], + [-1.537446392202924, 49.29874144503897] + ] + }, + "length": 0.11367425331406272, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38532", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14464", + "bus2": "MVBus17206", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5413683400166376, 49.29720035014075], + [-1.541383747507622, 49.2971965124476], + [-1.541367405818449, 49.297166970481975], + [-1.541353993106287, 49.29714270383739], + [-1.541353993106287, 49.29714270383739] + ] + }, + "length": 0.0063636643007188185, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45615", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17206", + "bus2": "MVBus17207", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541353993106287, 49.29714270383739], + [-1.541353993106287, 49.29714270383739], + [-1.541378117392617, 49.2971385246556], + [-1.541378117392617, 49.2971385246556] + ] + }, + "length": 0.0018152069112323077, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47283", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17207", + "bus2": "MVLV00382", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541378117392617, 49.2971385246556], + [-1.541378117392617, 49.2971385246556], + [-1.541407652255103, 49.29713332520885], + [-1.541910096343041, 49.297031204981835], + [-1.542239776802761, 49.29697308065234], + [-1.542299971205669, 49.296869773188504], + [-1.543693723882401, 49.296572866499915], + [-1.543956558641666, 49.29613449001025], + [-1.544000276794944, 49.29616266116647], + [-1.543989146153294, 49.29615131859048], + [-1.543989146153294, 49.29615131859048] + ] + }, + "length": 0.24257532653511676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46481", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17207", + "bus2": "MVBus17209", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541378117392617, 49.2971385246556], + [-1.541378117392617, 49.2971385246556], + [-1.541379443151688, 49.297158450381666], + [-1.541389251247893, 49.29717523280184], + [-1.541402610105714, 49.29717365001366], + [-1.541402610105714, 49.29717365001366] + ] + }, + "length": 0.005203781737639504, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch16684", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17209", + "bus2": "MVLV11101", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541402610105714, 49.29717365001366], + [-1.541402610105714, 49.29717365001366], + [-1.541178395735151, 49.2967821229966], + [-1.541178395735151, 49.2967821229966] + ] + }, + "length": 0.04649766143979308, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV07004_production", + "bus": "MVLV07004", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV07004_consumption", + "bus": "MVLV07004", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV10176_production", + "bus": "MVLV10176", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV10176_consumption", + "bus": "MVLV10176", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV12189_production", + "bus": "MVLV12189", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV12189_consumption", + "bus": "MVLV12189", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV08091_production", + "bus": "MVLV08091", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV08091_consumption", + "bus": "MVLV08091", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV05282_production", + "bus": "MVLV05282", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV05282_consumption", + "bus": "MVLV05282", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV14297_production", + "bus": "MVLV14297", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14297_consumption", + "bus": "MVLV14297", + "phases": "abc", + "powers": [ + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678] + ] + }, + { + "id": "MVLV06470_production", + "bus": "MVLV06470", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06470_consumption", + "bus": "MVLV06470", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV14298_production", + "bus": "MVLV14298", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14298_consumption", + "bus": "MVLV14298", + "phases": "abc", + "powers": [ + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012] + ] + }, + { + "id": "MVLV07424_production", + "bus": "MVLV07424", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07424_consumption", + "bus": "MVLV07424", + "phases": "abc", + "powers": [ + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012] + ] + }, + { + "id": "MVLV03792_production", + "bus": "MVLV03792", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03792_consumption", + "bus": "MVLV03792", + "phases": "abc", + "powers": [ + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012] + ] + }, + { + "id": "MVLV15114_production", + "bus": "MVLV15114", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15114_consumption", + "bus": "MVLV15114", + "phases": "abc", + "powers": [ + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012] + ] + }, + { + "id": "MVLV18758_production", + "bus": "MVLV18758", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV18758_consumption", + "bus": "MVLV18758", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV14458_production", + "bus": "MVLV14458", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV14458_consumption", + "bus": "MVLV14458", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV02134_production", + "bus": "MVLV02134", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV02134_consumption", + "bus": "MVLV02134", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV00376_production", + "bus": "MVLV00376", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV00376_consumption", + "bus": "MVLV00376", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV03057_production", + "bus": "MVLV03057", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV03057_consumption", + "bus": "MVLV03057", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV19162_production", + "bus": "MVLV19162", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV19162_consumption", + "bus": "MVLV19162", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV08862_production", + "bus": "MVLV08862", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV08862_consumption", + "bus": "MVLV08862", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV06284_production", + "bus": "MVLV06284", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV06284_consumption", + "bus": "MVLV06284", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV03060_production", + "bus": "MVLV03060", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV03060_consumption", + "bus": "MVLV03060", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV10164_production", + "bus": "MVLV10164", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV10164_consumption", + "bus": "MVLV10164", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV10159_production", + "bus": "MVLV10159", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV10159_consumption", + "bus": "MVLV10159", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV13646_production", + "bus": "MVLV13646", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV13646_consumption", + "bus": "MVLV13646", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV00373_production", + "bus": "MVLV00373", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV00373_consumption", + "bus": "MVLV00373", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV00375_production", + "bus": "MVLV00375", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV00375_consumption", + "bus": "MVLV00375", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV13649_production", + "bus": "MVLV13649", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV13649_consumption", + "bus": "MVLV13649", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV10158_production", + "bus": "MVLV10158", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV10158_consumption", + "bus": "MVLV10158", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV16575_production", + "bus": "MVLV16575", + "phases": "abc", + "powers": [ + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0], + [-959.8039215686275, 0.0] + ] + }, + { + "id": "MVLV16575_consumption", + "bus": "MVLV16575", + "phases": "abc", + "powers": [ + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476], + [4390.61843163705, 1443.1264903844476] + ] + }, + { + "id": "MVLV13841_production", + "bus": "MVLV13841", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13841_consumption", + "bus": "MVLV13841", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV18938_production", + "bus": "MVLV18938", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18938_consumption", + "bus": "MVLV18938", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV10338_production", + "bus": "MVLV10338", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10338_consumption", + "bus": "MVLV10338", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV03243_production", + "bus": "MVLV03243", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03243_consumption", + "bus": "MVLV03243", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV16207_production", + "bus": "MVLV16207", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16207_consumption", + "bus": "MVLV16207", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV00556_production", + "bus": "MVLV00556", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00556_consumption", + "bus": "MVLV00556", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV00557_production", + "bus": "MVLV00557", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00557_consumption", + "bus": "MVLV00557", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV16630_production", + "bus": "MVLV16630", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16630_consumption", + "bus": "MVLV16630", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV16209_production", + "bus": "MVLV16209", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16209_consumption", + "bus": "MVLV16209", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV10753_production", + "bus": "MVLV10753", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10753_consumption", + "bus": "MVLV10753", + "phases": "abc", + "powers": [ + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012], + [2181.6442414882986, 717.0717853322012] + ] + }, + { + "id": "MVLV04212_production", + "bus": "MVLV04212", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04212_consumption", + "bus": "MVLV04212", + "phases": "abc", + "powers": [ + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678] + ] + }, + { + "id": "MVLV13843_production", + "bus": "MVLV13843", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13843_consumption", + "bus": "MVLV13843", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV00558_production", + "bus": "MVLV00558", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00558_consumption", + "bus": "MVLV00558", + "phases": "abc", + "powers": [ + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847], + [1478.7994739243802, 486.05788182580847] + ] + }, + { + "id": "MVLV15540_production", + "bus": "MVLV15540", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15540_consumption", + "bus": "MVLV15540", + "phases": "abc", + "powers": [ + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678] + ] + }, + { + "id": "MVLV00901_production", + "bus": "MVLV00901", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00901_consumption", + "bus": "MVLV00901", + "phases": "abc", + "powers": [ + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678] + ] + }, + { + "id": "MVLV14088_production", + "bus": "MVLV14088", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14088_consumption", + "bus": "MVLV14088", + "phases": "abc", + "powers": [ + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678], + [1323.1184491818083, 434.8880035149678] + ] + }, + { + "id": "MVLV13673_production", + "bus": "MVLV13673", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV13673_consumption", + "bus": "MVLV13673", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV12002_production", + "bus": "MVLV12002", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV12002_consumption", + "bus": "MVLV12002", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV18774_production", + "bus": "MVLV18774", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV18774_consumption", + "bus": "MVLV18774", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV15279_production", + "bus": "MVLV15279", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV15279_consumption", + "bus": "MVLV15279", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV14464_production", + "bus": "MVLV14464", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV14464_consumption", + "bus": "MVLV14464", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV05023_production", + "bus": "MVLV05023", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV05023_consumption", + "bus": "MVLV05023", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV09251_production", + "bus": "MVLV09251", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV09251_consumption", + "bus": "MVLV09251", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV00382_production", + "bus": "MVLV00382", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV00382_consumption", + "bus": "MVLV00382", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + }, + { + "id": "MVLV11101_production", + "bus": "MVLV11101", + "phases": "abc", + "powers": [ + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0], + [-485.9872611464968, 0.0] + ] + }, + { + "id": "MVLV11101_consumption", + "bus": "MVLV11101", + "phases": "abc", + "powers": [ + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569], + [3531.688562467807, 1160.8098949251569] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder251_Winter.json b/roseau/load_flow/data/networks/MVFeeder251_Winter.json new file mode 100644 index 00000000..ba5df37b --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder251_Winter.json @@ -0,0 +1,5280 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.544122777559802, 49.28792921131057] + } + }, + { + "id": "HVMV17", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544122777559802, 49.28792921131057] + } + }, + { + "id": "MVBus02317", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.544278715354673, 49.28819278593066] + } + }, + { + "id": "MVBus02318", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.545353494551501, 49.288203281286165] + } + }, + { + "id": "MVBus02319", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.548968224727916, 49.288476803005885] + } + }, + { + "id": "MVBus02320", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.549076450270867, 49.28842758779228] + } + }, + { + "id": "MVBus02321", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.550843810591999, 49.28835713931457] + } + }, + { + "id": "MVBus02322", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.558363431607862, 49.293103186411905] + } + }, + { + "id": "MVLV07004", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5580257550948962, 49.29312307703382] + } + }, + { + "id": "MVBus05969", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.558365114135587, 49.29312791296315] + } + }, + { + "id": "MVBus05970", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.556899752581278, 49.294687718159565] + } + }, + { + "id": "MVLV10176", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5557191205984735, 49.29423783326932] + } + }, + { + "id": "MVBus06431", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.556855381394924, 49.294703989676044] + } + }, + { + "id": "MVBus06432", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.553605845662367, 49.300981342922235] + } + }, + { + "id": "MVLV12189", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.557217555766814, 49.303017120020975] + } + }, + { + "id": "MVLV08091", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5407539952262903, 49.305622831378344] + } + }, + { + "id": "MVBus09269", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540486402010409, 49.308234227444785] + } + }, + { + "id": "MVLV05282", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540443543412636, 49.30824396710194] + } + }, + { + "id": "MVLV14297", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.538193007833593, 49.31216799569018] + } + }, + { + "id": "MVBus11803", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.536534847236821, 49.321120183051995] + } + }, + { + "id": "MVLV06470", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5339935260812059, 49.32782537754664] + } + }, + { + "id": "MVLV14298", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5329799874850207, 49.33507754804151] + } + }, + { + "id": "MVBus22066", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.533131628048518, 49.33571004547227] + } + }, + { + "id": "MVBus22072", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.533046984107669, 49.335762285638104] + } + }, + { + "id": "MVBus22073", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.533057531446026, 49.33486137550976] + } + }, + { + "id": "MVLV07424", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.534883420349337, 49.33506643532471] + } + }, + { + "id": "MVLV03792", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.532877816023977, 49.33303061717324] + } + }, + { + "id": "MVLV15114", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.532053313651179, 49.337907928002785] + } + }, + { + "id": "MVBus22067", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.532403732174482, 49.35257682859679] + } + }, + { + "id": "MVLV18758", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531733080868806, 49.352784404544984] + } + }, + { + "id": "MVBus22069", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531441732019706, 49.3553465205665] + } + }, + { + "id": "MVLV14458", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.526507526635254, 49.35513073595609] + } + }, + { + "id": "MVLV02134", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531585636721146, 49.36510976245396] + } + }, + { + "id": "MVBus32942", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527320367955829, 49.373951706325954] + } + }, + { + "id": "MVBus32948", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.528727248595691, 49.37807677444229] + } + }, + { + "id": "MVBus32950", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527625344427467, 49.38114490026094] + } + }, + { + "id": "MVBus32951", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527156505637376, 49.38105323794978] + } + }, + { + "id": "MVLV00376", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.526160390385847, 49.381286355063466] + } + }, + { + "id": "MVBus32953", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.517504389409401, 49.38872725310879] + } + }, + { + "id": "MVLV03057", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531109516842623, 49.374778041057695] + } + }, + { + "id": "MVBus32943", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.522950716921357, 49.37216582565863] + } + }, + { + "id": "MVBus32944", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.51909312942812, 49.37219771660025] + } + }, + { + "id": "MVBus32945", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5179650794455, 49.372197550213805] + } + }, + { + "id": "MVLV19162", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.518256530861644, 49.37146823421635] + } + }, + { + "id": "MVLV08862", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.514287610518751, 49.37219695446738] + } + }, + { + "id": "MVBus34410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530854289006823, 49.36466877623434] + } + }, + { + "id": "MVLV06284", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.531589190610127, 49.36492882285905] + } + }, + { + "id": "MVBus34411", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.529769581166713, 49.364480054902444] + } + }, + { + "id": "MVLV03060", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.535568417050356, 49.36472085133499] + } + }, + { + "id": "MVBus34412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.52856610290105, 49.36430611482931] + } + }, + { + "id": "MVBus34413", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.520096239743545, 49.361924579760256] + } + }, + { + "id": "MVBus34414", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.519139011907793, 49.36212948743184] + } + }, + { + "id": "MVBus34416", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.514492224885197, 49.36467005047749] + } + }, + { + "id": "MVBus34418", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.510635276449318, 49.36476553532519] + } + }, + { + "id": "MVBus34429", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.509289955481284, 49.361120529396175] + } + }, + { + "id": "MVBus34430", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.510721727829247, 49.3581988444997] + } + }, + { + "id": "MVLV10164", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.509866575618648, 49.35795541122072] + } + }, + { + "id": "MVBus34419", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.508108365725732, 49.364432954296966] + } + }, + { + "id": "MVBus34420", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.504233252185425, 49.36406601752124] + } + }, + { + "id": "MVBus34421", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.503321601957881, 49.36235272639792] + } + }, + { + "id": "MVLV10159", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.50417103993675, 49.360882830762066] + } + }, + { + "id": "MVBus34423", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.50445347690626, 49.36467905920785] + } + }, + { + "id": "MVBus34424", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.49892473707318, 49.364392249251054] + } + }, + { + "id": "MVLV13646", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.493997799159938, 49.36470190719969] + } + }, + { + "id": "MVLV00373", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.49790226678558, 49.364741187553236] + } + }, + { + "id": "MVLV00375", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.505218708194213, 49.36706491493334] + } + }, + { + "id": "MVLV13649", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.508471587649024, 49.36306583437844] + } + }, + { + "id": "MVLV10158", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.514068875814502, 49.36644570324624] + } + }, + { + "id": "MVLV16575", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.520552683911972, 49.36221285227293] + } + }, + { + "id": "MVBus23647", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.52674422159139, 49.335008438613734] + } + }, + { + "id": "MVBus23649", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.525990741835495, 49.3352494526061] + } + }, + { + "id": "MVBus23650", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.516088184722974, 49.33830826797327] + } + }, + { + "id": "MVLV13841", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.51474496203316, 49.33546599960393] + } + }, + { + "id": "MVBus23651", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.511792612037957, 49.339128954091514] + } + }, + { + "id": "MVBus23653", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.506374434040589, 49.33702907136982] + } + }, + { + "id": "MVBus23654", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.501088222606753, 49.33532522876661] + } + }, + { + "id": "MVBus23656", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.500188561543648, 49.33493741338863] + } + }, + { + "id": "MVLV18938", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.501331914032815, 49.33384038654791] + } + }, + { + "id": "MVBus23658", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.495520666720995, 49.33409063193276] + } + }, + { + "id": "MVBus23659", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.484133426908198, 49.33134359624456] + } + }, + { + "id": "MVBus23663", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.478918590402116, 49.330026289077466] + } + }, + { + "id": "MVLV10338", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.478484932562386, 49.327578929121835] + } + }, + { + "id": "MVBus23664", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.477379351775069, 49.3300143463499] + } + }, + { + "id": "MVBus23665", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.469473420583994, 49.33253844546463] + } + }, + { + "id": "MVBus23660", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.482695123969117, 49.333934930040506] + } + }, + { + "id": "MVLV03243", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.486548333330025, 49.33618052052723] + } + }, + { + "id": "MVLV16207", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.478685676715247, 49.33494320019281] + } + }, + { + "id": "MVLV00556", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.497950206009199, 49.338225291933846] + } + }, + { + "id": "MVLV00557", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.500250673650373, 49.34212810136862] + } + }, + { + "id": "MVBus23669", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.498817642378083, 49.34189422851426] + } + }, + { + "id": "MVLV16630", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.495517486299349, 49.34353092753231] + } + }, + { + "id": "MVBus23668", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.500237842828451, 49.34213599416101] + } + }, + { + "id": "MVLV16209", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.511308187603026, 49.33950177292033] + } + }, + { + "id": "MVLV10753", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527661328563556, 49.334799790674595] + } + }, + { + "id": "MVLV04212", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.536408762697852, 49.32104609385472] + } + }, + { + "id": "MVBus14674", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.535713313391154, 49.312254360208854] + } + }, + { + "id": "MVBus14676", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530785822896225, 49.31237819129319] + } + }, + { + "id": "MVBus14677", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.529735073884145, 49.31219514900721] + } + }, + { + "id": "MVBus14678", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.528425285894258, 49.31235791228221] + } + }, + { + "id": "MVLV13843", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.526075820963424, 49.316179302994485] + } + }, + { + "id": "MVBus14679", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.527098863522479, 49.312303382214324] + } + }, + { + "id": "MVBus14681", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.524153720605166, 49.31233014733411] + } + }, + { + "id": "MVBus14682", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.522584528407902, 49.31253675757177] + } + }, + { + "id": "MVLV00558", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.513063287685275, 49.31448992931678] + } + }, + { + "id": "MVLV15540", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.523128830492736, 49.31217904723409] + } + }, + { + "id": "MVLV00901", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.530018730823778, 49.30732834984887] + } + }, + { + "id": "MVLV14088", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.535652057142803, 49.312189495608315] + } + }, + { + "id": "MVBus10224", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541937703242198, 49.30336187256208] + } + }, + { + "id": "MVLV13673", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540211585895342, 49.302759829436454] + } + }, + { + "id": "MVBus10226", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542223387630054, 49.302440303362495] + } + }, + { + "id": "MVLV12002", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543721334528962, 49.30340473390545] + } + }, + { + "id": "MVBus10227", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.542801364055465, 49.30079264624719] + } + }, + { + "id": "MVLV18774", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5432777670666975, 49.29954408210185] + } + }, + { + "id": "MVLV15279", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.540722291595128, 49.29754240257251] + } + }, + { + "id": "MVBus14650", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541323068619209, 49.297148442866344] + } + }, + { + "id": "MVLV14464", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.5413683400166376, 49.29720035014075] + } + }, + { + "id": "MVBus15061", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.538555666205925, 49.29770355732112] + } + }, + { + "id": "MVBus15062", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.537662421485925, 49.29783948270921] + } + }, + { + "id": "MVLV05023", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.537550409693325, 49.29779259087647] + } + }, + { + "id": "MVLV09251", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.537446392202924, 49.29874144503897] + } + }, + { + "id": "MVBus17206", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541353993106287, 49.29714270383739] + } + }, + { + "id": "MVBus17207", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541378117392617, 49.2971385246556] + } + }, + { + "id": "MVLV00382", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.543989146153294, 49.29615131859048] + } + }, + { + "id": "MVBus17209", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541402610105714, 49.29717365001366] + } + }, + { + "id": "MVLV11101", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.541178395735151, 49.2967821229966] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV17", + "geometry": { + "type": "Point", + "coordinates": [-1.544122777559802, 49.28792921131057] + } + }, + { + "id": "MVBranch38653", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV17", + "bus2": "MVBus02317", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544122777559802, 49.28792921131057], + [-1.544064545911348, 49.28798295843586], + [-1.544064545911348, 49.28798295843586], + [-1.544077653421258, 49.288012119047494], + [-1.544278715354673, 49.28819278593066], + [-1.544278715354673, 49.28819278593066] + ] + }, + "length": 0.028233461470556193, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42953", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02317", + "bus2": "MVBus02318", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.544278715354673, 49.28819278593066], + [-1.544278715354673, 49.28819278593066], + [-1.544303558063525, 49.28822274548962], + [-1.54435607356844, 49.28824604470486], + [-1.545130203710099, 49.28833265255595], + [-1.545209700990572, 49.28819838727139], + [-1.545353494551501, 49.288203281286165], + [-1.545353494551501, 49.288203281286165] + ] + }, + "length": 0.09202958332239944, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42071", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02318", + "bus2": "MVBus02319", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.545353494551501, 49.288203281286165], + [-1.545353494551501, 49.288203281286165], + [-1.546008060470975, 49.28826332879754], + [-1.548968224727916, 49.288476803005885], + [-1.548968224727916, 49.288476803005885] + ] + }, + "length": 0.26473687880197855, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45726", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02319", + "bus2": "MVBus02320", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.548968224727916, 49.288476803005885], + [-1.548968224727916, 49.288476803005885], + [-1.548982258759324, 49.28847690646835], + [-1.548995094108262, 49.28847588837704], + [-1.549006195572715, 49.28847230887253], + [-1.549076450270867, 49.28842758779228], + [-1.549076450270867, 49.28842758779228] + ] + }, + "length": 0.009993540367716214, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41856", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02320", + "bus2": "MVBus02321", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.549076450270867, 49.28842758779228], + [-1.549076450270867, 49.28842758779228], + [-1.549707744573232, 49.288011977627775], + [-1.550695748472193, 49.28845703745152], + [-1.550843810591999, 49.28835713931457], + [-1.550843810591999, 49.28835713931457] + ] + }, + "length": 0.16790378725191302, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37561", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02321", + "bus2": "MVBus02322", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.550843810591999, 49.28835713931457], + [-1.550843810591999, 49.28835713931457], + [-1.551839432502873, 49.287688941766646], + [-1.553279985823405, 49.28708984593353], + [-1.553503940504962, 49.28707924282997], + [-1.553543166339699, 49.28709133827926], + [-1.553899215320274, 49.28735040531045], + [-1.553968724727013, 49.28734820661443], + [-1.554241009766557, 49.287469701434006], + [-1.555416921953299, 49.28829202690255], + [-1.556178942262156, 49.28894397726274], + [-1.556385200192579, 49.2891377783652], + [-1.556720883237592, 49.2894904431109], + [-1.556809603307307, 49.28959833018744], + [-1.557245758799447, 49.290198938107046], + [-1.557690435710151, 49.29093012703566], + [-1.557942459673677, 49.291503900155284], + [-1.558222844204846, 49.29214220902152], + [-1.558348944311179, 49.29289019680917], + [-1.558363431607862, 49.293103186411905], + [-1.558363431607862, 49.293103186411905] + ] + }, + "length": 1.02694858466435, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45571", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus02322", + "bus2": "MVLV07004", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558363431607862, 49.293103186411905], + [-1.558363431607862, 49.293103186411905], + [-1.55805054665262, 49.293113318348006], + [-1.558020461421296, 49.29311429426378], + [-1.5580257550948962, 49.29312307703382] + ] + }, + "length": 0.024978720138269347, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39992", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07004", + "bus2": "MVBus05969", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5580257550948962, 49.29312307703382], + [-1.558031048768496, 49.29313185980386], + [-1.558050477712716, 49.293131634333434], + [-1.558365114135587, 49.29312791296315], + [-1.558365114135587, 49.29312791296315] + ] + }, + "length": 0.02430435716809026, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33409", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05969", + "bus2": "MVBus05970", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.558365114135587, 49.29312791296315], + [-1.558365114135587, 49.29312791296315], + [-1.558392089694838, 49.293524624310635], + [-1.558280714090231, 49.29394800525873], + [-1.558040077361262, 49.294485515181684], + [-1.557938886183728, 49.29471153951785], + [-1.557700469612923, 49.29479684511406], + [-1.557428898309983, 49.29485499934382], + [-1.556899752581278, 49.294687718159565], + [-1.556899752581278, 49.294687718159565] + ] + }, + "length": 0.2637279374416299, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42258", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05970", + "bus2": "MVLV10176", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.556899752581278, 49.294687718159565], + [-1.556899752581278, 49.294687718159565], + [-1.556814469048323, 49.294640705664165], + [-1.556718802029458, 49.294597681758205], + [-1.556591039727252, 49.29454853850857], + [-1.556494810813047, 49.29451152328497], + [-1.556432842835297, 49.29448288677953], + [-1.556392651342564, 49.29446085705984], + [-1.556328001464675, 49.29434167440167], + [-1.55628925265661, 49.294269181207206], + [-1.556304925080461, 49.29410180781812], + [-1.556343839970858, 49.293982343461415], + [-1.556362771102496, 49.29390859171891], + [-1.556381207489351, 49.29378549172503], + [-1.556396318378328, 49.2936845641523], + [-1.556210487577078, 49.29368286278066], + [-1.55618574224843, 49.29377353362615], + [-1.556152807001273, 49.29389423427251], + [-1.556116150076947, 49.293994502101754], + [-1.556083366586389, 49.294084183201825], + [-1.556026524815464, 49.29415964970232], + [-1.555981200868604, 49.29420326944431], + [-1.55592979929424, 49.29424708620182], + [-1.555880909499325, 49.294259806939614], + [-1.555819110006087, 49.29426260199422], + [-1.55577362005528, 49.294256125199816], + [-1.555747863745295, 49.294247812327605], + [-1.555727196290815, 49.294236600015545], + [-1.5557191205984735, 49.29423783326932] + ] + }, + "length": 0.22922896329104542, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36528", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV10176", + "bus2": "MVBus06431", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5557191205984735, 49.29423783326932], + [-1.555711044906132, 49.2942390665231], + [-1.555709905069873, 49.294253243523166], + [-1.555709198985772, 49.29426189256228], + [-1.555709931822406, 49.29426357784397], + [-1.555712490740126, 49.294266130406406], + [-1.555720317511327, 49.29426996037984], + [-1.555735095779786, 49.294273511027], + [-1.555779595703046, 49.294283438009664], + [-1.555829091516181, 49.29428687956951], + [-1.555864717826817, 49.29428587750309], + [-1.555891111460949, 49.29428372656106], + [-1.555923156242119, 49.294276840962326], + [-1.555948604950386, 49.294266940016115], + [-1.555969287987201, 49.294254585035404], + [-1.556003276956387, 49.29422853112254], + [-1.556034803230663, 49.29420373537883], + [-1.556076994421136, 49.29415180690991], + [-1.556125826648493, 49.29409169358501], + [-1.556157939117807, 49.294005317383096], + [-1.556200655048918, 49.293893177649416], + [-1.556250700331611, 49.293706996683525], + [-1.556348259995224, 49.2937066128991], + [-1.556329617172461, 49.29388432792322], + [-1.556307256366287, 49.293973797096946], + [-1.556271881582729, 49.294098417698], + [-1.556266782426805, 49.294178116340724], + [-1.556265015824324, 49.294209062262105], + [-1.556261763331609, 49.2942664925027], + [-1.556281986378516, 49.29432718233691], + [-1.556374544382792, 49.294476897467476], + [-1.556392908305692, 49.29449817774516], + [-1.556429590489454, 49.29451818045427], + [-1.556572271027878, 49.294575988002045], + [-1.556662459852183, 49.294611696866966], + [-1.556743180009085, 49.2946442316602], + [-1.55680296771059, 49.29467077093173], + [-1.556855381394924, 49.294703989676044], + [-1.556855381394924, 49.294703989676044] + ] + }, + "length": 0.22660860033133476, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33646", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06431", + "bus2": "MVBus06432", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.556855381394924, 49.294703989676044], + [-1.556855381394924, 49.294703989676044], + [-1.557385961413851, 49.294889826086106], + [-1.557374224253447, 49.29495595979581], + [-1.557377472157742, 49.29510927224081], + [-1.557447574394346, 49.29526041646288], + [-1.557600012496063, 49.295392456490234], + [-1.556759096316054, 49.29634572864169], + [-1.556579087547653, 49.29654977774208], + [-1.555315453710993, 49.29874313638626], + [-1.554888850513974, 49.299483579715265], + [-1.554252138743037, 49.30030083592989], + [-1.553884931034575, 49.30070834655858], + [-1.553605845662367, 49.300981342922235], + [-1.553605845662367, 49.300981342922235] + ] + }, + "length": 0.792612707543813, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33079", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06432", + "bus2": "MVLV12189", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.553605845662367, 49.300981342922235], + [-1.553605845662367, 49.300981342922235], + [-1.553555508523467, 49.30093328593693], + [-1.553551549135147, 49.30092205367382], + [-1.553557411221908, 49.30091137574002], + [-1.553565984347756, 49.30090089781547], + [-1.553578063367311, 49.30089584715829], + [-1.553597811397932, 49.30089580106276], + [-1.553613958204717, 49.30089905581698], + [-1.553633862540597, 49.300903070336815], + [-1.55399009915498, 49.300936395487454], + [-1.554190468669792, 49.300958453231885], + [-1.554302270953267, 49.30096414937148], + [-1.554481280001602, 49.300974953552796], + [-1.554711951660181, 49.300997197877564], + [-1.555065407876741, 49.30104662987325], + [-1.55519228638043, 49.30106903482119], + [-1.555269650336245, 49.30107876053144], + [-1.555331080802683, 49.30108405541743], + [-1.555688720860971, 49.30113567969149], + [-1.555850105479012, 49.30116074334859], + [-1.556008531656012, 49.30119377322279], + [-1.556270060929051, 49.30125871150144], + [-1.556647434206616, 49.301359228140356], + [-1.556970056453826, 49.30144257564067], + [-1.557205950358328, 49.30150425946166], + [-1.557253925503791, 49.301526009590695], + [-1.557306142946434, 49.301574139085304], + [-1.557313041661406, 49.301582946256744], + [-1.557319745327957, 49.301600790625756], + [-1.557329814618145, 49.30162202487161], + [-1.557334447431986, 49.30165246627675], + [-1.557325963696158, 49.30171799032931], + [-1.557299542459669, 49.30192190675507], + [-1.557274931690841, 49.302161312222125], + [-1.557262743114333, 49.30220627711829], + [-1.557256612186251, 49.302283966875386], + [-1.557240764678853, 49.30236285318992], + [-1.557226800025733, 49.30247255788512], + [-1.557204594706673, 49.3025851472808], + [-1.557191013422283, 49.30266453575059], + [-1.557185802101667, 49.302713358051335], + [-1.55718402632807, 49.302760323945265], + [-1.557181059621486, 49.302809361296035], + [-1.55718051443686, 49.3028609466328], + [-1.557161679238428, 49.30299440275693], + [-1.557161933080845, 49.30300954190518], + [-1.5571667754686, 49.30301462890893], + [-1.557171573633508, 49.30301913267917], + [-1.557180431404835, 49.303024386316736], + [-1.557203846225003, 49.30303132671748], + [-1.557214339020699, 49.30303093252168], + [-1.557217555766814, 49.303017120020975], + [-1.557217555766814, 49.303017120020975] + ] + }, + "length": 0.4629762715887536, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42712", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06432", + "bus2": "MVLV08091", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.553605845662367, 49.300981342922235], + [-1.553605845662367, 49.300981342922235], + [-1.553560795305768, 49.301027407964334], + [-1.552594969124907, 49.301762685000945], + [-1.551512962290502, 49.302411397240476], + [-1.550412629007579, 49.302929196038185], + [-1.549429388234952, 49.30333360172381], + [-1.547763099915991, 49.30390255410561], + [-1.545811760819645, 49.30456880161366], + [-1.543162515540441, 49.30547325882959], + [-1.542670038667878, 49.3055849261342], + [-1.542005868259237, 49.305666643144605], + [-1.541857568293667, 49.30558924736994], + [-1.541685849847407, 49.305534527944204], + [-1.541177197726519, 49.30556738651739], + [-1.540953239587985, 49.30560106237891], + [-1.540811464642975, 49.305606593293135], + [-1.540803495450311, 49.30560325268304], + [-1.540755659370213, 49.30563466872761], + [-1.540753463779378, 49.305623262296365], + [-1.5407539952262903, 49.305622831378344] + ] + }, + "length": 1.103705815148244, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41857", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08091", + "bus2": "MVBus09269", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407539952262903, 49.305622831378344], + [-1.540737589952468, 49.30561579643945], + [-1.540733252043573, 49.30562848418592], + [-1.540667639081251, 49.30568953620466], + [-1.540956808587693, 49.3058488877968], + [-1.540971261033053, 49.30595957843265], + [-1.541027931857217, 49.306038413687574], + [-1.541096484657075, 49.30609990114828], + [-1.541117458642052, 49.30621442882496], + [-1.541109133809264, 49.30633006440599], + [-1.541093430236417, 49.30639899457513], + [-1.54094106280494, 49.30684465715278], + [-1.540784234481206, 49.307252046706346], + [-1.540713405873436, 49.30747395814078], + [-1.540621244350711, 49.30777498333838], + [-1.540486402010409, 49.308234227444785], + [-1.540486402010409, 49.308234227444785] + ] + }, + "length": 0.31007777091499894, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42713", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09269", + "bus2": "MVLV05282", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540486402010409, 49.308234227444785], + [-1.540486402010409, 49.308234227444785], + [-1.540443543412636, 49.30824396710194], + [-1.540443543412636, 49.30824396710194] + ] + }, + "length": 0.0032995137003003863, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44335", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09269", + "bus2": "MVLV14297", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540486402010409, 49.308234227444785], + [-1.540486402010409, 49.308234227444785], + [-1.540357106825738, 49.30865765491602], + [-1.540115246377979, 49.309496781924345], + [-1.54000806287199, 49.30987352256521], + [-1.539654921138788, 49.31102038614626], + [-1.539401148113282, 49.31187276493722], + [-1.539286999629095, 49.31225615071473], + [-1.538879004282582, 49.31227395691951], + [-1.538256034072516, 49.31220261581701], + [-1.538237184293533, 49.312188004900676], + [-1.538211714626803, 49.312168255698744], + [-1.538193007833593, 49.31216799569018] + ] + }, + "length": 0.5364504470557699, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39369", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14297", + "bus2": "MVBus11803", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.538193007833593, 49.31216799569018], + [-1.53819725642402, 49.31217209513156], + [-1.5382016944777, 49.312192073085164], + [-1.538205743115031, 49.31221035460955], + [-1.538897043950175, 49.3122871277447], + [-1.539044227710228, 49.312284843196664], + [-1.53908960859427, 49.31233526028656], + [-1.539222826034261, 49.31234824943974], + [-1.538556981108027, 49.314640036218165], + [-1.537956343956155, 49.31670716342029], + [-1.537320265163982, 49.31868196165967], + [-1.536534847236821, 49.321120183051995], + [-1.536534847236821, 49.321120183051995] + ] + }, + "length": 1.0773011885807644, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39368", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11803", + "bus2": "MVLV06470", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.536534847236821, 49.321120183051995], + [-1.536534847236821, 49.321120183051995], + [-1.536501546561255, 49.32122356129653], + [-1.534655567865235, 49.32770166357225], + [-1.534061875940245, 49.327845581054355], + [-1.534014836367798, 49.327815255782454], + [-1.5339935260812059, 49.32782537754664] + ] + }, + "length": 0.7954401697427387, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45860", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV06470", + "bus2": "MVLV14298", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5339935260812059, 49.32782537754664], + [-1.533972215794614, 49.32783549931082], + [-1.534038075431918, 49.327884178788445], + [-1.534317828192986, 49.327814201326994], + [-1.534372586757423, 49.32785308344783], + [-1.53449046786076, 49.32783573977103], + [-1.533170628988937, 49.33232559921571], + [-1.533134314554963, 49.333141749962856], + [-1.533094342636425, 49.33508909025087], + [-1.532986027192007, 49.33515101521379], + [-1.533020283768441, 49.335088030199934], + [-1.53301283434399, 49.335066629402824], + [-1.5329799874850207, 49.33507754804151] + ] + }, + "length": 0.8798759256032205, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37781", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14298", + "bus2": "MVBus22066", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5329799874850207, 49.33507754804151], + [-1.532979533929907, 49.335080051117835], + [-1.532986300373905, 49.33509951311616], + [-1.532994928163547, 49.33512431185406], + [-1.532921199659583, 49.33516213315831], + [-1.53273432520775, 49.33518066177989], + [-1.532746921746389, 49.33530537812459], + [-1.532899599785382, 49.335298788967386], + [-1.533024909995921, 49.33535272317475], + [-1.533121262658806, 49.33544554638144], + [-1.533131628048518, 49.33571004547227], + [-1.533131628048518, 49.33571004547227] + ] + }, + "length": 0.10342519827364842, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37825", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22066", + "bus2": "MVBus22072", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533131628048518, 49.33571004547227], + [-1.533131628048518, 49.33571004547227], + [-1.533046984107669, 49.335762285638104], + [-1.533046984107669, 49.335762285638104] + ] + }, + "length": 0.008461700673569049, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch12288", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22072", + "bus2": "MVBus22073", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533046984107669, 49.335762285638104], + [-1.533046984107669, 49.335762285638104], + [-1.533057531446026, 49.33486137550976], + [-1.533057531446026, 49.33486137550976] + ] + }, + "length": 0.10019875986664627, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29389", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22073", + "bus2": "MVLV07424", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533057531446026, 49.33486137550976], + [-1.533057531446026, 49.33486137550976], + [-1.53398943703501, 49.335195989512854], + [-1.534883420349337, 49.33506643532471], + [-1.534883420349337, 49.33506643532471] + ] + }, + "length": 0.14383385188322648, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29388", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22073", + "bus2": "MVLV03792", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533057531446026, 49.33486137550976], + [-1.533057531446026, 49.33486137550976], + [-1.533011979073309, 49.334190631787195], + [-1.533039825764406, 49.33345854723634], + [-1.532877816023977, 49.33303061717324], + [-1.532877816023977, 49.33303061717324] + ] + }, + "length": 0.2051436384266768, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29382", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22072", + "bus2": "MVLV15114", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533046984107669, 49.335762285638104], + [-1.533046984107669, 49.335762285638104], + [-1.532053313651179, 49.337907928002785], + [-1.532053313651179, 49.337907928002785] + ] + }, + "length": 0.2493185426177021, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch44471", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22066", + "bus2": "MVBus22067", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.533131628048518, 49.33571004547227], + [-1.533131628048518, 49.33571004547227], + [-1.532947292298687, 49.3411369986952], + [-1.532740413744813, 49.3415789077134], + [-1.53278160534124, 49.34165620164864], + [-1.532878494600845, 49.34163934779399], + [-1.532915555431578, 49.34163283888735], + [-1.532983237310681, 49.34162824926677], + [-1.532957908744556, 49.34210447299129], + [-1.532908563438801, 49.34277497516311], + [-1.532771270861551, 49.34290282535032], + [-1.532844701353445, 49.34301204574741], + [-1.5327744631901, 49.34345244180959], + [-1.532729045377297, 49.343639853956425], + [-1.532657756778632, 49.35045146206623], + [-1.532087461291756, 49.350791247571166], + [-1.531904838815109, 49.35129708296319], + [-1.532261866158014, 49.35231340901049], + [-1.532403732174482, 49.35257682859679], + [-1.532403732174482, 49.35257682859679] + ] + }, + "length": 1.926359122832335, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22067", + "bus2": "MVLV18758", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.532403732174482, 49.35257682859679], + [-1.532403732174482, 49.35257682859679], + [-1.532318582392134, 49.352663449981854], + [-1.532227468992275, 49.35265986145356], + [-1.531733080868806, 49.352784404544984], + [-1.531733080868806, 49.352784404544984] + ] + }, + "length": 0.056578106178282746, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45337", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22067", + "bus2": "MVBus22069", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.532403732174482, 49.35257682859679], + [-1.532403732174482, 49.35257682859679], + [-1.53264913595584, 49.35317922079326], + [-1.532702848551083, 49.35332108602859], + [-1.532684420052383, 49.35339347169895], + [-1.532621439228901, 49.35344544416329], + [-1.532498902629156, 49.353468114175726], + [-1.532392156566066, 49.35344658155164], + [-1.532277977981303, 49.3534533772329], + [-1.532032779700746, 49.353623588265485], + [-1.531927759460042, 49.353751835653576], + [-1.531856350066794, 49.35388212237224], + [-1.531882224053266, 49.353971808328446], + [-1.53192882130631, 49.354082692532], + [-1.531975708734858, 49.35413425002378], + [-1.532009720320815, 49.354204947960284], + [-1.531998695945411, 49.354249005985515], + [-1.531912223146382, 49.35432251075777], + [-1.531787395530182, 49.35436193807548], + [-1.531706052936165, 49.35442387283807], + [-1.531583857413184, 49.35457764053744], + [-1.531499002561331, 49.35478327288385], + [-1.531441732019706, 49.3553465205665], + [-1.531441732019706, 49.3553465205665] + ] + }, + "length": 0.36238372555403137, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47705", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22069", + "bus2": "MVLV14458", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531441732019706, 49.3553465205665], + [-1.531441732019706, 49.3553465205665], + [-1.531385451423608, 49.355335289663294], + [-1.531386067616132, 49.35536774817351], + [-1.531380218497825, 49.355395539800796], + [-1.531370833342849, 49.35544016555585], + [-1.531319051605202, 49.35549407932305], + [-1.531274757250741, 49.35551745944992], + [-1.531238305393986, 49.355533823548285], + [-1.531159340552414, 49.35555428064477], + [-1.531036689240641, 49.35557860757163], + [-1.530903052239168, 49.35559949219689], + [-1.530724987624325, 49.35562665376268], + [-1.530499971586221, 49.35566113563619], + [-1.530348254933174, 49.355679273310365], + [-1.530185595337207, 49.35569563111755], + [-1.52996260291213, 49.35571385719575], + [-1.529735820241337, 49.35572491040191], + [-1.529645084310406, 49.35578741545591], + [-1.529598017950466, 49.3557943076446], + [-1.529538683016079, 49.35580375297779], + [-1.52947746702286, 49.355817288201635], + [-1.529423260505689, 49.355830472065875], + [-1.529279032626479, 49.355876735437576], + [-1.528932104851519, 49.35600241475257], + [-1.528828966383681, 49.35603958534019], + [-1.528740910796219, 49.356068427902315], + [-1.528628993181144, 49.35609690430503], + [-1.528470005240302, 49.35613222748504], + [-1.52833777959128, 49.35615615781715], + [-1.528271201209621, 49.35616687869827], + [-1.528245202657719, 49.35616885676052], + [-1.528185214942384, 49.3561700116971], + [-1.52812785415475, 49.35617112712831], + [-1.528044023158241, 49.35616722919092], + [-1.527996840282627, 49.356151198132466], + [-1.527952634906449, 49.35611492422224], + [-1.527923982819329, 49.356087162577886], + [-1.527856224359591, 49.356025742300524], + [-1.527785666176666, 49.355963710428966], + [-1.527660854309551, 49.35586214777877], + [-1.527489768884338, 49.3557368704239], + [-1.527413041989026, 49.35567628681694], + [-1.527291831390711, 49.355573159979755], + [-1.527150278499086, 49.355449478360086], + [-1.52695226508292, 49.35535858728895], + [-1.52648157487598, 49.355177575474116], + [-1.526481408963931, 49.35516787600893], + [-1.526507526635254, 49.35513073595609], + [-1.526507526635254, 49.35513073595609] + ] + }, + "length": 0.44321442367888547, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34135", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus22069", + "bus2": "MVLV02134", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531441732019706, 49.3553465205665], + [-1.531441732019706, 49.3553465205665], + [-1.531463965605725, 49.3554264568919], + [-1.531664465304281, 49.35549834583802], + [-1.53183991724384, 49.35554299629057], + [-1.53189239271028, 49.35555434043819], + [-1.532281840418759, 49.355696626571635], + [-1.532672047395941, 49.35599425424982], + [-1.532778121387907, 49.356213439668494], + [-1.532308183717842, 49.362295885970966], + [-1.532300355928635, 49.362378506927946], + [-1.531996134805592, 49.36510477099037], + [-1.531858186575423, 49.365100044004556], + [-1.531683659565037, 49.36503102487483], + [-1.531637653396617, 49.36507344646523], + [-1.531599957535678, 49.36510700224723], + [-1.531585636721146, 49.36510976245396] + ] + }, + "length": 1.1707233869850964, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39913", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02134", + "bus2": "MVBus32942", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531585636721146, 49.36510976245396], + [-1.531591077797617, 49.36512913479824], + [-1.53165298114622, 49.36521550234027], + [-1.531843685074216, 49.3655053751369], + [-1.531665988640638, 49.36821135085916], + [-1.528833824377521, 49.37087365739615], + [-1.528200911840818, 49.371626624153215], + [-1.528160682391598, 49.371665764231246], + [-1.52784953601465, 49.37195498518486], + [-1.527669458759808, 49.37240437899802], + [-1.527592831367765, 49.37276712698362], + [-1.527320367955829, 49.373951706325954], + [-1.527320367955829, 49.373951706325954] + ] + }, + "length": 1.0731453489406135, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32942", + "bus2": "MVBus32948", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527320367955829, 49.373951706325954], + [-1.527320367955829, 49.373951706325954], + [-1.527400051396363, 49.37446682801028], + [-1.527421005225278, 49.37482422732028], + [-1.527401991409717, 49.37501242778035], + [-1.527315739745103, 49.375253928704204], + [-1.527226268859421, 49.37545290097939], + [-1.527283293402961, 49.375689789762255], + [-1.527441313500359, 49.37588081086286], + [-1.527621122274153, 49.376148732579026], + [-1.527893984631622, 49.37639386819455], + [-1.527968338296842, 49.37653329764479], + [-1.528139295529732, 49.3768646413651], + [-1.528291978122515, 49.37730895291319], + [-1.528727248595691, 49.37807677444229], + [-1.528727248595691, 49.37807677444229] + ] + }, + "length": 0.4830376263026058, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39914", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32948", + "bus2": "MVBus32950", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528727248595691, 49.37807677444229], + [-1.528727248595691, 49.37807677444229], + [-1.528601099201575, 49.378123766068285], + [-1.528608157069455, 49.37821337193959], + [-1.528462993116187, 49.378311835849416], + [-1.528065698686118, 49.37858221876822], + [-1.527697869402059, 49.37891150892088], + [-1.527458293715266, 49.37914643129591], + [-1.527257948239472, 49.37936307612514], + [-1.527454042954106, 49.379610786425374], + [-1.527548552366555, 49.37977615468656], + [-1.527599769425953, 49.38008194354724], + [-1.527633494827969, 49.38033805357043], + [-1.527842423424155, 49.380345830698545], + [-1.527791056549856, 49.38095960598652], + [-1.527625344427467, 49.38114490026094], + [-1.527625344427467, 49.38114490026094] + ] + }, + "length": 0.40312747799055015, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48422", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32950", + "bus2": "MVBus32951", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527625344427467, 49.38114490026094], + [-1.527625344427467, 49.38114490026094], + [-1.527246457920927, 49.3810555650266], + [-1.527156505637376, 49.38105323794978], + [-1.527156505637376, 49.38105323794978] + ] + }, + "length": 0.03578752012234594, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35426", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32951", + "bus2": "MVLV00376", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527156505637376, 49.38105323794978], + [-1.527156505637376, 49.38105323794978], + [-1.52620738657595, 49.38120782106345], + [-1.526160390385847, 49.381286355063466], + [-1.526160390385847, 49.381286355063466] + ] + }, + "length": 0.08040663184049307, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33515", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32950", + "bus2": "MVBus32953", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527625344427467, 49.38114490026094], + [-1.527625344427467, 49.38114490026094], + [-1.527515449617921, 49.38148627328165], + [-1.527512212844316, 49.381560308147634], + [-1.52752355936672, 49.38158948901832], + [-1.528031859335662, 49.38178753170748], + [-1.528397231736701, 49.38193653351875], + [-1.52837450900985, 49.381972088501556], + [-1.52876321837867, 49.38211393565683], + [-1.528625406061104, 49.38225742972185], + [-1.528850748151494, 49.382633909622115], + [-1.528942469770747, 49.38290815789958], + [-1.529029796174817, 49.38310400253717], + [-1.529035658108145, 49.383181747337815], + [-1.528927917985613, 49.3834602736569], + [-1.528800423755089, 49.383569816433365], + [-1.528341538492892, 49.38381683158706], + [-1.527533355757772, 49.38430382816528], + [-1.527522220550659, 49.38429537173722], + [-1.527072768441347, 49.38456352013355], + [-1.527048139325459, 49.38457508599294], + [-1.526736368640366, 49.38423756222454], + [-1.526665658751571, 49.384214236217375], + [-1.525901425053955, 49.38438116143926], + [-1.525119948105659, 49.38426600815902], + [-1.523752775329072, 49.384649044110766], + [-1.523604201076715, 49.38484602213671], + [-1.522605210011718, 49.38696375611163], + [-1.522844837792189, 49.38748145010745], + [-1.522789669743934, 49.38754308366898], + [-1.522509569982801, 49.38759575281451], + [-1.522247974294246, 49.38768285014764], + [-1.521969001368021, 49.38783031392183], + [-1.521766920366799, 49.38799169785384], + [-1.521623302265864, 49.38825420494629], + [-1.521588808311371, 49.38857902971922], + [-1.5216530848726, 49.38891498711093], + [-1.52165752519756, 49.38893133057315], + [-1.521635553101718, 49.38897329936228], + [-1.521496951908399, 49.388977933160554], + [-1.521389289415794, 49.38901451939029], + [-1.520957401427379, 49.38891098889611], + [-1.520275943139262, 49.388752329878855], + [-1.519703064871274, 49.388691197359144], + [-1.518494880436735, 49.38868354650642], + [-1.517510891907542, 49.38868857786499], + [-1.517506396412699, 49.388715280883034], + [-1.517504389409401, 49.38872725310879], + [-1.517504389409401, 49.38872725310879] + ] + }, + "length": 1.6326161105779273, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48421", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32948", + "bus2": "MVLV03057", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528727248595691, 49.37807677444229], + [-1.528727248595691, 49.37807677444229], + [-1.528808973458675, 49.3781180390623], + [-1.529743545000941, 49.37760751041046], + [-1.531015923828987, 49.37701826001692], + [-1.531090817819815, 49.37477848949631], + [-1.531109516842623, 49.374778041057695], + [-1.531109516842623, 49.374778041057695] + ] + }, + "length": 0.4597844729770908, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48420", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32942", + "bus2": "MVBus32943", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527320367955829, 49.373951706325954], + [-1.527320367955829, 49.373951706325954], + [-1.52705392159122, 49.373806503430025], + [-1.526569246098225, 49.373510670681604], + [-1.526273175627114, 49.37341298911873], + [-1.525869852601984, 49.37331350789843], + [-1.525394677976571, 49.37324334195383], + [-1.524897363677829, 49.37320619178711], + [-1.524338110483229, 49.37300971022446], + [-1.523788343680933, 49.372829039052675], + [-1.523256494223086, 49.37235184919758], + [-1.523075288509421, 49.37216479580243], + [-1.522950716921357, 49.37216582565863], + [-1.522950716921357, 49.37216582565863] + ] + }, + "length": 0.39063953902460974, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch10876", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32943", + "bus2": "MVBus32944", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.522950716921357, 49.37216582565863], + [-1.522950716921357, 49.37216582565863], + [-1.51909312942812, 49.37219771660025], + [-1.51909312942812, 49.37219771660025] + ] + }, + "length": 0.28017990056768277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch09992", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32944", + "bus2": "MVBus32945", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.51909312942812, 49.37219771660025], + [-1.51909312942812, 49.37219771660025], + [-1.5179650794455, 49.372197550213805], + [-1.5179650794455, 49.372197550213805] + ] + }, + "length": 0.08192465202152102, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch05584", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32945", + "bus2": "MVLV19162", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5179650794455, 49.372197550213805], + [-1.5179650794455, 49.372197550213805], + [-1.518256530861644, 49.37146823421635], + [-1.518256530861644, 49.37146823421635] + ] + }, + "length": 0.08382862257920029, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14895", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus32945", + "bus2": "MVLV08862", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5179650794455, 49.372197550213805], + [-1.5179650794455, 49.372197550213805], + [-1.514287610518751, 49.37219695446738], + [-1.514287610518751, 49.37219695446738] + ] + }, + "length": 0.26707625608160257, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch36578", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02134", + "bus2": "MVBus34410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.531585636721146, 49.36510976245396], + [-1.531565874830143, 49.36509315031643], + [-1.531583643366446, 49.365064525826554], + [-1.531639602388052, 49.36498827170826], + [-1.531234928266094, 49.364842577821825], + [-1.53089448046018, 49.3647106826351], + [-1.530838952226338, 49.36469878845856], + [-1.530854289006823, 49.36466877623434], + [-1.530854289006823, 49.36466877623434] + ] + }, + "length": 0.08291962228537283, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25201", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34410", + "bus2": "MVLV06284", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530854289006823, 49.36466877623434], + [-1.530854289006823, 49.36466877623434], + [-1.531589190610127, 49.36492882285905], + [-1.531589190610127, 49.36492882285905] + ] + }, + "length": 0.0607116755354689, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10148", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34410", + "bus2": "MVBus34411", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530854289006823, 49.36466877623434], + [-1.530854289006823, 49.36466877623434], + [-1.529769581166713, 49.364480054902444], + [-1.529769581166713, 49.364480054902444] + ] + }, + "length": 0.08153686761905633, + "params_id": "A_AM_148", + "ground": "ground" + }, + { + "id": "MVBranch22885", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34411", + "bus2": "MVLV03060", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.529769581166713, 49.364480054902444], + [-1.529769581166713, 49.364480054902444], + [-1.531632792071112, 49.3631560479711], + [-1.535568417050356, 49.36472085133499], + [-1.535568417050356, 49.36472085133499] + ] + }, + "length": 0.5346788249293161, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08104", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34411", + "bus2": "MVBus34412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.529769581166713, 49.364480054902444], + [-1.529769581166713, 49.364480054902444], + [-1.52856610290105, 49.36430611482931], + [-1.52856610290105, 49.36430611482931] + ] + }, + "length": 0.08953139053423927, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19724", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34412", + "bus2": "MVBus34413", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.52856610290105, 49.36430611482931], + [-1.52856610290105, 49.36430611482931], + [-1.527342148691834, 49.364099542493356], + [-1.52452541132236, 49.363413261367334], + [-1.520096239743545, 49.361924579760256], + [-1.520096239743545, 49.361924579760256] + ] + }, + "length": 0.6720310690910645, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch14883", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34413", + "bus2": "MVBus34414", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.520096239743545, 49.361924579760256], + [-1.520096239743545, 49.361924579760256], + [-1.519139011907793, 49.36212948743184], + [-1.519139011907793, 49.36212948743184] + ] + }, + "length": 0.07317231902175302, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08093", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34414", + "bus2": "MVBus34416", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.519139011907793, 49.36212948743184], + [-1.519139011907793, 49.36212948743184], + [-1.516622875854373, 49.36268995750727], + [-1.514492224885197, 49.36467005047749], + [-1.514492224885197, 49.36467005047749] + ] + }, + "length": 0.46227121366192264, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19725", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34416", + "bus2": "MVBus34418", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.514492224885197, 49.36467005047749], + [-1.514492224885197, 49.36467005047749], + [-1.510635276449318, 49.36476553532519], + [-1.510635276449318, 49.36476553532519] + ] + }, + "length": 0.280354646989838, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08095", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34418", + "bus2": "MVBus34429", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.510635276449318, 49.36476553532519], + [-1.510635276449318, 49.36476553532519], + [-1.51065692468431, 49.36349162254032], + [-1.50914873596642, 49.36141247978162], + [-1.509289955481284, 49.361120529396175], + [-1.509289955481284, 49.361120529396175] + ] + }, + "length": 0.4316157313277553, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19738", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34429", + "bus2": "MVBus34430", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.509289955481284, 49.361120529396175], + [-1.509289955481284, 49.361120529396175], + [-1.510342313002278, 49.35913601325839], + [-1.510721727829247, 49.3581988444997], + [-1.510721727829247, 49.3581988444997] + ] + }, + "length": 0.34138710270072825, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43784", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34430", + "bus2": "MVLV10164", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.510721727829247, 49.3581988444997], + [-1.510721727829247, 49.3581988444997], + [-1.510779652100793, 49.358063122197834], + [-1.509866575618648, 49.35795541122072], + [-1.509866575618648, 49.35795541122072] + ] + }, + "length": 0.08307445089227075, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch25194", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34418", + "bus2": "MVBus34419", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.510635276449318, 49.36476553532519], + [-1.510635276449318, 49.36476553532519], + [-1.508108365725732, 49.364432954296966], + [-1.508108365725732, 49.364432954296966] + ] + }, + "length": 0.1872351576860677, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04512", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34419", + "bus2": "MVBus34420", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.508108365725732, 49.364432954296966], + [-1.508108365725732, 49.364432954296966], + [-1.504233252185425, 49.36406601752124], + [-1.504233252185425, 49.36406601752124] + ] + }, + "length": 0.28441854620385315, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04514", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34420", + "bus2": "MVBus34421", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.504233252185425, 49.36406601752124], + [-1.504233252185425, 49.36406601752124], + [-1.503321601957881, 49.36235272639792], + [-1.503321601957881, 49.36235272639792] + ] + }, + "length": 0.20172561841725256, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08096", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34421", + "bus2": "MVLV10159", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.503321601957881, 49.36235272639792], + [-1.503321601957881, 49.36235272639792], + [-1.503302547939844, 49.36231691797257], + [-1.50327030090469, 49.361515722753715], + [-1.50417103993675, 49.360882830762066], + [-1.50417103993675, 49.360882830762066] + ] + }, + "length": 0.18945571956595136, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04513", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34420", + "bus2": "MVBus34423", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.504233252185425, 49.36406601752124], + [-1.504233252185425, 49.36406601752124], + [-1.50445347690626, 49.36467905920785], + [-1.50445347690626, 49.36467905920785] + ] + }, + "length": 0.07003190855528035, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25202", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34423", + "bus2": "MVBus34424", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.50445347690626, 49.36467905920785], + [-1.50445347690626, 49.36467905920785], + [-1.500002523513261, 49.3641231754568], + [-1.49892473707318, 49.364392249251054], + [-1.49892473707318, 49.364392249251054] + ] + }, + "length": 0.4129712656640833, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch46764", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34424", + "bus2": "MVLV13646", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.49892473707318, 49.364392249251054], + [-1.49892473707318, 49.364392249251054], + [-1.498817753367313, 49.36425805336535], + [-1.49829710059671, 49.364476161252625], + [-1.497741790400166, 49.364656256931], + [-1.497414067164997, 49.364697556264154], + [-1.496298636860344, 49.3648494718576], + [-1.495629295366785, 49.36495277686566], + [-1.495055046610993, 49.3650157768793], + [-1.494889212838484, 49.36501115870508], + [-1.494712626489046, 49.364971734421616], + [-1.494391642802679, 49.36479781849538], + [-1.493997799159938, 49.36470190719969], + [-1.493997799159938, 49.36470190719969] + ] + }, + "length": 0.3924871147476781, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch19733", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34424", + "bus2": "MVLV00373", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.49892473707318, 49.364392249251054], + [-1.49892473707318, 49.364392249251054], + [-1.49790226678558, 49.364741187553236], + [-1.49790226678558, 49.364741187553236] + ] + }, + "length": 0.08379643799941182, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31267", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34423", + "bus2": "MVLV00375", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.50445347690626, 49.36467905920785], + [-1.50445347690626, 49.36467905920785], + [-1.505076514084524, 49.36635377603919], + [-1.505218708194213, 49.36706491493334], + [-1.505218708194213, 49.36706491493334] + ] + }, + "length": 0.271437589653534, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08094", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34419", + "bus2": "MVLV13649", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.508108365725732, 49.364432954296966], + [-1.508108365725732, 49.364432954296966], + [-1.50817403755374, 49.363721240526324], + [-1.508471587649024, 49.36306583437844], + [-1.508471587649024, 49.36306583437844] + ] + }, + "length": 0.15532711411755915, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10874", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34416", + "bus2": "MVLV10158", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.514492224885197, 49.36467005047749], + [-1.514492224885197, 49.36467005047749], + [-1.514068875814502, 49.36644570324624], + [-1.514068875814502, 49.36644570324624] + ] + }, + "length": 0.19986212906546252, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08097", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus34414", + "bus2": "MVLV16575", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.519139011907793, 49.36212948743184], + [-1.519139011907793, 49.36212948743184], + [-1.520552683911972, 49.36221285227293], + [-1.520552683911972, 49.36221285227293] + ] + }, + "length": 0.10310654010388842, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch41858", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14298", + "bus2": "MVBus23647", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5329799874850207, 49.33507754804151], + [-1.532947594181165, 49.33508596360389], + [-1.532956035298951, 49.33510573145595], + [-1.532962504448413, 49.335120885685875], + [-1.532892636361214, 49.335142914309635], + [-1.532691081116922, 49.33516917412243], + [-1.532692599129636, 49.33531416991168], + [-1.532409721660146, 49.33535093579553], + [-1.531830125253673, 49.335361734054494], + [-1.53130087325173, 49.33530712043941], + [-1.530815733550139, 49.335257057185764], + [-1.530503620526786, 49.33525673091457], + [-1.530034216965783, 49.33531119527789], + [-1.529658507987354, 49.33531094329507], + [-1.528393772734871, 49.33531748446953], + [-1.527788020909013, 49.33538779312547], + [-1.527092091099686, 49.3354685534104], + [-1.52674422159139, 49.335008438613734], + [-1.52674422159139, 49.335008438613734] + ] + }, + "length": 0.508202408525906, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch24031", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23647", + "bus2": "MVBus23649", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.52674422159139, 49.335008438613734], + [-1.52674422159139, 49.335008438613734], + [-1.525990741835495, 49.3352494526061], + [-1.525990741835495, 49.3352494526061] + ] + }, + "length": 0.06097076611982121, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch06915", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23649", + "bus2": "MVBus23650", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.525990741835495, 49.3352494526061], + [-1.525990741835495, 49.3352494526061], + [-1.52505817676497, 49.335459726265235], + [-1.524033277563845, 49.33560302726533], + [-1.522945805275997, 49.33609058385038], + [-1.522052595380504, 49.336437453147326], + [-1.521043370614789, 49.33660541758927], + [-1.520041961210907, 49.33687305899442], + [-1.518818728766924, 49.33726426734355], + [-1.517139278478294, 49.33800568121021], + [-1.516088184722974, 49.33830826797327], + [-1.516088184722974, 49.33830826797327] + ] + }, + "length": 0.8033045776755825, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch12292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23650", + "bus2": "MVLV13841", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.516088184722974, 49.33830826797327], + [-1.516088184722974, 49.33830826797327], + [-1.51474496203316, 49.33546599960393], + [-1.51474496203316, 49.33546599960393] + ] + }, + "length": 0.330837173677165, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03516", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23650", + "bus2": "MVBus23651", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.516088184722974, 49.33830826797327], + [-1.516088184722974, 49.33830826797327], + [-1.5138569422553, 49.33904286520298], + [-1.511792612037957, 49.339128954091514], + [-1.511792612037957, 49.339128954091514] + ] + }, + "length": 0.33190085523301377, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08382", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23651", + "bus2": "MVBus23653", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.511792612037957, 49.339128954091514], + [-1.511792612037957, 49.339128954091514], + [-1.51086413684498, 49.339185179204556], + [-1.508210361683165, 49.33779438766284], + [-1.506374434040589, 49.33702907136982], + [-1.506374434040589, 49.33702907136982] + ] + }, + "length": 0.4732570571516864, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch25449", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23653", + "bus2": "MVBus23654", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.506374434040589, 49.33702907136982], + [-1.506374434040589, 49.33702907136982], + [-1.505591997150413, 49.336678793899225], + [-1.502256473181538, 49.3358706723199], + [-1.501088222606753, 49.33532522876661], + [-1.501088222606753, 49.33532522876661] + ] + }, + "length": 0.43182383669511015, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15262", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23654", + "bus2": "MVBus23656", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.501088222606753, 49.33532522876661], + [-1.501088222606753, 49.33532522876661], + [-1.500188561543648, 49.33493741338863], + [-1.500188561543648, 49.33493741338863] + ] + }, + "length": 0.07833119469092044, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31540", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23656", + "bus2": "MVLV18938", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500188561543648, 49.33493741338863], + [-1.500188561543648, 49.33493741338863], + [-1.501331914032815, 49.33384038654791], + [-1.501331914032815, 49.33384038654791] + ] + }, + "length": 0.14761877610763896, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23158", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23656", + "bus2": "MVBus23658", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500188561543648, 49.33493741338863], + [-1.500188561543648, 49.33493741338863], + [-1.498913519757045, 49.3343117664599], + [-1.495520666720995, 49.33409063193276], + [-1.495520666720995, 49.33409063193276] + ] + }, + "length": 0.3637049063758763, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19987", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23658", + "bus2": "MVBus23659", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.495520666720995, 49.33409063193276], + [-1.495520666720995, 49.33409063193276], + [-1.49381386709555, 49.33368729563582], + [-1.490483706138056, 49.333598090614345], + [-1.48934684129875, 49.333276591614855], + [-1.487250563907883, 49.33229272802707], + [-1.486258441762622, 49.33202492246158], + [-1.484133426908198, 49.33134359624456], + [-1.484133426908198, 49.33134359624456] + ] + }, + "length": 0.9018397404516275, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23159", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23659", + "bus2": "MVBus23663", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.484133426908198, 49.33134359624456], + [-1.484133426908198, 49.33134359624456], + [-1.482602209287364, 49.33005818027853], + [-1.478918590402116, 49.330026289077466], + [-1.478918590402116, 49.330026289077466] + ] + }, + "length": 0.4489506342270319, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch04351", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23663", + "bus2": "MVLV10338", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.478918590402116, 49.330026289077466], + [-1.478918590402116, 49.330026289077466], + [-1.478484932562386, 49.327578929121835], + [-1.478484932562386, 49.327578929121835] + ] + }, + "length": 0.2740050631911384, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch01995", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23663", + "bus2": "MVBus23664", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.478918590402116, 49.330026289077466], + [-1.478918590402116, 49.330026289077466], + [-1.477382860443532, 49.330013227631625], + [-1.477379351775069, 49.3300143463499], + [-1.477379351775069, 49.3300143463499] + ] + }, + "length": 0.1119210277032705, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch11164", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23664", + "bus2": "MVBus23665", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.477379351775069, 49.3300143463499], + [-1.477379351775069, 49.3300143463499], + [-1.469473420583994, 49.33253844546463], + [-1.469473420583994, 49.33253844546463] + ] + }, + "length": 0.6395473100197062, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch15263", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23659", + "bus2": "MVBus23660", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.484133426908198, 49.33134359624456], + [-1.484133426908198, 49.33134359624456], + [-1.482695123969117, 49.333934930040506], + [-1.482695123969117, 49.333934930040506] + ] + }, + "length": 0.3065729223546083, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch19991", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23660", + "bus2": "MVLV03243", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.482695123969117, 49.333934930040506], + [-1.482695123969117, 49.333934930040506], + [-1.484443100222334, 49.334958340796625], + [-1.486548333330025, 49.33618052052723], + [-1.486548333330025, 49.33618052052723] + ] + }, + "length": 0.37523568002671814, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23448", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23660", + "bus2": "MVLV16207", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.482695123969117, 49.333934930040506], + [-1.482695123969117, 49.333934930040506], + [-1.480173475885151, 49.33423279739736], + [-1.479392536599125, 49.33457381549308], + [-1.478685676715247, 49.33494320019281], + [-1.478685676715247, 49.33494320019281] + ] + }, + "length": 0.32029104368682343, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch23157", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23654", + "bus2": "MVLV00556", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.501088222606753, 49.33532522876661], + [-1.501088222606753, 49.33532522876661], + [-1.49991598353188, 49.33737849775162], + [-1.499432801241324, 49.33770253259602], + [-1.498718124072025, 49.338044170722846], + [-1.497950206009199, 49.338225291933846], + [-1.497950206009199, 49.338225291933846] + ] + }, + "length": 0.4177356164704489, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03872", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23653", + "bus2": "MVLV00557", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.506374434040589, 49.33702907136982], + [-1.506374434040589, 49.33702907136982], + [-1.505789916628994, 49.33871883648804], + [-1.500250673650373, 49.34212810136862], + [-1.500250673650373, 49.34212810136862] + ] + }, + "length": 0.74567234079204, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch03873", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00557", + "bus2": "MVBus23669", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500250673650373, 49.34212810136862], + [-1.500250673650373, 49.34212810136862], + [-1.499633063956089, 49.34213404600997], + [-1.498817642378083, 49.34189422851426], + [-1.498817642378083, 49.34189422851426] + ] + }, + "length": 0.10986828457659217, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch46135", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23669", + "bus2": "MVLV16630", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.498817642378083, 49.34189422851426], + [-1.498817642378083, 49.34189422851426], + [-1.498800537496032, 49.3418784588689], + [-1.498671610462556, 49.34178853864639], + [-1.498595317975536, 49.341635589229384], + [-1.498082515137614, 49.34165195177634], + [-1.497818290739259, 49.34168392863495], + [-1.497474517759035, 49.34177650915794], + [-1.49734890745959, 49.341734996507654], + [-1.497156280695769, 49.34192163668587], + [-1.496946824844434, 49.342204547472356], + [-1.496721937085727, 49.34250829478752], + [-1.495544520706128, 49.34354086758737], + [-1.495517486299349, 49.34353092753231], + [-1.495517486299349, 49.34353092753231] + ] + }, + "length": 0.37081031837191913, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch19986", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV00557", + "bus2": "MVBus23668", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.500250673650373, 49.34212810136862], + [-1.500250673650373, 49.34212810136862], + [-1.500237842828451, 49.34213599416101], + [-1.500237842828451, 49.34213599416101] + ] + }, + "length": 0.0012805970531591306, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08588", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23651", + "bus2": "MVLV16209", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.511792612037957, 49.339128954091514], + [-1.511792612037957, 49.339128954091514], + [-1.511308187603026, 49.33950177292033], + [-1.511308187603026, 49.33950177292033] + ] + }, + "length": 0.05439303367334706, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch29387", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus23647", + "bus2": "MVLV10753", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.52674422159139, 49.335008438613734], + [-1.52674422159139, 49.335008438613734], + [-1.527661328563556, 49.334799790674595], + [-1.527661328563556, 49.334799790674595] + ] + }, + "length": 0.07057903647257757, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch34988", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus11803", + "bus2": "MVLV04212", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.536534847236821, 49.321120183051995], + [-1.536534847236821, 49.321120183051995], + [-1.536406592515027, 49.321066023906944], + [-1.536408762697852, 49.32104609385472], + [-1.536408762697852, 49.32104609385472] + ] + }, + "length": 0.01332263067374734, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41778", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14297", + "bus2": "MVBus14674", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.538193007833593, 49.31216799569018], + [-1.538170052449956, 49.31216363624025], + [-1.538137849537636, 49.312177168723125], + [-1.538123901866753, 49.312183033472245], + [-1.537626963128404, 49.31214575188578], + [-1.53708557469033, 49.312147121825525], + [-1.536217870153149, 49.31222740691322], + [-1.535713313391154, 49.312254360208854], + [-1.535713313391154, 49.312254360208854] + ] + }, + "length": 0.1802597631984163, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48294", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14674", + "bus2": "MVBus14676", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.535713313391154, 49.312254360208854], + [-1.535713313391154, 49.312254360208854], + [-1.535457931048004, 49.31226799908143], + [-1.534338948275798, 49.31227992497371], + [-1.533606760999899, 49.31228772489628], + [-1.532943608155652, 49.31229478946092], + [-1.532608028380869, 49.3122552389903], + [-1.532263978912218, 49.312262300885415], + [-1.531725612374166, 49.312303773396195], + [-1.530879514782274, 49.31226263351347], + [-1.530785822896225, 49.31237819129319], + [-1.530785822896225, 49.31237819129319] + ] + }, + "length": 0.3669595001259236, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch23315", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14676", + "bus2": "MVBus14677", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.530785822896225, 49.31237819129319], + [-1.530785822896225, 49.31237819129319], + [-1.529735073884145, 49.31219514900721], + [-1.529735073884145, 49.31219514900721] + ] + }, + "length": 0.07906888946602389, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch10671", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14677", + "bus2": "MVBus14678", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.529735073884145, 49.31219514900721], + [-1.529735073884145, 49.31219514900721], + [-1.528425285894258, 49.31235791228221], + [-1.528425285894258, 49.31235791228221] + ] + }, + "length": 0.09694397235096873, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch08411", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14678", + "bus2": "MVLV13843", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528425285894258, 49.31235791228221], + [-1.528425285894258, 49.31235791228221], + [-1.526075820963424, 49.316179302994485], + [-1.526075820963424, 49.316179302994485] + ] + }, + "length": 0.4580472166707575, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18509", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14678", + "bus2": "MVBus14679", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.528425285894258, 49.31235791228221], + [-1.528425285894258, 49.31235791228221], + [-1.527098863522479, 49.312303382214324], + [-1.527098863522479, 49.312303382214324] + ] + }, + "length": 0.09663886198510684, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch18510", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14679", + "bus2": "MVBus14681", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527098863522479, 49.312303382214324], + [-1.527098863522479, 49.312303382214324], + [-1.524153720605166, 49.31233014733411], + [-1.524153720605166, 49.31233014733411] + ] + }, + "length": 0.21417143761172072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch27894", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14681", + "bus2": "MVBus14682", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.524153720605166, 49.31233014733411], + [-1.524153720605166, 49.31233014733411], + [-1.522586050277545, 49.31253577323639], + [-1.522584528407902, 49.31253675757177], + [-1.522584528407902, 49.31253675757177] + ] + }, + "length": 0.11641707040119277, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch38085", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14682", + "bus2": "MVLV00558", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.522584528407902, 49.31253675757177], + [-1.522584528407902, 49.31253675757177], + [-1.521550179657872, 49.31320078591419], + [-1.520245543534837, 49.313775748036875], + [-1.518102246333365, 49.31437348265132], + [-1.517082918956999, 49.314367863780625], + [-1.513409597282692, 49.31441871052916], + [-1.513063287685275, 49.31448992931678], + [-1.513063287685275, 49.31448992931678] + ] + }, + "length": 0.756896951853965, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch31695", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14681", + "bus2": "MVLV15540", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.524153720605166, 49.31233014733411], + [-1.524153720605166, 49.31233014733411], + [-1.523128830492736, 49.31217904723409], + [-1.523128830492736, 49.31217904723409] + ] + }, + "length": 0.07639433946605165, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch31694", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14679", + "bus2": "MVLV00901", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.527098863522479, 49.312303382214324], + [-1.527098863522479, 49.312303382214324], + [-1.530018730823778, 49.30732834984887], + [-1.530018730823778, 49.30732834984887] + ] + }, + "length": 0.5926417980284098, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "MVBranch43479", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14674", + "bus2": "MVLV14088", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.535713313391154, 49.312254360208854], + [-1.535713313391154, 49.312254360208854], + [-1.535678506609903, 49.31221750682438], + [-1.535652057142803, 49.312189495608315], + [-1.535652057142803, 49.312189495608315] + ] + }, + "length": 0.008478251107719109, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39367", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08091", + "bus2": "MVBus10224", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5407539952262903, 49.305622831378344], + [-1.540770931947025, 49.30562943539922], + [-1.540778659181527, 49.30562173825415], + [-1.540823703328984, 49.30557684823684], + [-1.540950318339718, 49.30557276022702], + [-1.541173966163845, 49.30553989492004], + [-1.541379243388977, 49.305477435953634], + [-1.54139881330825, 49.30521727794323], + [-1.541529995899582, 49.304738927306005], + [-1.54172129145631, 49.3042176546864], + [-1.541908258779853, 49.30355280245655], + [-1.541937703242198, 49.30336187256208], + [-1.541937703242198, 49.30336187256208] + ] + }, + "length": 0.288510435240511, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35790", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10224", + "bus2": "MVLV13673", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541937703242198, 49.30336187256208], + [-1.541937703242198, 49.30336187256208], + [-1.541529677889739, 49.30318964937108], + [-1.541298719792966, 49.30334524282238], + [-1.540966177982104, 49.30308440121235], + [-1.540658106472455, 49.30288582211388], + [-1.540401264694867, 49.302781670637664], + [-1.540211585895342, 49.302759829436454], + [-1.540211585895342, 49.302759829436454] + ] + }, + "length": 0.16464985621011782, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33037", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10224", + "bus2": "MVBus10226", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541937703242198, 49.30336187256208], + [-1.541937703242198, 49.30336187256208], + [-1.542223387630054, 49.302440303362495], + [-1.542223387630054, 49.302440303362495] + ] + }, + "length": 0.10457758935540795, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46055", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10226", + "bus2": "MVLV12002", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542223387630054, 49.302440303362495], + [-1.542223387630054, 49.302440303362495], + [-1.542286507604268, 49.302491459800805], + [-1.542347944838915, 49.30249575369062], + [-1.543287745475706, 49.30308795956141], + [-1.54331998363382, 49.30314452967704], + [-1.54365550869017, 49.30338825061464], + [-1.543721334528962, 49.30340473390545], + [-1.543721334528962, 49.30340473390545] + ] + }, + "length": 0.1550339128722013, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43483", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10226", + "bus2": "MVBus10227", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542223387630054, 49.302440303362495], + [-1.542223387630054, 49.302440303362495], + [-1.542471534666646, 49.301639764738134], + [-1.542801364055465, 49.30079264624719], + [-1.542801364055465, 49.30079264624719] + ] + }, + "length": 0.1880618514463853, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34596", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus10227", + "bus2": "MVLV18774", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.542801364055465, 49.30079264624719], + [-1.542801364055465, 49.30079264624719], + [-1.543074812336536, 49.29952906998616], + [-1.543255810475533, 49.299545016408466], + [-1.543276233423465, 49.299546812114606], + [-1.5432777670666975, 49.29954408210185] + ] + }, + "length": 0.15671172166017394, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44086", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV18774", + "bus2": "MVLV15279", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5432777670666975, 49.29954408210185], + [-1.54327930070993, 49.2995413520891], + [-1.543261945051934, 49.299534096358364], + [-1.543021981793605, 49.2994048852615], + [-1.543729397162779, 49.29685079708619], + [-1.54364517698851, 49.2966555419782], + [-1.542321475676577, 49.296886267646975], + [-1.542253353754012, 49.29698185278405], + [-1.541914524945784, 49.297041585899535], + [-1.541412556221464, 49.29714362782427], + [-1.540845933502151, 49.29724261036738], + [-1.540834644587022, 49.297248839543464], + [-1.540823676571206, 49.297262416131204], + [-1.540633277065016, 49.297300900788], + [-1.540622591437736, 49.297308198837065], + [-1.54059443877525, 49.29740002766545], + [-1.540595595770228, 49.29741535348045], + [-1.540603073636934, 49.29743114980665], + [-1.540696198869637, 49.297511129080256], + [-1.540728848225262, 49.297539164091546], + [-1.540722291595128, 49.29754240257251] + ] + }, + "length": 0.6005951041406843, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37342", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15279", + "bus2": "MVBus14650", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.540722291595128, 49.29754240257251], + [-1.540715734964994, 49.297545641053475], + [-1.540683189104523, 49.297517701640146], + [-1.540588185781181, 49.29743616393078], + [-1.540579233993002, 49.29741724002069], + [-1.540577873784522, 49.29739922231761], + [-1.540607373135704, 49.297303005504524], + [-1.540624323791336, 49.297291430497545], + [-1.540812284829669, 49.297253438358865], + [-1.540821567466289, 49.29724194902918], + [-1.54083812472163, 49.29723281529839], + [-1.541323068619209, 49.297148442866344], + [-1.541323068619209, 49.297148442866344] + ] + }, + "length": 0.08604247104581982, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34273", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus14650", + "bus2": "MVLV14464", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541323068619209, 49.297148442866344], + [-1.541323068619209, 49.297148442866344], + [-1.541338137388253, 49.297145644527156], + [-1.541351775372225, 49.29717034464484], + [-1.541368392977678, 49.297200444375925], + [-1.5413683400166376, 49.29720035014075] + ] + }, + "length": 0.007619096156059685, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43429", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14464", + "bus2": "MVBus15061", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5413683400166376, 49.29720035014075], + [-1.541352879564613, 49.29720409359873], + [-1.541341248751791, 49.297183025536185], + [-1.54131626380843, 49.29718764626811], + [-1.541245229313058, 49.2972007881631], + [-1.541179712248823, 49.297214507395836], + [-1.541139579823809, 49.29723472860372], + [-1.540862267611248, 49.297291365605844], + [-1.540812055194363, 49.297295757478814], + [-1.54062931439739, 49.297332942414116], + [-1.540564748011375, 49.29735142484719], + [-1.540534809864111, 49.297363491163246], + [-1.540526227749276, 49.29737260120101], + [-1.540520377731841, 49.29738474422715], + [-1.540514564448229, 49.29738790022909], + [-1.540490696381317, 49.297394382629165], + [-1.54043856088713, 49.29740463810236], + [-1.540354075240552, 49.29742124502784], + [-1.540226564258623, 49.297439798733656], + [-1.539886332441949, 49.29750123526946], + [-1.53974488122933, 49.29752825288703], + [-1.539556385875935, 49.29756082766095], + [-1.539438860653758, 49.29758304286213], + [-1.539369820557496, 49.29759838592583], + [-1.539272544623011, 49.297617923481724], + [-1.539197102850192, 49.297630450820364], + [-1.539162986540141, 49.29763837010339], + [-1.539130908405831, 49.29764267962889], + [-1.538855465272838, 49.297693701699366], + [-1.538802634415764, 49.29769894178305], + [-1.538665445659885, 49.297700257242624], + [-1.538597742892225, 49.29770452904011], + [-1.538581300759887, 49.297707722144374], + [-1.538567408521974, 49.29770807154465], + [-1.538555666205925, 49.29770355732112], + [-1.538555666205925, 49.29770355732112] + ] + }, + "length": 0.21550751613824057, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37240", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15061", + "bus2": "MVBus15062", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.538555666205925, 49.29770355732112], + [-1.538555666205925, 49.29770355732112], + [-1.538536902163315, 49.29770040305343], + [-1.538518431778451, 49.29770132295329], + [-1.537662421485925, 49.29783948270921], + [-1.537662421485925, 49.29783948270921] + ] + }, + "length": 0.06688605844940153, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44877", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15062", + "bus2": "MVLV05023", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.537662421485925, 49.29783948270921], + [-1.537662421485925, 49.29783948270921], + [-1.537600824756657, 49.29785086070992], + [-1.537550409693325, 49.29779259087647], + [-1.537550409693325, 49.29779259087647] + ] + }, + "length": 0.012101505956263555, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36615", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus15062", + "bus2": "MVLV09251", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.537662421485925, 49.29783948270921], + [-1.537662421485925, 49.29783948270921], + [-1.537606280596458, 49.297883803574834], + [-1.537580332100724, 49.29791722899418], + [-1.537576022127304, 49.29800631773501], + [-1.537697829254288, 49.298418604441736], + [-1.537601100516259, 49.298617353403465], + [-1.537403224954161, 49.298684272565666], + [-1.537446392202924, 49.29874144503897], + [-1.537446392202924, 49.29874144503897] + ] + }, + "length": 0.11367425331406272, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38532", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14464", + "bus2": "MVBus17206", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.5413683400166376, 49.29720035014075], + [-1.541383747507622, 49.2971965124476], + [-1.541367405818449, 49.297166970481975], + [-1.541353993106287, 49.29714270383739], + [-1.541353993106287, 49.29714270383739] + ] + }, + "length": 0.0063636643007188185, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45615", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17206", + "bus2": "MVBus17207", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541353993106287, 49.29714270383739], + [-1.541353993106287, 49.29714270383739], + [-1.541378117392617, 49.2971385246556], + [-1.541378117392617, 49.2971385246556] + ] + }, + "length": 0.0018152069112323077, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47283", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17207", + "bus2": "MVLV00382", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541378117392617, 49.2971385246556], + [-1.541378117392617, 49.2971385246556], + [-1.541407652255103, 49.29713332520885], + [-1.541910096343041, 49.297031204981835], + [-1.542239776802761, 49.29697308065234], + [-1.542299971205669, 49.296869773188504], + [-1.543693723882401, 49.296572866499915], + [-1.543956558641666, 49.29613449001025], + [-1.544000276794944, 49.29616266116647], + [-1.543989146153294, 49.29615131859048], + [-1.543989146153294, 49.29615131859048] + ] + }, + "length": 0.24257532653511676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46481", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17207", + "bus2": "MVBus17209", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541378117392617, 49.2971385246556], + [-1.541378117392617, 49.2971385246556], + [-1.541379443151688, 49.297158450381666], + [-1.541389251247893, 49.29717523280184], + [-1.541402610105714, 49.29717365001366], + [-1.541402610105714, 49.29717365001366] + ] + }, + "length": 0.005203781737639504, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch16684", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus17209", + "bus2": "MVLV11101", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.541402610105714, 49.29717365001366], + [-1.541402610105714, 49.29717365001366], + [-1.541178395735151, 49.2967821229966], + [-1.541178395735151, 49.2967821229966] + ] + }, + "length": 0.04649766143979308, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV07004_production", + "bus": "MVLV07004", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07004_consumption", + "bus": "MVLV07004", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV10176_production", + "bus": "MVLV10176", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10176_consumption", + "bus": "MVLV10176", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV12189_production", + "bus": "MVLV12189", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12189_consumption", + "bus": "MVLV12189", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV08091_production", + "bus": "MVLV08091", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08091_consumption", + "bus": "MVLV08091", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV05282_production", + "bus": "MVLV05282", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05282_consumption", + "bus": "MVLV05282", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV14297_production", + "bus": "MVLV14297", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14297_consumption", + "bus": "MVLV14297", + "phases": "abc", + "powers": [ + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839] + ] + }, + { + "id": "MVLV06470_production", + "bus": "MVLV06470", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06470_consumption", + "bus": "MVLV06470", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV14298_production", + "bus": "MVLV14298", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14298_consumption", + "bus": "MVLV14298", + "phases": "abc", + "powers": [ + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056] + ] + }, + { + "id": "MVLV07424_production", + "bus": "MVLV07424", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07424_consumption", + "bus": "MVLV07424", + "phases": "abc", + "powers": [ + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056] + ] + }, + { + "id": "MVLV03792_production", + "bus": "MVLV03792", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03792_consumption", + "bus": "MVLV03792", + "phases": "abc", + "powers": [ + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056] + ] + }, + { + "id": "MVLV15114_production", + "bus": "MVLV15114", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15114_consumption", + "bus": "MVLV15114", + "phases": "abc", + "powers": [ + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056] + ] + }, + { + "id": "MVLV18758_production", + "bus": "MVLV18758", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18758_consumption", + "bus": "MVLV18758", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV14458_production", + "bus": "MVLV14458", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14458_consumption", + "bus": "MVLV14458", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV02134_production", + "bus": "MVLV02134", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02134_consumption", + "bus": "MVLV02134", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV00376_production", + "bus": "MVLV00376", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00376_consumption", + "bus": "MVLV00376", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV03057_production", + "bus": "MVLV03057", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03057_consumption", + "bus": "MVLV03057", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV19162_production", + "bus": "MVLV19162", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV19162_consumption", + "bus": "MVLV19162", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV08862_production", + "bus": "MVLV08862", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08862_consumption", + "bus": "MVLV08862", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV06284_production", + "bus": "MVLV06284", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV06284_consumption", + "bus": "MVLV06284", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV03060_production", + "bus": "MVLV03060", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03060_consumption", + "bus": "MVLV03060", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV10164_production", + "bus": "MVLV10164", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10164_consumption", + "bus": "MVLV10164", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV10159_production", + "bus": "MVLV10159", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10159_consumption", + "bus": "MVLV10159", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV13646_production", + "bus": "MVLV13646", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13646_consumption", + "bus": "MVLV13646", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV00373_production", + "bus": "MVLV00373", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00373_consumption", + "bus": "MVLV00373", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV00375_production", + "bus": "MVLV00375", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00375_consumption", + "bus": "MVLV00375", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV13649_production", + "bus": "MVLV13649", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13649_consumption", + "bus": "MVLV13649", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV10158_production", + "bus": "MVLV10158", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10158_consumption", + "bus": "MVLV10158", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV16575_production", + "bus": "MVLV16575", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16575_consumption", + "bus": "MVLV16575", + "phases": "abc", + "powers": [ + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237], + [21953.09215818525, 7215.632451922237] + ] + }, + { + "id": "MVLV13841_production", + "bus": "MVLV13841", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13841_consumption", + "bus": "MVLV13841", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV18938_production", + "bus": "MVLV18938", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18938_consumption", + "bus": "MVLV18938", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV10338_production", + "bus": "MVLV10338", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10338_consumption", + "bus": "MVLV10338", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV03243_production", + "bus": "MVLV03243", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03243_consumption", + "bus": "MVLV03243", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV16207_production", + "bus": "MVLV16207", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16207_consumption", + "bus": "MVLV16207", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV00556_production", + "bus": "MVLV00556", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00556_consumption", + "bus": "MVLV00556", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV00557_production", + "bus": "MVLV00557", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00557_consumption", + "bus": "MVLV00557", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV16630_production", + "bus": "MVLV16630", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16630_consumption", + "bus": "MVLV16630", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV16209_production", + "bus": "MVLV16209", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV16209_consumption", + "bus": "MVLV16209", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV10753_production", + "bus": "MVLV10753", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV10753_consumption", + "bus": "MVLV10753", + "phases": "abc", + "powers": [ + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056], + [10908.221207441493, 3585.3589266610056] + ] + }, + { + "id": "MVLV04212_production", + "bus": "MVLV04212", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04212_consumption", + "bus": "MVLV04212", + "phases": "abc", + "powers": [ + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839] + ] + }, + { + "id": "MVLV13843_production", + "bus": "MVLV13843", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13843_consumption", + "bus": "MVLV13843", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV00558_production", + "bus": "MVLV00558", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00558_consumption", + "bus": "MVLV00558", + "phases": "abc", + "powers": [ + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423], + [7393.997369621899, 2430.2894091290423] + ] + }, + { + "id": "MVLV15540_production", + "bus": "MVLV15540", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15540_consumption", + "bus": "MVLV15540", + "phases": "abc", + "powers": [ + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839] + ] + }, + { + "id": "MVLV00901_production", + "bus": "MVLV00901", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00901_consumption", + "bus": "MVLV00901", + "phases": "abc", + "powers": [ + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839] + ] + }, + { + "id": "MVLV14088_production", + "bus": "MVLV14088", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14088_consumption", + "bus": "MVLV14088", + "phases": "abc", + "powers": [ + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839], + [6615.592245909041, 2174.440017574839] + ] + }, + { + "id": "MVLV13673_production", + "bus": "MVLV13673", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13673_consumption", + "bus": "MVLV13673", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV12002_production", + "bus": "MVLV12002", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12002_consumption", + "bus": "MVLV12002", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV18774_production", + "bus": "MVLV18774", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18774_consumption", + "bus": "MVLV18774", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV15279_production", + "bus": "MVLV15279", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15279_consumption", + "bus": "MVLV15279", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV14464_production", + "bus": "MVLV14464", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14464_consumption", + "bus": "MVLV14464", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV05023_production", + "bus": "MVLV05023", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05023_consumption", + "bus": "MVLV05023", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV09251_production", + "bus": "MVLV09251", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09251_consumption", + "bus": "MVLV09251", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV00382_production", + "bus": "MVLV00382", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV00382_consumption", + "bus": "MVLV00382", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + }, + { + "id": "MVLV11101_production", + "bus": "MVLV11101", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV11101_consumption", + "bus": "MVLV11101", + "phases": "abc", + "powers": [ + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784], + [17658.442812339035, 5804.049474625784] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "A_AM_148", + "z_line": [ + [ + [0.22364864864864864, 0.0, 0.0], + [0.0, 0.22364864864864864, 0.0], + [0.0, 0.0, 0.22364864864864864] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.6129629629629629, 0.0, 0.0], + [0.0, 0.6129629629629629, 0.0], + [0.0, 0.0, 0.6129629629629629] + ], + [ + [0.35, 0.0, 0.0], + [0.0, 0.35, 0.0], + [0.0, 0.0, 0.35] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948965e-6, 0.0, 0.0], + [0.0, 1.5707963267948965e-6, 0.0], + [0.0, 0.0, 1.5707963267948965e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder290_Summer.json b/roseau/load_flow/data/networks/MVFeeder290_Summer.json new file mode 100644 index 00000000..e339b4b8 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder290_Summer.json @@ -0,0 +1,620 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.110304663668984, 48.57658336890665] + } + }, + { + "id": "HVMV20", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.110304663668984, 48.57658336890665] + } + }, + { + "id": "MVLV04478", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0990179748058666, 48.57227231621206] + } + }, + { + "id": "MVLV01189", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0951039520830765, 48.57331117610068] + } + }, + { + "id": "MVLV15816", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0954203403982659, 48.57453799744745] + } + }, + { + "id": "MVLV15808", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0949562874472534, 48.57688161636299] + } + }, + { + "id": "MVLV08672", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0943209415004231, 48.57538064663255] + } + }, + { + "id": "MVLV12940", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0900227394716775, 48.576108592491494] + } + }, + { + "id": "MVBus07231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.092214809134924, 48.57695669474363] + } + }, + { + "id": "MVLV08671", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0915269953777949, 48.577059455453295] + } + }, + { + "id": "MVBus07781", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.092144808206271, 48.57724086102603] + } + }, + { + "id": "MVLV15809", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.092676858882234, 48.57786175424816] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV20", + "geometry": { + "type": "Point", + "coordinates": [-1.110304663668984, 48.57658336890665] + } + }, + { + "id": "MVBranch47143", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV20", + "bus2": "MVLV04478", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.110304663668984, 48.57658336890665], + [-1.110253689368388, 48.57662085428511], + [-1.110253689368388, 48.57662085428511], + [-1.110237372824222, 48.57665319136177], + [-1.110217075555628, 48.576693409631154], + [-1.109873675364081, 48.57662399209226], + [-1.109698214657879, 48.57664375840926], + [-1.109536206382531, 48.57671111919079], + [-1.109403130203786, 48.57668940303102], + [-1.108496471426669, 48.57630068923038], + [-1.103196520585661, 48.57400941316723], + [-1.103044986987291, 48.57394866232427], + [-1.099176682051122, 48.57224488598976], + [-1.099042623173635, 48.57227239707254], + [-1.099023211929418, 48.572276379750605], + [-1.0990179748058666, 48.57227231621206] + ] + }, + "length": 0.9863054390973716, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47406", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04478", + "bus2": "MVLV01189", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0990179748058666, 48.57227231621206], + [-1.099012737682315, 48.57226825267351], + [-1.099021674678247, 48.57225614292076], + [-1.099063090072669, 48.57220194264777], + [-1.095781289741568, 48.57074675365208], + [-1.095630184238855, 48.570758522969705], + [-1.094990615002868, 48.572526038519435], + [-1.094911379143011, 48.57263645520378], + [-1.094743946241119, 48.57315658618915], + [-1.095052210518495, 48.57320562305473], + [-1.095101378274757, 48.573299782829025], + [-1.095108033684014, 48.57331251993099], + [-1.0951039520830765, 48.57331117610068] + ] + }, + "length": 0.6216146977045005, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32782", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01189", + "bus2": "MVLV15816", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0951039520830765, 48.57331117610068], + [-1.095099870482139, 48.573309832270375], + [-1.095089164328958, 48.57329838234451], + [-1.0950222422897, 48.57322679129237], + [-1.094802261199556, 48.573188889900145], + [-1.094616534798966, 48.57366762929182], + [-1.094683628425398, 48.57371216773785], + [-1.094616208270455, 48.573899740866445], + [-1.094523284806702, 48.573913295057544], + [-1.094333322933212, 48.57441819642749], + [-1.094374996512046, 48.57456041570457], + [-1.094637109242936, 48.574570471783716], + [-1.09473722230548, 48.57459546327303], + [-1.094831047937378, 48.574595388717285], + [-1.095151618076339, 48.57450540141735], + [-1.095369879990429, 48.57446480004983], + [-1.095424769743947, 48.574523719745464], + [-1.095434033111804, 48.57453961147086], + [-1.0954203403982659, 48.57453799744745] + ] + }, + "length": 0.27826011633328457, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46721", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15816", + "bus2": "MVLV15808", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0954203403982659, 48.57453799744745], + [-1.095406647684728, 48.57453638342403], + [-1.095389722945255, 48.57452892896245], + [-1.095343809569679, 48.57450625366662], + [-1.095141245218564, 48.57453938147006], + [-1.094828932032004, 48.57465325285666], + [-1.094792269099217, 48.57471197453005], + [-1.094830569770596, 48.57485484031318], + [-1.094863685565844, 48.57563340793797], + [-1.094833930782242, 48.57579274219562], + [-1.094638780992077, 48.576348658961074], + [-1.094492785992915, 48.576658496587214], + [-1.094986187873697, 48.5768469263356], + [-1.094974655023586, 48.576865562462615], + [-1.094961417525105, 48.57688261038158], + [-1.0949562874472534, 48.57688161636299] + ] + }, + "length": 0.32103748257947046, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15808", + "bus2": "MVLV08672", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0949562874472534, 48.57688161636299], + [-1.094951157369402, 48.5768806223444], + [-1.094957150585919, 48.576861876874005], + [-1.094963683264215, 48.57685008916092], + [-1.094486905053578, 48.5766678269434], + [-1.093793420527889, 48.5764746931656], + [-1.093823010719884, 48.57605610677029], + [-1.09395924170385, 48.57564960014454], + [-1.094129287206892, 48.575419417469405], + [-1.094301786757652, 48.575385561332965], + [-1.094321277827, 48.575381739131466], + [-1.0943209415004231, 48.57538064663255] + ] + }, + "length": 0.2358136357626263, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08672", + "bus2": "MVLV12940", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0943209415004231, 48.57538064663255], + [-1.094320605173846, 48.57537955413364], + [-1.094300441452934, 48.57538119133707], + [-1.094092542857796, 48.5753980235912], + [-1.093918071316105, 48.57564274917792], + [-1.093770217437716, 48.57603789527185], + [-1.093716313002474, 48.57645811304636], + [-1.092790060653491, 48.57626466440287], + [-1.092554625169703, 48.576253777195184], + [-1.090893110266117, 48.57636594607289], + [-1.09069786922447, 48.57618148229735], + [-1.090116550888661, 48.57615858654292], + [-1.090057651349784, 48.57612172656623], + [-1.090044343947815, 48.576111539249986], + [-1.0900227394716775, 48.576108592491494] + ] + }, + "length": 0.42704930125149193, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12940", + "bus2": "MVBus07231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0900227394716775, 48.576108592491494], + [-1.09000113499554, 48.576105645732994], + [-1.089999999972888, 48.576119112470764], + [-1.090009529596862, 48.57620548648586], + [-1.09066229300343, 48.576228977590006], + [-1.090844514881847, 48.57641341348439], + [-1.092547056252668, 48.576295368912476], + [-1.092349250845196, 48.576931475321615], + [-1.092226915166475, 48.57696757347589], + [-1.092214809134924, 48.57695669474363], + [-1.092214809134924, 48.57695669474363] + ] + }, + "length": 0.29381782841035065, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36383", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07231", + "bus2": "MVLV08671", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.092214809134924, 48.57695669474363], + [-1.092214809134924, 48.57695669474363], + [-1.091557043586806, 48.576982035496265], + [-1.09152774702909, 48.57704397977046], + [-1.091521663984228, 48.5770568429947], + [-1.0915269953777949, 48.577059455453295] + ] + }, + "length": 0.05733663538018223, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35377", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08671", + "bus2": "MVBus07781", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0915269953777949, 48.577059455453295], + [-1.091532326771362, 48.577062067911896], + [-1.091549072010739, 48.57705442062207], + [-1.091584268276561, 48.57703640425343], + [-1.09220693906406, 48.5770200970814], + [-1.092144808206271, 48.57724086102603], + [-1.092144808206271, 48.57724086102603] + ] + }, + "length": 0.0757359998583347, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36934", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07781", + "bus2": "MVLV15809", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.092144808206271, 48.57724086102603], + [-1.092144808206271, 48.57724086102603], + [-1.092144731782429, 48.57724114217504], + [-1.092131108066036, 48.57749720350789], + [-1.09206230563105, 48.57772251553854], + [-1.092685723438909, 48.57782563176213], + [-1.092681485239172, 48.57784221172524], + [-1.092676858882234, 48.57786175424816], + [-1.092676858882234, 48.57786175424816] + ] + }, + "length": 0.10556655982771243, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV04478_production", + "bus": "MVLV04478", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV04478_consumption", + "bus": "MVLV04478", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV01189_production", + "bus": "MVLV01189", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV01189_consumption", + "bus": "MVLV01189", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV15816_production", + "bus": "MVLV15816", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV15816_consumption", + "bus": "MVLV15816", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV15808_production", + "bus": "MVLV15808", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV15808_consumption", + "bus": "MVLV15808", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV08672_production", + "bus": "MVLV08672", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV08672_consumption", + "bus": "MVLV08672", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV12940_production", + "bus": "MVLV12940", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV12940_consumption", + "bus": "MVLV12940", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV08671_production", + "bus": "MVLV08671", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV08671_consumption", + "bus": "MVLV08671", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + }, + { + "id": "MVLV15809_production", + "bus": "MVLV15809", + "phases": "abc", + "powers": [ + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0], + [-991.2738853503184, 0.0] + ] + }, + { + "id": "MVLV15809_consumption", + "bus": "MVLV15809", + "phases": "abc", + "powers": [ + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204], + [5275.726410977455, 1734.0474145606204] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder290_Winter.json b/roseau/load_flow/data/networks/MVFeeder290_Winter.json new file mode 100644 index 00000000..ae63cfc0 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder290_Winter.json @@ -0,0 +1,620 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.110304663668984, 48.57658336890665] + } + }, + { + "id": "HVMV20", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.110304663668984, 48.57658336890665] + } + }, + { + "id": "MVLV04478", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0990179748058666, 48.57227231621206] + } + }, + { + "id": "MVLV01189", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0951039520830765, 48.57331117610068] + } + }, + { + "id": "MVLV15816", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0954203403982659, 48.57453799744745] + } + }, + { + "id": "MVLV15808", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0949562874472534, 48.57688161636299] + } + }, + { + "id": "MVLV08672", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0943209415004231, 48.57538064663255] + } + }, + { + "id": "MVLV12940", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0900227394716775, 48.576108592491494] + } + }, + { + "id": "MVBus07231", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.092214809134924, 48.57695669474363] + } + }, + { + "id": "MVLV08671", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0915269953777949, 48.577059455453295] + } + }, + { + "id": "MVBus07781", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.092144808206271, 48.57724086102603] + } + }, + { + "id": "MVLV15809", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.092676858882234, 48.57786175424816] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV20", + "geometry": { + "type": "Point", + "coordinates": [-1.110304663668984, 48.57658336890665] + } + }, + { + "id": "MVBranch47143", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV20", + "bus2": "MVLV04478", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.110304663668984, 48.57658336890665], + [-1.110253689368388, 48.57662085428511], + [-1.110253689368388, 48.57662085428511], + [-1.110237372824222, 48.57665319136177], + [-1.110217075555628, 48.576693409631154], + [-1.109873675364081, 48.57662399209226], + [-1.109698214657879, 48.57664375840926], + [-1.109536206382531, 48.57671111919079], + [-1.109403130203786, 48.57668940303102], + [-1.108496471426669, 48.57630068923038], + [-1.103196520585661, 48.57400941316723], + [-1.103044986987291, 48.57394866232427], + [-1.099176682051122, 48.57224488598976], + [-1.099042623173635, 48.57227239707254], + [-1.099023211929418, 48.572276379750605], + [-1.0990179748058666, 48.57227231621206] + ] + }, + "length": 0.9863054390973716, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47406", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04478", + "bus2": "MVLV01189", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0990179748058666, 48.57227231621206], + [-1.099012737682315, 48.57226825267351], + [-1.099021674678247, 48.57225614292076], + [-1.099063090072669, 48.57220194264777], + [-1.095781289741568, 48.57074675365208], + [-1.095630184238855, 48.570758522969705], + [-1.094990615002868, 48.572526038519435], + [-1.094911379143011, 48.57263645520378], + [-1.094743946241119, 48.57315658618915], + [-1.095052210518495, 48.57320562305473], + [-1.095101378274757, 48.573299782829025], + [-1.095108033684014, 48.57331251993099], + [-1.0951039520830765, 48.57331117610068] + ] + }, + "length": 0.6216146977045005, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch32782", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01189", + "bus2": "MVLV15816", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0951039520830765, 48.57331117610068], + [-1.095099870482139, 48.573309832270375], + [-1.095089164328958, 48.57329838234451], + [-1.0950222422897, 48.57322679129237], + [-1.094802261199556, 48.573188889900145], + [-1.094616534798966, 48.57366762929182], + [-1.094683628425398, 48.57371216773785], + [-1.094616208270455, 48.573899740866445], + [-1.094523284806702, 48.573913295057544], + [-1.094333322933212, 48.57441819642749], + [-1.094374996512046, 48.57456041570457], + [-1.094637109242936, 48.574570471783716], + [-1.09473722230548, 48.57459546327303], + [-1.094831047937378, 48.574595388717285], + [-1.095151618076339, 48.57450540141735], + [-1.095369879990429, 48.57446480004983], + [-1.095424769743947, 48.574523719745464], + [-1.095434033111804, 48.57453961147086], + [-1.0954203403982659, 48.57453799744745] + ] + }, + "length": 0.27826011633328457, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46721", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15816", + "bus2": "MVLV15808", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0954203403982659, 48.57453799744745], + [-1.095406647684728, 48.57453638342403], + [-1.095389722945255, 48.57452892896245], + [-1.095343809569679, 48.57450625366662], + [-1.095141245218564, 48.57453938147006], + [-1.094828932032004, 48.57465325285666], + [-1.094792269099217, 48.57471197453005], + [-1.094830569770596, 48.57485484031318], + [-1.094863685565844, 48.57563340793797], + [-1.094833930782242, 48.57579274219562], + [-1.094638780992077, 48.576348658961074], + [-1.094492785992915, 48.576658496587214], + [-1.094986187873697, 48.5768469263356], + [-1.094974655023586, 48.576865562462615], + [-1.094961417525105, 48.57688261038158], + [-1.0949562874472534, 48.57688161636299] + ] + }, + "length": 0.32103748257947046, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15808", + "bus2": "MVLV08672", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0949562874472534, 48.57688161636299], + [-1.094951157369402, 48.5768806223444], + [-1.094957150585919, 48.576861876874005], + [-1.094963683264215, 48.57685008916092], + [-1.094486905053578, 48.5766678269434], + [-1.093793420527889, 48.5764746931656], + [-1.093823010719884, 48.57605610677029], + [-1.09395924170385, 48.57564960014454], + [-1.094129287206892, 48.575419417469405], + [-1.094301786757652, 48.575385561332965], + [-1.094321277827, 48.575381739131466], + [-1.0943209415004231, 48.57538064663255] + ] + }, + "length": 0.2358136357626263, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39250", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08672", + "bus2": "MVLV12940", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0943209415004231, 48.57538064663255], + [-1.094320605173846, 48.57537955413364], + [-1.094300441452934, 48.57538119133707], + [-1.094092542857796, 48.5753980235912], + [-1.093918071316105, 48.57564274917792], + [-1.093770217437716, 48.57603789527185], + [-1.093716313002474, 48.57645811304636], + [-1.092790060653491, 48.57626466440287], + [-1.092554625169703, 48.576253777195184], + [-1.090893110266117, 48.57636594607289], + [-1.09069786922447, 48.57618148229735], + [-1.090116550888661, 48.57615858654292], + [-1.090057651349784, 48.57612172656623], + [-1.090044343947815, 48.576111539249986], + [-1.0900227394716775, 48.576108592491494] + ] + }, + "length": 0.42704930125149193, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV12940", + "bus2": "MVBus07231", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0900227394716775, 48.576108592491494], + [-1.09000113499554, 48.576105645732994], + [-1.089999999972888, 48.576119112470764], + [-1.090009529596862, 48.57620548648586], + [-1.09066229300343, 48.576228977590006], + [-1.090844514881847, 48.57641341348439], + [-1.092547056252668, 48.576295368912476], + [-1.092349250845196, 48.576931475321615], + [-1.092226915166475, 48.57696757347589], + [-1.092214809134924, 48.57695669474363], + [-1.092214809134924, 48.57695669474363] + ] + }, + "length": 0.29381782841035065, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36383", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07231", + "bus2": "MVLV08671", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.092214809134924, 48.57695669474363], + [-1.092214809134924, 48.57695669474363], + [-1.091557043586806, 48.576982035496265], + [-1.09152774702909, 48.57704397977046], + [-1.091521663984228, 48.5770568429947], + [-1.0915269953777949, 48.577059455453295] + ] + }, + "length": 0.05733663538018223, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35377", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV08671", + "bus2": "MVBus07781", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0915269953777949, 48.577059455453295], + [-1.091532326771362, 48.577062067911896], + [-1.091549072010739, 48.57705442062207], + [-1.091584268276561, 48.57703640425343], + [-1.09220693906406, 48.5770200970814], + [-1.092144808206271, 48.57724086102603], + [-1.092144808206271, 48.57724086102603] + ] + }, + "length": 0.0757359998583347, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36934", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07781", + "bus2": "MVLV15809", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.092144808206271, 48.57724086102603], + [-1.092144808206271, 48.57724086102603], + [-1.092144731782429, 48.57724114217504], + [-1.092131108066036, 48.57749720350789], + [-1.09206230563105, 48.57772251553854], + [-1.092685723438909, 48.57782563176213], + [-1.092681485239172, 48.57784221172524], + [-1.092676858882234, 48.57786175424816], + [-1.092676858882234, 48.57786175424816] + ] + }, + "length": 0.10556655982771243, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV04478_production", + "bus": "MVLV04478", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04478_consumption", + "bus": "MVLV04478", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV01189_production", + "bus": "MVLV01189", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01189_consumption", + "bus": "MVLV01189", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV15816_production", + "bus": "MVLV15816", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15816_consumption", + "bus": "MVLV15816", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV15808_production", + "bus": "MVLV15808", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15808_consumption", + "bus": "MVLV15808", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV08672_production", + "bus": "MVLV08672", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08672_consumption", + "bus": "MVLV08672", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV12940_production", + "bus": "MVLV12940", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12940_consumption", + "bus": "MVLV12940", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV08671_production", + "bus": "MVLV08671", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV08671_consumption", + "bus": "MVLV08671", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + }, + { + "id": "MVLV15809_production", + "bus": "MVLV15809", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15809_consumption", + "bus": "MVLV15809", + "phases": "abc", + "powers": [ + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102], + [26378.632054887275, 8670.237072803102] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder312_Summer.json b/roseau/load_flow/data/networks/MVFeeder312_Summer.json new file mode 100644 index 00000000..fca81d00 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder312_Summer.json @@ -0,0 +1,624 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.8900710079343, 49.258817450938] + } + }, + { + "id": "HVMV23", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8900710079343, 49.258817450938] + } + }, + { + "id": "MVBus03246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.890518079267901, 49.25885604408974] + } + }, + { + "id": "MVBus03247", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.883709467593089, 49.24446960503848] + } + }, + { + "id": "MVLV14607", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.892897202229386, 49.2363866831773] + } + }, + { + "id": "MVBus07867", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.886163224026916, 49.23814376086724] + } + }, + { + "id": "MVLV07687", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.881835000987274, 49.241389848492354] + } + }, + { + "id": "MVBus09361", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880642256929955, 49.24089738375072] + } + }, + { + "id": "MVBus09362", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880607514550805, 49.2408818422678] + } + }, + { + "id": "MVLV18592", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.877273257127134, 49.23991209308561] + } + }, + { + "id": "MVLV12316", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.886134334135075, 49.23811159939885] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV23", + "geometry": { + "type": "Point", + "coordinates": [-0.8900710079343, 49.258817450938] + } + }, + { + "id": "MVBranch33893", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV23", + "bus2": "MVBus03246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8900710079343, 49.258817450938], + [-0.890132613416136, 49.258824732328755], + [-0.890132613416136, 49.258824732328755], + [-0.890213106539946, 49.258839418621335], + [-0.890456996513497, 49.258920126012626], + [-0.890518079267901, 49.25885604408974], + [-0.890518079267901, 49.25885604408974] + ] + }, + "length": 0.03437601393347589, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46168", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03246", + "bus2": "MVBus03247", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.890518079267901, 49.25885604408974], + [-0.890518079267901, 49.25885604408974], + [-0.890901289800942, 49.258484212303095], + [-0.890960540513392, 49.25847477782435], + [-0.891404671071976, 49.258036618266985], + [-0.891425419479236, 49.257985921602504], + [-0.8914299273254, 49.25790149279107], + [-0.891586455864218, 49.25773803640127], + [-0.891712409042302, 49.25752632480084], + [-0.891779088157999, 49.25724709630781], + [-0.89177281769518, 49.25714811183049], + [-0.891713169834477, 49.256953415367455], + [-0.891529183111682, 49.256726114402284], + [-0.891524859623383, 49.25669138726554], + [-0.891181632971773, 49.25629434107835], + [-0.890952684829614, 49.25603568910862], + [-0.89068627239982, 49.25577805330976], + [-0.890390876571987, 49.25552391192277], + [-0.890262255452032, 49.25540179050987], + [-0.889540980987186, 49.25494070470427], + [-0.888928104464742, 49.254558886518794], + [-0.888444925635507, 49.25422741373271], + [-0.887775454153121, 49.2538043726486], + [-0.88695093701918, 49.25329614126756], + [-0.884975705697855, 49.25209143600255], + [-0.884831279293524, 49.251988562286186], + [-0.884775134190805, 49.25194068635764], + [-0.884725837079683, 49.25188305920597], + [-0.884692026533699, 49.251822453579116], + [-0.884680309391527, 49.25176040056725], + [-0.884681044433974, 49.25173047388403], + [-0.884681619761379, 49.251697997797564], + [-0.884372713293313, 49.25138102791627], + [-0.884265294451482, 49.251307966203996], + [-0.883801620562575, 49.25098997906478], + [-0.883782615787526, 49.25096221872274], + [-0.883766416564782, 49.25092420427982], + [-0.883736509987092, 49.25072259098228], + [-0.883740579708071, 49.25067725263805], + [-0.883758444562349, 49.25063154402744], + [-0.883844763635875, 49.25054780576246], + [-0.884150812805608, 49.25030438121662], + [-0.884232813448853, 49.25020719878625], + [-0.88426349624391, 49.25014531127482], + [-0.884282114610696, 49.25005660113605], + [-0.884291030621658, 49.24997833924609], + [-0.884312279489561, 49.24993140668233], + [-0.884358157422018, 49.24989172578585], + [-0.884400599293143, 49.24986955438765], + [-0.884407789935949, 49.24982843929388], + [-0.884392101570724, 49.24980669547579], + [-0.884340557547508, 49.24978420576918], + [-0.884130659819135, 49.24972846183027], + [-0.883979105455504, 49.24967700517361], + [-0.883869885979426, 49.249633026218824], + [-0.883717618914768, 49.24959913153117], + [-0.883411618399528, 49.24951888223154], + [-0.883234584552383, 49.249470913942844], + [-0.883184279808389, 49.249441439774664], + [-0.882930518832942, 49.24937810382164], + [-0.882932760269341, 49.249359277623824], + [-0.882988411415866, 49.24917996084801], + [-0.882966929289648, 49.24908760622163], + [-0.882924406048689, 49.24895337452536], + [-0.882926002379589, 49.24894618314263], + [-0.882946228532681, 49.248909448060296], + [-0.882954534655454, 49.248856955354285], + [-0.882976213077453, 49.24884341631832], + [-0.88300720110986, 49.24880416244034], + [-0.883044541661205, 49.248768307858], + [-0.882984130952967, 49.248457631811945], + [-0.882968615517035, 49.24842766458209], + [-0.882971434004477, 49.248385587843785], + [-0.88294627371981, 49.24817985422621], + [-0.882797118055686, 49.24725812342875], + [-0.882757625034863, 49.24693553782791], + [-0.882751126021842, 49.24692431049447], + [-0.882724699247673, 49.246904113460396], + [-0.881365766531545, 49.246449757353496], + [-0.881321930291555, 49.246426574100376], + [-0.881306183892508, 49.2464100107612], + [-0.881308471422797, 49.24639125525258], + [-0.881347275168451, 49.24631996974937], + [-0.881969752548423, 49.245600041966796], + [-0.882064907055608, 49.24551996988685], + [-0.88217291177573, 49.2454488146143], + [-0.882474600307083, 49.24525281601738], + [-0.882564582922736, 49.2451943639305], + [-0.883139102610479, 49.24486455294448], + [-0.883566768297133, 49.244585411873324], + [-0.883709467593089, 49.24446960503848], + [-0.883709467593089, 49.24446960503848] + ] + }, + "length": 2.071208490393622, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45456", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03247", + "bus2": "MVLV14607", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.883709467593089, 49.24446960503848], + [-0.883709467593089, 49.24446960503848], + [-0.884184229377249, 49.244010545618714], + [-0.884330881137206, 49.24392258770365], + [-0.884682522315761, 49.243770300221065], + [-0.88502384170455, 49.24362910611965], + [-0.885374604185673, 49.24349245006394], + [-0.885406500452197, 49.24347478746522], + [-0.885436166361273, 49.24339237085228], + [-0.885493273565053, 49.24333802736923], + [-0.885779430387922, 49.24298944761374], + [-0.885831885825315, 49.24291961886043], + [-0.886164112754665, 49.24254580086654], + [-0.886354586289205, 49.24233782522554], + [-0.886371224582025, 49.24231097783463], + [-0.886509038735172, 49.24214042941683], + [-0.886623276090726, 49.24197412004918], + [-0.886735087767808, 49.24179826329924], + [-0.887084452681715, 49.24120071996567], + [-0.887281830779827, 49.240840124926464], + [-0.887338878309803, 49.24075576670856], + [-0.887412617238388, 49.24067456563303], + [-0.887478774906847, 49.240618772762986], + [-0.887504173552536, 49.24061448434506], + [-0.887550969524801, 49.24057121609662], + [-0.887623000603809, 49.24052127191131], + [-0.887807014143259, 49.240415498813725], + [-0.888031231731437, 49.240307439737606], + [-0.888165587445624, 49.24022821441154], + [-0.888576885925707, 49.23991707640471], + [-0.888675855847016, 49.2398291893856], + [-0.888854016809171, 49.23962994726778], + [-0.888868208037688, 49.239622363098995], + [-0.888905092184681, 49.239567356439665], + [-0.888965537672147, 49.23950811941095], + [-0.889198492793863, 49.23924738168518], + [-0.889230159906052, 49.239226127259265], + [-0.889483595096178, 49.23899965509596], + [-0.889621281678398, 49.23885671092865], + [-0.889773868064895, 49.23868816122689], + [-0.889970587020718, 49.23843440289482], + [-0.890085420145151, 49.238277676570675], + [-0.89049528613681, 49.23773970977248], + [-0.890868526992405, 49.23724979077323], + [-0.890922335597395, 49.23715445726995], + [-0.89109859106332, 49.237012882985105], + [-0.891141386916112, 49.23699372036682], + [-0.891627821958223, 49.2368582033284], + [-0.891670542549248, 49.23683784659613], + [-0.891883165266933, 49.23677930475295], + [-0.891955920594196, 49.23677014386174], + [-0.891993068686999, 49.23674874105849], + [-0.892576733828613, 49.23658538921702], + [-0.892618444722289, 49.23657826860371], + [-0.892724085024723, 49.23653821549101], + [-0.892959225255736, 49.23645866249661], + [-0.892932972563738, 49.236417160731015], + [-0.892923854707593, 49.236402731224274], + [-0.892902678056337, 49.236383896582225], + [-0.892897202229386, 49.2363866831773] + ] + }, + "length": 1.166091630690215, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42704", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14607", + "bus2": "MVBus07867", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.892897202229386, 49.2363866831773], + [-0.892891726402435, 49.23638946977238], + [-0.892906181541801, 49.2364031710963], + [-0.892897418234313, 49.23640794802007], + [-0.89287831429588, 49.236416438313334], + [-0.892594095271773, 49.23651611478945], + [-0.891571448149967, 49.23680718012721], + [-0.891153662298, 49.236918423557036], + [-0.889561481750273, 49.237381427460804], + [-0.888959529819191, 49.237514700928216], + [-0.887966942411736, 49.23775138750242], + [-0.886163224026916, 49.23814376086724], + [-0.886163224026916, 49.23814376086724] + ] + }, + "length": 0.5303723579195851, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46354", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07867", + "bus2": "MVLV07687", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.886163224026916, 49.23814376086724], + [-0.886163224026916, 49.23814376086724], + [-0.88579212988692, 49.2382402334419], + [-0.885437117959917, 49.2383490234728], + [-0.885244443040563, 49.2384111899376], + [-0.884773324545714, 49.23855361518243], + [-0.884320691583989, 49.23866715446074], + [-0.883992062841363, 49.238744497018786], + [-0.883849963879515, 49.23878672581352], + [-0.88373978923198, 49.23880761366753], + [-0.883627000983091, 49.23883369700478], + [-0.883432997528276, 49.238876239646544], + [-0.883448143987773, 49.23899555213153], + [-0.883541794869655, 49.23914591058355], + [-0.883625503967794, 49.2393601000593], + [-0.883677136783881, 49.23954582776682], + [-0.883607307645389, 49.23970862254284], + [-0.88352877522092, 49.239850861459324], + [-0.883364382462172, 49.24005516561823], + [-0.88318068466099, 49.24029925552247], + [-0.882920174694278, 49.240579315266835], + [-0.882805536356202, 49.24070732613978], + [-0.882606657751963, 49.24092683367392], + [-0.882412269177766, 49.24108733204784], + [-0.88207392802604, 49.24129987140639], + [-0.881882674199694, 49.2413792762798], + [-0.881870142283123, 49.24138991727078], + [-0.881835000987274, 49.241389848492354] + ] + }, + "length": 0.5398981925554321, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47021", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07687", + "bus2": "MVBus09361", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.881835000987274, 49.241389848492354], + [-0.881799859691425, 49.24138977971393], + [-0.881783109182248, 49.24138194753422], + [-0.881290970711528, 49.241152340683676], + [-0.881010013171883, 49.24101799318286], + [-0.880919519389735, 49.241021427522504], + [-0.880642256929955, 49.24089738375072], + [-0.880642256929955, 49.24089738375072] + ] + }, + "length": 0.10188973558821779, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46357", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09361", + "bus2": "MVBus09362", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880642256929955, 49.24089738375072], + [-0.880642256929955, 49.24089738375072], + [-0.880607514550805, 49.2408818422678], + [-0.880607514550805, 49.2408818422678] + ] + }, + "length": 0.0030639494102197053, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34205", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09362", + "bus2": "MVLV18592", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880607514550805, 49.2408818422678], + [-0.880607514550805, 49.2408818422678], + [-0.880588158110897, 49.24087318061059], + [-0.880388072555058, 49.24060875229094], + [-0.879301575042177, 49.24026381041191], + [-0.87918880904727, 49.24017875737017], + [-0.87917790005823, 49.24011696047202], + [-0.879044422507606, 49.23998837503634], + [-0.878929411297452, 49.239932192117024], + [-0.878768337070381, 49.2398862896597], + [-0.877929661223324, 49.23979992811692], + [-0.877253910292094, 49.23987192292139], + [-0.877256069750912, 49.23990516219053], + [-0.877255282173517, 49.23990552498414], + [-0.877273257127134, 49.23991209308561], + [-0.877273257127134, 49.23991209308561] + ] + }, + "length": 0.2993785990167933, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42705", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07867", + "bus2": "MVLV12316", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.886163224026916, 49.23814376086724], + [-0.886163224026916, 49.23814376086724], + [-0.886134334135075, 49.23811159939885], + [-0.886134334135075, 49.23811159939885] + ] + }, + "length": 0.004149664526962077, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV14607_production", + "bus": "MVLV14607", + "phases": "abc", + "powers": [ + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0] + ] + }, + { + "id": "MVLV14607_consumption", + "bus": "MVLV14607", + "phases": "abc", + "powers": [ + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663] + ] + }, + { + "id": "MVLV07687_production", + "bus": "MVLV07687", + "phases": "abc", + "powers": [ + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0] + ] + }, + { + "id": "MVLV07687_consumption", + "bus": "MVLV07687", + "phases": "abc", + "powers": [ + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663] + ] + }, + { + "id": "MVLV18592_production", + "bus": "MVLV18592", + "phases": "abc", + "powers": [ + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0] + ] + }, + { + "id": "MVLV18592_consumption", + "bus": "MVLV18592", + "phases": "abc", + "powers": [ + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663] + ] + }, + { + "id": "MVLV12316_production", + "bus": "MVLV12316", + "phases": "abc", + "powers": [ + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0], + [-1018.4523809523808, 0.0] + ] + }, + { + "id": "MVLV12316_consumption", + "bus": "MVLV12316", + "phases": "abc", + "powers": [ + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663], + [9315.280851977634, 3061.7847513220663] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder312_Winter.json b/roseau/load_flow/data/networks/MVFeeder312_Winter.json new file mode 100644 index 00000000..ea8059aa --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder312_Winter.json @@ -0,0 +1,624 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.8900710079343, 49.258817450938] + } + }, + { + "id": "HVMV23", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.8900710079343, 49.258817450938] + } + }, + { + "id": "MVBus03246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.890518079267901, 49.25885604408974] + } + }, + { + "id": "MVBus03247", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.883709467593089, 49.24446960503848] + } + }, + { + "id": "MVLV14607", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.892897202229386, 49.2363866831773] + } + }, + { + "id": "MVBus07867", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.886163224026916, 49.23814376086724] + } + }, + { + "id": "MVLV07687", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.881835000987274, 49.241389848492354] + } + }, + { + "id": "MVBus09361", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880642256929955, 49.24089738375072] + } + }, + { + "id": "MVBus09362", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.880607514550805, 49.2408818422678] + } + }, + { + "id": "MVLV18592", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.877273257127134, 49.23991209308561] + } + }, + { + "id": "MVLV12316", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.886134334135075, 49.23811159939885] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV23", + "geometry": { + "type": "Point", + "coordinates": [-0.8900710079343, 49.258817450938] + } + }, + { + "id": "MVBranch33893", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV23", + "bus2": "MVBus03246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.8900710079343, 49.258817450938], + [-0.890132613416136, 49.258824732328755], + [-0.890132613416136, 49.258824732328755], + [-0.890213106539946, 49.258839418621335], + [-0.890456996513497, 49.258920126012626], + [-0.890518079267901, 49.25885604408974], + [-0.890518079267901, 49.25885604408974] + ] + }, + "length": 0.03437601393347589, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46168", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03246", + "bus2": "MVBus03247", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.890518079267901, 49.25885604408974], + [-0.890518079267901, 49.25885604408974], + [-0.890901289800942, 49.258484212303095], + [-0.890960540513392, 49.25847477782435], + [-0.891404671071976, 49.258036618266985], + [-0.891425419479236, 49.257985921602504], + [-0.8914299273254, 49.25790149279107], + [-0.891586455864218, 49.25773803640127], + [-0.891712409042302, 49.25752632480084], + [-0.891779088157999, 49.25724709630781], + [-0.89177281769518, 49.25714811183049], + [-0.891713169834477, 49.256953415367455], + [-0.891529183111682, 49.256726114402284], + [-0.891524859623383, 49.25669138726554], + [-0.891181632971773, 49.25629434107835], + [-0.890952684829614, 49.25603568910862], + [-0.89068627239982, 49.25577805330976], + [-0.890390876571987, 49.25552391192277], + [-0.890262255452032, 49.25540179050987], + [-0.889540980987186, 49.25494070470427], + [-0.888928104464742, 49.254558886518794], + [-0.888444925635507, 49.25422741373271], + [-0.887775454153121, 49.2538043726486], + [-0.88695093701918, 49.25329614126756], + [-0.884975705697855, 49.25209143600255], + [-0.884831279293524, 49.251988562286186], + [-0.884775134190805, 49.25194068635764], + [-0.884725837079683, 49.25188305920597], + [-0.884692026533699, 49.251822453579116], + [-0.884680309391527, 49.25176040056725], + [-0.884681044433974, 49.25173047388403], + [-0.884681619761379, 49.251697997797564], + [-0.884372713293313, 49.25138102791627], + [-0.884265294451482, 49.251307966203996], + [-0.883801620562575, 49.25098997906478], + [-0.883782615787526, 49.25096221872274], + [-0.883766416564782, 49.25092420427982], + [-0.883736509987092, 49.25072259098228], + [-0.883740579708071, 49.25067725263805], + [-0.883758444562349, 49.25063154402744], + [-0.883844763635875, 49.25054780576246], + [-0.884150812805608, 49.25030438121662], + [-0.884232813448853, 49.25020719878625], + [-0.88426349624391, 49.25014531127482], + [-0.884282114610696, 49.25005660113605], + [-0.884291030621658, 49.24997833924609], + [-0.884312279489561, 49.24993140668233], + [-0.884358157422018, 49.24989172578585], + [-0.884400599293143, 49.24986955438765], + [-0.884407789935949, 49.24982843929388], + [-0.884392101570724, 49.24980669547579], + [-0.884340557547508, 49.24978420576918], + [-0.884130659819135, 49.24972846183027], + [-0.883979105455504, 49.24967700517361], + [-0.883869885979426, 49.249633026218824], + [-0.883717618914768, 49.24959913153117], + [-0.883411618399528, 49.24951888223154], + [-0.883234584552383, 49.249470913942844], + [-0.883184279808389, 49.249441439774664], + [-0.882930518832942, 49.24937810382164], + [-0.882932760269341, 49.249359277623824], + [-0.882988411415866, 49.24917996084801], + [-0.882966929289648, 49.24908760622163], + [-0.882924406048689, 49.24895337452536], + [-0.882926002379589, 49.24894618314263], + [-0.882946228532681, 49.248909448060296], + [-0.882954534655454, 49.248856955354285], + [-0.882976213077453, 49.24884341631832], + [-0.88300720110986, 49.24880416244034], + [-0.883044541661205, 49.248768307858], + [-0.882984130952967, 49.248457631811945], + [-0.882968615517035, 49.24842766458209], + [-0.882971434004477, 49.248385587843785], + [-0.88294627371981, 49.24817985422621], + [-0.882797118055686, 49.24725812342875], + [-0.882757625034863, 49.24693553782791], + [-0.882751126021842, 49.24692431049447], + [-0.882724699247673, 49.246904113460396], + [-0.881365766531545, 49.246449757353496], + [-0.881321930291555, 49.246426574100376], + [-0.881306183892508, 49.2464100107612], + [-0.881308471422797, 49.24639125525258], + [-0.881347275168451, 49.24631996974937], + [-0.881969752548423, 49.245600041966796], + [-0.882064907055608, 49.24551996988685], + [-0.88217291177573, 49.2454488146143], + [-0.882474600307083, 49.24525281601738], + [-0.882564582922736, 49.2451943639305], + [-0.883139102610479, 49.24486455294448], + [-0.883566768297133, 49.244585411873324], + [-0.883709467593089, 49.24446960503848], + [-0.883709467593089, 49.24446960503848] + ] + }, + "length": 2.071208490393622, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45456", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03247", + "bus2": "MVLV14607", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.883709467593089, 49.24446960503848], + [-0.883709467593089, 49.24446960503848], + [-0.884184229377249, 49.244010545618714], + [-0.884330881137206, 49.24392258770365], + [-0.884682522315761, 49.243770300221065], + [-0.88502384170455, 49.24362910611965], + [-0.885374604185673, 49.24349245006394], + [-0.885406500452197, 49.24347478746522], + [-0.885436166361273, 49.24339237085228], + [-0.885493273565053, 49.24333802736923], + [-0.885779430387922, 49.24298944761374], + [-0.885831885825315, 49.24291961886043], + [-0.886164112754665, 49.24254580086654], + [-0.886354586289205, 49.24233782522554], + [-0.886371224582025, 49.24231097783463], + [-0.886509038735172, 49.24214042941683], + [-0.886623276090726, 49.24197412004918], + [-0.886735087767808, 49.24179826329924], + [-0.887084452681715, 49.24120071996567], + [-0.887281830779827, 49.240840124926464], + [-0.887338878309803, 49.24075576670856], + [-0.887412617238388, 49.24067456563303], + [-0.887478774906847, 49.240618772762986], + [-0.887504173552536, 49.24061448434506], + [-0.887550969524801, 49.24057121609662], + [-0.887623000603809, 49.24052127191131], + [-0.887807014143259, 49.240415498813725], + [-0.888031231731437, 49.240307439737606], + [-0.888165587445624, 49.24022821441154], + [-0.888576885925707, 49.23991707640471], + [-0.888675855847016, 49.2398291893856], + [-0.888854016809171, 49.23962994726778], + [-0.888868208037688, 49.239622363098995], + [-0.888905092184681, 49.239567356439665], + [-0.888965537672147, 49.23950811941095], + [-0.889198492793863, 49.23924738168518], + [-0.889230159906052, 49.239226127259265], + [-0.889483595096178, 49.23899965509596], + [-0.889621281678398, 49.23885671092865], + [-0.889773868064895, 49.23868816122689], + [-0.889970587020718, 49.23843440289482], + [-0.890085420145151, 49.238277676570675], + [-0.89049528613681, 49.23773970977248], + [-0.890868526992405, 49.23724979077323], + [-0.890922335597395, 49.23715445726995], + [-0.89109859106332, 49.237012882985105], + [-0.891141386916112, 49.23699372036682], + [-0.891627821958223, 49.2368582033284], + [-0.891670542549248, 49.23683784659613], + [-0.891883165266933, 49.23677930475295], + [-0.891955920594196, 49.23677014386174], + [-0.891993068686999, 49.23674874105849], + [-0.892576733828613, 49.23658538921702], + [-0.892618444722289, 49.23657826860371], + [-0.892724085024723, 49.23653821549101], + [-0.892959225255736, 49.23645866249661], + [-0.892932972563738, 49.236417160731015], + [-0.892923854707593, 49.236402731224274], + [-0.892902678056337, 49.236383896582225], + [-0.892897202229386, 49.2363866831773] + ] + }, + "length": 1.166091630690215, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42704", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14607", + "bus2": "MVBus07867", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.892897202229386, 49.2363866831773], + [-0.892891726402435, 49.23638946977238], + [-0.892906181541801, 49.2364031710963], + [-0.892897418234313, 49.23640794802007], + [-0.89287831429588, 49.236416438313334], + [-0.892594095271773, 49.23651611478945], + [-0.891571448149967, 49.23680718012721], + [-0.891153662298, 49.236918423557036], + [-0.889561481750273, 49.237381427460804], + [-0.888959529819191, 49.237514700928216], + [-0.887966942411736, 49.23775138750242], + [-0.886163224026916, 49.23814376086724], + [-0.886163224026916, 49.23814376086724] + ] + }, + "length": 0.5303723579195851, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46354", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07867", + "bus2": "MVLV07687", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.886163224026916, 49.23814376086724], + [-0.886163224026916, 49.23814376086724], + [-0.88579212988692, 49.2382402334419], + [-0.885437117959917, 49.2383490234728], + [-0.885244443040563, 49.2384111899376], + [-0.884773324545714, 49.23855361518243], + [-0.884320691583989, 49.23866715446074], + [-0.883992062841363, 49.238744497018786], + [-0.883849963879515, 49.23878672581352], + [-0.88373978923198, 49.23880761366753], + [-0.883627000983091, 49.23883369700478], + [-0.883432997528276, 49.238876239646544], + [-0.883448143987773, 49.23899555213153], + [-0.883541794869655, 49.23914591058355], + [-0.883625503967794, 49.2393601000593], + [-0.883677136783881, 49.23954582776682], + [-0.883607307645389, 49.23970862254284], + [-0.88352877522092, 49.239850861459324], + [-0.883364382462172, 49.24005516561823], + [-0.88318068466099, 49.24029925552247], + [-0.882920174694278, 49.240579315266835], + [-0.882805536356202, 49.24070732613978], + [-0.882606657751963, 49.24092683367392], + [-0.882412269177766, 49.24108733204784], + [-0.88207392802604, 49.24129987140639], + [-0.881882674199694, 49.2413792762798], + [-0.881870142283123, 49.24138991727078], + [-0.881835000987274, 49.241389848492354] + ] + }, + "length": 0.5398981925554321, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47021", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07687", + "bus2": "MVBus09361", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.881835000987274, 49.241389848492354], + [-0.881799859691425, 49.24138977971393], + [-0.881783109182248, 49.24138194753422], + [-0.881290970711528, 49.241152340683676], + [-0.881010013171883, 49.24101799318286], + [-0.880919519389735, 49.241021427522504], + [-0.880642256929955, 49.24089738375072], + [-0.880642256929955, 49.24089738375072] + ] + }, + "length": 0.10188973558821779, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46357", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09361", + "bus2": "MVBus09362", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880642256929955, 49.24089738375072], + [-0.880642256929955, 49.24089738375072], + [-0.880607514550805, 49.2408818422678], + [-0.880607514550805, 49.2408818422678] + ] + }, + "length": 0.0030639494102197053, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34205", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09362", + "bus2": "MVLV18592", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.880607514550805, 49.2408818422678], + [-0.880607514550805, 49.2408818422678], + [-0.880588158110897, 49.24087318061059], + [-0.880388072555058, 49.24060875229094], + [-0.879301575042177, 49.24026381041191], + [-0.87918880904727, 49.24017875737017], + [-0.87917790005823, 49.24011696047202], + [-0.879044422507606, 49.23998837503634], + [-0.878929411297452, 49.239932192117024], + [-0.878768337070381, 49.2398862896597], + [-0.877929661223324, 49.23979992811692], + [-0.877253910292094, 49.23987192292139], + [-0.877256069750912, 49.23990516219053], + [-0.877255282173517, 49.23990552498414], + [-0.877273257127134, 49.23991209308561], + [-0.877273257127134, 49.23991209308561] + ] + }, + "length": 0.2993785990167933, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42705", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07867", + "bus2": "MVLV12316", + "geometry": { + "type": "LineString", + "coordinates": [ + [-0.886163224026916, 49.23814376086724], + [-0.886163224026916, 49.23814376086724], + [-0.886134334135075, 49.23811159939885], + [-0.886134334135075, 49.23811159939885] + ] + }, + "length": 0.004149664526962077, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV14607_production", + "bus": "MVLV14607", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14607_consumption", + "bus": "MVLV14607", + "phases": "abc", + "powers": [ + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333] + ] + }, + { + "id": "MVLV07687_production", + "bus": "MVLV07687", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07687_consumption", + "bus": "MVLV07687", + "phases": "abc", + "powers": [ + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333] + ] + }, + { + "id": "MVLV18592_production", + "bus": "MVLV18592", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV18592_consumption", + "bus": "MVLV18592", + "phases": "abc", + "powers": [ + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333] + ] + }, + { + "id": "MVLV12316_production", + "bus": "MVLV12316", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV12316_consumption", + "bus": "MVLV12316", + "phases": "abc", + "powers": [ + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333], + [46576.404259888164, 15308.923756610333] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder320_Summer.json b/roseau/load_flow/data/networks/MVFeeder320_Summer.json new file mode 100644 index 00000000..bdd1c690 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder320_Summer.json @@ -0,0 +1,818 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "HVMV24", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBus03272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.118771483267404, 49.1085233008711] + } + }, + { + "id": "MVBus03273", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.116603611405577, 49.10567001171423] + } + }, + { + "id": "MVBus03274", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.116558398469074, 49.10550728051061] + } + }, + { + "id": "MVLV15900", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.114356949552328, 49.10219869675666] + } + }, + { + "id": "MVBus06241", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.113451342366867, 49.10301925894434] + } + }, + { + "id": "MVLV04536", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1124929103886734, 49.1020702604019] + } + }, + { + "id": "MVBus06393", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.113361214583669, 49.10304249989962] + } + }, + { + "id": "MVBus06394", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.113290374699996, 49.10322404020471] + } + }, + { + "id": "MVLV15889", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1111834901653443, 49.10470070458305] + } + }, + { + "id": "MVBus06697", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.107295136047514, 49.10761828058603] + } + }, + { + "id": "MVLV15887", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1072595556386244, 49.107578646783914] + } + }, + { + "id": "MVBus07251", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.107272123677667, 49.1076351414578] + } + }, + { + "id": "MVLV05633", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1047738883191665, 49.10789730368813] + } + }, + { + "id": "MVBus07719", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.105251850515671, 49.10568196530121] + } + }, + { + "id": "MVLV02667", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1054259887101194, 49.105803224052394] + } + }, + { + "id": "MVBus08243", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.10530745327206, 49.105688721167525] + } + }, + { + "id": "MVBus08244", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.10419910236934, 49.10412508714011] + } + }, + { + "id": "MVBus08245", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.104077900830377, 49.10401651493053] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV24", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBranch35480", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV24", + "bus2": "MVBus03272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.122502301274675, 49.11336333911259], + [-1.122515758188838, 49.113353164419976], + [-1.122515758188838, 49.113353164419976], + [-1.122529215097694, 49.11334298972578], + [-1.122867662972574, 49.113095551719404], + [-1.123081883206688, 49.112818129434], + [-1.123024691125668, 49.112635312546374], + [-1.122819570703073, 49.11150722094648], + [-1.123021919062925, 49.11051898866405], + [-1.122162854611667, 49.11031353875101], + [-1.120820439144195, 49.111235324404205], + [-1.120456826456457, 49.11082048744736], + [-1.120976455047906, 49.10968225108492], + [-1.118771483267404, 49.1085233008711], + [-1.118771483267404, 49.1085233008711] + ] + }, + "length": 0.9312494543348707, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43080", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03272", + "bus2": "MVBus03273", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.118771483267404, 49.1085233008711], + [-1.118771483267404, 49.1085233008711], + [-1.118770275319291, 49.10852265219978], + [-1.118058080300463, 49.10798507584726], + [-1.117514430446321, 49.107426215007955], + [-1.117030497809509, 49.106760224908584], + [-1.116818572840983, 49.106317397237426], + [-1.116650153829339, 49.10581024599025], + [-1.116603611405577, 49.10567001171423], + [-1.116603611405577, 49.10567001171423] + ] + }, + "length": 0.3604669225339614, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47785", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03273", + "bus2": "MVBus03274", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.116603611405577, 49.10567001171423], + [-1.116603611405577, 49.10567001171423], + [-1.116605574535409, 49.105648593819446], + [-1.116558398469074, 49.10550728051061], + [-1.116558398469074, 49.10550728051061] + ] + }, + "length": 0.018475017486536353, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37396", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03274", + "bus2": "MVLV15900", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.116558398469074, 49.10550728051061], + [-1.116558398469074, 49.10550728051061], + [-1.116356566657015, 49.105112963010804], + [-1.116181599379155, 49.10478695426727], + [-1.115960184998297, 49.10446323910245], + [-1.115669452453222, 49.104187520297394], + [-1.115004527168162, 49.10379523979116], + [-1.114373185658246, 49.103530676074016], + [-1.113765312345798, 49.10326810355195], + [-1.11370329467668, 49.103125931001635], + [-1.113741152653556, 49.103000566118105], + [-1.113885192828147, 49.10288370511618], + [-1.114646629656024, 49.102341370630505], + [-1.114462423438236, 49.10221638567206], + [-1.114344452929517, 49.10218993712635], + [-1.114323968157725, 49.10218902603398], + [-1.114356949552328, 49.10219869675666] + ] + }, + "length": 0.4939133036688335, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39762", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15900", + "bus2": "MVBus06241", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114356949552328, 49.10219869675666], + [-1.114389930946931, 49.10220836747934], + [-1.114390339813299, 49.10222184701178], + [-1.114392475058534, 49.10225682688755], + [-1.114543085659624, 49.10235221881769], + [-1.113685535660551, 49.102971257139565], + [-1.113546733725049, 49.10298624231028], + [-1.113451728463866, 49.10301970651387], + [-1.113451342366867, 49.10301925894434], + [-1.113451342366867, 49.10301925894434] + ] + }, + "length": 0.1319376452899145, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46734", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06241", + "bus2": "MVLV04536", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113451342366867, 49.10301925894434], + [-1.113451342366867, 49.10301925894434], + [-1.112590215879752, 49.10201037753735], + [-1.112507001548805, 49.102055247520056], + [-1.112491135901967, 49.10206379975681], + [-1.1124929103886734, 49.1020702604019] + ] + }, + "length": 0.13798024400367132, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41589", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04536", + "bus2": "MVBus06393", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1124929103886734, 49.1020702604019], + [-1.11249468487538, 49.102076721047], + [-1.112514100104552, 49.10208109907633], + [-1.112588088096089, 49.10209776367929], + [-1.113361214583669, 49.10304249989962], + [-1.113361214583669, 49.10304249989962] + ] + }, + "length": 0.1264834129891168, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44199", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06393", + "bus2": "MVBus06394", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113361214583669, 49.10304249989962], + [-1.113361214583669, 49.10304249989962], + [-1.113385455218025, 49.10307211129203], + [-1.113317029538608, 49.10313268188011], + [-1.113290374699996, 49.10322404020471], + [-1.113290374699996, 49.10322404020471] + ] + }, + "length": 0.02247050530209471, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46735", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06394", + "bus2": "MVLV15889", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113290374699996, 49.10322404020471], + [-1.113290374699996, 49.10322404020471], + [-1.113279411241362, 49.103261646346226], + [-1.111226775511101, 49.10475291401361], + [-1.111208807976315, 49.10471098829749], + [-1.111199109510269, 49.1046991076747], + [-1.1111834901653443, 49.10470070458305] + ] + }, + "length": 0.23413995893045467, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38163", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15889", + "bus2": "MVBus06697", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1111834901653443, 49.10470070458305], + [-1.11116787082042, 49.1047023014914], + [-1.11117404117023, 49.10471140565835], + [-1.111171940085997, 49.104726900228], + [-1.111155775748212, 49.104846152236696], + [-1.107295136047514, 49.10761828058603], + [-1.107295136047514, 49.10761828058603] + ] + }, + "length": 0.43389202608035926, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47752", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06697", + "bus2": "MVLV15887", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.107295136047514, 49.10761828058603], + [-1.107295136047514, 49.10761828058603], + [-1.107278230081981, 49.10757313996695], + [-1.107275964057728, 49.10756710716929], + [-1.107264756369101, 49.10756872494561], + [-1.1072595556386244, 49.107578646783914] + ] + }, + "length": 0.006698580964137551, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37774", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15887", + "bus2": "MVBus07251", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1072595556386244, 49.107578646783914], + [-1.107254354908148, 49.10758856862222], + [-1.107263080927471, 49.1075928684739], + [-1.107264372560184, 49.10759887535522], + [-1.107272123677667, 49.1076351414578], + [-1.107272123677667, 49.1076351414578] + ] + }, + "length": 0.005544006519024985, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36406", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07251", + "bus2": "MVLV05633", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.107272123677667, 49.1076351414578], + [-1.107272123677667, 49.1076351414578], + [-1.107323126342092, 49.10763575095126], + [-1.106027941745831, 49.10857888880871], + [-1.105951336328116, 49.108584888597264], + [-1.105903018805837, 49.10857998298788], + [-1.105868959753751, 49.108560258509215], + [-1.10570142650957, 49.10843610313509], + [-1.10561013237445, 49.108328569772915], + [-1.105528639295212, 49.10822050252374], + [-1.10528005425125, 49.108019683063], + [-1.104783953626866, 49.10806546960726], + [-1.104763488992972, 49.107938440641036], + [-1.104777009832455, 49.107920162408014], + [-1.104778996117332, 49.10791564418773], + [-1.104782693741236, 49.1079072092679], + [-1.1047738883191665, 49.10789730368813] + ] + }, + "length": 0.2863367475352318, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37628", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05633", + "bus2": "MVBus07719", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1047738883191665, 49.10789730368813], + [-1.104765082897097, 49.10788739810835], + [-1.10473586256072, 49.10788473989768], + [-1.104394206407897, 49.107900071284185], + [-1.104362712572404, 49.10789475315261], + [-1.104352156801776, 49.10784660540915], + [-1.104268325377526, 49.10738070140299], + [-1.104317366133909, 49.107362795723354], + [-1.104263514137814, 49.107022810542226], + [-1.10424661809741, 49.106887440159085], + [-1.10423504896882, 49.10656274298069], + [-1.104219591854861, 49.10582212474427], + [-1.104249742025216, 49.10576092490523], + [-1.104287263313729, 49.10575127432024], + [-1.104654394187146, 49.10572950774388], + [-1.104985556678583, 49.10570987204645], + [-1.105251850515671, 49.10568196530121], + [-1.105251850515671, 49.10568196530121] + ] + }, + "length": 0.3438063636066759, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36060", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07719", + "bus2": "MVLV02667", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.105251850515671, 49.10568196530121], + [-1.105251850515671, 49.10568196530121], + [-1.105355141120245, 49.10567479333838], + [-1.105380593266276, 49.105797109956406], + [-1.105390992409981, 49.10579713455313], + [-1.105425986164548, 49.10579723402532], + [-1.1054259887101194, 49.105803224052394] + ] + }, + "length": 0.024627893652587315, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36674", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02667", + "bus2": "MVBus08243", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1054259887101194, 49.105803224052394], + [-1.105425991255691, 49.105809214079464], + [-1.105379126106463, 49.105809609057744], + [-1.105362093905267, 49.10580974831517], + [-1.105339243747707, 49.105686187596184], + [-1.10530745327206, 49.105688721167525], + [-1.10530745327206, 49.105688721167525] + ] + }, + "length": 0.020846555492663302, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45547", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08243", + "bus2": "MVBus08244", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.10530745327206, 49.105688721167525], + [-1.10530745327206, 49.105688721167525], + [-1.104532899782066, 49.10576319577339], + [-1.104520621427359, 49.10570667899328], + [-1.104401241471811, 49.105717856695954], + [-1.104209844526672, 49.105642162540626], + [-1.104226110846048, 49.10492140777142], + [-1.104123494271267, 49.10492449406452], + [-1.104121625612562, 49.104602269554135], + [-1.10395512797682, 49.10455415450196], + [-1.10419910236934, 49.10412508714011], + [-1.10419910236934, 49.10412508714011] + ] + }, + "length": 0.27634588096113716, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48195", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08244", + "bus2": "MVBus08245", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.10419910236934, 49.10412508714011], + [-1.10419910236934, 49.10412508714011], + [-1.104252318745341, 49.10411601942363], + [-1.10410055399674, 49.104082770898536], + [-1.104072678550523, 49.10403679404062], + [-1.104074472699001, 49.104029807948045], + [-1.104077900830377, 49.10401651493053], + [-1.104077900830377, 49.10401651493053] + ] + }, + "length": 0.02348758279773055, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV15900_production", + "bus": "MVLV15900", + "phases": "abc", + "powers": [ + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0] + ] + }, + { + "id": "MVLV15900_consumption", + "bus": "MVLV15900", + "phases": "abc", + "powers": [ + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037] + ] + }, + { + "id": "MVLV04536_production", + "bus": "MVLV04536", + "phases": "abc", + "powers": [ + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0] + ] + }, + { + "id": "MVLV04536_consumption", + "bus": "MVLV04536", + "phases": "abc", + "powers": [ + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037] + ] + }, + { + "id": "MVLV15889_production", + "bus": "MVLV15889", + "phases": "abc", + "powers": [ + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0] + ] + }, + { + "id": "MVLV15889_consumption", + "bus": "MVLV15889", + "phases": "abc", + "powers": [ + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037] + ] + }, + { + "id": "MVLV15887_production", + "bus": "MVLV15887", + "phases": "abc", + "powers": [ + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0] + ] + }, + { + "id": "MVLV15887_consumption", + "bus": "MVLV15887", + "phases": "abc", + "powers": [ + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037] + ] + }, + { + "id": "MVLV05633_production", + "bus": "MVLV05633", + "phases": "abc", + "powers": [ + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0] + ] + }, + { + "id": "MVLV05633_consumption", + "bus": "MVLV05633", + "phases": "abc", + "powers": [ + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037] + ] + }, + { + "id": "MVLV02667_production", + "bus": "MVLV02667", + "phases": "abc", + "powers": [ + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0], + [-448.2807515065579, 0.0] + ] + }, + { + "id": "MVLV02667_consumption", + "bus": "MVLV02667", + "phases": "abc", + "powers": [ + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037], + [9021.159739691348, 2965.111816716037] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder320_Winter.json b/roseau/load_flow/data/networks/MVFeeder320_Winter.json new file mode 100644 index 00000000..ea2a595c --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder320_Winter.json @@ -0,0 +1,818 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "HVMV24", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBus03272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.118771483267404, 49.1085233008711] + } + }, + { + "id": "MVBus03273", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.116603611405577, 49.10567001171423] + } + }, + { + "id": "MVBus03274", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.116558398469074, 49.10550728051061] + } + }, + { + "id": "MVLV15900", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.114356949552328, 49.10219869675666] + } + }, + { + "id": "MVBus06241", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.113451342366867, 49.10301925894434] + } + }, + { + "id": "MVLV04536", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1124929103886734, 49.1020702604019] + } + }, + { + "id": "MVBus06393", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.113361214583669, 49.10304249989962] + } + }, + { + "id": "MVBus06394", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.113290374699996, 49.10322404020471] + } + }, + { + "id": "MVLV15889", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1111834901653443, 49.10470070458305] + } + }, + { + "id": "MVBus06697", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.107295136047514, 49.10761828058603] + } + }, + { + "id": "MVLV15887", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1072595556386244, 49.107578646783914] + } + }, + { + "id": "MVBus07251", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.107272123677667, 49.1076351414578] + } + }, + { + "id": "MVLV05633", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1047738883191665, 49.10789730368813] + } + }, + { + "id": "MVBus07719", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.105251850515671, 49.10568196530121] + } + }, + { + "id": "MVLV02667", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1054259887101194, 49.105803224052394] + } + }, + { + "id": "MVBus08243", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.10530745327206, 49.105688721167525] + } + }, + { + "id": "MVBus08244", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.10419910236934, 49.10412508714011] + } + }, + { + "id": "MVBus08245", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.104077900830377, 49.10401651493053] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV24", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBranch35480", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV24", + "bus2": "MVBus03272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.122502301274675, 49.11336333911259], + [-1.122515758188838, 49.113353164419976], + [-1.122515758188838, 49.113353164419976], + [-1.122529215097694, 49.11334298972578], + [-1.122867662972574, 49.113095551719404], + [-1.123081883206688, 49.112818129434], + [-1.123024691125668, 49.112635312546374], + [-1.122819570703073, 49.11150722094648], + [-1.123021919062925, 49.11051898866405], + [-1.122162854611667, 49.11031353875101], + [-1.120820439144195, 49.111235324404205], + [-1.120456826456457, 49.11082048744736], + [-1.120976455047906, 49.10968225108492], + [-1.118771483267404, 49.1085233008711], + [-1.118771483267404, 49.1085233008711] + ] + }, + "length": 0.9312494543348707, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43080", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03272", + "bus2": "MVBus03273", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.118771483267404, 49.1085233008711], + [-1.118771483267404, 49.1085233008711], + [-1.118770275319291, 49.10852265219978], + [-1.118058080300463, 49.10798507584726], + [-1.117514430446321, 49.107426215007955], + [-1.117030497809509, 49.106760224908584], + [-1.116818572840983, 49.106317397237426], + [-1.116650153829339, 49.10581024599025], + [-1.116603611405577, 49.10567001171423], + [-1.116603611405577, 49.10567001171423] + ] + }, + "length": 0.3604669225339614, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47785", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03273", + "bus2": "MVBus03274", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.116603611405577, 49.10567001171423], + [-1.116603611405577, 49.10567001171423], + [-1.116605574535409, 49.105648593819446], + [-1.116558398469074, 49.10550728051061], + [-1.116558398469074, 49.10550728051061] + ] + }, + "length": 0.018475017486536353, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37396", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03274", + "bus2": "MVLV15900", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.116558398469074, 49.10550728051061], + [-1.116558398469074, 49.10550728051061], + [-1.116356566657015, 49.105112963010804], + [-1.116181599379155, 49.10478695426727], + [-1.115960184998297, 49.10446323910245], + [-1.115669452453222, 49.104187520297394], + [-1.115004527168162, 49.10379523979116], + [-1.114373185658246, 49.103530676074016], + [-1.113765312345798, 49.10326810355195], + [-1.11370329467668, 49.103125931001635], + [-1.113741152653556, 49.103000566118105], + [-1.113885192828147, 49.10288370511618], + [-1.114646629656024, 49.102341370630505], + [-1.114462423438236, 49.10221638567206], + [-1.114344452929517, 49.10218993712635], + [-1.114323968157725, 49.10218902603398], + [-1.114356949552328, 49.10219869675666] + ] + }, + "length": 0.4939133036688335, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39762", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15900", + "bus2": "MVBus06241", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.114356949552328, 49.10219869675666], + [-1.114389930946931, 49.10220836747934], + [-1.114390339813299, 49.10222184701178], + [-1.114392475058534, 49.10225682688755], + [-1.114543085659624, 49.10235221881769], + [-1.113685535660551, 49.102971257139565], + [-1.113546733725049, 49.10298624231028], + [-1.113451728463866, 49.10301970651387], + [-1.113451342366867, 49.10301925894434], + [-1.113451342366867, 49.10301925894434] + ] + }, + "length": 0.1319376452899145, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46734", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06241", + "bus2": "MVLV04536", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113451342366867, 49.10301925894434], + [-1.113451342366867, 49.10301925894434], + [-1.112590215879752, 49.10201037753735], + [-1.112507001548805, 49.102055247520056], + [-1.112491135901967, 49.10206379975681], + [-1.1124929103886734, 49.1020702604019] + ] + }, + "length": 0.13798024400367132, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41589", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV04536", + "bus2": "MVBus06393", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1124929103886734, 49.1020702604019], + [-1.11249468487538, 49.102076721047], + [-1.112514100104552, 49.10208109907633], + [-1.112588088096089, 49.10209776367929], + [-1.113361214583669, 49.10304249989962], + [-1.113361214583669, 49.10304249989962] + ] + }, + "length": 0.1264834129891168, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch44199", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06393", + "bus2": "MVBus06394", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113361214583669, 49.10304249989962], + [-1.113361214583669, 49.10304249989962], + [-1.113385455218025, 49.10307211129203], + [-1.113317029538608, 49.10313268188011], + [-1.113290374699996, 49.10322404020471], + [-1.113290374699996, 49.10322404020471] + ] + }, + "length": 0.02247050530209471, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46735", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06394", + "bus2": "MVLV15889", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.113290374699996, 49.10322404020471], + [-1.113290374699996, 49.10322404020471], + [-1.113279411241362, 49.103261646346226], + [-1.111226775511101, 49.10475291401361], + [-1.111208807976315, 49.10471098829749], + [-1.111199109510269, 49.1046991076747], + [-1.1111834901653443, 49.10470070458305] + ] + }, + "length": 0.23413995893045467, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38163", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15889", + "bus2": "MVBus06697", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1111834901653443, 49.10470070458305], + [-1.11116787082042, 49.1047023014914], + [-1.11117404117023, 49.10471140565835], + [-1.111171940085997, 49.104726900228], + [-1.111155775748212, 49.104846152236696], + [-1.107295136047514, 49.10761828058603], + [-1.107295136047514, 49.10761828058603] + ] + }, + "length": 0.43389202608035926, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47752", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06697", + "bus2": "MVLV15887", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.107295136047514, 49.10761828058603], + [-1.107295136047514, 49.10761828058603], + [-1.107278230081981, 49.10757313996695], + [-1.107275964057728, 49.10756710716929], + [-1.107264756369101, 49.10756872494561], + [-1.1072595556386244, 49.107578646783914] + ] + }, + "length": 0.006698580964137551, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37774", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV15887", + "bus2": "MVBus07251", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1072595556386244, 49.107578646783914], + [-1.107254354908148, 49.10758856862222], + [-1.107263080927471, 49.1075928684739], + [-1.107264372560184, 49.10759887535522], + [-1.107272123677667, 49.1076351414578], + [-1.107272123677667, 49.1076351414578] + ] + }, + "length": 0.005544006519024985, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36406", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07251", + "bus2": "MVLV05633", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.107272123677667, 49.1076351414578], + [-1.107272123677667, 49.1076351414578], + [-1.107323126342092, 49.10763575095126], + [-1.106027941745831, 49.10857888880871], + [-1.105951336328116, 49.108584888597264], + [-1.105903018805837, 49.10857998298788], + [-1.105868959753751, 49.108560258509215], + [-1.10570142650957, 49.10843610313509], + [-1.10561013237445, 49.108328569772915], + [-1.105528639295212, 49.10822050252374], + [-1.10528005425125, 49.108019683063], + [-1.104783953626866, 49.10806546960726], + [-1.104763488992972, 49.107938440641036], + [-1.104777009832455, 49.107920162408014], + [-1.104778996117332, 49.10791564418773], + [-1.104782693741236, 49.1079072092679], + [-1.1047738883191665, 49.10789730368813] + ] + }, + "length": 0.2863367475352318, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37628", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV05633", + "bus2": "MVBus07719", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1047738883191665, 49.10789730368813], + [-1.104765082897097, 49.10788739810835], + [-1.10473586256072, 49.10788473989768], + [-1.104394206407897, 49.107900071284185], + [-1.104362712572404, 49.10789475315261], + [-1.104352156801776, 49.10784660540915], + [-1.104268325377526, 49.10738070140299], + [-1.104317366133909, 49.107362795723354], + [-1.104263514137814, 49.107022810542226], + [-1.10424661809741, 49.106887440159085], + [-1.10423504896882, 49.10656274298069], + [-1.104219591854861, 49.10582212474427], + [-1.104249742025216, 49.10576092490523], + [-1.104287263313729, 49.10575127432024], + [-1.104654394187146, 49.10572950774388], + [-1.104985556678583, 49.10570987204645], + [-1.105251850515671, 49.10568196530121], + [-1.105251850515671, 49.10568196530121] + ] + }, + "length": 0.3438063636066759, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36060", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07719", + "bus2": "MVLV02667", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.105251850515671, 49.10568196530121], + [-1.105251850515671, 49.10568196530121], + [-1.105355141120245, 49.10567479333838], + [-1.105380593266276, 49.105797109956406], + [-1.105390992409981, 49.10579713455313], + [-1.105425986164548, 49.10579723402532], + [-1.1054259887101194, 49.105803224052394] + ] + }, + "length": 0.024627893652587315, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch36674", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV02667", + "bus2": "MVBus08243", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1054259887101194, 49.105803224052394], + [-1.105425991255691, 49.105809214079464], + [-1.105379126106463, 49.105809609057744], + [-1.105362093905267, 49.10580974831517], + [-1.105339243747707, 49.105686187596184], + [-1.10530745327206, 49.105688721167525], + [-1.10530745327206, 49.105688721167525] + ] + }, + "length": 0.020846555492663302, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45547", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08243", + "bus2": "MVBus08244", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.10530745327206, 49.105688721167525], + [-1.10530745327206, 49.105688721167525], + [-1.104532899782066, 49.10576319577339], + [-1.104520621427359, 49.10570667899328], + [-1.104401241471811, 49.105717856695954], + [-1.104209844526672, 49.105642162540626], + [-1.104226110846048, 49.10492140777142], + [-1.104123494271267, 49.10492449406452], + [-1.104121625612562, 49.104602269554135], + [-1.10395512797682, 49.10455415450196], + [-1.10419910236934, 49.10412508714011], + [-1.10419910236934, 49.10412508714011] + ] + }, + "length": 0.27634588096113716, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch48195", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus08244", + "bus2": "MVBus08245", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.10419910236934, 49.10412508714011], + [-1.10419910236934, 49.10412508714011], + [-1.104252318745341, 49.10411601942363], + [-1.10410055399674, 49.104082770898536], + [-1.104072678550523, 49.10403679404062], + [-1.104074472699001, 49.104029807948045], + [-1.104077900830377, 49.10401651493053], + [-1.104077900830377, 49.10401651493053] + ] + }, + "length": 0.02348758279773055, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV15900_production", + "bus": "MVLV15900", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15900_consumption", + "bus": "MVLV15900", + "phases": "abc", + "powers": [ + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185] + ] + }, + { + "id": "MVLV04536_production", + "bus": "MVLV04536", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV04536_consumption", + "bus": "MVLV04536", + "phases": "abc", + "powers": [ + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185] + ] + }, + { + "id": "MVLV15889_production", + "bus": "MVLV15889", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15889_consumption", + "bus": "MVLV15889", + "phases": "abc", + "powers": [ + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185] + ] + }, + { + "id": "MVLV15887_production", + "bus": "MVLV15887", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV15887_consumption", + "bus": "MVLV15887", + "phases": "abc", + "powers": [ + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185] + ] + }, + { + "id": "MVLV05633_production", + "bus": "MVLV05633", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV05633_consumption", + "bus": "MVLV05633", + "phases": "abc", + "powers": [ + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185] + ] + }, + { + "id": "MVLV02667_production", + "bus": "MVLV02667", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV02667_consumption", + "bus": "MVLV02667", + "phases": "abc", + "powers": [ + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185], + [45105.79869845673, 14825.559083580185] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder339_Summer.json b/roseau/load_flow/data/networks/MVFeeder339_Summer.json new file mode 100644 index 00000000..81babe29 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder339_Summer.json @@ -0,0 +1,1437 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "HVMV24", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBus03445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.123870876133732, 49.113367217043866] + } + }, + { + "id": "MVBus03446", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130453200031668, 49.11078015694125] + } + }, + { + "id": "MVLV17998", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1302244281285492, 49.110148550835596] + } + }, + { + "id": "MVBus04986", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130554237696906, 49.10842944451173] + } + }, + { + "id": "MVBus04987", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130536882601092, 49.10799691922555] + } + }, + { + "id": "MVLV03412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1309158792652, 49.106900762867234] + } + }, + { + "id": "MVLV07034", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13187267044615, 49.106548331341614] + } + }, + { + "id": "MVBus05272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130520028176319, 49.10797302424653] + } + }, + { + "id": "MVBus05273", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.134640189983407, 49.108157314591196] + } + }, + { + "id": "MVLV01263", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.133991777245086, 49.10719013339036] + } + }, + { + "id": "MVLV03413", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1340089537298175, 49.10725563511267] + } + }, + { + "id": "MVBus06246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13468194569207, 49.10821753395187] + } + }, + { + "id": "MVBus06247", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.133004271887047, 49.10856984554126] + } + }, + { + "id": "MVLV03414", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1330918699037185, 49.10872703870734] + } + }, + { + "id": "MVBus06404", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.132970170905764, 49.108610742012765] + } + }, + { + "id": "MVBus06405", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130642062379304, 49.10846441433993] + } + }, + { + "id": "MVBus06406", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130263519753087, 49.11003257521372] + } + }, + { + "id": "MVBus06407", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13054546862156, 49.11073282681292] + } + }, + { + "id": "MVBus06408", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130312098223946, 49.111434024604876] + } + }, + { + "id": "MVLV07791", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1316018628211864, 49.11104375646305] + } + }, + { + "id": "MVBus07055", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130323324546056, 49.11145020371014] + } + }, + { + "id": "MVLV09318", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1315118134130806, 49.1119505611383] + } + }, + { + "id": "MVLV14712", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.134965876166687, 49.111460293504116] + } + }, + { + "id": "MVLV14711", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1342700452937602, 49.11173576018305] + } + }, + { + "id": "MVLV09319", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.132262020484745, 49.11396037425162] + } + }, + { + "id": "MVBus09049", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13224498118458, 49.11399181282946] + } + }, + { + "id": "MVLV13031", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1364339543418398, 49.113451177884166] + } + }, + { + "id": "MVBus09523", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.132228909254047, 49.114009322801685] + } + }, + { + "id": "MVLV03410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1266887804672565, 49.11440224755239] + } + }, + { + "id": "MVLV17997", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.125978403645698, 49.11553831359176] + } + }, + { + "id": "MVBus10661", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.141032490555135, 49.112874190818054] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV24", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBranch47063", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV24", + "bus2": "MVBus03445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.122502301274675, 49.11336333911259], + [-1.122344662808787, 49.11344553394968], + [-1.122344662808787, 49.11344553394968], + [-1.122178248276865, 49.113553156919636], + [-1.122394405659547, 49.1137221776174], + [-1.122556506695437, 49.11372629668535], + [-1.123870876133732, 49.113367217043866], + [-1.123870876133732, 49.113367217043866] + ] + }, + "length": 0.157374575367922, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33323", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03445", + "bus2": "MVBus03446", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.123870876133732, 49.113367217043866], + [-1.123870876133732, 49.113367217043866], + [-1.126949426864055, 49.11248620315874], + [-1.129986870408272, 49.111634719143865], + [-1.129983353260803, 49.11159565121373], + [-1.130006000591707, 49.11141632481774], + [-1.130240662592236, 49.11108333199993], + [-1.130453200031668, 49.11078015694125], + [-1.130453200031668, 49.11078015694125] + ] + }, + "length": 0.5885938744082162, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39830", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03446", + "bus2": "MVLV17998", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130453200031668, 49.11078015694125], + [-1.130453200031668, 49.11078015694125], + [-1.130439394260748, 49.11071990890411], + [-1.130267340319085, 49.110163366601526], + [-1.130234572707299, 49.110173607133284], + [-1.13023245224106, 49.110160204207915], + [-1.1302244281285492, 49.110148550835596] + ] + }, + "length": 0.07407985403789215, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43862", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17998", + "bus2": "MVBus04986", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1302244281285492, 49.110148550835596], + [-1.130216404016038, 49.11013689746328], + [-1.13020723943181, 49.11013039035878], + [-1.130205432352078, 49.11012592761518], + [-1.130067982008692, 49.10978711302514], + [-1.130503413595942, 49.10889729610442], + [-1.130554237696906, 49.10842944451173], + [-1.130554237696906, 49.10842944451173] + ] + }, + "length": 0.19659511934477608, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04986", + "bus2": "MVBus04987", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130554237696906, 49.10842944451173], + [-1.130554237696906, 49.10842944451173], + [-1.130784011675479, 49.10829294443268], + [-1.130786254065524, 49.10810910887082], + [-1.130536882601092, 49.10799691922555], + [-1.130536882601092, 49.10799691922555] + ] + }, + "length": 0.0651426538253046, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47517", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04987", + "bus2": "MVLV03412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130536882601092, 49.10799691922555], + [-1.130536882601092, 49.10799691922555], + [-1.130560755067636, 49.107641080255185], + [-1.130580698440648, 49.10758275915819], + [-1.130731061460289, 49.10750650134283], + [-1.130890506055937, 49.10693373971603], + [-1.130902764883163, 49.10692372457062], + [-1.130918385316706, 49.106911750178625], + [-1.1309158792652, 49.106900762867234] + ] + }, + "length": 0.12806728975747192, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42524", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03412", + "bus2": "MVLV07034", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1309158792652, 49.106900762867234], + [-1.130916098185835, 49.1068824232141], + [-1.130907004420455, 49.10687492473673], + [-1.130898473235062, 49.10686703219391], + [-1.131006410483078, 49.106857652703084], + [-1.131151829979765, 49.10684298634093], + [-1.131247182939561, 49.106818411315906], + [-1.131440659881612, 49.10675404334872], + [-1.131631926394861, 49.10666985280215], + [-1.13187267044615, 49.106548331341614], + [-1.13187267044615, 49.106548331341614] + ] + }, + "length": 0.08313723421317573, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37042", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03412", + "bus2": "MVBus05272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1309158792652, 49.106900762867234], + [-1.130913154293059, 49.10690811520897], + [-1.130879599758308, 49.10691578847076], + [-1.130720715738181, 49.1074944430714], + [-1.130573945317239, 49.10757074966178], + [-1.130520028176319, 49.10797302424653], + [-1.130520028176319, 49.10797302424653] + ] + }, + "length": 0.1265649035855997, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34750", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05272", + "bus2": "MVBus05273", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130520028176319, 49.10797302424653], + [-1.130520028176319, 49.10797302424653], + [-1.130814673259255, 49.10806376366296], + [-1.130886747180674, 49.10832106903585], + [-1.131963266479544, 49.10853147634329], + [-1.133274293946837, 49.108551275340915], + [-1.134640189983407, 49.108157314591196], + [-1.134640189983407, 49.108157314591196] + ] + }, + "length": 0.33954123986204615, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37043", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05273", + "bus2": "MVLV01263", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.134640189983407, 49.108157314591196], + [-1.134640189983407, 49.108157314591196], + [-1.134703178160511, 49.10807199317653], + [-1.134659714435899, 49.1079866034313], + [-1.134461798848012, 49.107903230445594], + [-1.134301779050807, 49.10776676183317], + [-1.134156199581145, 49.1075085773023], + [-1.133977201773011, 49.10737018540545], + [-1.133942104914405, 49.10729692880476], + [-1.13394235168335, 49.10719210234898], + [-1.13395967434877, 49.10719138397101], + [-1.133983485572351, 49.10719038741877], + [-1.133991777245086, 49.10719013339036] + ] + }, + "length": 0.13089632690546296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47520", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01263", + "bus2": "MVLV03413", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133991777245086, 49.10719013339036], + [-1.134000068917821, 49.10718987936195], + [-1.134002939830688, 49.107203224533784], + [-1.134007792693569, 49.107225866257885], + [-1.13401064993758, 49.107239211825764], + [-1.1340089537298175, 49.10725563511267] + ] + }, + "length": 0.005540481233914797, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03413", + "bus2": "MVBus06246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1340089537298175, 49.10725563511267], + [-1.134007257522055, 49.10727205839958], + [-1.13400166684196, 49.10728465966686], + [-1.133998276368168, 49.10729229522629], + [-1.134040960525625, 49.107357578641555], + [-1.134208141585709, 49.10749035905515], + [-1.134361736640474, 49.10775710738378], + [-1.13452556716915, 49.107885262580254], + [-1.134723436779652, 49.107970597548785], + [-1.13477991209397, 49.10807689918363], + [-1.13468194569207, 49.10821753395187], + [-1.13468194569207, 49.10821753395187] + ] + }, + "length": 0.12672948365836864, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41244", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06246", + "bus2": "MVBus06247", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.13468194569207, 49.10821753395187], + [-1.13468194569207, 49.10821753395187], + [-1.133297396135859, 49.108575564392275], + [-1.133003513162977, 49.10856915699793], + [-1.133004271887047, 49.10856984554126], + [-1.133004271887047, 49.10856984554126] + ] + }, + "length": 0.1302124244386434, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40295", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06247", + "bus2": "MVLV03414", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133004271887047, 49.10856984554126], + [-1.133004271887047, 49.10856984554126], + [-1.133125092295313, 49.10867980424598], + [-1.133099367507921, 49.108710195379], + [-1.133100300898265, 49.10872365970012], + [-1.1330918699037185, 49.10872703870734] + ] + }, + "length": 0.020444027554901663, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43864", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03414", + "bus2": "MVBus06404", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1330918699037185, 49.10872703870734], + [-1.133083438909172, 49.10873041771456], + [-1.133065629860617, 49.10872371180187], + [-1.13308107634035, 49.108697342382285], + [-1.132947040111755, 49.10856546112813], + [-1.132970170905764, 49.108610742012765], + [-1.132970170905764, 49.108610742012765] + ] + }, + "length": 0.027584319044840308, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06404", + "bus2": "MVBus06405", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132970170905764, 49.108610742012765], + [-1.132970170905764, 49.108610742012765], + [-1.132580802709948, 49.10862393087496], + [-1.132086374987822, 49.10859096588674], + [-1.130850374684556, 49.108329633408154], + [-1.130642062379304, 49.10846441433993], + [-1.130642062379304, 49.10846441433993] + ] + }, + "length": 0.1809143110905235, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35920", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06405", + "bus2": "MVBus06406", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130642062379304, 49.10846441433993], + [-1.130642062379304, 49.10846441433993], + [-1.130616409698243, 49.10878929249692], + [-1.130182294487445, 49.1097746536154], + [-1.130263519753087, 49.11003257521372], + [-1.130263519753087, 49.11003257521372] + ] + }, + "length": 0.17954486915604917, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37041", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06406", + "bus2": "MVBus06407", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130263519753087, 49.11003257521372], + [-1.130263519753087, 49.11003257521372], + [-1.130312465623924, 49.11006387794788], + [-1.13054546862156, 49.11073282681292], + [-1.13054546862156, 49.11073282681292] + ] + }, + "length": 0.08130416864677811, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35919", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06407", + "bus2": "MVBus06408", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.13054546862156, 49.11073282681292], + [-1.13054546862156, 49.11073282681292], + [-1.130301016864691, 49.111072175210424], + [-1.130185204432873, 49.1112467810317], + [-1.130297515701403, 49.11141072038583], + [-1.130312098223946, 49.111434024604876], + [-1.130312098223946, 49.111434024604876] + ] + }, + "length": 0.08571897747858663, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43433", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06408", + "bus2": "MVLV07791", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130312098223946, 49.111434024604876], + [-1.130312098223946, 49.111434024604876], + [-1.130415471902968, 49.11141694422943], + [-1.131393878963113, 49.11113548219991], + [-1.131436779641228, 49.11110213828243], + [-1.131550661778249, 49.11106592736453], + [-1.131558498900107, 49.11105839687375], + [-1.131554927270695, 49.111042571615975], + [-1.13156664528313, 49.11103366943692], + [-1.131584623347782, 49.11103534290007], + [-1.131603387466545, 49.111037092511594], + [-1.1316018628211864, 49.11104375646305] + ] + }, + "length": 0.10667568759828626, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37269", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07791", + "bus2": "MVBus07055", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1316018628211864, 49.11104375646305], + [-1.131600338175828, 49.11105042041451], + [-1.131583011834839, 49.11104886297554], + [-1.131571323397537, 49.111047816676184], + [-1.13156769317976, 49.11105128574849], + [-1.131573134585954, 49.11106822605716], + [-1.131564525334444, 49.11107649846914], + [-1.131449650031959, 49.1111130170085], + [-1.131406489157682, 49.11114656634528], + [-1.130420703499477, 49.111430158051434], + [-1.130323324546056, 49.11145020371014], + [-1.130323324546056, 49.11145020371014] + ] + }, + "length": 0.10587671624338621, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45493", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07055", + "bus2": "MVLV09318", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130323324546056, 49.11145020371014], + [-1.130323324546056, 49.11145020371014], + [-1.130362726892551, 49.11151437802733], + [-1.130033770527538, 49.11160358041416], + [-1.130076738219629, 49.11186424718036], + [-1.130207850471553, 49.1120718304157], + [-1.130351754043072, 49.112109789655726], + [-1.131419086781041, 49.11194455595076], + [-1.131473689174294, 49.11195379333402], + [-1.131494167471122, 49.11195474676352], + [-1.1315118134130806, 49.1119505611383] + ] + }, + "length": 0.18482834408613613, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40293", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09318", + "bus2": "MVLV14712", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1315118134130806, 49.1119505611383], + [-1.131529459355039, 49.111946375513085], + [-1.131535663569615, 49.11194247206738], + [-1.131547056206928, 49.11194013612598], + [-1.133721598931606, 49.11149465846081], + [-1.134802815074063, 49.1114061258013], + [-1.134948273645958, 49.11145270492194], + [-1.134966729276507, 49.11145861830661], + [-1.134965876166687, 49.111460293504116] + ] + }, + "length": 0.2606729615617879, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34751", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14712", + "bus2": "MVLV14711", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.134965876166687, 49.111460293504116], + [-1.134965023056867, 49.111461968701626], + [-1.13494486180883, 49.11145941468818], + [-1.134790094903241, 49.111439818546195], + [-1.1336814754295, 49.111548078761565], + [-1.133377745064499, 49.11161669055667], + [-1.133421847341906, 49.11167837117484], + [-1.134253686403172, 49.111709908592964], + [-1.134262068868588, 49.11171760734145], + [-1.134274014403656, 49.111728575568506], + [-1.1342700452937602, 49.11173576018305] + ] + }, + "length": 0.18924834087506856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40294", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14711", + "bus2": "MVLV09319", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1342700452937602, 49.11173576018305], + [-1.134266076183864, 49.1117429447976], + [-1.134246206095352, 49.111746345401], + [-1.134241221782386, 49.11174720053551], + [-1.133378837135625, 49.11171027990816], + [-1.133302762125434, 49.11164235811719], + [-1.130338889868551, 49.11220190343956], + [-1.130341862329378, 49.11234269374271], + [-1.130577053980169, 49.113287916239344], + [-1.13066830803145, 49.113972762222275], + [-1.130691143183134, 49.114074355632155], + [-1.132192717813637, 49.11401554368424], + [-1.132198328779046, 49.11400872530224], + [-1.132242052613226, 49.113967019736364], + [-1.132252108039428, 49.113957428203584], + [-1.132262020484745, 49.11396037425162] + ] + }, + "length": 0.6271520819798866, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47060", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09319", + "bus2": "MVBus09049", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132262020484745, 49.11396037425162], + [-1.132271932930062, 49.11396332029966], + [-1.13226381870878, 49.11397569772816], + [-1.13224498118458, 49.11399181282946], + [-1.13224498118458, 49.11399181282946] + ] + }, + "length": 0.0037575964027371745, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38884", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09049", + "bus2": "MVLV13031", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.13224498118458, 49.11399181282946], + [-1.13224498118458, 49.11399181282946], + [-1.132409183922345, 49.11395850470208], + [-1.132549172885966, 49.11395426614106], + [-1.133569941935581, 49.11390306206766], + [-1.134184236873158, 49.113758902834284], + [-1.135354619179537, 49.11348428888239], + [-1.136012425316793, 49.1134081579428], + [-1.136340945566205, 49.113364723651216], + [-1.136404913064509, 49.11343383149391], + [-1.136418270671658, 49.11344825728706], + [-1.1364339543418398, 49.113451177884166] + ] + }, + "length": 0.31998005680489433, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46278", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13031", + "bus2": "MVBus09523", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1364339543418398, 49.113451177884166], + [-1.136407694678695, 49.113463125939106], + [-1.136393734834821, 49.11344769228215], + [-1.13633295278543, 49.11338051567912], + [-1.136060190493446, 49.11341389509389], + [-1.135355543949287, 49.1134974116172], + [-1.134104358374749, 49.11378882313603], + [-1.133570357384471, 49.113909031175744], + [-1.133025663563272, 49.113942248938095], + [-1.132228909254047, 49.114009322801685], + [-1.132228909254047, 49.114009322801685] + ] + }, + "length": 0.3199311641698213, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37843", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09523", + "bus2": "MVLV03410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132228909254047, 49.114009322801685], + [-1.132228909254047, 49.114009322801685], + [-1.132230174526184, 49.11404238482505], + [-1.130698573388899, 49.114084195842096], + [-1.130628019938902, 49.114134035511405], + [-1.130625650581823, 49.11419802597629], + [-1.130035675768794, 49.1142329648183], + [-1.129839685614512, 49.11439102264389], + [-1.129670193197206, 49.11441865214423], + [-1.129674075512244, 49.1148650475095], + [-1.129530616934719, 49.11485317559845], + [-1.129523031883221, 49.114920923717094], + [-1.126788881145896, 49.11457345506428], + [-1.126709876767994, 49.114419018195164], + [-1.126706531133983, 49.1144057226948], + [-1.1266887804672565, 49.11440224755239] + ] + }, + "length": 0.4996150453081294, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41241", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03410", + "bus2": "MVLV17997", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1266887804672565, 49.11440224755239], + [-1.12667102980053, 49.11439877240999], + [-1.126660475054749, 49.11441032962753], + [-1.126645679026762, 49.11441851086582], + [-1.126641665099044, 49.114461763139104], + [-1.126522164301736, 49.114462622555], + [-1.126403207886791, 49.114492598245675], + [-1.126377640700086, 49.11462049790831], + [-1.126456179197633, 49.11464581901107], + [-1.12648252580882, 49.11466660653692], + [-1.12650779203553, 49.11471027054055], + [-1.126511584580985, 49.114757146364234], + [-1.126446472833783, 49.11497069081174], + [-1.126416956456836, 49.1150004253635], + [-1.126396878152652, 49.1151039717789], + [-1.126407901147935, 49.11512957397138], + [-1.126297403234112, 49.1154595211899], + [-1.126283236490153, 49.11547728093473], + [-1.126263392947615, 49.11549089675552], + [-1.126232532272765, 49.115500622133055], + [-1.126200315450574, 49.115503416265874], + [-1.125998833709996, 49.115475284867934], + [-1.125986291554672, 49.115513971966365], + [-1.125985100433518, 49.115517658067425], + [-1.125978403645698, 49.11553831359176], + [-1.125978403645698, 49.11553831359176] + ] + }, + "length": 0.17161761950768745, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39387", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13031", + "bus2": "MVBus10661", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1364339543418398, 49.113451177884166], + [-1.136475897675167, 49.11344215042633], + [-1.13647164413238, 49.11342415949396], + [-1.136453452026322, 49.11334731909719], + [-1.136559921855146, 49.113334676725174], + [-1.136898760185647, 49.113297372249555], + [-1.137185045594345, 49.11326278879473], + [-1.137367327527038, 49.113229461470354], + [-1.137465692625822, 49.11320451561277], + [-1.137557190110004, 49.11317199804846], + [-1.137638063405154, 49.11313024600273], + [-1.137872121105293, 49.112986107369444], + [-1.138341833630575, 49.11264047078319], + [-1.138463981635524, 49.112563476121196], + [-1.138583961238423, 49.11261612456228], + [-1.138955841557934, 49.112627412726674], + [-1.139537534275386, 49.11266869828361], + [-1.139933414194787, 49.112646987775065], + [-1.140062912495784, 49.112636973991194], + [-1.140196481500532, 49.11261641742565], + [-1.140338908948239, 49.11258622226776], + [-1.140449363478333, 49.11258556684479], + [-1.14052231612736, 49.11259584988783], + [-1.140598296445898, 49.11261466140601], + [-1.140668357532843, 49.112655204160816], + [-1.140866865039198, 49.11282005619467], + [-1.141032490555135, 49.112874190818054], + [-1.141032490555135, 49.112874190818054] + ] + }, + "length": 0.39186115109558195, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV17998_production", + "bus": "MVLV17998", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV17998_consumption", + "bus": "MVLV17998", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV03412_production", + "bus": "MVLV03412", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV03412_consumption", + "bus": "MVLV03412", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV07034_production", + "bus": "MVLV07034", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV07034_consumption", + "bus": "MVLV07034", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV01263_production", + "bus": "MVLV01263", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV01263_consumption", + "bus": "MVLV01263", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV03413_production", + "bus": "MVLV03413", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV03413_consumption", + "bus": "MVLV03413", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV03414_production", + "bus": "MVLV03414", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV03414_consumption", + "bus": "MVLV03414", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV07791_production", + "bus": "MVLV07791", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV07791_consumption", + "bus": "MVLV07791", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV09318_production", + "bus": "MVLV09318", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV09318_consumption", + "bus": "MVLV09318", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV14712_production", + "bus": "MVLV14712", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV14712_consumption", + "bus": "MVLV14712", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV14711_production", + "bus": "MVLV14711", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV14711_consumption", + "bus": "MVLV14711", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV09319_production", + "bus": "MVLV09319", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV09319_consumption", + "bus": "MVLV09319", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV13031_production", + "bus": "MVLV13031", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV13031_consumption", + "bus": "MVLV13031", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV03410_production", + "bus": "MVLV03410", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV03410_consumption", + "bus": "MVLV03410", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + }, + { + "id": "MVLV17997_production", + "bus": "MVLV17997", + "phases": "abc", + "powers": [ + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0], + [-1035.1333333333334, 0.0] + ] + }, + { + "id": "MVLV17997_consumption", + "bus": "MVLV17997", + "phases": "abc", + "powers": [ + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363], + [12070.075482817978, 3967.241959511363] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/networks/MVFeeder339_Winter.json b/roseau/load_flow/data/networks/MVFeeder339_Winter.json new file mode 100644 index 00000000..82e253a1 --- /dev/null +++ b/roseau/load_flow/data/networks/MVFeeder339_Winter.json @@ -0,0 +1,1437 @@ +{ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": "VoltageSource", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": "VoltageSource", + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "HVMV24", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBus03445", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.123870876133732, 49.113367217043866] + } + }, + { + "id": "MVBus03446", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130453200031668, 49.11078015694125] + } + }, + { + "id": "MVLV17998", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1302244281285492, 49.110148550835596] + } + }, + { + "id": "MVBus04986", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130554237696906, 49.10842944451173] + } + }, + { + "id": "MVBus04987", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130536882601092, 49.10799691922555] + } + }, + { + "id": "MVLV03412", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1309158792652, 49.106900762867234] + } + }, + { + "id": "MVLV07034", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13187267044615, 49.106548331341614] + } + }, + { + "id": "MVBus05272", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130520028176319, 49.10797302424653] + } + }, + { + "id": "MVBus05273", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.134640189983407, 49.108157314591196] + } + }, + { + "id": "MVLV01263", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.133991777245086, 49.10719013339036] + } + }, + { + "id": "MVLV03413", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1340089537298175, 49.10725563511267] + } + }, + { + "id": "MVBus06246", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13468194569207, 49.10821753395187] + } + }, + { + "id": "MVBus06247", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.133004271887047, 49.10856984554126] + } + }, + { + "id": "MVLV03414", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1330918699037185, 49.10872703870734] + } + }, + { + "id": "MVBus06404", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.132970170905764, 49.108610742012765] + } + }, + { + "id": "MVBus06405", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130642062379304, 49.10846441433993] + } + }, + { + "id": "MVBus06406", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130263519753087, 49.11003257521372] + } + }, + { + "id": "MVBus06407", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13054546862156, 49.11073282681292] + } + }, + { + "id": "MVBus06408", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130312098223946, 49.111434024604876] + } + }, + { + "id": "MVLV07791", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1316018628211864, 49.11104375646305] + } + }, + { + "id": "MVBus07055", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.130323324546056, 49.11145020371014] + } + }, + { + "id": "MVLV09318", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1315118134130806, 49.1119505611383] + } + }, + { + "id": "MVLV14712", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.134965876166687, 49.111460293504116] + } + }, + { + "id": "MVLV14711", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1342700452937602, 49.11173576018305] + } + }, + { + "id": "MVLV09319", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.132262020484745, 49.11396037425162] + } + }, + { + "id": "MVBus09049", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.13224498118458, 49.11399181282946] + } + }, + { + "id": "MVLV13031", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1364339543418398, 49.113451177884166] + } + }, + { + "id": "MVBus09523", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.132228909254047, 49.114009322801685] + } + }, + { + "id": "MVLV03410", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.1266887804672565, 49.11440224755239] + } + }, + { + "id": "MVLV17997", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.125978403645698, 49.11553831359176] + } + }, + { + "id": "MVBus10661", + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.141032490555135, 49.112874190818054] + } + } + ], + "branches": [ + { + "id": "Switch", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": "VoltageSource", + "bus2": "HVMV24", + "geometry": { + "type": "Point", + "coordinates": [-1.122502301274675, 49.11336333911259] + } + }, + { + "id": "MVBranch47063", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "HVMV24", + "bus2": "MVBus03445", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.122502301274675, 49.11336333911259], + [-1.122344662808787, 49.11344553394968], + [-1.122344662808787, 49.11344553394968], + [-1.122178248276865, 49.113553156919636], + [-1.122394405659547, 49.1137221776174], + [-1.122556506695437, 49.11372629668535], + [-1.123870876133732, 49.113367217043866], + [-1.123870876133732, 49.113367217043866] + ] + }, + "length": 0.157374575367922, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch33323", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03445", + "bus2": "MVBus03446", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.123870876133732, 49.113367217043866], + [-1.123870876133732, 49.113367217043866], + [-1.126949426864055, 49.11248620315874], + [-1.129986870408272, 49.111634719143865], + [-1.129983353260803, 49.11159565121373], + [-1.130006000591707, 49.11141632481774], + [-1.130240662592236, 49.11108333199993], + [-1.130453200031668, 49.11078015694125], + [-1.130453200031668, 49.11078015694125] + ] + }, + "length": 0.5885938744082162, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39830", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus03446", + "bus2": "MVLV17998", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130453200031668, 49.11078015694125], + [-1.130453200031668, 49.11078015694125], + [-1.130439394260748, 49.11071990890411], + [-1.130267340319085, 49.110163366601526], + [-1.130234572707299, 49.110173607133284], + [-1.13023245224106, 49.110160204207915], + [-1.1302244281285492, 49.110148550835596] + ] + }, + "length": 0.07407985403789215, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43862", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV17998", + "bus2": "MVBus04986", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1302244281285492, 49.110148550835596], + [-1.130216404016038, 49.11013689746328], + [-1.13020723943181, 49.11013039035878], + [-1.130205432352078, 49.11012592761518], + [-1.130067982008692, 49.10978711302514], + [-1.130503413595942, 49.10889729610442], + [-1.130554237696906, 49.10842944451173], + [-1.130554237696906, 49.10842944451173] + ] + }, + "length": 0.19659511934477608, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40292", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04986", + "bus2": "MVBus04987", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130554237696906, 49.10842944451173], + [-1.130554237696906, 49.10842944451173], + [-1.130784011675479, 49.10829294443268], + [-1.130786254065524, 49.10810910887082], + [-1.130536882601092, 49.10799691922555], + [-1.130536882601092, 49.10799691922555] + ] + }, + "length": 0.0651426538253046, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47517", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus04987", + "bus2": "MVLV03412", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130536882601092, 49.10799691922555], + [-1.130536882601092, 49.10799691922555], + [-1.130560755067636, 49.107641080255185], + [-1.130580698440648, 49.10758275915819], + [-1.130731061460289, 49.10750650134283], + [-1.130890506055937, 49.10693373971603], + [-1.130902764883163, 49.10692372457062], + [-1.130918385316706, 49.106911750178625], + [-1.1309158792652, 49.106900762867234] + ] + }, + "length": 0.12806728975747192, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch42524", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03412", + "bus2": "MVLV07034", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1309158792652, 49.106900762867234], + [-1.130916098185835, 49.1068824232141], + [-1.130907004420455, 49.10687492473673], + [-1.130898473235062, 49.10686703219391], + [-1.131006410483078, 49.106857652703084], + [-1.131151829979765, 49.10684298634093], + [-1.131247182939561, 49.106818411315906], + [-1.131440659881612, 49.10675404334872], + [-1.131631926394861, 49.10666985280215], + [-1.13187267044615, 49.106548331341614], + [-1.13187267044615, 49.106548331341614] + ] + }, + "length": 0.08313723421317573, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37042", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03412", + "bus2": "MVBus05272", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1309158792652, 49.106900762867234], + [-1.130913154293059, 49.10690811520897], + [-1.130879599758308, 49.10691578847076], + [-1.130720715738181, 49.1074944430714], + [-1.130573945317239, 49.10757074966178], + [-1.130520028176319, 49.10797302424653], + [-1.130520028176319, 49.10797302424653] + ] + }, + "length": 0.1265649035855997, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34750", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05272", + "bus2": "MVBus05273", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130520028176319, 49.10797302424653], + [-1.130520028176319, 49.10797302424653], + [-1.130814673259255, 49.10806376366296], + [-1.130886747180674, 49.10832106903585], + [-1.131963266479544, 49.10853147634329], + [-1.133274293946837, 49.108551275340915], + [-1.134640189983407, 49.108157314591196], + [-1.134640189983407, 49.108157314591196] + ] + }, + "length": 0.33954123986204615, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37043", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus05273", + "bus2": "MVLV01263", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.134640189983407, 49.108157314591196], + [-1.134640189983407, 49.108157314591196], + [-1.134703178160511, 49.10807199317653], + [-1.134659714435899, 49.1079866034313], + [-1.134461798848012, 49.107903230445594], + [-1.134301779050807, 49.10776676183317], + [-1.134156199581145, 49.1075085773023], + [-1.133977201773011, 49.10737018540545], + [-1.133942104914405, 49.10729692880476], + [-1.13394235168335, 49.10719210234898], + [-1.13395967434877, 49.10719138397101], + [-1.133983485572351, 49.10719038741877], + [-1.133991777245086, 49.10719013339036] + ] + }, + "length": 0.13089632690546296, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47520", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV01263", + "bus2": "MVLV03413", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133991777245086, 49.10719013339036], + [-1.134000068917821, 49.10718987936195], + [-1.134002939830688, 49.107203224533784], + [-1.134007792693569, 49.107225866257885], + [-1.13401064993758, 49.107239211825764], + [-1.1340089537298175, 49.10725563511267] + ] + }, + "length": 0.005540481233914797, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03413", + "bus2": "MVBus06246", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1340089537298175, 49.10725563511267], + [-1.134007257522055, 49.10727205839958], + [-1.13400166684196, 49.10728465966686], + [-1.133998276368168, 49.10729229522629], + [-1.134040960525625, 49.107357578641555], + [-1.134208141585709, 49.10749035905515], + [-1.134361736640474, 49.10775710738378], + [-1.13452556716915, 49.107885262580254], + [-1.134723436779652, 49.107970597548785], + [-1.13477991209397, 49.10807689918363], + [-1.13468194569207, 49.10821753395187], + [-1.13468194569207, 49.10821753395187] + ] + }, + "length": 0.12672948365836864, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41244", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06246", + "bus2": "MVBus06247", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.13468194569207, 49.10821753395187], + [-1.13468194569207, 49.10821753395187], + [-1.133297396135859, 49.108575564392275], + [-1.133003513162977, 49.10856915699793], + [-1.133004271887047, 49.10856984554126], + [-1.133004271887047, 49.10856984554126] + ] + }, + "length": 0.1302124244386434, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40295", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06247", + "bus2": "MVLV03414", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.133004271887047, 49.10856984554126], + [-1.133004271887047, 49.10856984554126], + [-1.133125092295313, 49.10867980424598], + [-1.133099367507921, 49.108710195379], + [-1.133100300898265, 49.10872365970012], + [-1.1330918699037185, 49.10872703870734] + ] + }, + "length": 0.020444027554901663, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43864", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03414", + "bus2": "MVBus06404", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1330918699037185, 49.10872703870734], + [-1.133083438909172, 49.10873041771456], + [-1.133065629860617, 49.10872371180187], + [-1.13308107634035, 49.108697342382285], + [-1.132947040111755, 49.10856546112813], + [-1.132970170905764, 49.108610742012765], + [-1.132970170905764, 49.108610742012765] + ] + }, + "length": 0.027584319044840308, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06404", + "bus2": "MVBus06405", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132970170905764, 49.108610742012765], + [-1.132970170905764, 49.108610742012765], + [-1.132580802709948, 49.10862393087496], + [-1.132086374987822, 49.10859096588674], + [-1.130850374684556, 49.108329633408154], + [-1.130642062379304, 49.10846441433993], + [-1.130642062379304, 49.10846441433993] + ] + }, + "length": 0.1809143110905235, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35920", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06405", + "bus2": "MVBus06406", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130642062379304, 49.10846441433993], + [-1.130642062379304, 49.10846441433993], + [-1.130616409698243, 49.10878929249692], + [-1.130182294487445, 49.1097746536154], + [-1.130263519753087, 49.11003257521372], + [-1.130263519753087, 49.11003257521372] + ] + }, + "length": 0.17954486915604917, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37041", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06406", + "bus2": "MVBus06407", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130263519753087, 49.11003257521372], + [-1.130263519753087, 49.11003257521372], + [-1.130312465623924, 49.11006387794788], + [-1.13054546862156, 49.11073282681292], + [-1.13054546862156, 49.11073282681292] + ] + }, + "length": 0.08130416864677811, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch35919", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06407", + "bus2": "MVBus06408", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.13054546862156, 49.11073282681292], + [-1.13054546862156, 49.11073282681292], + [-1.130301016864691, 49.111072175210424], + [-1.130185204432873, 49.1112467810317], + [-1.130297515701403, 49.11141072038583], + [-1.130312098223946, 49.111434024604876], + [-1.130312098223946, 49.111434024604876] + ] + }, + "length": 0.08571897747858663, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch43433", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus06408", + "bus2": "MVLV07791", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130312098223946, 49.111434024604876], + [-1.130312098223946, 49.111434024604876], + [-1.130415471902968, 49.11141694422943], + [-1.131393878963113, 49.11113548219991], + [-1.131436779641228, 49.11110213828243], + [-1.131550661778249, 49.11106592736453], + [-1.131558498900107, 49.11105839687375], + [-1.131554927270695, 49.111042571615975], + [-1.13156664528313, 49.11103366943692], + [-1.131584623347782, 49.11103534290007], + [-1.131603387466545, 49.111037092511594], + [-1.1316018628211864, 49.11104375646305] + ] + }, + "length": 0.10667568759828626, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37269", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV07791", + "bus2": "MVBus07055", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1316018628211864, 49.11104375646305], + [-1.131600338175828, 49.11105042041451], + [-1.131583011834839, 49.11104886297554], + [-1.131571323397537, 49.111047816676184], + [-1.13156769317976, 49.11105128574849], + [-1.131573134585954, 49.11106822605716], + [-1.131564525334444, 49.11107649846914], + [-1.131449650031959, 49.1111130170085], + [-1.131406489157682, 49.11114656634528], + [-1.130420703499477, 49.111430158051434], + [-1.130323324546056, 49.11145020371014], + [-1.130323324546056, 49.11145020371014] + ] + }, + "length": 0.10587671624338621, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch45493", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus07055", + "bus2": "MVLV09318", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.130323324546056, 49.11145020371014], + [-1.130323324546056, 49.11145020371014], + [-1.130362726892551, 49.11151437802733], + [-1.130033770527538, 49.11160358041416], + [-1.130076738219629, 49.11186424718036], + [-1.130207850471553, 49.1120718304157], + [-1.130351754043072, 49.112109789655726], + [-1.131419086781041, 49.11194455595076], + [-1.131473689174294, 49.11195379333402], + [-1.131494167471122, 49.11195474676352], + [-1.1315118134130806, 49.1119505611383] + ] + }, + "length": 0.18482834408613613, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40293", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09318", + "bus2": "MVLV14712", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1315118134130806, 49.1119505611383], + [-1.131529459355039, 49.111946375513085], + [-1.131535663569615, 49.11194247206738], + [-1.131547056206928, 49.11194013612598], + [-1.133721598931606, 49.11149465846081], + [-1.134802815074063, 49.1114061258013], + [-1.134948273645958, 49.11145270492194], + [-1.134966729276507, 49.11145861830661], + [-1.134965876166687, 49.111460293504116] + ] + }, + "length": 0.2606729615617879, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch34751", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14712", + "bus2": "MVLV14711", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.134965876166687, 49.111460293504116], + [-1.134965023056867, 49.111461968701626], + [-1.13494486180883, 49.11145941468818], + [-1.134790094903241, 49.111439818546195], + [-1.1336814754295, 49.111548078761565], + [-1.133377745064499, 49.11161669055667], + [-1.133421847341906, 49.11167837117484], + [-1.134253686403172, 49.111709908592964], + [-1.134262068868588, 49.11171760734145], + [-1.134274014403656, 49.111728575568506], + [-1.1342700452937602, 49.11173576018305] + ] + }, + "length": 0.18924834087506856, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch40294", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV14711", + "bus2": "MVLV09319", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1342700452937602, 49.11173576018305], + [-1.134266076183864, 49.1117429447976], + [-1.134246206095352, 49.111746345401], + [-1.134241221782386, 49.11174720053551], + [-1.133378837135625, 49.11171027990816], + [-1.133302762125434, 49.11164235811719], + [-1.130338889868551, 49.11220190343956], + [-1.130341862329378, 49.11234269374271], + [-1.130577053980169, 49.113287916239344], + [-1.13066830803145, 49.113972762222275], + [-1.130691143183134, 49.114074355632155], + [-1.132192717813637, 49.11401554368424], + [-1.132198328779046, 49.11400872530224], + [-1.132242052613226, 49.113967019736364], + [-1.132252108039428, 49.113957428203584], + [-1.132262020484745, 49.11396037425162] + ] + }, + "length": 0.6271520819798866, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch47060", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV09319", + "bus2": "MVBus09049", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132262020484745, 49.11396037425162], + [-1.132271932930062, 49.11396332029966], + [-1.13226381870878, 49.11397569772816], + [-1.13224498118458, 49.11399181282946], + [-1.13224498118458, 49.11399181282946] + ] + }, + "length": 0.0037575964027371745, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch38884", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09049", + "bus2": "MVLV13031", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.13224498118458, 49.11399181282946], + [-1.13224498118458, 49.11399181282946], + [-1.132409183922345, 49.11395850470208], + [-1.132549172885966, 49.11395426614106], + [-1.133569941935581, 49.11390306206766], + [-1.134184236873158, 49.113758902834284], + [-1.135354619179537, 49.11348428888239], + [-1.136012425316793, 49.1134081579428], + [-1.136340945566205, 49.113364723651216], + [-1.136404913064509, 49.11343383149391], + [-1.136418270671658, 49.11344825728706], + [-1.1364339543418398, 49.113451177884166] + ] + }, + "length": 0.31998005680489433, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch46278", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13031", + "bus2": "MVBus09523", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1364339543418398, 49.113451177884166], + [-1.136407694678695, 49.113463125939106], + [-1.136393734834821, 49.11344769228215], + [-1.13633295278543, 49.11338051567912], + [-1.136060190493446, 49.11341389509389], + [-1.135355543949287, 49.1134974116172], + [-1.134104358374749, 49.11378882313603], + [-1.133570357384471, 49.113909031175744], + [-1.133025663563272, 49.113942248938095], + [-1.132228909254047, 49.114009322801685], + [-1.132228909254047, 49.114009322801685] + ] + }, + "length": 0.3199311641698213, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch37843", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVBus09523", + "bus2": "MVLV03410", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.132228909254047, 49.114009322801685], + [-1.132228909254047, 49.114009322801685], + [-1.132230174526184, 49.11404238482505], + [-1.130698573388899, 49.114084195842096], + [-1.130628019938902, 49.114134035511405], + [-1.130625650581823, 49.11419802597629], + [-1.130035675768794, 49.1142329648183], + [-1.129839685614512, 49.11439102264389], + [-1.129670193197206, 49.11441865214423], + [-1.129674075512244, 49.1148650475095], + [-1.129530616934719, 49.11485317559845], + [-1.129523031883221, 49.114920923717094], + [-1.126788881145896, 49.11457345506428], + [-1.126709876767994, 49.114419018195164], + [-1.126706531133983, 49.1144057226948], + [-1.1266887804672565, 49.11440224755239] + ] + }, + "length": 0.4996150453081294, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch41241", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV03410", + "bus2": "MVLV17997", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1266887804672565, 49.11440224755239], + [-1.12667102980053, 49.11439877240999], + [-1.126660475054749, 49.11441032962753], + [-1.126645679026762, 49.11441851086582], + [-1.126641665099044, 49.114461763139104], + [-1.126522164301736, 49.114462622555], + [-1.126403207886791, 49.114492598245675], + [-1.126377640700086, 49.11462049790831], + [-1.126456179197633, 49.11464581901107], + [-1.12648252580882, 49.11466660653692], + [-1.12650779203553, 49.11471027054055], + [-1.126511584580985, 49.114757146364234], + [-1.126446472833783, 49.11497069081174], + [-1.126416956456836, 49.1150004253635], + [-1.126396878152652, 49.1151039717789], + [-1.126407901147935, 49.11512957397138], + [-1.126297403234112, 49.1154595211899], + [-1.126283236490153, 49.11547728093473], + [-1.126263392947615, 49.11549089675552], + [-1.126232532272765, 49.115500622133055], + [-1.126200315450574, 49.115503416265874], + [-1.125998833709996, 49.115475284867934], + [-1.125986291554672, 49.115513971966365], + [-1.125985100433518, 49.115517658067425], + [-1.125978403645698, 49.11553831359176], + [-1.125978403645698, 49.11553831359176] + ] + }, + "length": 0.17161761950768745, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "MVBranch39387", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "MVLV13031", + "bus2": "MVBus10661", + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.1364339543418398, 49.113451177884166], + [-1.136475897675167, 49.11344215042633], + [-1.13647164413238, 49.11342415949396], + [-1.136453452026322, 49.11334731909719], + [-1.136559921855146, 49.113334676725174], + [-1.136898760185647, 49.113297372249555], + [-1.137185045594345, 49.11326278879473], + [-1.137367327527038, 49.113229461470354], + [-1.137465692625822, 49.11320451561277], + [-1.137557190110004, 49.11317199804846], + [-1.137638063405154, 49.11313024600273], + [-1.137872121105293, 49.112986107369444], + [-1.138341833630575, 49.11264047078319], + [-1.138463981635524, 49.112563476121196], + [-1.138583961238423, 49.11261612456228], + [-1.138955841557934, 49.112627412726674], + [-1.139537534275386, 49.11266869828361], + [-1.139933414194787, 49.112646987775065], + [-1.140062912495784, 49.112636973991194], + [-1.140196481500532, 49.11261641742565], + [-1.140338908948239, 49.11258622226776], + [-1.140449363478333, 49.11258556684479], + [-1.14052231612736, 49.11259584988783], + [-1.140598296445898, 49.11261466140601], + [-1.140668357532843, 49.112655204160816], + [-1.140866865039198, 49.11282005619467], + [-1.141032490555135, 49.112874190818054], + [-1.141032490555135, 49.112874190818054] + ] + }, + "length": 0.39186115109558195, + "params_id": "S_AL_150", + "ground": "ground" + } + ], + "loads": [ + { + "id": "MVLV17998_production", + "bus": "MVLV17998", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17998_consumption", + "bus": "MVLV17998", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV03412_production", + "bus": "MVLV03412", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03412_consumption", + "bus": "MVLV03412", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV07034_production", + "bus": "MVLV07034", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07034_consumption", + "bus": "MVLV07034", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV01263_production", + "bus": "MVLV01263", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV01263_consumption", + "bus": "MVLV01263", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV03413_production", + "bus": "MVLV03413", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03413_consumption", + "bus": "MVLV03413", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV03414_production", + "bus": "MVLV03414", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03414_consumption", + "bus": "MVLV03414", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV07791_production", + "bus": "MVLV07791", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV07791_consumption", + "bus": "MVLV07791", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV09318_production", + "bus": "MVLV09318", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09318_consumption", + "bus": "MVLV09318", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV14712_production", + "bus": "MVLV14712", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14712_consumption", + "bus": "MVLV14712", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV14711_production", + "bus": "MVLV14711", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV14711_consumption", + "bus": "MVLV14711", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV09319_production", + "bus": "MVLV09319", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV09319_consumption", + "bus": "MVLV09319", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV13031_production", + "bus": "MVLV13031", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV13031_consumption", + "bus": "MVLV13031", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV03410_production", + "bus": "MVLV03410", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV03410_consumption", + "bus": "MVLV03410", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + }, + { + "id": "MVLV17997_production", + "bus": "MVLV17997", + "phases": "abc", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "MVLV17997_consumption", + "bus": "MVLV17997", + "phases": "abc", + "powers": [ + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814], + [60350.37741408989, 19836.209797556814] + ] + } + ], + "sources": [ + { + "id": "VoltageSource", + "bus": "VoltageSource", + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896255, -10000.0], + [-5773.502691896255, 10000.0] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150", + "z_line": [ + [ + [0.19999999999999998, 0.0, 0.0], + [0.0, 0.19999999999999998, 0.0], + [0.0, 0.0, 0.19999999999999998] + ], + [ + [0.1, 0.0, 0.0], + [0.0, 0.1, 0.0], + [0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.00014105751014618172, 0.0, 0.0], + [0.0, 0.00014105751014618172, 0.0], + [0.0, 0.0, 0.00014105751014618172] + ] + ] + } + ], + "transformers_params": [] +} diff --git a/roseau/load_flow/data/transformers/Catalogue.csv b/roseau/load_flow/data/transformers/Catalogue.csv new file mode 100644 index 00000000..e77dff30 --- /dev/null +++ b/roseau/load_flow/data/transformers/Catalogue.csv @@ -0,0 +1,131 @@ +id,manufacturer,range,efficiency,sn,vsc,psc,i0,p0,type,uhv,ulv +FT_Standard_Standard_100kVA,FT,Standard,Standard,100000,0.04,2150,0.025,210,Dyn11,20000,400 +FT_Standard_Standard_160kVA,FT,Standard,Standard,160000,0.04,2350,0.023,460,Dyn11,20000,400 +FT_Standard_Standard_250kVA,FT,Standard,Standard,250000,0.04,3250,0.021,650,Dyn11,20000,400 +FT_Standard_Standard_315kVA,FT,Standard,Standard,315000,0.04,3900,0.02,800,Dyn11,20000,400 +FT_Standard_Standard_400kVA,FT,Standard,Standard,400000,0.04,4600,0.019,930,Dyn11,20000,400 +FT_Standard_Standard_500kVA,FT,Standard,Standard,500000,0.04,5500,0.019,1100,Dyn11,20000,400 +FT_Standard_Standard_630kVA,FT,Standard,Standard,630000,0.04,6500,0.018,1300,Dyn11,20000,400 +FT_Standard_Standard_800kVA,FT,Standard,Standard,800000,0.06,10700,0.025,1220,Dyn11,20000,400 +FT_Standard_Standard_1000kVA,FT,Standard,Standard,1000000,0.06,13000,0.024,1470,Dyn11,20000,400 +FT_Standard_Standard_1250kVA,FT,Standard,Standard,1250000,0.06,16000,0.022,1800,Dyn11,20000,400 +FT_Standard_Standard_1600kVA,FT,Standard,Standard,1600000,0.06,20000,0.02,2300,Dyn11,20000,400 +FT_Standard_Standard_2000kVA,FT,Standard,Standard,2000000,0.06,25500,0.019,2750,Dyn11,20000,400 +FT_Standard_Standard_2500kVA,FT,Standard,Standard,2500000,0.06,32000,0.018,3350,Dyn11,20000,400 +FT_Standard_Standard_3150kVA,FT,Standard,Standard,3150000,0.07,33000,0.017,4380,Dyn11,20000,400 +SE_Minera_A0Ak_50kVA,SE,Minera,A0Ak,50000,0.04,750,0.005,90,Yzn11,20000,400 +SE_Minera_A0Ak_100kVA,SE,Minera,A0Ak,100000,0.04,1250,0.005,145,Dyn11,20000,400 +SE_Minera_A0Ak_160kVA,SE,Minera,A0Ak,160000,0.04,1700,0.005,210,Dyn11,20000,400 +SE_Minera_A0Ak_250kVA,SE,Minera,A0Ak,250000,0.04,2350,0.005,300,Dyn11,20000,400 +SE_Minera_A0Ak_315kVA,SE,Minera,A0Ak,315000,0.04,2800,0.005,360,Dyn11,20000,400 +SE_Minera_A0Ak_400kVA,SE,Minera,A0Ak,400000,0.04,3250,0.005,430,Dyn11,20000,400 +SE_Minera_A0Ak_500kVA,SE,Minera,A0Ak,500000,0.04,3900,0.005,510,Dyn11,20000,400 +SE_Minera_A0Ak_630kVA,SE,Minera,A0Ak,630000,0.04,4600,0.005,600,Dyn11,20000,400 +SE_Minera_A0Ak_800kVA,SE,Minera,A0Ak,800000,0.06,6000,0.005,650,Dyn11,20000,400 +SE_Minera_A0Ak_1000kVA,SE,Minera,A0Ak,1000000,0.06,7600,0.005,770,Dyn11,20000,400 +SE_Minera_A0Ak_1250kVA,SE,Minera,A0Ak,1250000,0.06,9500,0.005,950,Dyn11,20000,400 +SE_Minera_A0Ak_1600kVA,SE,Minera,A0Ak,1600000,0.06,12000,0.005,1200,Dyn11,20000,400 +SE_Minera_A0Ak_2000kVA,SE,Minera,A0Ak,2000000,0.06,15000,0.005,1450,Dyn11,20000,400 +SE_Minera_A0Ak_2500kVA,SE,Minera,A0Ak,2500000,0.06,18500,0.005,1750,Dyn11,20000,400 +SE_Minera_B0Bk_50kVA,SE,Minera,B0Bk,50000,0.04,875,0.01,110,Yzn11,20000,400 +SE_Minera_B0Bk_100kVA,SE,Minera,B0Bk,100000,0.04,1475,0.01,180,Dyn11,20000,400 +SE_Minera_B0Bk_160kVA,SE,Minera,B0Bk,160000,0.04,2000,0.008,260,Dyn11,20000,400 +SE_Minera_B0Bk_250kVA,SE,Minera,B0Bk,250000,0.04,2750,0.008,360,Dyn11,20000,400 +SE_Minera_B0Bk_315kVA,SE,Minera,B0Bk,315000,0.04,3250,0.008,440,Dyn11,20000,400 +SE_Minera_B0Bk_400kVA,SE,Minera,B0Bk,400000,0.04,3850,0.008,520,Dyn11,20000,400 +SE_Minera_B0Bk_500kVA,SE,Minera,B0Bk,500000,0.04,4600,0.008,610,Dyn11,20000,400 +SE_Minera_B0Bk_630kVA,SE,Minera,B0Bk,630000,0.04,5400,0.007,730,Dyn11,20000,400 +SE_Minera_B0Bk_800kVA,SE,Minera,B0Bk,800000,0.06,7000,0.007,800,Dyn11,20000,400 +SE_Minera_B0Bk_1000kVA,SE,Minera,B0Bk,1000000,0.06,9000,0.007,940,Dyn11,20000,400 +SE_Minera_B0Bk_1250kVA,SE,Minera,B0Bk,1250000,0.06,11000,0.007,1150,Dyn11,20000,400 +SE_Minera_B0Bk_1600kVA,SE,Minera,B0Bk,1600000,0.06,14000,0.007,1450,Dyn11,20000,400 +SE_Minera_B0Bk_2000kVA,SE,Minera,B0Bk,2000000,0.06,18000,0.007,1800,Dyn11,20000,400 +SE_Minera_B0Bk_2500kVA,SE,Minera,B0Bk,2500000,0.06,22000,0.007,2150,Dyn11,20000,400 +SE_Minera_C0Bk_50kVA,SE,Minera,C0Bk,50000,0.04,875,0.015,125,Yzn11,20000,400 +SE_Minera_C0Bk_100kVA,SE,Minera,C0Bk,100000,0.04,1475,0.015,210,Dyn11,20000,400 +SE_Minera_C0Bk_160kVA,SE,Minera,C0Bk,160000,0.04,2000,0.014,300,Dyn11,20000,400 +SE_Minera_C0Bk_250kVA,SE,Minera,C0Bk,250000,0.04,2750,0.013,425,Dyn11,20000,400 +SE_Minera_C0Bk_315kVA,SE,Minera,C0Bk,315000,0.04,3250,0.013,520,Dyn11,20000,400 +SE_Minera_C0Bk_400kVA,SE,Minera,C0Bk,400000,0.04,3850,0.012,610,Dyn11,20000,400 +SE_Minera_C0Bk_500kVA,SE,Minera,C0Bk,500000,0.04,4600,0.012,720,Dyn11,20000,400 +SE_Minera_C0Bk_630kVA,SE,Minera,C0Bk,630000,0.04,5400,0.011,860,Dyn11,20000,400 +SE_Minera_C0Bk_800kVA,SE,Minera,C0Bk,800000,0.06,7000,0.011,930,Dyn11,20000,400 +SE_Minera_C0Bk_1000kVA,SE,Minera,C0Bk,1000000,0.06,9000,0.01,1100,Dyn11,20000,400 +SE_Minera_C0Bk_1250kVA,SE,Minera,C0Bk,1250000,0.06,11000,0.01,1350,Dyn11,20000,400 +SE_Minera_C0Bk_1600kVA,SE,Minera,C0Bk,1600000,0.06,14000,0.01,1700,Dyn11,20000,400 +SE_Minera_C0Bk_2000kVA,SE,Minera,C0Bk,2000000,0.06,18000,0.01,2100,Dyn11,20000,400 +SE_Minera_C0Bk_2500kVA,SE,Minera,C0Bk,2500000,0.06,22000,0.01,2500,Dyn11,20000,400 +SE_Minera_Standard_50kVA,SE,Minera,Standard,50000,0.04,1350,0.01,125,Yzn11,20000,400 +SE_Minera_Standard_100kVA,SE,Minera,Standard,100000,0.04,2150,0.01,210,Dyn11,20000,400 +SE_Minera_Standard_160kVA,SE,Minera,Standard,160000,0.04,3100,0.015,375,Dyn11,20000,400 +SE_Minera_Standard_250kVA,SE,Minera,Standard,250000,0.04,3250,0.026,650,Dyn11,20000,400 +SE_Minera_Standard_315kVA,SE,Minera,Standard,315000,0.04,3900,0.025,770,Dyn11,20000,400 +SE_Minera_Standard_400kVA,SE,Minera,Standard,400000,0.04,4600,0.023,930,Dyn11,20000,400 +SE_Minera_Standard_500kVA,SE,Minera,Standard,500000,0.04,5500,0.022,1100,Dyn11,20000,400 +SE_Minera_Standard_630kVA,SE,Minera,Standard,630000,0.04,6500,0.02,1300,Dyn11,20000,400 +SE_Minera_Standard_800kVA,SE,Minera,Standard,800000,0.06,10500,0.016,1150,Dyn11,20000,400 +SE_Minera_Standard_1000kVA,SE,Minera,Standard,1000000,0.06,13000,0.015,1400,Dyn11,20000,400 +SE_Minera_Standard_1250kVA,SE,Minera,Standard,1250000,0.06,16000,0.013,1750,Dyn11,20000,400 +SE_Minera_Standard_1600kVA,SE,Minera,Standard,1600000,0.06,20000,0.011,2200,Dyn11,20000,400 +SE_Minera_Standard_2000kVA,SE,Minera,Standard,2000000,0.06,26000,0.011,2700,Dyn11,20000,400 +SE_Minera_Standard_2500kVA,SE,Minera,Standard,2500000,0.06,32000,0.01,3200,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_160kVA,SE,Trihal,Extra_Reduced_Losses,160000,0.06,2340,0.023,400,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_250kVA,SE,Trihal,Extra_Reduced_Losses,250000,0.06,3060,0.02,520,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_400kVA,SE,Trihal,Extra_Reduced_Losses,400000,0.06,4050,0.015,750,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_630kVA,SE,Trihal,Extra_Reduced_Losses,630000,0.06,6390,0.013,1100,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_800kVA,SE,Trihal,Extra_Reduced_Losses,800000,0.06,7200,0.013,1300,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_1000kVA,SE,Trihal,Extra_Reduced_Losses,1000000,0.06,8100,0.012,1550,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_1250kVA,SE,Trihal,Extra_Reduced_Losses,1250000,0.06,9900,0.012,1800,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_1600kVA,SE,Trihal,Extra_Reduced_Losses,1600000,0.06,11700,0.012,2200,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_2000kVA,SE,Trihal,Extra_Reduced_Losses,2000000,0.06,14400,0.011,2600,Dyn11,20000,400 +SE_Trihal_Extra_Reduced_Losses_2500kVA,SE,Trihal,Extra_Reduced_Losses,2500000,0.06,17100,0.01,3100,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_160kVA,SE,Trihal,Reduced_Losses,160000,0.06,2350,0.023,480,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_250kVA,SE,Trihal,Reduced_Losses,250000,0.06,3300,0.02,650,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_400kVA,SE,Trihal,Reduced_Losses,400000,0.06,4800,0.015,940,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_630kVA,SE,Trihal,Reduced_Losses,630000,0.06,6800,0.013,1250,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_800kVA,SE,Trihal,Reduced_Losses,800000,0.06,8200,0.013,1500,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_1000kVA,SE,Trihal,Reduced_Losses,1000000,0.06,9600,0.012,1800,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_1250kVA,SE,Trihal,Reduced_Losses,1250000,0.06,11400,0.012,2100,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_1600kVA,SE,Trihal,Reduced_Losses,1600000,0.06,14000,0.012,2400,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_2000kVA,SE,Trihal,Reduced_Losses,2000000,0.06,17400,0.011,3000,Dyn11,20000,400 +SE_Trihal_Reduced_Losses_2500kVA,SE,Trihal,Reduced_Losses,2500000,0.06,20000,0.01,3600,Dyn11,20000,400 +SE_Trihal_Standard_160kVA,SE,Trihal,Standard,160000,0.06,2350,0.023,650,Dyn11,20000,400 +SE_Trihal_Standard_250kVA,SE,Trihal,Standard,250000,0.06,3300,0.02,880,Dyn11,20000,400 +SE_Trihal_Standard_400kVA,SE,Trihal,Standard,400000,0.06,4800,0.015,1200,Dyn11,20000,400 +SE_Trihal_Standard_630kVA,SE,Trihal,Standard,630000,0.06,6800,0.013,1650,Dyn11,20000,400 +SE_Trihal_Standard_800kVA,SE,Trihal,Standard,800000,0.06,8200,0.013,2000,Dyn11,20000,400 +SE_Trihal_Standard_1000kVA,SE,Trihal,Standard,1000000,0.06,9600,0.012,2300,Dyn11,20000,400 +SE_Trihal_Standard_1250kVA,SE,Trihal,Standard,1250000,0.06,11400,0.012,2800,Dyn11,20000,400 +SE_Trihal_Standard_1600kVA,SE,Trihal,Standard,1600000,0.06,14000,0.012,3100,Dyn11,20000,400 +SE_Trihal_Standard_2000kVA,SE,Trihal,Standard,2000000,0.06,17400,0.011,4000,Dyn11,20000,400 +SE_Trihal_Standard_2500kVA,SE,Trihal,Standard,2500000,0.06,20000,0.01,5000,Dyn11,20000,400 +SE_Vegeta_C0Bk_50kVA,SE,Vegeta,C0Bk,50000,0.04,875,0.029,125,Dyn11,20000,400 +SE_Vegeta_C0Bk_100kVA,SE,Vegeta,C0Bk,100000,0.04,1475,0.025,210,Dyn11,20000,400 +SE_Vegeta_C0Bk_160kVA,SE,Vegeta,C0Bk,160000,0.04,2000,0.023,300,Dyn11,20000,400 +SE_Vegeta_C0Bk_250kVA,SE,Vegeta,C0Bk,250000,0.04,2750,0.021,425,Dyn11,20000,400 +SE_Vegeta_C0Bk_315kVA,SE,Vegeta,C0Bk,315000,0.04,3250,0.02,520,Dyn11,20000,400 +SE_Vegeta_C0Bk_400kVA,SE,Vegeta,C0Bk,400000,0.04,3850,0.019,610,Dyn11,20000,400 +SE_Vegeta_C0Bk_500kVA,SE,Vegeta,C0Bk,500000,0.04,4600,0.019,720,Dyn11,20000,400 +SE_Vegeta_C0Bk_630kVA,SE,Vegeta,C0Bk,630000,0.04,5400,0.018,860,Dyn11,20000,400 +SE_Vegeta_C0Bk_800kVA,SE,Vegeta,C0Bk,800000,0.06,7000,0.025,930,Dyn11,20000,400 +SE_Vegeta_C0Bk_1000kVA,SE,Vegeta,C0Bk,1000000,0.06,9000,0.024,1100,Dyn11,20000,400 +SE_Vegeta_C0Bk_1250kVA,SE,Vegeta,C0Bk,1250000,0.06,11000,0.022,1350,Dyn11,20000,400 +SE_Vegeta_C0Bk_1600kVA,SE,Vegeta,C0Bk,1600000,0.06,14000,0.02,1700,Dyn11,20000,400 +SE_Vegeta_C0Bk_2000kVA,SE,Vegeta,C0Bk,2000000,0.06,18000,0.019,2100,Dyn11,20000,400 +SE_Vegeta_C0Bk_2500kVA,SE,Vegeta,C0Bk,2500000,0.06,22000,0.018,2500,Dyn11,20000,400 +SE_Vegeta_C0Bk_3150kVA,SE,Vegeta,C0Bk,3150000,0.07,26500,0.018,3000,Dyn11,20000,400 +SE_Vegeta_Standard_50kVA,SE,Vegeta,Standard,50000,0.04,1350,0.029,145,Dyn11,20000,400 +SE_Vegeta_Standard_100kVA,SE,Vegeta,Standard,100000,0.04,2150,0.025,210,Dyn11,20000,400 +SE_Vegeta_Standard_160kVA,SE,Vegeta,Standard,160000,0.04,2350,0.023,460,Dyn11,20000,400 +SE_Vegeta_Standard_250kVA,SE,Vegeta,Standard,250000,0.04,3250,0.021,650,Dyn11,20000,400 +SE_Vegeta_Standard_315kVA,SE,Vegeta,Standard,315000,0.04,3900,0.02,800,Dyn11,20000,400 +SE_Vegeta_Standard_400kVA,SE,Vegeta,Standard,400000,0.04,4600,0.019,930,Dyn11,20000,400 +SE_Vegeta_Standard_500kVA,SE,Vegeta,Standard,500000,0.04,5500,0.019,1100,Dyn11,20000,400 +SE_Vegeta_Standard_630kVA,SE,Vegeta,Standard,630000,0.04,6500,0.018,1300,Dyn11,20000,400 +SE_Vegeta_Standard_800kVA,SE,Vegeta,Standard,800000,0.06,10700,0.025,1220,Dyn11,20000,400 +SE_Vegeta_Standard_1000kVA,SE,Vegeta,Standard,1000000,0.06,13000,0.024,1470,Dyn11,20000,400 +SE_Vegeta_Standard_1250kVA,SE,Vegeta,Standard,1250000,0.06,16000,0.022,1800,Dyn11,20000,400 +SE_Vegeta_Standard_1600kVA,SE,Vegeta,Standard,1600000,0.06,20000,0.02,2300,Dyn11,20000,400 +SE_Vegeta_Standard_2000kVA,SE,Vegeta,Standard,2000000,0.06,25500,0.019,2750,Dyn11,20000,400 +SE_Vegeta_Standard_2500kVA,SE,Vegeta,Standard,2500000,0.06,32000,0.018,3350,Dyn11,20000,400 +SE_Vegeta_Standard_3150kVA,SE,Vegeta,Standard,3150000,0.07,33000,0.018,4200,Dyn11,20000,400 diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/100.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/100.json new file mode 100644 index 00000000..9c3e27cf --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/100.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 210.0, + "psc": 2150.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/1000.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/1000.json new file mode 100644 index 00000000..4b4210d1 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/1000.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.024, + "p0": 1470.0, + "psc": 13000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/1250.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/1250.json new file mode 100644 index 00000000..0aa08880 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/1250.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.022, + "p0": 1800.0, + "psc": 16000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/160.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/160.json new file mode 100644 index 00000000..d6a6e75c --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/160.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/1600.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/1600.json new file mode 100644 index 00000000..1ce2b852 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/1600.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 2300.0, + "psc": 20000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/2000.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/2000.json new file mode 100644 index 00000000..1b166f45 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/2000.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 2750.0, + "psc": 25500.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/250.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/250.json new file mode 100644 index 00000000..2ad8eed3 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/250.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.021, + "p0": 650.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/2500.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/2500.json new file mode 100644 index 00000000..4cddc3f4 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/2500.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 3350.0, + "psc": 32000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/315.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/315.json new file mode 100644 index 00000000..d0764b0c --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/315.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 800.0, + "psc": 3900.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/3150.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/3150.json new file mode 100644 index 00000000..37405fac --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/3150.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_3150kVA", + "sn": 3150000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.017, + "p0": 4380.0, + "psc": 33000.0, + "vsc": 0.07, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/400.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/400.json new file mode 100644 index 00000000..6617d39c --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/400.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 930.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/500.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/500.json new file mode 100644 index 00000000..754acf96 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/500.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 1100.0, + "psc": 5500.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/630.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/630.json new file mode 100644 index 00000000..e27a1f57 --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/630.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 1300.0, + "psc": 6500.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/FT/Standard/Standard/800.json b/roseau/load_flow/data/transformers/FT/Standard/Standard/800.json new file mode 100644 index 00000000..245ad1df --- /dev/null +++ b/roseau/load_flow/data/transformers/FT/Standard/Standard/800.json @@ -0,0 +1,11 @@ +{ + "id": "FT_Standard_Standard_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 1220.0, + "psc": 10700.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/100.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/100.json new file mode 100644 index 00000000..34fa54ab --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/100.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 145.0, + "psc": 1250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1000.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1000.json new file mode 100644 index 00000000..046e3244 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 770.0, + "psc": 7600.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1250.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1250.json new file mode 100644 index 00000000..24126647 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 950.0, + "psc": 9500.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/160.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/160.json new file mode 100644 index 00000000..6dbb8b82 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 210.0, + "psc": 1700.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1600.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1600.json new file mode 100644 index 00000000..6326bc68 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 1200.0, + "psc": 12000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/2000.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/2000.json new file mode 100644 index 00000000..53238954 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 1450.0, + "psc": 15000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/250.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/250.json new file mode 100644 index 00000000..a34d1e20 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 300.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/2500.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/2500.json new file mode 100644 index 00000000..f0f3cbec --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 1750.0, + "psc": 18500.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/315.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/315.json new file mode 100644 index 00000000..b1daf724 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/315.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 360.0, + "psc": 2800.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/400.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/400.json new file mode 100644 index 00000000..419075bf --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 430.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/50.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/50.json new file mode 100644 index 00000000..4edd5b7e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/50.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_50kVA", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 90.0, + "psc": 750.0, + "vsc": 0.04, + "type": "Yzn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/500.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/500.json new file mode 100644 index 00000000..85caef19 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 510.0, + "psc": 3900.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/630.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/630.json new file mode 100644 index 00000000..91e79e9f --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 600.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/A0Ak/800.json b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/800.json new file mode 100644 index 00000000..5619fb87 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/A0Ak/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_A0Ak_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.005, + "p0": 650.0, + "psc": 6000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/100.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/100.json new file mode 100644 index 00000000..fdd3510f --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/100.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 180.0, + "psc": 1475.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1000.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1000.json new file mode 100644 index 00000000..364c9847 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 940.0, + "psc": 9000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1250.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1250.json new file mode 100644 index 00000000..02399404 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 1150.0, + "psc": 11000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/160.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/160.json new file mode 100644 index 00000000..5d47ec67 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.008, + "p0": 260.0, + "psc": 2000.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1600.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1600.json new file mode 100644 index 00000000..2b3f91f4 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 1450.0, + "psc": 14000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/2000.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/2000.json new file mode 100644 index 00000000..b69ff951 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 1800.0, + "psc": 18000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/250.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/250.json new file mode 100644 index 00000000..c7a6beeb --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.008, + "p0": 360.0, + "psc": 2750.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/2500.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/2500.json new file mode 100644 index 00000000..91fa44b7 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 2150.0, + "psc": 22000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/315.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/315.json new file mode 100644 index 00000000..7b171270 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/315.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.008, + "p0": 440.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/400.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/400.json new file mode 100644 index 00000000..96486247 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.008, + "p0": 520.0, + "psc": 3850.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/50.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/50.json new file mode 100644 index 00000000..4103d0d2 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/50.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_50kVA", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 110.0, + "psc": 875.0, + "vsc": 0.04, + "type": "Yzn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/500.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/500.json new file mode 100644 index 00000000..fa2a8acc --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.008, + "p0": 610.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/630.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/630.json new file mode 100644 index 00000000..13c7648b --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 730.0, + "psc": 5400.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/B0Bk/800.json b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/800.json new file mode 100644 index 00000000..a993daf8 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/B0Bk/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_B0Bk_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.007, + "p0": 800.0, + "psc": 7000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/100.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/100.json new file mode 100644 index 00000000..f79befb3 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/100.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 210.0, + "psc": 1475.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1000.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1000.json new file mode 100644 index 00000000..cb4e00cb --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 1100.0, + "psc": 9000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1250.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1250.json new file mode 100644 index 00000000..6b756692 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 1350.0, + "psc": 11000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/160.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/160.json new file mode 100644 index 00000000..09c81b9e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.014, + "p0": 300.0, + "psc": 2000.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1600.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1600.json new file mode 100644 index 00000000..1cfe0689 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 1700.0, + "psc": 14000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/2000.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/2000.json new file mode 100644 index 00000000..4933bafc --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 2100.0, + "psc": 18000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/250.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/250.json new file mode 100644 index 00000000..476910cf --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 425.0, + "psc": 2750.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/2500.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/2500.json new file mode 100644 index 00000000..71060ef7 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 2500.0, + "psc": 22000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/315.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/315.json new file mode 100644 index 00000000..c62c008e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/315.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 520.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/400.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/400.json new file mode 100644 index 00000000..eb892a4f --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 610.0, + "psc": 3850.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/50.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/50.json new file mode 100644 index 00000000..7a97da48 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/50.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_50kVA", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 125.0, + "psc": 875.0, + "vsc": 0.04, + "type": "Yzn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/500.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/500.json new file mode 100644 index 00000000..efd34944 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 720.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/630.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/630.json new file mode 100644 index 00000000..0a684c53 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 860.0, + "psc": 5400.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/C0Bk/800.json b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/800.json new file mode 100644 index 00000000..fa3441a7 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/C0Bk/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_C0Bk_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 930.0, + "psc": 7000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/100.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/100.json new file mode 100644 index 00000000..a33d8c57 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/100.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 210.0, + "psc": 2150.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/1000.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/1000.json new file mode 100644 index 00000000..e786b12c --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 1400.0, + "psc": 13000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/1250.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/1250.json new file mode 100644 index 00000000..0eab0219 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 1750.0, + "psc": 16000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/160.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/160.json new file mode 100644 index 00000000..4b82c8b4 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 375.0, + "psc": 3100.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/1600.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/1600.json new file mode 100644 index 00000000..d1299caa --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 2200.0, + "psc": 20000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/2000.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/2000.json new file mode 100644 index 00000000..518143bc --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 2700.0, + "psc": 26000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/250.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/250.json new file mode 100644 index 00000000..0289de8e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.026, + "p0": 650.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/2500.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/2500.json new file mode 100644 index 00000000..37229a84 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 3200.0, + "psc": 32000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/315.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/315.json new file mode 100644 index 00000000..af7681f2 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/315.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 770.0, + "psc": 3900.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/400.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/400.json new file mode 100644 index 00000000..ea1c1cbe --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 930.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/50.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/50.json new file mode 100644 index 00000000..d6b31e8f --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/50.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_50kVA", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 125.0, + "psc": 1350.0, + "vsc": 0.04, + "type": "Yzn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/500.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/500.json new file mode 100644 index 00000000..4a143474 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.022, + "p0": 1100.0, + "psc": 5500.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/630.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/630.json new file mode 100644 index 00000000..e28232ec --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 1300.0, + "psc": 6500.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Minera/Standard/800.json b/roseau/load_flow/data/transformers/SE/Minera/Standard/800.json new file mode 100644 index 00000000..0ef61d72 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Minera/Standard/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Minera_Standard_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.016, + "p0": 1150.0, + "psc": 10500.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1000.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1000.json new file mode 100644 index 00000000..49112ca9 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 1550.0, + "psc": 8100.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1250.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1250.json new file mode 100644 index 00000000..134d9d45 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 1800.0, + "psc": 9900.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/160.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/160.json new file mode 100644 index 00000000..4c4d6505 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 400.0, + "psc": 2340.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1600.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1600.json new file mode 100644 index 00000000..a6090fe2 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 2200.0, + "psc": 11700.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/2000.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/2000.json new file mode 100644 index 00000000..a9132b39 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 2600.0, + "psc": 14400.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/250.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/250.json new file mode 100644 index 00000000..4f1705cc --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 520.0, + "psc": 3060.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/2500.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/2500.json new file mode 100644 index 00000000..312255e2 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 3100.0, + "psc": 17100.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/400.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/400.json new file mode 100644 index 00000000..68e822b1 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 750.0, + "psc": 4050.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/630.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/630.json new file mode 100644 index 00000000..1caf4be5 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 1100.0, + "psc": 6390.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/800.json b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/800.json new file mode 100644 index 00000000..5b37ca52 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Extra_Reduced_Losses/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Extra_Reduced_Losses_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 1300.0, + "psc": 7200.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1000.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1000.json new file mode 100644 index 00000000..a454c357 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 1800.0, + "psc": 9600.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1250.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1250.json new file mode 100644 index 00000000..1add081b --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 2100.0, + "psc": 11400.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/160.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/160.json new file mode 100644 index 00000000..4fb53133 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 480.0, + "psc": 2350.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1600.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1600.json new file mode 100644 index 00000000..f0195cde --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 2400.0, + "psc": 14000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/2000.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/2000.json new file mode 100644 index 00000000..4a22dcac --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 3000.0, + "psc": 17400.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/250.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/250.json new file mode 100644 index 00000000..b29467dd --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 650.0, + "psc": 3300.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/2500.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/2500.json new file mode 100644 index 00000000..4bef6092 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 3600.0, + "psc": 20000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/400.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/400.json new file mode 100644 index 00000000..3a757d98 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 940.0, + "psc": 4800.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/630.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/630.json new file mode 100644 index 00000000..75fce793 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 1250.0, + "psc": 6800.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/800.json b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/800.json new file mode 100644 index 00000000..b4636942 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Reduced_Losses/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Reduced_Losses_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 1500.0, + "psc": 8200.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/1000.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/1000.json new file mode 100644 index 00000000..1de1ffe4 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 2300.0, + "psc": 9600.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/1250.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/1250.json new file mode 100644 index 00000000..ac2dd7f7 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 2800.0, + "psc": 11400.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/160.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/160.json new file mode 100644 index 00000000..9b992d3e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 650.0, + "psc": 2350.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/1600.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/1600.json new file mode 100644 index 00000000..ff42d0da --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.012, + "p0": 3100.0, + "psc": 14000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/2000.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/2000.json new file mode 100644 index 00000000..8d157c6b --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.011, + "p0": 4000.0, + "psc": 17400.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/250.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/250.json new file mode 100644 index 00000000..3ebc96e4 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 880.0, + "psc": 3300.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/2500.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/2500.json new file mode 100644 index 00000000..94ac15d8 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.01, + "p0": 5000.0, + "psc": 20000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/400.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/400.json new file mode 100644 index 00000000..9294de02 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.015, + "p0": 1200.0, + "psc": 4800.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/630.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/630.json new file mode 100644 index 00000000..62a53d50 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 1650.0, + "psc": 6800.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Trihal/Standard/800.json b/roseau/load_flow/data/transformers/SE/Trihal/Standard/800.json new file mode 100644 index 00000000..74a0fe17 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Trihal/Standard/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Trihal_Standard_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.013, + "p0": 2000.0, + "psc": 8200.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/100.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/100.json new file mode 100644 index 00000000..0e5dc235 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/100.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 210.0, + "psc": 1475.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1000.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1000.json new file mode 100644 index 00000000..af733dc1 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.024, + "p0": 1100.0, + "psc": 9000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1250.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1250.json new file mode 100644 index 00000000..8b3e13ad --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.022, + "p0": 1350.0, + "psc": 11000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/160.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/160.json new file mode 100644 index 00000000..3fe74927 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 300.0, + "psc": 2000.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1600.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1600.json new file mode 100644 index 00000000..8631ce14 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 1700.0, + "psc": 14000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/2000.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/2000.json new file mode 100644 index 00000000..bb0195bb --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 2100.0, + "psc": 18000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/250.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/250.json new file mode 100644 index 00000000..7297b22c --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.021, + "p0": 425.0, + "psc": 2750.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/2500.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/2500.json new file mode 100644 index 00000000..5e722add --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 2500.0, + "psc": 22000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/315.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/315.json new file mode 100644 index 00000000..97e292bb --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/315.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 520.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/3150.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/3150.json new file mode 100644 index 00000000..7de8150e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/3150.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_3150kVA", + "sn": 3150000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 3000.0, + "psc": 26500.0, + "vsc": 0.07, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/400.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/400.json new file mode 100644 index 00000000..6095fce2 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 610.0, + "psc": 3850.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/50.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/50.json new file mode 100644 index 00000000..c2956f87 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/50.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_50kVA", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.029, + "p0": 125.0, + "psc": 875.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/500.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/500.json new file mode 100644 index 00000000..d559a097 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 720.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/630.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/630.json new file mode 100644 index 00000000..5fcb746f --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 860.0, + "psc": 5400.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/800.json b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/800.json new file mode 100644 index 00000000..78486d7e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/C0Bk/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_C0Bk_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 930.0, + "psc": 7000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/100.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/100.json new file mode 100644 index 00000000..646d6e42 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/100.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 210.0, + "psc": 2150.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1000.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1000.json new file mode 100644 index 00000000..917eccce --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_1000kVA", + "sn": 1000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.024, + "p0": 1470.0, + "psc": 13000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1250.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1250.json new file mode 100644 index 00000000..5136ea74 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_1250kVA", + "sn": 1250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.022, + "p0": 1800.0, + "psc": 16000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/160.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/160.json new file mode 100644 index 00000000..e673c723 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/160.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1600.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1600.json new file mode 100644 index 00000000..5441d3bf --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/1600.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_1600kVA", + "sn": 1600000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 2300.0, + "psc": 20000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/2000.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/2000.json new file mode 100644 index 00000000..9e41cb18 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/2000.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_2000kVA", + "sn": 2000000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 2750.0, + "psc": 25500.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/250.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/250.json new file mode 100644 index 00000000..e7a1bf8d --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/250.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_250kVA", + "sn": 250000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.021, + "p0": 650.0, + "psc": 3250.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/2500.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/2500.json new file mode 100644 index 00000000..1104c65c --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/2500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_2500kVA", + "sn": 2500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 3350.0, + "psc": 32000.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/315.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/315.json new file mode 100644 index 00000000..28a7ece1 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/315.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_315kVA", + "sn": 315000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.02, + "p0": 800.0, + "psc": 3900.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/3150.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/3150.json new file mode 100644 index 00000000..fa9121f1 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/3150.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_3150kVA", + "sn": 3150000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 4200.0, + "psc": 33000.0, + "vsc": 0.07, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/400.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/400.json new file mode 100644 index 00000000..6fc9d5b7 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/400.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 930.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/50.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/50.json new file mode 100644 index 00000000..339012ec --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/50.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_50kVA", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.029, + "p0": 145.0, + "psc": 1350.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/500.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/500.json new file mode 100644 index 00000000..d84a6a24 --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/500.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_500kVA", + "sn": 500000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 1100.0, + "psc": 5500.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/630.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/630.json new file mode 100644 index 00000000..1a5c38ca --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/630.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018, + "p0": 1300.0, + "psc": 6500.0, + "vsc": 0.04, + "type": "Dyn11" +} diff --git a/roseau/load_flow/data/transformers/SE/Vegeta/Standard/800.json b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/800.json new file mode 100644 index 00000000..11a0f84e --- /dev/null +++ b/roseau/load_flow/data/transformers/SE/Vegeta/Standard/800.json @@ -0,0 +1,11 @@ +{ + "id": "SE_Vegeta_Standard_800kVA", + "sn": 800000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 1220.0, + "psc": 10700.0, + "vsc": 0.06, + "type": "Dyn11" +} diff --git a/roseau/load_flow/exceptions.py b/roseau/load_flow/exceptions.py index b245ac1c..f843e31c 100644 --- a/roseau/load_flow/exceptions.py +++ b/roseau/load_flow/exceptions.py @@ -25,6 +25,7 @@ class RoseauLoadFlowExceptionCode(Enum): BAD_BUS_TYPE = auto() BAD_POTENTIALS_SIZE = auto() BAD_VOLTAGES_SIZE = auto() + BAD_SHORT_CIRCUIT = auto() # Branches BAD_BRANCH_ID = auto() @@ -34,7 +35,7 @@ class RoseauLoadFlowExceptionCode(Enum): BAD_LINE_MODEL = auto() BAD_LINE_TYPE = auto() BAD_CONDUCTOR_TYPE = auto() - BAD_INSULATION_TYPE = auto() + BAD_INSULATOR_TYPE = auto() BAD_Z_LINE_VALUE = auto() BAD_Y_SHUNT_VALUE = auto() BAD_TRANSFORMER_WINDINGS = auto() @@ -84,6 +85,7 @@ class RoseauLoadFlowExceptionCode(Enum): LOAD_FLOW_NOT_RUN = auto() SEVERAL_NETWORKS = auto() TOO_MANY_BUSES = auto() + BAD_JACOBIAN = auto() # Solver BAD_SOLVER_NAME = auto() @@ -100,6 +102,11 @@ class RoseauLoadFlowExceptionCode(Enum): JSON_PREF_INVALID = auto() JSON_NO_RESULTS = auto() + # Catalogue Mixin + CATALOGUE_MISSING = auto() + CATALOGUE_NOT_FOUND = auto() + CATALOGUE_SEVERAL_FOUND = auto() + @classmethod def package_name(cls) -> str: return "roseau.load_flow" diff --git a/roseau/load_flow/io/dgs.py b/roseau/load_flow/io/dgs.py index b5f2283b..873e4a64 100644 --- a/roseau/load_flow/io/dgs.py +++ b/roseau/load_flow/io/dgs.py @@ -1,5 +1,6 @@ import json import logging +from typing import TYPE_CHECKING import numpy as np import pandas as pd @@ -10,24 +11,23 @@ AbstractLoad, Bus, Ground, - Line, LineParameters, PotentialRef, - PowerLoad, - Switch, - Transformer, TransformerParameters, VoltageSource, ) from roseau.load_flow.typing import StrPath from roseau.load_flow.units import Q_ -from roseau.load_flow.utils import LineModel + +if TYPE_CHECKING: + from roseau.load_flow.network import ElectricalNetwork logger = logging.getLogger(__name__) def network_from_dgs( # noqa: C901 filename: StrPath, + en_class: type["ElectricalNetwork"], ) -> tuple[ dict[str, Bus], dict[str, AbstractBranch], @@ -61,8 +61,8 @@ def network_from_dgs( # noqa: C901 ) = _read_dgs_json_file(filename=filename) # Ground and potential reference - ground = Ground("ground") - p_ref = PotentialRef("pref", element=ground) + ground = en_class._ground_class("ground") + p_ref = en_class._pref_class("pref", element=ground) grounds = {ground.id: ground} potential_refs = {p_ref.id: p_ref} @@ -79,7 +79,7 @@ def network_from_dgs( # noqa: C901 msg = f"The Ph tech {ph_tech!r} for bus {bus_id!r} cannot be handled." logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DGS_BAD_PHASE_TECHNOLOGY) - buses[bus_id] = Bus(id=bus_id, phases=phases) + buses[bus_id] = en_class._bus_class(id=bus_id, phases=phases) # Sources sources: dict[str, VoltageSource] = {} @@ -91,23 +91,25 @@ def network_from_dgs( # noqa: C901 voltages = [un * tap, un * np.exp(-np.pi * 2 / 3 * 1j) * tap, un * np.exp(np.pi * 2 / 3 * 1j) * tap] source_bus = buses[bus_id] - sources[source_id] = VoltageSource(id=source_id, phases="abcn", bus=source_bus, voltages=voltages) + sources[source_id] = en_class._voltage_source_class( + id=source_id, phases="abcn", bus=source_bus, voltages=voltages + ) source_bus._connect(ground) # LV loads loads: dict[str, AbstractLoad] = {} if elm_lod_lv is not None: - _generate_loads(elm_lod_lv, loads, buses, sta_cubic, 1e3, production=False) + _generate_loads(en_class, elm_lod_lv, loads, buses, sta_cubic, 1e3, production=False) # LV Production loads if elm_pv_sys is not None: - _generate_loads(elm_pv_sys, loads, buses, sta_cubic, 1e3, production=True) + _generate_loads(en_class, elm_pv_sys, loads, buses, sta_cubic, 1e3, production=True) if elm_gen_stat is not None: - _generate_loads(elm_gen_stat, loads, buses, sta_cubic, 1e3, production=True) + _generate_loads(en_class, elm_gen_stat, loads, buses, sta_cubic, 1e3, production=True) # MV loads if elm_lod_mv is not None: - _generate_loads(elm_lod_mv, loads, buses, sta_cubic, 1e6, production=False) + _generate_loads(en_class, elm_lod_mv, loads, buses, sta_cubic, 1e6, production=False) # Lines branches: dict[str, AbstractBranch] = {} @@ -116,19 +118,14 @@ def network_from_dgs( # noqa: C901 for type_id in typ_lne.index: # TODO: use the detailed phase information instead of n n = typ_lne.at[type_id, "nlnph"] + typ_lne.at[type_id, "nneutral"] - if n == 4: - line_model = LineModel.SYM_NEUTRAL - elif n == 3: - line_model = LineModel.SYM - else: + if n not in (3, 4): msg = f"The number of phases ({n}) of line type {type_id!r} cannot be handled, it should be 3 or 4." logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DGS_BAD_PHASE_NUMBER) - lines_params_dict[type_id] = LineParameters.from_sym( + lp = LineParameters.from_sym( type_id, z0=complex(typ_lne.at[type_id, "rline0"], typ_lne.at[type_id, "xline0"]), - model=line_model, z1=complex(typ_lne.at[type_id, "rline"], typ_lne.at[type_id, "xline"]), y0=Q_(complex(typ_lne.at[type_id, "gline0"], typ_lne.at[type_id, "bline0"]), "uS/km"), y1=Q_(complex(typ_lne.at[type_id, "gline"], typ_lne.at[type_id, "bline"]), "uS/km"), @@ -138,10 +135,31 @@ def network_from_dgs( # noqa: C901 bpn=Q_(typ_lne.at[type_id, "bpnline"], "uS/km"), ) + actual_shape = lp.z_line.shape[0] + if actual_shape > n: # 4x4 matrix while a 3x3 matrix was expected + # Extract the 3x3 underlying matrix + lp = LineParameters( + id=lp.id, + z_line=lp.z_line[:actual_shape, :actual_shape], + y_shunt=lp.y_shunt[:actual_shape, :actual_shape] if lp.with_shunt else None, + ) + elif actual_shape == n: + # Everything ok + pass + else: + # Something unexpected happened + msg = ( + f"A {n}x{n} impedance matrix was expected for the line type {type_id!r} but a " + f"{actual_shape}x{actual_shape} matrix was generated." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DGS_BAD_PHASE_NUMBER) + lines_params_dict[type_id] = lp + for line_id in elm_lne.index: type_id = elm_lne.at[line_id, "typ_id"] # id of the line type lp = lines_params_dict[type_id] - branches[line_id] = Line( + branches[line_id] = en_class._line_class( id=line_id, bus1=buses[sta_cubic.at[elm_lne.at[line_id, "bus1"], "cterm"]], bus2=buses[sta_cubic.at[elm_lne.at[line_id, "bus2"], "cterm"]], @@ -163,14 +181,14 @@ def network_from_dgs( # noqa: C901 ulv = Q_(typ_tr.at[idx, "utrn_l"], "kV") # Phase-to-phase nominal voltages of the low voltages side (kV) i0 = Q_(typ_tr.at[idx, "curmg"] / 3, "percent") # Current during off-load test (%) p0 = Q_(typ_tr.at[idx, "pfe"] / 3, "kW") # Losses during off-load test (kW) - psc = Q_(typ_tr.at[idx, "pcutr"], "kW") # Losses during short circuit test (kW) - vsc = Q_(typ_tr.at[idx, "uktr"], "percent") # Voltages on LV side during short circuit test (%) + psc = Q_(typ_tr.at[idx, "pcutr"], "kW") # Losses during short-circuit test (kW) + vsc = Q_(typ_tr.at[idx, "uktr"], "percent") # Voltages on LV side during short-circuit test (%) # Windings of the transformer windings = f"{typ_tr.at[idx, 'tr2cn_h']}{typ_tr.at[idx, 'tr2cn_l']}{typ_tr.at[idx, 'nt2ag']}" # Generate transformer parameters transformers_params_dict[idx] = TransformerParameters( - id=name, windings=windings, uhv=uhv, ulv=ulv, sn=sn, p0=p0, i0=i0, psc=psc, vsc=vsc + id=name, type=windings, uhv=uhv, ulv=ulv, sn=sn, p0=p0, i0=i0, psc=psc, vsc=vsc ) transformers_tap[idx] = typ_tr.at[idx, "dutap"] @@ -178,7 +196,7 @@ def network_from_dgs( # noqa: C901 for idx in elm_tr.index: type_id = elm_tr.at[idx, "typ_id"] # id of the line type tap = 1.0 + elm_tr.at[idx, "nntap"] * transformers_tap[type_id] / 100 - branches[idx] = Transformer( + branches[idx] = en_class._transformer_class( id=idx, bus1=buses[sta_cubic.at[elm_tr.at[idx, "bushv"], "cterm"]], bus2=buses[sta_cubic.at[elm_tr.at[idx, "buslv"], "cterm"]], @@ -192,7 +210,7 @@ def network_from_dgs( # noqa: C901 for switch_id in elm_coup.index: # TODO: use the detailed phase information instead of n n = elm_coup.at[switch_id, "nphase"] + elm_coup.at[switch_id, "nneutral"] - branches[switch_id] = Switch( + branches[switch_id] = en_class._switch_class( id=switch_id, phases="abc" if n == 3 else "abcn", bus1=buses[sta_cubic.at[elm_coup.at[switch_id, "bus1"], "cterm"]], @@ -235,37 +253,37 @@ def _read_dgs_json_file(filename: StrPath): sta_cubic = pd.DataFrame(columns=data["StaCubic"]["Attributes"], data=data["StaCubic"]["Values"]).set_index("FID") # Transformers - if "ElmTr2" in data.keys(): + if "ElmTr2" in data: elm_tr = pd.DataFrame(columns=data["ElmTr2"]["Attributes"], data=data["ElmTr2"]["Values"]).set_index("FID") else: elm_tr = None # Transformer types - if "TypTr2" in data.keys(): + if "TypTr2" in data: typ_tr = pd.DataFrame(columns=data["TypTr2"]["Attributes"], data=data["TypTr2"]["Values"]).set_index("FID") else: typ_tr = None # Switch - if "ElmCoup" in data.keys(): + if "ElmCoup" in data: elm_coup = pd.DataFrame(columns=data["ElmCoup"]["Attributes"], data=data["ElmCoup"]["Values"]).set_index("FID") else: elm_coup = None # Lines - if "ElmLne" in data.keys(): + if "ElmLne" in data: elm_lne = pd.DataFrame(columns=data["ElmLne"]["Attributes"], data=data["ElmLne"]["Values"]).set_index("FID") else: elm_lne = None # Line types - if "TypLne" in data.keys(): + if "TypLne" in data: typ_lne = pd.DataFrame(columns=data["TypLne"]["Attributes"], data=data["TypLne"]["Values"]).set_index("FID") else: typ_lne = None # LV loads - if "ElmLodLV" in data.keys(): + if "ElmLodLV" in data: elm_lod_lv = pd.DataFrame(columns=data["ElmLodLV"]["Attributes"], data=data["ElmLodLV"]["Values"]).set_index( "FID" ) @@ -273,7 +291,7 @@ def _read_dgs_json_file(filename: StrPath): elm_lod_lv = None # MV loads - if "ElmLodmv" in data.keys(): + if "ElmLodmv" in data: elm_lod_mv = pd.DataFrame(columns=data["ElmLodmv"]["Attributes"], data=data["ElmLodmv"]["Values"]).set_index( "FID" ) @@ -281,7 +299,7 @@ def _read_dgs_json_file(filename: StrPath): elm_lod_mv = None # Generators - if "ElmGenStat" in data.keys(): + if "ElmGenStat" in data: elm_gen_stat = pd.DataFrame( columns=data["ElmGenStat"]["Attributes"], data=data["ElmGenStat"]["Values"] ).set_index("FID") @@ -290,7 +308,7 @@ def _read_dgs_json_file(filename: StrPath): # LV generators # Generators - if "ElmPvsys" in data.keys(): + if "ElmPvsys" in data: elm_pv_sys = pd.DataFrame(columns=data["ElmPvsys"]["Attributes"], data=data["ElmPvsys"]["Values"]).set_index( "FID" ) @@ -314,6 +332,7 @@ def _read_dgs_json_file(filename: StrPath): def _generate_loads( + en_class: type["ElectricalNetwork"], elm_lod: pd.DataFrame, loads: dict[str, AbstractLoad], buses: dict[str, Bus], @@ -355,11 +374,9 @@ def _generate_loads( sb = _compute_load_power(elm_lod, load_id, "s") * factor sc = _compute_load_power(elm_lod, load_id, "t") * factor - if sa == 0 and sb == 0 and sc == 0: # Balanced - s = [s_phase / 3, s_phase / 3, s_phase / 3] - else: # Unbalanced - s = [sa, sb, sc] - loads[load_id] = PowerLoad(id=load_id, phases="abcn", bus=buses[bus_id], powers=s) + # Balanced or Unbalanced + s = [s_phase / 3, s_phase / 3, s_phase / 3] if sa == 0 and sb == 0 and sc == 0 else [sa, sb, sc] + loads[load_id] = en_class._load_class._power_load_class(id=load_id, phases="abcn", bus=buses[bus_id], powers=s) def _compute_load_power(elm_lod: pd.DataFrame, load_id: str, suffix: str) -> complex: diff --git a/roseau/load_flow/io/dict.py b/roseau/load_flow/io/dict.py index a2da7ea7..e1b481d3 100644 --- a/roseau/load_flow/io/dict.py +++ b/roseau/load_flow/io/dict.py @@ -15,7 +15,6 @@ VoltageSource, ) from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.utils import TransformerType if TYPE_CHECKING: from roseau.load_flow.network import ElectricalNetwork @@ -64,16 +63,16 @@ def network_from_dict( transformers_params = {tp["id"]: TransformerParameters.from_dict(tp) for tp in data["transformers_params"]} # Buses, loads and sources - buses = {bd["id"]: en_class.bus_class.from_dict(bd) for bd in data["buses"]} - loads = {ld["id"]: en_class.load_class.from_dict(ld | {"bus": buses[ld["bus"]]}) for ld in data["loads"]} + buses = {bd["id"]: en_class._bus_class.from_dict(bd) for bd in data["buses"]} + loads = {ld["id"]: en_class._load_class.from_dict(ld | {"bus": buses[ld["bus"]]}) for ld in data["loads"]} sources = { - sd["id"]: en_class.voltage_source_class.from_dict(sd | {"bus": buses[sd["bus"]]}) for sd in data["sources"] + sd["id"]: en_class._voltage_source_class.from_dict(sd | {"bus": buses[sd["bus"]]}) for sd in data["sources"] } # Grounds and potential refs grounds: dict[Id, Ground] = {} for ground_data in data["grounds"]: - ground = en_class.ground_class(ground_data["id"]) + ground = en_class._ground_class(ground_data["id"]) for ground_bus in ground_data["buses"]: ground.connect(buses[ground_bus["id"]], ground_bus["phase"]) grounds[ground_data["id"]] = ground @@ -87,7 +86,7 @@ def network_from_dict( msg = f"Potential reference data {pref_data['id']} missing bus or ground." logger.error(msg) raise RoseauLoadFlowException(msg, RoseauLoadFlowExceptionCode.JSON_PREF_INVALID) - potential_refs[pref_data["id"]] = en_class.pref_class( + potential_refs[pref_data["id"]] = en_class._pref_class( pref_data["id"], element=bus_or_ground, phase=pref_data.get("phases") ) @@ -106,31 +105,43 @@ def network_from_dict( lp = lines_params[branch_data["params_id"]] gid = branch_data.get("ground") ground = grounds[gid] if gid is not None else None - branches_dict[id] = en_class.line_class( + branches_dict[id] = en_class._line_class( id, bus1, bus2, parameters=lp, phases=phases1, length=length, ground=ground, geometry=geometry ) elif branch_data["type"] == "transformer": tp = transformers_params[branch_data["params_id"]] - branches_dict[id] = en_class.transformer_class( + branches_dict[id] = en_class._transformer_class( id, bus1, bus2, parameters=tp, phases1=phases1, phases2=phases2, geometry=geometry ) elif branch_data["type"] == "switch": assert phases1 == phases2 - branches_dict[id] = en_class.switch_class(id, bus1, bus2, phases=phases1, geometry=geometry) + branches_dict[id] = en_class._switch_class(id, bus1, bus2, phases=phases1, geometry=geometry) else: msg = f"Unknown branch type for branch {id}: {branch_data['type']}" logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_BRANCH_TYPE) + + # Short-circuits + short_circuits = data.get("short_circuits") + if short_circuits is not None: + for sc in short_circuits: + ground_id = sc["short_circuit"]["ground"] + ground = grounds[ground_id] if ground_id is not None else None + buses[sc["bus_id"]].add_short_circuit(*sc["short_circuit"]["phases"], ground=ground) + return buses, branches_dict, loads, sources, grounds, potential_refs -def network_to_dict(en: "ElectricalNetwork") -> JsonDict: +def network_to_dict(en: "ElectricalNetwork", include_geometry: bool) -> JsonDict: """Return a dictionary of the current network data. Args: en: The electrical network. + include_geometry: + If False, the geometry will not be added to the network dictionary. + Returns: The created dictionary. """ @@ -142,8 +153,9 @@ def network_to_dict(en: "ElectricalNetwork") -> JsonDict: buses: list[JsonDict] = [] loads: list[JsonDict] = [] sources: list[JsonDict] = [] + short_circuits: list[JsonDict] = [] for bus in en.buses.values(): - buses.append(bus.to_dict()) + buses.append(bus.to_dict(include_geometry=include_geometry)) for element in bus._connected_elements: if isinstance(element, AbstractLoad): assert element.bus is bus @@ -151,13 +163,15 @@ def network_to_dict(en: "ElectricalNetwork") -> JsonDict: elif isinstance(element, VoltageSource): assert element.bus is bus sources.append(element.to_dict()) + for sc in bus.short_circuits: + short_circuits.append({"bus_id": bus.id, "short_circuit": sc}) # Export the branches with their parameters branches: list[JsonDict] = [] lines_params_dict: dict[Id, LineParameters] = {} transformers_params_dict: dict[Id, TransformerParameters] = {} for branch in en.branches.values(): - branches.append(branch.to_dict()) + branches.append(branch.to_dict(include_geometry=include_geometry)) if isinstance(branch, Line): params_id = branch.parameters.id if params_id in lines_params_dict and branch.parameters != lines_params_dict[params_id]: @@ -187,7 +201,7 @@ def network_to_dict(en: "ElectricalNetwork") -> JsonDict: transformer_params.append(tp.to_dict()) transformer_params.sort(key=lambda x: x["id"]) # Always keep the same order - return { + res = { "version": NETWORK_JSON_VERSION, "grounds": grounds, "potential_refs": potential_refs, @@ -198,6 +212,9 @@ def network_to_dict(en: "ElectricalNetwork") -> JsonDict: "lines_params": line_params, "transformers_params": transformer_params, } + if short_circuits: + res["short_circuits"] = short_circuits + return res def v0_to_v1_converter(data: JsonDict) -> JsonDict: # noqa: C901 @@ -332,7 +349,7 @@ def v0_to_v1_converter(data: JsonDict) -> JsonDict: # noqa: C901 branch["tap"] = old_branch["tap"] branch["type"] = branch_type # Transformers have no phases information, we need to infer it from the windings - w1, w2, _ = TransformerType.extract_windings(transformers_params[params_id]["type"]) + w1, w2, _ = TransformerParameters.extract_windings(transformers_params[params_id]["type"]) phases1 = "abcn" if ("y" in w1.lower() or "z" in w1.lower()) else "abc" phases2 = "abcn" if ("y" in w2.lower() or "z" in w2.lower()) else "abc" # Determine the "special element" connected to bus2 of the transformer diff --git a/roseau/load_flow/io/tests/test_dict.py b/roseau/load_flow/io/tests/test_dict.py index 11c454e1..cc9a1057 100644 --- a/roseau/load_flow/io/tests/test_dict.py +++ b/roseau/load_flow/io/tests/test_dict.py @@ -1,6 +1,6 @@ import numpy as np import pytest -from shapely import Point +from shapely import LineString, Point from roseau.load_flow import Line from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode @@ -23,8 +23,8 @@ def test_to_dict(): ground = Ground("ground") vn = 400 / np.sqrt(3) voltages = [vn, vn * np.exp(-2 / 3 * np.pi * 1j), vn * np.exp(2 / 3 * np.pi * 1j)] - source_bus = Bus(id="source", phases="abcn") - load_bus = Bus(id="load bus", phases="abcn") + source_bus = Bus(id="source", phases="abcn", geometry=Point(0.0, 0.0)) + load_bus = Bus(id="load bus", phases="abcn", geometry=Point(0.0, 1.0)) ground.connect(load_bus) p_ref = PotentialRef("pref", element=ground) vs = VoltageSource("vs", source_bus, phases="abcn", voltages=voltages) @@ -33,8 +33,9 @@ def test_to_dict(): lp1 = LineParameters("test", z_line=np.eye(4, dtype=complex), y_shunt=np.eye(4, dtype=complex)) lp2 = LineParameters("test", z_line=np.eye(4, dtype=complex), y_shunt=np.eye(4, dtype=complex) * 1.1) - line1 = Line("line1", source_bus, load_bus, phases="abcn", ground=ground, parameters=lp1, length=10) - line2 = Line("line2", source_bus, load_bus, phases="abcn", ground=ground, parameters=lp2, length=10) + geom = LineString([(0.0, 0.0), (0.0, 1.0)]) + line1 = Line("line1", source_bus, load_bus, phases="abcn", ground=ground, parameters=lp1, length=10, geometry=geom) + line2 = Line("line2", source_bus, load_bus, phases="abcn", ground=ground, parameters=lp2, length=10, geometry=geom) en = ElectricalNetwork( buses=[source_bus, load_bus], branches=[line1, line2], @@ -51,14 +52,25 @@ def test_to_dict(): # Same id, same line parameters -> ok lp2 = LineParameters("test", z_line=np.eye(4, dtype=complex), y_shunt=np.eye(4, dtype=complex)) line2.parameters = lp2 - en.to_dict() + res = en.to_dict() + assert "geometry" in res["buses"][0] + assert "geometry" in res["buses"][1] + assert "geometry" in res["branches"][0] + assert "geometry" in res["branches"][1] + + res = en.to_dict(include_geometry=False) + assert "geometry" not in res["buses"][0] + assert "geometry" not in res["buses"][1] + assert "geometry" not in res["branches"][0] + assert "geometry" not in res["branches"][1] # Same id, different transformer parameters -> fail ground = Ground("ground") vn = 400 / np.sqrt(3) voltages = [vn, vn * np.exp(-2 / 3 * np.pi * 1j), vn * np.exp(2 / 3 * np.pi * 1j)] - source_bus = Bus(id="source", phases="abcn") - load_bus = Bus(id="load bus", phases="abcn") + geom = Point(0.0, 0.0) + source_bus = Bus(id="source", phases="abcn", geometry=geom) + load_bus = Bus(id="load bus", phases="abcn", geometry=geom) ground.connect(load_bus) ground.connect(source_bus) p_ref = PotentialRef("pref", element=ground) @@ -66,13 +78,13 @@ def test_to_dict(): # Same id, different transformer parameters -> fail tp1 = TransformerParameters( - "t", windings="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 + "t", type="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 ) tp2 = TransformerParameters( - "t", windings="Dyn11", uhv=20000, ulv=400, sn=200 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 + "t", type="Dyn11", uhv=20000, ulv=400, sn=200 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 ) - transformer1 = Transformer(id="Transformer1", bus1=source_bus, bus2=load_bus, parameters=tp1) - transformer2 = Transformer(id="Transformer2", bus1=source_bus, bus2=load_bus, parameters=tp2) + transformer1 = Transformer(id="Transformer1", bus1=source_bus, bus2=load_bus, parameters=tp1, geometry=geom) + transformer2 = Transformer(id="Transformer2", bus1=source_bus, bus2=load_bus, parameters=tp2, geometry=geom) en = ElectricalNetwork( buses=[source_bus, load_bus], branches=[transformer1, transformer2], @@ -88,10 +100,20 @@ def test_to_dict(): # Same id, same transformer parameters -> ok tp2 = TransformerParameters( - "t", windings="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 + "t", type="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 ) transformer2.parameters = tp2 - en.to_dict() + res = en.to_dict() + assert "geometry" in res["buses"][0] + assert "geometry" in res["buses"][1] + assert "geometry" in res["branches"][0] + assert "geometry" in res["branches"][1] + + res = en.to_dict(include_geometry=False) + assert "geometry" not in res["buses"][0] + assert "geometry" not in res["buses"][1] + assert "geometry" not in res["branches"][0] + assert "geometry" not in res["branches"][1] def test_v0_to_v1_converter(monkeypatch): @@ -719,7 +741,7 @@ def test_v0_to_v1_converter(monkeypatch): tp = { "160kVA_Dd0": TransformerParameters( id="160kVA_Dd0", - windings="dd0", + type="dd0", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -730,7 +752,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Dd6": TransformerParameters( id="160kVA_Dd6", - windings="dd6", + type="dd6", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -741,7 +763,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Dyn11": TransformerParameters( id="160kVA_Dyn11", - windings="dyn11", + type="dyn11", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -752,7 +774,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Dyn5": TransformerParameters( id="160kVA_Dyn5", - windings="dyn5", + type="dyn5", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -763,7 +785,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Dzn0": TransformerParameters( id="160kVA_Dzn0", - windings="dzn0", + type="dzn0", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -774,7 +796,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Dzn6": TransformerParameters( id="160kVA_Dzn6", - windings="dzn6", + type="dzn6", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -785,7 +807,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Yd11": TransformerParameters( id="160kVA_Yd11", - windings="yd11", + type="yd11", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -796,7 +818,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Yd5": TransformerParameters( id="160kVA_Yd5", - windings="yd5", + type="yd5", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -807,7 +829,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Yyn0": TransformerParameters( id="160kVA_Yyn0", - windings="yyn0", + type="yyn0", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -818,7 +840,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Yyn6": TransformerParameters( id="160kVA_Yyn6", - windings="yyn6", + type="yyn6", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -829,7 +851,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Yzn11": TransformerParameters( id="160kVA_Yzn11", - windings="yzn11", + type="yzn11", sn=160000.0, uhv=20000.0, ulv=400.0, @@ -840,7 +862,7 @@ def test_v0_to_v1_converter(monkeypatch): ), "160kVA_Yzn5": TransformerParameters( id="160kVA_Yzn5", - windings="yzn5", + type="yzn5", sn=160000.0, uhv=20000.0, ulv=400.0, diff --git a/roseau/load_flow/models/__init__.py b/roseau/load_flow/models/__init__.py index afd38767..d01ec42e 100644 --- a/roseau/load_flow/models/__init__.py +++ b/roseau/load_flow/models/__init__.py @@ -1,6 +1,8 @@ """ -This module contains the models used to represent the network elements. The -models are used to build the network and to perform the load flow analysis. +This module contains the models used to represent the network elements. The models are used to +build the network and to perform the load flow analysis. + +Equations, diagrams, and examples can be found in the :doc:`/models/index` page. """ from roseau.load_flow.models.branches import AbstractBranch from roseau.load_flow.models.buses import Bus diff --git a/roseau/load_flow/models/branches.py b/roseau/load_flow/models/branches.py index 63c9fdb9..c9206f6e 100644 --- a/roseau/load_flow/models/branches.py +++ b/roseau/load_flow/models/branches.py @@ -9,16 +9,21 @@ from roseau.load_flow.models.buses import Bus from roseau.load_flow.models.core import Element from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg -from roseau.load_flow.utils import BranchType +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) class AbstractBranch(Element): - """This is an abstract class for all the branches (lines, switches and transformers) of the network.""" + """Base class of all the branches (lines, switches and transformers) of the network. - branch_type: BranchType + See Also: + :doc:`Line models documentation `, + :doc:`Transformer models documentation ` and + :doc:`Switch model documentation ` + """ + + branch_type: str def __init__( self, @@ -75,8 +80,8 @@ def _res_currents_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray]: return self._res_getter(value=self._res_currents, warning=warning) @property - @ureg.wraps(("A", "A"), (None,), strict=False) - def res_currents(self) -> tuple[Q_, Q_]: + @ureg_wraps(("A", "A"), (None,), strict=False) + def res_currents(self) -> tuple[Q_[np.ndarray], Q_[np.ndarray]]: """The load flow result of the branch currents (A).""" return self._res_currents_getter(warning=True) @@ -88,8 +93,8 @@ def _res_powers_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray]: return powers1, powers2 @property - @ureg.wraps(("VA", "VA"), (None,), strict=False) - def res_powers(self) -> tuple[Q_, Q_]: + @ureg_wraps(("VA", "VA"), (None,), strict=False) + def res_powers(self) -> tuple[Q_[np.ndarray], Q_[np.ndarray]]: """The load flow result of the branch powers (VA).""" return self._res_powers_getter(warning=True) @@ -99,8 +104,8 @@ def _res_potentials_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray] return pot1, pot2 @property - @ureg.wraps(("V", "V"), (None,), strict=False) - def res_potentials(self) -> tuple[Q_, Q_]: + @ureg_wraps(("V", "V"), (None,), strict=False) + def res_potentials(self) -> tuple[Q_[np.ndarray], Q_[np.ndarray]]: """The load flow result of the branch potentials (V).""" return self._res_potentials_getter(warning=True) @@ -109,8 +114,8 @@ def _res_voltages_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray]: return calculate_voltages(pot1, self.phases1), calculate_voltages(pot2, self.phases2) @property - @ureg.wraps(("V", "V"), (None,), strict=False) - def res_voltages(self) -> tuple[Q_, Q_]: + @ureg_wraps(("V", "V"), (None,), strict=False) + def res_voltages(self) -> tuple[Q_[np.ndarray], Q_[np.ndarray]]: """The load flow result of the branch voltages (V).""" return self._res_voltages_getter(warning=True) @@ -121,16 +126,16 @@ def res_voltages(self) -> tuple[Q_, Q_]: def from_dict(cls, data: JsonDict) -> Self: return cls(**data) # not used anymore - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: res = { "id": self.id, - "type": str(self.branch_type), + "type": self.branch_type, "phases1": self.phases1, "phases2": self.phases2, "bus1": self.bus1.id, "bus2": self.bus2.id, } - if self.geometry is not None: + if self.geometry is not None and include_geometry: res["geometry"] = self.geometry.__geo_interface__ return res diff --git a/roseau/load_flow/models/buses.py b/roseau/load_flow/models/buses.py index 84ce030f..604ce662 100644 --- a/roseau/load_flow/models/buses.py +++ b/roseau/load_flow/models/buses.py @@ -1,6 +1,6 @@ import logging from collections.abc import Sequence -from typing import Any, Optional +from typing import TYPE_CHECKING, Any, Optional import numpy as np from shapely import Point @@ -10,13 +10,20 @@ from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.models.core import Element from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) +if TYPE_CHECKING: + from roseau.load_flow.models.grounds import Ground + class Bus(Element): - """An electrical bus.""" + """An electrical bus. + + See Also: + :doc:`Bus model documentation ` + """ allowed_phases = frozenset({"ab", "bc", "ca", "an", "bn", "cn", "abn", "bcn", "can", "abc", "abcn"}) """The allowed phases for a bus are: @@ -65,18 +72,19 @@ def __init__( self.geometry = geometry self._res_potentials: Optional[np.ndarray] = None + self._short_circuits: list[dict[str, Any]] = [] def __repr__(self) -> str: return f"{type(self).__name__}(id={self.id!r}, phases={self.phases!r})" @property - @ureg.wraps("V", (None,), strict=False) - def potentials(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def potentials(self) -> Q_[np.ndarray]: """The potentials of the bus (V).""" return self._potentials @potentials.setter - @ureg.wraps(None, (None, "V"), strict=False) + @ureg_wraps(None, (None, "V"), strict=False) def potentials(self, value: Sequence[complex]) -> None: if len(value) != len(self.phases): msg = f"Incorrect number of potentials: {len(value)} instead of {len(self.phases)}" @@ -89,8 +97,8 @@ def _res_potentials_getter(self, warning: bool) -> np.ndarray: return self._res_getter(value=self._res_potentials, warning=warning) @property - @ureg.wraps("V", (None,), strict=False) - def res_potentials(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def res_potentials(self) -> Q_[np.ndarray]: """The load flow result of the bus potentials (V).""" return self._res_potentials_getter(warning=True) @@ -99,8 +107,8 @@ def _res_voltages_getter(self, warning: bool) -> np.ndarray: return calculate_voltages(potentials, self.phases) @property - @ureg.wraps("V", (None,), strict=False) - def res_voltages(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def res_voltages(self) -> Q_[np.ndarray]: """The load flow result of the bus voltages (V). If the bus has a neutral, the voltages are phase-neutral voltages for existing phases in @@ -130,11 +138,11 @@ def from_dict(cls, data: JsonDict) -> Self: potentials = [complex(v[0], v[1]) for v in potentials] return cls(id=data["id"], phases=data["phases"], geometry=geometry, potentials=potentials) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: res = {"id": self.id, "phases": self.phases} if not np.allclose(self.potentials, 0): res["potentials"] = [[v.real, v.imag] for v in self._potentials] - if self.geometry is not None: + if self.geometry is not None and include_geometry: res["geometry"] = self.geometry.__geo_interface__ return res @@ -147,3 +155,55 @@ def _results_to_dict(self, warning: bool) -> JsonDict: "phases": self.phases, "potentials": [[v.real, v.imag] for v in self._res_potentials_getter(warning)], } + + def add_short_circuit(self, *phases: str, ground: Optional["Ground"] = None) -> None: + """Add a short-circuit by connecting multiple phases together optionally with a ground. + + Args: + phases: + The phases to connect. + + ground: + If a ground is given, the phases will also be connected to the ground. + """ + from roseau.load_flow import PowerLoad + + for phase in phases: + if phase not in self.phases: + msg = f"Phase {phase!r} is not in the phases {set(self.phases)} of bus {self.id!r}." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + if len(phases) < 1 or (len(phases) == 1 and ground is None): + msg = ( + f"For the short-circuit on bus {self.id!r}, at least two phases (or a phase and a ground) should be " + f"given (only {phases} is given)." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + duplicates = [item for item in set(phases) if phases.count(item) > 1] + if duplicates: + msg = f"For the short-circuit on bus {self.id!r}, some phases are duplicated: {duplicates}." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + for element in self._connected_elements: + if isinstance(element, PowerLoad): + msg = ( + f"A power load {element.id!r} is already connected on bus {self.id!r}. " + f"It makes the short-circuit calculation impossible." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SHORT_CIRCUIT) + + self._short_circuits.append({"phases": list(phases), "ground": ground.id if ground is not None else None}) + + if self.network is not None: + self.network._valid = False + + @property + def short_circuits(self) -> list[dict[str, Any]]: + """Return the list of short-circuits of this bus.""" + return self._short_circuits[:] # return a copy as users should not modify the list directly + + def clear_short_circuits(self): + """Remove the short-circuits.""" + self._short_circuits = [] diff --git a/roseau/load_flow/models/core.py b/roseau/load_flow/models/core.py index 973aa39c..b117105d 100644 --- a/roseau/load_flow/models/core.py +++ b/roseau/load_flow/models/core.py @@ -39,7 +39,7 @@ def __init__(self, id: Id, **kwargs: Any) -> None: """ super().__init__(id) self._connected_elements: list[Element] = [] - self._network: Optional["ElectricalNetwork"] = None + self._network: Optional[ElectricalNetwork] = None @property def network(self) -> Optional["ElectricalNetwork"]: @@ -47,12 +47,14 @@ def network(self) -> Optional["ElectricalNetwork"]: return self._network @classmethod - def _check_phases(cls, id: Id, **kwargs: str) -> None: + def _check_phases(cls, id: Id, allowed_phases: Optional[frozenset[str]] = None, **kwargs: str) -> None: + if allowed_phases is None: + allowed_phases = cls.allowed_phases name, phases = kwargs.popitem() # phases, phases1 or phases2 - if phases not in cls.allowed_phases: + if phases not in allowed_phases: msg = ( f"{cls.__name__} of id {id!r} got invalid {name} {phases!r}, allowed values are: " - f"{sorted(cls.allowed_phases)}" + f"{sorted(allowed_phases)}" ) logger.error(msg) raise RoseauLoadFlowException(msg, RoseauLoadFlowExceptionCode.BAD_PHASE) @@ -65,7 +67,7 @@ def _set_network(self, value: Optional["ElectricalNetwork"]) -> None: value: The new network for `self`. May also be None. """ - # The setter can not be used to replace an existing network + # The setter cannot be used to replace an existing network if self._network is not None and value is not None and self._network != value: self._raise_several_network() diff --git a/roseau/load_flow/models/grounds.py b/roseau/load_flow/models/grounds.py index 8eeee4ae..bbaf0cb1 100644 --- a/roseau/load_flow/models/grounds.py +++ b/roseau/load_flow/models/grounds.py @@ -7,7 +7,7 @@ from roseau.load_flow.models.buses import Bus from roseau.load_flow.models.core import Element from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) @@ -28,6 +28,10 @@ class Ground(Element): To connect a ground to a line with shunt components, pass the ground object to the :class:`Line` constructor. Note that the ground connection is mandatory for shunt lines. + + + See Also: + :doc:`Ground model documentation ` """ allowed_phases = frozenset({"a", "b", "c", "n"}) @@ -51,8 +55,8 @@ def _res_potential_getter(self, warning: bool) -> complex: return self._res_getter(self._res_potential, warning) @property - @ureg.wraps("V", (None,), strict=False) - def res_potential(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def res_potential(self) -> Q_[complex]: """The load flow result of the ground potential (V).""" return self._res_potential_getter(warning=True) @@ -93,7 +97,7 @@ def from_dict(cls, data: JsonDict) -> Self: self._connected_buses = data["buses"] return self - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: # Shunt lines and potential references will have the ground in their dict not here. return { "id": self.id, diff --git a/roseau/load_flow/models/lines/lines.py b/roseau/load_flow/models/lines/lines.py index e54923d9..f6862de8 100644 --- a/roseau/load_flow/models/lines/lines.py +++ b/roseau/load_flow/models/lines/lines.py @@ -13,16 +13,19 @@ from roseau.load_flow.models.lines.parameters import LineParameters from roseau.load_flow.models.sources import VoltageSource from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg -from roseau.load_flow.utils import BranchType +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) class Switch(AbstractBranch): - """A general purpose switch branch.""" + """A general purpose switch branch. - branch_type = BranchType.SWITCH + See Also: + :doc:`Switch model documentation ` + """ + + branch_type = "switch" allowed_phases = frozenset(Bus.allowed_phases | {"a", "b", "c", "n"}) """The allowed phases for a switch are: @@ -96,7 +99,7 @@ def _check_loop(self) -> None: element = elements.pop(-1) visited_1.add(element) for e in element._connected_elements: - if e not in visited_1 and (isinstance(e, Bus) or isinstance(e, Switch)) and e != self: + if e not in visited_1 and (isinstance(e, (Bus, Switch))) and e != self: elements.append(e) visited_2: set[Element] = set() elements = [self.bus2] @@ -104,7 +107,7 @@ def _check_loop(self) -> None: element = elements.pop(-1) visited_2.add(element) for e in element._connected_elements: - if e not in visited_2 and (isinstance(e, Bus) or isinstance(e, Switch)) and e != self: + if e not in visited_2 and (isinstance(e, (Bus, Switch))) and e != self: elements.append(e) if visited_1.intersection(visited_2): msg = f"There is a loop of switch involving the switch {self.id!r}. It is not allowed." @@ -127,32 +130,11 @@ def _check_elements(self) -> None: class Line(AbstractBranch): """An electrical line PI model with series impedance and optional shunt admittance. - .. math:: - V_1 &= a \\cdot V_2 - b \\cdot I_2 + g \\cdot V_{\\mathrm{g}} \\\\ - I_1 &= c \\cdot V_2 - d \\cdot I_2 + h \\cdot V_{\\mathrm{g}} \\\\ - I_{\\mathrm{g}} &= f^t \\cdot \\left(V_1 + V_2 - 2\\cdot V_{\\mathrm{g}}\\right) - - where - - .. math:: - a &= \\mathcal{I}_4 + \\dfrac{1}{2} \\cdot Z \\cdot Y \\\\ - b &= Z \\\\ - c &= Y + \\dfrac{1}{4}\\cdot Y \\cdot Z \\cdot Y \\\\ - d &= \\mathcal{I}_4 + \\dfrac{1}{2} \\cdot Y \\cdot Z \\\\ - f &= -\\dfrac{1}{2} \\cdot \\begin{pmatrix} y_{\\mathrm{ag}} & y_{\\mathrm{bg}} & y_{\\mathrm{cg}} & - y_{\\mathrm{ng}} \\end{pmatrix} ^t \\\\ - g &= Z \\cdot f \\\\ - h &= 2 \\cdot f + \\frac{1}{2}\\cdot Y \\cdot Z \\cdot f \\\\ - - If the line does not define a shunt admittance, the following simplified equations are used - instead: - - .. math:: - \\left(V_1 - V_2\\right) &= Z \\cdot I_1 \\\\ - I_2 &= -I_1 + See Also: + :doc:`Line documentation ` """ - branch_type = BranchType.LINE + branch_type = "line" allowed_phases = frozenset(Bus.allowed_phases | {"a", "b", "c", "n"}) """The allowed phases for a line are: @@ -250,12 +232,12 @@ def __init__( self._connect(self.ground) @property - @ureg.wraps("km", (None,), strict=False) - def length(self) -> Q_: + @ureg_wraps("km", (None,), strict=False) + def length(self) -> Q_[float]: return self._length @length.setter - @ureg.wraps(None, (None, "km"), strict=False) + @ureg_wraps(None, (None, "km"), strict=False) def length(self, value: float) -> None: if value <= 0: msg = f"A line length must be greater than 0. {value:.2f} km provided." @@ -298,22 +280,35 @@ def parameters(self, value: LineParameters) -> None: self._parameters = value self._invalidate_network_results() - def _res_series_power_losses_getter(self, warning: bool) -> np.ndarray: + def _res_series_values_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray]: pot1, pot2 = self._res_potentials_getter(warning) # V du_line = pot1 - pot2 z_line = self.parameters.z_line * self.length i_line = np.linalg.inv(z_line.m_as("ohm")) @ du_line # Zₗ x Iₗ = ΔU -> I = Zₗ⁻¹ x ΔU + return du_line, i_line + + def _res_series_currents_getter(self, warning: bool) -> np.ndarray: + _, i_line = self._res_series_values_getter(warning) + return i_line + + @property + @ureg_wraps("A", (None,), strict=False) + def res_series_currents(self) -> Q_[np.ndarray]: + """Get the current in the series elements of the line (A).""" + return self._res_series_currents_getter(warning=True) + + def _res_series_power_losses_getter(self, warning: bool) -> np.ndarray: + du_line, i_line = self._res_series_values_getter(warning) return du_line * i_line.conj() # Sₗ = ΔU.Iₗ* @property - @ureg.wraps("VA", (None,), strict=False) - def res_series_power_losses(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def res_series_power_losses(self) -> Q_[np.ndarray]: """Get the power losses in the series elements of the line (VA).""" return self._res_series_power_losses_getter(warning=True) - def _res_shunt_power_losses_getter(self, warning: bool) -> np.ndarray: - if not self.parameters.with_shunt: - return np.zeros(len(self.phases), dtype=complex) + def _res_shunt_values_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]: + assert self.parameters.with_shunt, "this method only works when there is a shunt" y_shunt = self.parameters.y_shunt assert self.ground is not None pot1, pot2 = self._res_potentials_getter(warning) @@ -322,11 +317,30 @@ def _res_shunt_power_losses_getter(self, warning: bool) -> np.ndarray: yg = y_shunt.sum(axis=1) # y_ig = Y_ia + Y_ib + Y_ic + Y_in for i in {a, b, c, n} i1_shunt = (y_shunt @ pot1 - yg * vg) / 2 i2_shunt = (y_shunt @ pot2 - yg * vg) / 2 - return pot1 * i1_shunt.conj() + pot2 * i2_shunt.conj() + return pot1, pot2, i1_shunt, i2_shunt + + def _res_shunt_currents_getter(self, warning: bool) -> tuple[np.ndarray, np.ndarray]: + if not self.parameters.with_shunt: + zeros = np.zeros(len(self.phases), dtype=complex) + return zeros[:], zeros[:] + _, _, cur1, cur2 = self._res_shunt_values_getter(warning) + return cur1, cur2 + + @property + @ureg_wraps(("A", "A"), (None,), strict=False) + def res_shunt_currents(self) -> tuple[Q_[np.ndarray], Q_[np.ndarray]]: + """Get the currents in the shunt elements of the line (A).""" + return self._res_shunt_currents_getter(warning=True) + + def _res_shunt_power_losses_getter(self, warning: bool) -> np.ndarray: + if not self.parameters.with_shunt: + return np.zeros(len(self.phases), dtype=complex) + pot1, pot2, cur1, cur2 = self._res_shunt_values_getter(warning) + return pot1 * cur1.conj() + pot2 * cur2.conj() @property - @ureg.wraps("VA", (None,), strict=False) - def res_shunt_power_losses(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def res_shunt_power_losses(self) -> Q_[np.ndarray]: """Get the power losses in the shunt elements of the line (VA).""" return self._res_shunt_power_losses_getter(warning=True) @@ -336,16 +350,20 @@ def _res_power_losses_getter(self, warning: bool) -> np.ndarray: return series_losses + shunt_losses @property - @ureg.wraps("VA", (None,), strict=False) - def res_power_losses(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def res_power_losses(self) -> Q_[np.ndarray]: """Get the power losses in the line (VA).""" return self._res_power_losses_getter(warning=True) # # Json Mixin interface # - def to_dict(self) -> JsonDict: - res = {**super().to_dict(), "length": self._length, "params_id": self.parameters.id} + def to_dict(self, include_geometry: bool = True) -> JsonDict: + res = { + **super().to_dict(include_geometry=include_geometry), + "length": self._length, + "params_id": self.parameters.id, + } if self.ground is not None: res["ground"] = self.ground.id return res diff --git a/roseau/load_flow/models/lines/parameters.py b/roseau/load_flow/models/lines/parameters.py index ea0fa46d..9c21bd78 100644 --- a/roseau/load_flow/models/lines/parameters.py +++ b/roseau/load_flow/models/lines/parameters.py @@ -4,11 +4,12 @@ import numpy as np import numpy.linalg as nplin +import pandas as pd from typing_extensions import Self from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps from roseau.load_flow.utils import ( CX, EPSILON_0, @@ -20,9 +21,8 @@ TAN_D, ConductorType, Identifiable, - InsulationType, + InsulatorType, JsonMixin, - LineModel, LineType, ) @@ -30,16 +30,20 @@ class LineParameters(Identifiable, JsonMixin): - """A class to store the line parameters of lines""" + """A class to store the line parameters of lines - _type_re = "|".join(x.code() for x in LineType) + See Also: + :ref:`Line parameters documentation ` + """ + + _type_re = "|".join("|".join(x) for x in LineType.CODES.values()) _material_re = "|".join(x.code() for x in ConductorType) _section_re = r"[1-9][0-9]*" _REGEXP_LINE_TYPE_NAME: re.Pattern = re.compile( rf"^({_type_re})_({_material_re})_{_section_re}$", flags=re.IGNORECASE ) - @ureg.wraps(None, (None, None, "ohm/km", "S/km"), strict=False) + @ureg_wraps(None, (None, None, "ohm/km", "S/km"), strict=False) def __init__(self, id: Id, z_line: np.ndarray, y_shunt: Optional[np.ndarray] = None) -> None: """LineParameters constructor. @@ -82,13 +86,13 @@ def __eq__(self, other: object) -> bool: ) @property - @ureg.wraps("ohm/km", (None,), strict=False) - def z_line(self) -> Q_: + @ureg_wraps("ohm/km", (None,), strict=False) + def z_line(self) -> Q_[np.ndarray]: return self._z_line @property - @ureg.wraps("S/km", (None,), strict=False) - def y_shunt(self) -> Q_: + @ureg_wraps("S/km", (None,), strict=False) + def y_shunt(self) -> Q_[np.ndarray]: return self._y_shunt @property @@ -96,27 +100,12 @@ def with_shunt(self) -> bool: return self._with_shunt @classmethod - @ureg.wraps( - None, - ( - None, - None, - None, - "ohm/km", - "ohm/km", - "S/km", - "S/km", - "ohm/km", - "ohm/km", - "S/km", - "S/km", - ), - strict=False, + @ureg_wraps( + None, (None, None, "ohm/km", "ohm/km", "S/km", "S/km", "ohm/km", "ohm/km", "S/km", "S/km"), strict=False ) def from_sym( cls, id: Id, - model: LineModel, z0: complex, z1: complex, y0: complex, @@ -126,15 +115,12 @@ def from_sym( bn: Optional[float] = None, bpn: Optional[float] = None, ) -> Self: - """Create line parameters from sym model. + """Create line parameters from a symmetric model. Args: id: A unique ID of the line parameters, typically its canonical name. - model: - The required model. It can be SYM or SYM_NEUTRAL. Be careful, it can be downgraded... - z0: Impedance - zero sequence - :math:`r_0+x_0\\cdot j` (ohms/km) @@ -161,16 +147,18 @@ def from_sym( Returns: The created line parameters. + + Notes: + As explained in the :ref:`Line parameters alternative constructor documentation + `, the model may be "degraded" if the computed + impedance matrix is not invertible. """ - z_line, y_shunt, model = cls._sym_to_zy( - id=id, model=model, z0=z0, z1=z1, y0=y0, y1=y1, zn=zn, xpn=xpn, bn=bn, bpn=bpn - ) - return cls(id, z_line=z_line, y_shunt=y_shunt) + z_line, y_shunt = cls._sym_to_zy(id=id, z0=z0, z1=z1, y0=y0, y1=y1, zn=zn, xpn=xpn, bn=bn, bpn=bpn) + return cls(id=id, z_line=z_line, y_shunt=y_shunt) @staticmethod def _sym_to_zy( id: Id, - model: LineModel, z0: complex, z1: complex, y0: complex, @@ -179,16 +167,13 @@ def _sym_to_zy( xpn: Optional[float] = None, bn: Optional[float] = None, bpn: Optional[float] = None, - ) -> tuple[np.ndarray, np.ndarray, LineModel]: + ) -> tuple[np.ndarray, np.ndarray]: """Create impedance and admittance matrix from a symmetrical model. Args: id: A unique ID of the line parameters, typically its canonical name. - model: - The required model. It can be SYM or SYM_NEUTRAL. Be careful, it can be downgraded... - z0: Impedance - zero sequence - :math:`r_0+x_0\\cdot j` (ohms/km) @@ -214,9 +199,10 @@ def _sym_to_zy( Phase to neutral susceptance (siemens/km) Returns: - The impedance and admittance matrices and the line model. The line model may be downgraded from - SYM_NEUTRAL to SYM if the model of the neutral is not possible. + The impedance and admittance matrices. """ + # Check if all neutral parameters are valid + any_neutral_na = any(pd.isna([xpn, bn, bpn, zn])) # Two possible choices. The first one is the best but sometimes PwF data forces us to choose the second one for choice in (0, 1): @@ -236,8 +222,12 @@ def _sym_to_zy( ys = y1 # Series shunt admittance (siemens/km) ym = 0 + 0j # Mutual shunt admittance (siemens/km) - if model == LineModel.SYM_NEUTRAL: - # Add the neutral + # If all the neutral data have not been filled, the matrix is a 3x3 matrix + if any_neutral_na: + # No neutral data so retrieve a 3x3 matrix + z_line = np.array([[zs, zm, zm], [zm, zs, zm], [zm, zm, zs]], dtype=complex) + y_shunt = np.array([[ys, ym, ym], [ym, ys, ym], [ym, ym, ys]], dtype=complex) + else: # Build the complex # zn: Neutral series impedance (ohm/km) zpn = xpn * 1j # Phase-to-neutral series impedance (ohm/km) @@ -246,31 +236,21 @@ def _sym_to_zy( if zpn == 0 and zn == 0: logger.warning( - f"The low voltage line model {id!r} does not have neutral elements. It " - f"will be modelled as a medium voltage line instead." + f"The line model {id!r} does not have neutral elements. It will be modelled as a 3 wires line " + f"instead." ) z_line = np.array([[zs, zm, zm], [zm, zs, zm], [zm, zm, zs]], dtype=complex) - y_shunt = np.array([[ys, ym, ym], [ym, ys, ym], [ym, ym, ys]], dtype=complex) - # We downgrade the model to sym - model = LineModel.SYM else: z_line = np.array( [[zs, zm, zm, zpn], [zm, zs, zm, zpn], [zm, zm, zs, zpn], [zpn, zpn, zpn, zn]], dtype=complex, ) - y_shunt = np.array( [[ys, ym, ym, ypn], [ym, ys, ym, ypn], [ym, ym, ys, ypn], [ypn, ypn, ypn, yn]], dtype=complex, ) - else: - assert model == LineModel.SYM - z_line = np.array([[zs, zm, zm], [zm, zs, zm], [zm, zm, zs]], dtype=complex) - - y_shunt = np.array([[ys, ym, ym], [ym, ys, ym], [ym, ym, ys]], dtype=complex) - # Check the validity of the resulting matrices det_z = nplin.det(z_line) if abs(det_z) == 0: @@ -289,31 +269,31 @@ def _sym_to_zy( f"line impedance matrix." ) logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_Y_SHUNT_VALUE) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_Z_LINE_VALUE) else: # Break: the current choice is good! break - return z_line, y_shunt, model + return z_line, y_shunt @classmethod - @ureg.wraps(None, (None, None, None, None, None, "mm**2", "mm**2", "m", "m"), strict=False) - def from_lv_exact( + @ureg_wraps(None, (None, None, None, None, None, "mm**2", "mm**2", "m", "m"), strict=False) + def from_geometry( cls, - type_name: str, + id: Id, line_type: LineType, conductor_type: ConductorType, - insulation_type: InsulationType, + insulator_type: InsulatorType, section: float, section_neutral: float, height: float, external_diameter: float, ) -> Self: - """Create line parameters from LV exact model. + """Create line parameters from its geometry. Args: - type_name: - The name of the "LV exact" type. + id: + The id of the line parameters type. line_type: Overhead or underground. @@ -321,7 +301,7 @@ def from_lv_exact( conductor_type: Type of the conductor - insulation_type: + insulator_type: Type of insulator. section: @@ -338,36 +318,38 @@ def from_lv_exact( Returns: The created line parameters. + + See Also: + :ref:`Line parameters alternative constructor documentation ` """ - # TODO: Add documentation on the LV exact model - z_line, y_shunt, model = cls._lv_exact_to_zy( - type_name, + z_line, y_shunt = cls._geometry_to_zy( + id=id, line_type=line_type, conductor_type=conductor_type, - insulator_type=insulation_type, + insulator_type=insulator_type, section=section, section_neutral=section_neutral, height=height, external_diameter=external_diameter, ) - return cls(type_name, z_line=z_line, y_shunt=y_shunt) + return cls(id=id, z_line=z_line, y_shunt=y_shunt) @staticmethod - def _lv_exact_to_zy( - type_name: str, + def _geometry_to_zy( + id: Id, line_type: LineType, conductor_type: ConductorType, - insulator_type: InsulationType, + insulator_type: InsulatorType, section: float, section_neutral: float, height: float, external_diameter: float, - ) -> tuple[np.ndarray, np.ndarray, LineModel]: - """Create impedance and admittance matrix from a LV exact model. + ) -> tuple[np.ndarray, np.ndarray]: + """Create impedance and admittance matrix using a geometric model. Args: - type_name: - The name of the "LV exact" type. + id: + The id of the line parameters. line_type: Overhead or underground. @@ -391,126 +373,103 @@ def _lv_exact_to_zy( External diameter of the wire (m). Returns: - The impedance and admittance matrices and the line model. + The impedance and admittance matrices. """ # dpp = data["dpp"] # Distance phase to phase (m) # dpn = data["dpn"] # Distance phase to neutral (m) # dsh = data["dsh"] # Diameter of the sheath (mm) # Geometric configuration - if line_type == LineType.OVERHEAD or line_type == LineType.TWISTED: - coord = Q_( - np.array( - [ - [ - -np.sqrt(3) / 8 * external_diameter, - height + external_diameter / 8, - -np.sqrt(3) / 8 * external_diameter, - -height - external_diameter / 8, - ], - [ - np.sqrt(3) / 8 * external_diameter, - height + external_diameter / 8, - np.sqrt(3) / 8 * external_diameter, - -height - external_diameter / 8, - ], - [0, height - external_diameter / 4, 0, -height + external_diameter / 4], - [0, height, 0, -height], - ] - ), - "m", - ) - epsilon = EPSILON_0 + if line_type in (LineType.OVERHEAD, LineType.TWISTED): + # TODO This configuration is for twisted lines... Create a overhead configuration. + # TODO Add some checks on provided geometric values... + coord = np.array( + [ + [-np.sqrt(3) / 8 * external_diameter, height + external_diameter / 8], + [np.sqrt(3) / 8 * external_diameter, height + external_diameter / 8], + [0, height - external_diameter / 4], + [0, height], + ] + ) # m + coord_prim = np.array( + [ + [-np.sqrt(3) / 8 * external_diameter, -height - external_diameter / 8], + [np.sqrt(3) / 8 * external_diameter, -height - external_diameter / 8], + [0, -height + external_diameter / 4], + [0, -height], + ] + ) # m + epsilon = EPSILON_0.m_as("F/m") elif line_type == LineType.UNDERGROUND: - coord = Q_( - np.array( - [ - [ - -np.sqrt(2) / 8 * external_diameter, - height - np.sqrt(2) / 8 * external_diameter, - -np.sqrt(2) * 3 / 8 * external_diameter, - height - np.sqrt(2) * 3 / 8 * external_diameter, - ], - [ - np.sqrt(2) / 8 * external_diameter, - height - np.sqrt(2) / 8 * external_diameter, - np.sqrt(2) * 3 / 8 * external_diameter, - height - np.sqrt(2) * 3 / 8 * external_diameter, - ], - [ - np.sqrt(2) / 8 * external_diameter, - height + np.sqrt(2) / 8 * external_diameter, - np.sqrt(2) * 3 / 8 * external_diameter, - height + np.sqrt(2) * 3 / 8 * external_diameter, - ], - [ - -np.sqrt(2) / 8 * external_diameter, - height + np.sqrt(2) / 8 * external_diameter, - -np.sqrt(2) * 3 / 8 * external_diameter, - height + np.sqrt(2) * 3 / 8 * external_diameter, - ], - ] - ), - "m", - ) - epsilon = EPSILON_0 * EPSILON_R[insulator_type] + coord = np.array( + [ + [-np.sqrt(2) / 8 * external_diameter, height - np.sqrt(2) / 8 * external_diameter], + [np.sqrt(2) / 8 * external_diameter, height - np.sqrt(2) / 8 * external_diameter], + [np.sqrt(2) / 8 * external_diameter, height + np.sqrt(2) / 8 * external_diameter], + [-np.sqrt(2) / 8 * external_diameter, height + np.sqrt(2) / 8 * external_diameter], + ] + ) # m + coord_prim = np.array( + [ + [-np.sqrt(2) * 3 / 8 * external_diameter, height - np.sqrt(2) * 3 / 8 * external_diameter], + [np.sqrt(2) * 3 / 8 * external_diameter, height - np.sqrt(2) * 3 / 8 * external_diameter], + [np.sqrt(2) * 3 / 8 * external_diameter, height + np.sqrt(2) * 3 / 8 * external_diameter], + [-np.sqrt(2) * 3 / 8 * external_diameter, height + np.sqrt(2) * 3 / 8 * external_diameter], + ] + ) # m + epsilon = (EPSILON_0 * EPSILON_R[insulator_type]).m_as("F/m") else: - msg = f"The line type of the line {type_name!r} is unknown. It should have been filled in the reading." + msg = f"The line type of the line {id!r} is unknown. It should have been filled in the reading." logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_LINE_TYPE) + # Distance computation + sections = np.array([section, section, section, section_neutral], dtype=float) * 1e-6 # surfaces (m2) + radius = np.sqrt(sections / PI) # radius (m) + gmr = radius * np.exp(-0.25) # geometric mean radius (m) + # distance between two wires (m) + coord_new_dim = coord[:, None, :] + diff = coord_new_dim - coord + distance = np.sqrt(np.einsum("ijk,ijk->ij", diff, diff)) + # distance between a wire and the image of another wire (m) + diff = coord_new_dim - coord_prim + distance_prim = np.sqrt(np.einsum("ijk,ijk->ij", diff, diff)) + + # Useful matrices + mask_diagonal = np.eye(4, dtype=bool) + mask_off_diagonal = ~mask_diagonal + minus = -np.ones((4, 4), dtype=float) + np.fill_diagonal(minus, 1) + # Electrical parameters - sections = Q_([section, section, section, section_neutral], "mm**2") # surfaces (m2) - radius = Q_(np.zeros(4, dtype=float), "m") # radius (m) - gmr = Q_(np.zeros(4, dtype=float), "m") # geometric mean radius (m) - # d = Q_(np.zeros((4, 4), dtype=float), "m") # distance between projections of two wires (m) - distance = Q_(np.zeros((4, 4), dtype=float), "m") # distance between two wires (m) - distance_prim = Q_(np.zeros((4, 4), dtype=float), "m") # distance between a wire and the image of another - # wire (m) - r = Q_(np.zeros((4, 4), dtype=float), "ohm/km") # resistance (ohm/km) - inductance = Q_(np.zeros((4, 4), dtype=float), "H/km") # inductance (H/km) - lambdas = Q_(np.zeros((4, 4), dtype=float), "m/F") # potential coefficient (m/F) - for i in range(4): - radius[i] = np.sqrt(sections[i] / PI) - gmr[i] = radius[i].to("m") * np.exp(-0.25) - r[i, i] = RHO[conductor_type] / sections[i] - for j in range(4): - # d[i, j] = abs(coord[i][0] - coord[j][0]) - distance[i, j] = np.sqrt((coord[i][0] - coord[j][0]) ** 2 + (coord[i][1] - coord[j][1]) ** 2) - distance_prim[i, j] = np.sqrt((coord[i][0] - coord[j][2]) ** 2 + (coord[i][1] - coord[j][3]) ** 2) - if j != i: - inductance[i, j] = MU_0 / (2 * PI) * np.log(Q_(1, "m") / distance[i, j]) - inductance[j, i] = inductance[i, j] - lambdas[i, j] = 1 / (2 * PI * epsilon) * np.log(distance_prim[i, j] / distance[i, j]) - lambdas[j, i] = lambdas[i, j] - inductance[i, i] = MU_0 / (2 * PI) * np.log(Q_(1, "m") / gmr[i]) - lambdas[i, i] = 1 / (2 * PI * epsilon) * np.log(distance_prim[i, i] / radius[i]) - lambda_inv = Q_(nplin.inv(lambdas.magnitude), 1 / lambdas.units).to("F/km") # capacities (F/km) - c = Q_(np.zeros((4, 4), dtype=float), "F/km") # capacities (F/km) - g = Q_(np.zeros((4, 4), dtype=float), "S/km") # conductance (S/km) - for i in range(4): - c[i, i] = lambda_inv[i, i] - for j in range(4): - if j != i: - c[i, i] -= lambda_inv[i, j] - c[i, j] = -lambda_inv[i, j] - g[i, i] = TAN_D[insulator_type] * c[i, i] * OMEGA - - z_line = r + inductance * OMEGA * 1j - y = g + c * OMEGA * 1j - - y_shunt = Q_(np.zeros((4, 4), dtype=complex), "S/km") - for i in range(4): - for k in range(4): - y_shunt[i, i] += y[i, k] - for j in range(4): - if i != j: - y_shunt[i, j] = -y[i, j] - - return z_line, y_shunt, LineModel.LV_EXACT + r = RHO[conductor_type].m_as("ohm*m") / sections * np.eye(4, dtype=float) * 1e3 # resistance (ohm/km) + distance[mask_diagonal] = gmr + inductance = MU_0.m_as("H/m") / (2 * PI) * np.log(1 / distance) * 1e3 # H/m->H/km + distance[mask_diagonal] = radius + lambdas = 1 / (2 * PI * epsilon) * np.log(distance_prim / distance) # m/F + + # Extract the conductivity and the capacities from the lambda (potential coefficients) + lambda_inv = nplin.inv(lambdas) * 1e3 # capacities (F/km) + c = np.zeros((4, 4), dtype=float) # capacities (F/km) + c[mask_diagonal] = np.einsum("ij,ij->i", lambda_inv, minus) + c[mask_off_diagonal] = -lambda_inv[mask_off_diagonal] + g = np.zeros((4, 4), dtype=float) # conductance (S/km) + omega = OMEGA.m_as("rad/s") + g[mask_diagonal] = TAN_D[insulator_type] * np.einsum("ii->i", c) * omega + + # Build the impedance and admittance matrices + z_line = r + inductance * omega * 1j + y = g + c * omega * 1j + + # Compute the shunt admittance matrix from the admittance matrix + y_shunt = np.zeros((4, 4), dtype=complex) + y_shunt[mask_diagonal] = np.einsum("ij->i", y) + y_shunt[mask_off_diagonal] = -y[mask_off_diagonal] + + return z_line, y_shunt @classmethod - @ureg.wraps(None, (None, None, "mm²", "m", "mm"), strict=False) + @ureg_wraps(None, (None, None, "mm²", "m", "mm"), strict=False) def from_name_lv( cls, name: str, @@ -520,11 +479,11 @@ def from_name_lv( ) -> Self: """Method to get the electrical parameters of a LV line from its canonical name. Some hypothesis will be made: the section of the neutral is the same as the other sections, the height and - external diameter are pre-defined, and the insulation is PVC. + external diameter are pre-defined, and the insulator is PVC. Args: name: - The name of the line the parameters must be computed. Eg. "S_AL_150". + The name of the line the parameters must be computed. E.g. "U_AL_150". section_neutral: Surface of the neutral (mm²). If None it will be the same as the section of the other phases. @@ -548,7 +507,7 @@ def from_name_lv( line_type, conductor_type, section = name.split("_") line_type = LineType.from_string(line_type) conductor_type = ConductorType.from_string(conductor_type) - insulation_type = InsulationType.PVC + insulator_type = InsulatorType.PVC section = float(section) @@ -559,11 +518,11 @@ def from_name_lv( if external_diameter is None: external_diameter = Q_(40, "mm") - return cls.from_lv_exact( + return cls.from_geometry( name, line_type=line_type, conductor_type=conductor_type, - insulation_type=insulation_type, + insulator_type=insulator_type, section=section, section_neutral=section_neutral, height=height, @@ -576,7 +535,7 @@ def from_name_mv(cls, name: str) -> Self: Args: name: - The name of the line the parameters must be computed. Eg. "S_AL_150". + The name of the line the parameters must be computed. E.g. "U_AL_150". Returns: The corresponding line parameters. @@ -612,8 +571,8 @@ def from_name_mv(cls, name: str) -> Self: b = (c_b1 + c_b2 * section) * 1e-4 * OMEGA b = b.to("S/km") - z_line = (r + x * 1j) * np.eye(3) # in ohms/km - y_shunt = b * 1j * np.eye(3) # in siemens/km + z_line = (r + x * 1j) * np.eye(3, dtype=float) # in ohms/km + y_shunt = b * 1j * np.eye(3, dtype=float) # in siemens/km return cls(name, z_line=z_line, y_shunt=y_shunt) # @@ -630,35 +589,13 @@ def from_dict(cls, data: JsonDict) -> Self: Returns: The created line parameters. """ - type_id = data.pop("id") - model = LineModel.from_string(data["model"]) - if model == LineModel.LV_EXACT: - if not isinstance(type_id, str): - msg = f"The 'id' representing an LV Exact type name must be a string, got {type_id!r}" - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_ID_TYPE) - return cls.from_lv_exact(type_id, **data) - elif model in (LineModel.SYM_NEUTRAL, LineModel.SYM): - return cls.from_sym(type_id, **data) - elif model in (LineModel.ZY_NEUTRAL, LineModel.ZY, LineModel.Z, LineModel.Z_NEUTRAL): - z_line = np.asarray(data["z_line"][0]) + 1j * np.asarray(data["z_line"][1]) - if "y_shunt" in data: - y_shunt = np.asarray(data["y_shunt"][0]) + 1j * np.asarray(data["y_shunt"][1]) - else: - y_shunt = None - return cls(type_id, z_line=z_line, y_shunt=y_shunt) - else: - msg = f"The line {type_id!r} has an unknown model {model!r}..." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_LINE_MODEL) + z_line = np.asarray(data["z_line"][0]) + 1j * np.asarray(data["z_line"][1]) + y_shunt = np.asarray(data["y_shunt"][0]) + 1j * np.asarray(data["y_shunt"][1]) if "y_shunt" in data else None + return cls(id=data["id"], z_line=z_line, y_shunt=y_shunt) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: """Return the line parameters information as a dictionary format.""" - res = { - "id": self.id, - "model": "zy_neutral" if self._y_shunt is not None else "z_neutral", - "z_line": [self._z_line.real.tolist(), self._z_line.imag.tolist()], - } + res = {"id": self.id, "z_line": [self._z_line.real.tolist(), self._z_line.imag.tolist()]} if self.with_shunt: res["y_shunt"] = [self._y_shunt.real.tolist(), self._y_shunt.imag.tolist()] return res diff --git a/roseau/load_flow/models/loads/flexible_parameters.py b/roseau/load_flow/models/loads/flexible_parameters.py index 483404e3..55cdc7f6 100644 --- a/roseau/load_flow/models/loads/flexible_parameters.py +++ b/roseau/load_flow/models/loads/flexible_parameters.py @@ -7,7 +7,7 @@ from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.typing import ControlType, JsonDict, ProjectionType -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps from roseau.load_flow.utils import JsonMixin logger = logging.getLogger(__name__) @@ -23,32 +23,20 @@ class Control(JsonMixin): * ``"constant"``: no control is applied. In this case, a simple :class:`PowerLoad` without `flexible_params` could have been used instead. * ``"p_max_u_production"``: control the maximum production active power of the load (inverter) based on the - voltage :math:`P^{\\max}_{\\mathrm{prod}}(U)`. With this control, the following functions are used - (depending on the :math:`\\alpha` value). - - .. image:: /_static/Control_PU_Prod.svg - :width: 600 - :align: center + voltage :math:`P^{\\max}_{\\mathrm{prod}}(U)`. * ``"p_max_u_consumption"``: control the maximum consumption active power of the load based on the voltage - :math:`P^{\\max}_{\\mathrm{cons}}(U)`. With this control, the following functions are used - (depending on the :math:`\\alpha` value). - - .. image:: /_static/Control_PU_Cons.svg - :width: 600 - :align: center + :math:`P^{\\max}_{\\mathrm{cons}}(U)`. - * ``"q_u"``: control the reactive power based on the voltage :math:`Q(U)`. With this control, the following - functions are used (depending on the :math:`\\alpha` value). + * ``"q_u"``: control the reactive power based on the voltage :math:`Q(U)`. - .. image:: /_static/Control_QU.svg - :width: 600 - :align: center + See Also: + :ref:`Control documentation ` """ DEFAULT_ALPHA: float = 1000.0 - @ureg.wraps(None, (None, None, "V", "V", "V", "V", None), strict=False) + @ureg_wraps(None, (None, None, "V", "V", "V", "V", None), strict=False) def __init__( self, type: ControlType, @@ -103,14 +91,14 @@ def _check_values(self) -> None: elif self.type == "p_max_u_consumption": useless_values = {"u_max": self._u_max, "u_up": self._u_up} elif self.type == "q_u": - useless_values = dict() + useless_values = {} else: msg = f"Unsupported control type {self.type!r}" logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_CONTROL_TYPE) # Warn the user if a value different from 0 was given to the control for a useless value - msg_list = list() + msg_list = [] for name, value in useless_values.items(): if not np.isclose(value, 0): msg_list.append(f"{name!r} ({value:.1f} V)") @@ -156,26 +144,26 @@ def _check_values(self) -> None: raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_CONTROL_VALUE) @property - @ureg.wraps("V", (None,), strict=False) - def u_min(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def u_min(self) -> Q_[float]: """The minimum voltage i.e. the one the control reached the maximum action.""" return self._u_min @property - @ureg.wraps("V", (None,), strict=False) - def u_down(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def u_down(self) -> Q_[float]: """The voltage which starts to trigger the control (lower value).""" return self._u_down @property - @ureg.wraps("V", (None,), strict=False) - def u_up(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def u_up(self) -> Q_[float]: """TThe voltage which starts to trigger the control (upper value).""" return self._u_up @property - @ureg.wraps("V", (None,), strict=False) - def u_max(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def u_max(self) -> Q_[float]: """The maximum voltage i.e. the one the control reached its maximum action.""" return self._u_max @@ -191,13 +179,12 @@ def constant(cls) -> Self: return cls(type="constant", u_min=0.0, u_down=0.0, u_up=0.0, u_max=0.0) @classmethod - @ureg.wraps(None, (None, "V", "V", None), strict=False) + @ureg_wraps(None, (None, "V", "V", None), strict=False) def p_max_u_production(cls, u_up: float, u_max: float, alpha: float = DEFAULT_ALPHA) -> Self: """Create a control of the type ``"p_max_u_production"``. - .. image:: /_static/Control_PU_Prod.svg - :width: 600 - :align: center + See Also: + :ref:`$P(U)$ control documentation ` Args: u_up: @@ -221,13 +208,12 @@ def p_max_u_production(cls, u_up: float, u_max: float, alpha: float = DEFAULT_AL return cls(type="p_max_u_production", u_min=0.0, u_down=0.0, u_up=u_up, u_max=u_max, alpha=alpha) @classmethod - @ureg.wraps(None, (None, "V", "V", None), strict=False) + @ureg_wraps(None, (None, "V", "V", None), strict=False) def p_max_u_consumption(cls, u_min: float, u_down: float, alpha: float = DEFAULT_ALPHA) -> Self: """Create a control of the type ``"p_max_u_consumption"``. - .. image:: /_static/Control_PU_Cons.svg - :width: 600 - :align: center + See Also: + :ref:`$P(U)$ control documentation ` Args: u_min: @@ -251,13 +237,12 @@ def p_max_u_consumption(cls, u_min: float, u_down: float, alpha: float = DEFAULT return cls(type="p_max_u_consumption", u_min=u_min, u_down=u_down, u_up=0.0, u_max=0.0, alpha=alpha) @classmethod - @ureg.wraps(None, (None, "V", "V", "V", "V", None), strict=False) + @ureg_wraps(None, (None, "V", "V", "V", "V", None), strict=False) def q_u(cls, u_min: float, u_down: float, u_up: float, u_max: float, alpha: float = DEFAULT_ALPHA) -> Self: """Create a control of the type ``"q_u"``. - .. image:: /_static/Control_QU.svg - :width: 600 - :align: center + See Also: + :ref:`$Q(U)$ control documentation ` Args: u_min: @@ -311,7 +296,7 @@ def from_dict(cls, data: JsonDict) -> Self: logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_CONTROL_TYPE) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: if self.type == "constant": return {"type": "constant"} elif self.type == "p_max_u_production": @@ -348,26 +333,15 @@ class Projection(JsonMixin): The three possible projection types are: * ``"euclidean"``: for an Euclidean projection on the feasible space; - - .. image:: /_static/Euclidean_Projection.svg - :width: 300 - :align: center - * ``"keep_p"``: for maintaining a constant P; - - .. image:: /_static/Constant_P_Projection.svg - :width: 300 - :align: center - * ``"keep_q"``: for maintaining a constant Q. - .. image:: /_static/Constant_Q_Projection.svg - :width: 300 - :align: center + See Also: + :ref:`Projection documentation ` """ DEFAULT_ALPHA: float = 1000.0 - DEFAULT_EPSILON: float = 0.01 + DEFAULT_EPSILON: float = 1e-8 def __init__(self, type: ProjectionType, alpha: float = DEFAULT_ALPHA, epsilon: float = DEFAULT_EPSILON) -> None: """Projection constructor. @@ -383,11 +357,7 @@ def __init__(self, type: ProjectionType, alpha: float = DEFAULT_ALPHA, epsilon: This value is used to make soft sign function and to build a soft projection function. epsilon: - This value is used to make a smooth sqrt function. It is only used in the Euclidean projection. - - .. math:: - \\sqrt{S} = \\sqrt{\\varepsilon \\times - \\exp\\left(\\frac{-{|S|}^2}{\\varepsilon}\\right) + {|S|}^2} + This value is used to make a smooth sqrt function. """ self.type = type self._alpha = alpha @@ -440,7 +410,7 @@ def from_dict(cls, data: JsonDict) -> Self: epsilon = data["epsilon"] if "epsilon" in data else cls.DEFAULT_EPSILON return cls(type=data["type"], alpha=alpha, epsilon=epsilon) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: return {"type": self.type, "alpha": self._alpha, "epsilon": self._epsilon} def _results_to_dict(self, warning: bool) -> NoReturn: @@ -467,36 +437,14 @@ class FlexibleParameter(JsonMixin): For multi-phase loads, you need to use a `FlexibleParameter` instance per phase. - Depending on the mix of controls and projection used through this class, the feasible domains in the :math:`(P, Q)` - space changes. Here is an illustration with a theoretical power depicting a production (negative - :math:`P^{\\mathrm{theo.}}`). - - .. list-table:: - :class: borderless - :header-rows: 1 - :widths: 20 20 20 20 20 - - * - - - :math:`Q^{\\mathrm{const.}}` - - :math:`Q(U)` with an Euclidean projection - - :math:`Q(U)` with a constant P projection - - :math:`Q(U)` with a constant Q projection - * - :math:`P^{\\mathrm{const.}}` - - .. image:: /_static/Domain_Pconst_Qconst.svg - - .. image:: /_static/Domain_Pconst_QU_Eucl.svg - - .. image:: /_static/Domain_Pconst_QU_P.svg - - .. image:: /_static/Domain_Pconst_QU_Q.svg - * - :math:`P^{\\max}(U)` - - .. image:: /_static/Domain_PmaxU_Qconst.svg - - .. image:: /_static/Domain_PmaxU_QU.svg - - .. image:: /_static/Domain_PmaxU_QU.svg - - .. image:: /_static/Domain_PmaxU_QU.svg + See Also: + :ref:`Flexible Parameters documentation ` """ - control_class: type[Control] = Control - projection_class: type[Projection] = Projection + _control_class: type[Control] = Control + _projection_class: type[Projection] = Projection - @ureg.wraps(None, (None, None, None, None, "VA"), strict=False) + @ureg_wraps(None, (None, None, None, None, "VA"), strict=False) def __init__(self, control_p: Control, control_q: Control, projection: Projection, s_max: float) -> None: """FlexibleParameter constructor. @@ -527,8 +475,8 @@ def _check_values(self) -> None: raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SMAX_VALUE) @property - @ureg.wraps("VA", (None,), strict=False) - def s_max(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def s_max(self) -> Q_[float]: """The apparent power of the flexible load (VA). It is the radius of the feasible circle.""" return self._s_max @@ -541,14 +489,14 @@ def constant(cls) -> Self: load. """ return cls( - control_p=cls.control_class.constant(), - control_q=cls.control_class.constant(), - projection=cls.projection_class(type="euclidean"), + control_p=cls._control_class.constant(), + control_q=cls._control_class.constant(), + projection=cls._projection_class(type="euclidean"), s_max=1.0, ) @classmethod - @ureg.wraps(None, (None, "V", "V", "VA", None, None, None), strict=False) + @ureg_wraps(None, (None, "V", "V", "VA", None, None, None), strict=False) def p_max_u_production( cls, u_up: float, @@ -560,9 +508,8 @@ def p_max_u_production( ) -> Self: """Build flexible parameters for production ``P(U)`` control with a Euclidean projection. - .. image:: /_static/Control_PU_Prod.svg - :width: 600 - :align: center + See Also: + :ref:`$P(U)$ control documentation ` Args: u_up: @@ -592,16 +539,16 @@ def p_max_u_production( Returns: A flexible parameter which performs "p_max_u_production" control. """ - control_p = cls.control_class.p_max_u_production(u_up=u_up, u_max=u_max, alpha=alpha_control) + control_p = cls._control_class.p_max_u_production(u_up=u_up, u_max=u_max, alpha=alpha_control) return cls( control_p=control_p, - control_q=cls.control_class.constant(), - projection=cls.projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), + control_q=cls._control_class.constant(), + projection=cls._projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), s_max=s_max, ) @classmethod - @ureg.wraps(None, (None, "V", "V", "VA", None, None, None), strict=False) + @ureg_wraps(None, (None, "V", "V", "VA", None, None, None), strict=False) def p_max_u_consumption( cls, u_min: float, @@ -613,9 +560,8 @@ def p_max_u_consumption( ) -> Self: """Build flexible parameters for consumption ``P(U)`` control with a Euclidean projection. - .. image:: /_static/Control_PU_Cons.svg - :width: 600 - :align: center + See Also: + :ref:`$P(U)$ control documentation ` Args: u_min: @@ -642,16 +588,16 @@ def p_max_u_consumption( Returns: A flexible parameter which performs "p_max_u_consumption" control. """ - control_p = cls.control_class.p_max_u_consumption(u_min=u_min, u_down=u_down, alpha=alpha_control) + control_p = cls._control_class.p_max_u_consumption(u_min=u_min, u_down=u_down, alpha=alpha_control) return cls( control_p=control_p, - control_q=cls.control_class.constant(), - projection=cls.projection_class("euclidean", alpha=alpha_proj, epsilon=epsilon_proj), + control_q=cls._control_class.constant(), + projection=cls._projection_class("euclidean", alpha=alpha_proj, epsilon=epsilon_proj), s_max=s_max, ) @classmethod - @ureg.wraps(None, (None, "V", "V", "V", "V", "VA", None, None, None), strict=False) + @ureg_wraps(None, (None, "V", "V", "V", "V", "VA", None, None, None), strict=False) def q_u( cls, u_min: float, @@ -665,9 +611,8 @@ def q_u( ) -> Self: """Build flexible parameters for ``Q(U)`` control with a Euclidean projection. - .. image:: /_static/Control_QU.svg - :width: 600 - :align: center + See Also: + :ref:`$Q(U)$ control documentation ` Args: u_min: @@ -701,16 +646,16 @@ def q_u( Returns: A flexible parameter which performs "q_u" control. """ - control_q = cls.control_class.q_u(u_min=u_min, u_down=u_down, u_up=u_up, u_max=u_max, alpha=alpha_control) + control_q = cls._control_class.q_u(u_min=u_min, u_down=u_down, u_up=u_up, u_max=u_max, alpha=alpha_control) return cls( - control_p=cls.control_class.constant(), + control_p=cls._control_class.constant(), control_q=control_q, - projection=cls.projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), + projection=cls._projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), s_max=s_max, ) @classmethod - @ureg.wraps(None, (None, "V", "V", "V", "V", "V", "V", "VA", None, None, None), strict=False) + @ureg_wraps(None, (None, "V", "V", "V", "V", "V", "V", "VA", None, None, None), strict=False) def pq_u_production( cls, up_up: float, @@ -771,17 +716,17 @@ def pq_u_production( .. seealso:: :meth:`p_max_u_production` and :meth:`q_u` for more details. """ - control_p = cls.control_class.p_max_u_production(u_up=up_up, u_max=up_max, alpha=alpha_control) - control_q = cls.control_class.q_u(u_min=uq_min, u_down=uq_down, u_up=uq_up, u_max=uq_max, alpha=alpha_control) + control_p = cls._control_class.p_max_u_production(u_up=up_up, u_max=up_max, alpha=alpha_control) + control_q = cls._control_class.q_u(u_min=uq_min, u_down=uq_down, u_up=uq_up, u_max=uq_max, alpha=alpha_control) return cls( control_p=control_p, control_q=control_q, - projection=cls.projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), + projection=cls._projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), s_max=s_max, ) @classmethod - @ureg.wraps(None, (None, "V", "V", "V", "V", "V", "V", "VA", None, None, None), strict=False) + @ureg_wraps(None, (None, "V", "V", "V", "V", "V", "V", "VA", None, None, None), strict=False) def pq_u_consumption( cls, up_min: float, @@ -842,12 +787,12 @@ def pq_u_consumption( .. seealso:: :meth:`p_max_u_consumption` and :meth:`q_u` for more details. """ - control_p = cls.control_class.p_max_u_consumption(u_min=up_min, u_down=up_down, alpha=alpha_control) - control_q = cls.control_class.q_u(u_min=uq_min, u_down=uq_down, u_up=uq_up, u_max=uq_max, alpha=alpha_control) + control_p = cls._control_class.p_max_u_consumption(u_min=up_min, u_down=up_down, alpha=alpha_control) + control_q = cls._control_class.q_u(u_min=uq_min, u_down=uq_down, u_up=uq_up, u_max=uq_max, alpha=alpha_control) return cls( control_p=control_p, control_q=control_q, - projection=cls.projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), + projection=cls._projection_class(type="euclidean", alpha=alpha_proj, epsilon=epsilon_proj), s_max=s_max, ) @@ -856,12 +801,12 @@ def pq_u_consumption( # @classmethod def from_dict(cls, data: JsonDict) -> Self: - control_p = cls.control_class.from_dict(data["control_p"]) - control_q = cls.control_class.from_dict(data["control_q"]) - projection = cls.projection_class.from_dict(data["projection"]) + control_p = cls._control_class.from_dict(data["control_p"]) + control_q = cls._control_class.from_dict(data["control_q"]) + projection = cls._projection_class.from_dict(data["projection"]) return cls(control_p=control_p, control_q=control_q, projection=projection, s_max=data["s_max"]) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: return { "control_p": self.control_p.to_dict(), "control_q": self.control_q.to_dict(), diff --git a/roseau/load_flow/models/loads/loads.py b/roseau/load_flow/models/loads/loads.py index e00ebdc2..685a68cd 100644 --- a/roseau/load_flow/models/loads/loads.py +++ b/roseau/load_flow/models/loads/loads.py @@ -11,7 +11,7 @@ from roseau.load_flow.models.core import Element from roseau.load_flow.models.loads.flexible_parameters import FlexibleParameter from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) @@ -21,32 +21,10 @@ class AbstractLoad(Element, ABC): The subclasses of this class can be used to depict: * star-connected loads using a `phases` constructor argument containing a `"n"` - - .. tab:: European Standards - - .. image:: /_static/European_Star_Load.svg - :width: 300px - :align: center - - .. tab:: American Standards - - .. image:: /_static/American_Star_Load.svg - :width: 300px - :align: center - * delta-connected loads using a `phases` constructor argument which doesn't contain `"n"` - .. tab:: European Standards - - .. image:: /_static/European_Delta_Load.svg - :width: 300px - :align: center - - .. tab:: American Standards - - .. image:: /_static/American_Delta_Load.svg - :width: 300px - :align: center + See Also: + :doc:`Load documentation ` """ _power_load_class: type["PowerLoad"] @@ -124,8 +102,8 @@ def _res_currents_getter(self, warning: bool) -> np.ndarray: return self._res_getter(value=self._res_currents, warning=warning) @property - @ureg.wraps("A", (None,), strict=False) - def res_currents(self) -> Q_: + @ureg_wraps("A", (None,), strict=False) + def res_currents(self) -> Q_[np.ndarray]: """The load flow result of the load currents (A).""" return self._res_currents_getter(warning=True) @@ -144,11 +122,12 @@ def _validate_value(self, value: Sequence[complex]) -> np.ndarray: return np.asarray(value, dtype=complex) def _res_potentials_getter(self, warning: bool) -> np.ndarray: + self._raise_disconnected_error() return self.bus._get_potentials_of(self.phases, warning) @property - @ureg.wraps("V", (None,), strict=False) - def res_potentials(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def res_potentials(self) -> Q_[np.ndarray]: """The load flow result of the load potentials (V).""" return self._res_potentials_getter(warning=True) @@ -157,8 +136,8 @@ def _res_voltages_getter(self, warning: bool) -> np.ndarray: return calculate_voltages(potentials, self.phases) @property - @ureg.wraps("V", (None,), strict=False) - def res_voltages(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def res_voltages(self) -> Q_[np.ndarray]: """The load flow result of the load voltages (V).""" return self._res_voltages_getter(warning=True) @@ -168,8 +147,8 @@ def _res_powers_getter(self, warning: bool) -> np.ndarray: return pots * curs.conj() @property - @ureg.wraps("VA", (None,), strict=False) - def res_powers(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def res_powers(self) -> Q_[np.ndarray]: """The load flow result of the load powers (VA).""" return self._res_powers_getter(warning=True) @@ -181,6 +160,13 @@ def disconnect(self) -> None: self._disconnect() self.bus = None + def _raise_disconnected_error(self) -> None: + """Raise an error if the load is disconnected.""" + if self.bus is None: + msg = f"The load {self.id!r} is disconnected and cannot be used anymore." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT) + # # Json Mixin interface # @@ -218,21 +204,10 @@ def _results_to_dict(self, warning: bool) -> JsonDict: class PowerLoad(AbstractLoad): - r"""A constant power load. - - The equations are the following (star loads): - - .. math:: - I_{\mathrm{abc}} &= \left(\frac{S_{\mathrm{abc}}}{V_{\mathrm{abc}}-V_{\mathrm{n}}}\right)^{\star} \\ - I_{\mathrm{n}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}I_{p} - - and the following (delta loads): - - .. math:: - I_{\mathrm{ab}} &= \left(\frac{S_{\mathrm{ab}}}{V_{\mathrm{a}}-V_{\mathrm{b}}}\right)^{\star} \\ - I_{\mathrm{bc}} &= \left(\frac{S_{\mathrm{bc}}}{V_{\mathrm{b}}-V_{\mathrm{c}}}\right)^{\star} \\ - I_{\mathrm{ca}} &= \left(\frac{S_{\mathrm{ca}}}{V_{\mathrm{c}}-V_{\mathrm{a}}}\right)^{\star} + """A constant power load. + See Also: + :doc:`Power Load documentation ` """ _type = "power" @@ -272,11 +247,17 @@ def __init__( """ super().__init__(id=id, bus=bus, phases=phases, **kwargs) - if flexible_params: - if len(flexible_params) != self._size: - msg = f"Incorrect number of parameters: {len(flexible_params)} instead of {self._size}" - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PARAMETERS_SIZE) + if bus.short_circuits: + msg = ( + f"The power load {self.id!r} is connected on bus {bus.id!r} that already has a short-circuit. " + f"It makes the short-circuit calculation impossible." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SHORT_CIRCUIT) + if flexible_params and len(flexible_params) != self._size: + msg = f"Incorrect number of parameters: {len(flexible_params)} instead of {self._size}" + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PARAMETERS_SIZE) self._flexible_params = flexible_params self.powers = powers @@ -291,13 +272,13 @@ def is_flexible(self) -> bool: return self._flexible_params is not None @property - @ureg.wraps("VA", (None,), strict=False) - def powers(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def powers(self) -> Q_[np.ndarray]: """The powers of the load (VA).""" return self._powers @powers.setter - @ureg.wraps(None, (None, "VA"), strict=False) + @ureg_wraps(None, (None, "VA"), strict=False) def powers(self, value: Sequence[complex]) -> None: value = self._validate_value(value) if self.is_flexible: @@ -327,19 +308,16 @@ def _res_flexible_powers_getter(self, warning: bool) -> np.ndarray: return self._res_getter(value=self._res_flexible_powers, warning=warning) @property - @ureg.wraps("VA", (None,), strict=False) - def res_flexible_powers(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def res_flexible_powers(self) -> Q_[np.ndarray]: """The load flow result of the load flexible powers (VA).""" return self._res_flexible_powers_getter(warning=True) # # Json Mixin interface # - def to_dict(self) -> JsonDict: - if self.bus is None: - msg = f"The load {self.id!r} is disconnected and can not be used anymore." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT) + def to_dict(self, include_geometry: bool = True) -> JsonDict: + self._raise_disconnected_error() res = { "id": self.id, "bus": self.bus.id, @@ -366,20 +344,10 @@ def _results_to_dict(self, warning: bool) -> JsonDict: class CurrentLoad(AbstractLoad): - r"""A constant current load. + """A constant current load. - The equations are the following (star loads): - - .. math:: - I_{\mathrm{abc}} &= \mathrm{constant} \\ - I_{\mathrm{n}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}I_{p} - - and the following (delta loads): - - .. math:: - I_{\mathrm{ab}} &= \mathrm{constant} \\ - I_{\mathrm{bc}} &= \mathrm{constant} \\ - I_{\mathrm{ca}} &= \mathrm{constant} + See Also: + :doc:`Current Load documentation ` """ _type = "current" @@ -409,22 +377,19 @@ def __init__( self.currents = currents # handles size checks and unit conversion @property - @ureg.wraps("A", (None,), strict=False) - def currents(self) -> Q_: + @ureg_wraps("A", (None,), strict=False) + def currents(self) -> Q_[np.ndarray]: """The currents of the load (Amps).""" return self._currents @currents.setter - @ureg.wraps(None, (None, "A"), strict=False) + @ureg_wraps(None, (None, "A"), strict=False) def currents(self, value: Sequence[complex]) -> None: self._currents = self._validate_value(value) self._invalidate_network_results() - def to_dict(self) -> JsonDict: - if self.bus is None: - msg = f"The load {self.id!r} is disconnected and can not be used anymore." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT) + def to_dict(self, include_geometry: bool = True) -> JsonDict: + self._raise_disconnected_error() return { "id": self.id, "bus": self.bus.id, @@ -434,21 +399,10 @@ def to_dict(self) -> JsonDict: class ImpedanceLoad(AbstractLoad): - r"""A constant impedance load. - - The equations are the following (star loads): - - .. math:: - I_{\mathrm{abc}} &= \frac{\left(V_{\mathrm{abc}}-V_{\mathrm{n}}\right)}{Z_{\mathrm{abc}}} \\ - I_{\mathrm{n}} &= -\sum_{p\in\{\mathrm{a},\mathrm{b},\mathrm{c}\}}I_{p} - - and the following (delta loads): - - .. math:: - I_{\mathrm{ab}} &= \frac{\left(V_{\mathrm{a}}-V_{\mathrm{b}}\right)}{Z_{\mathrm{ab}}} \\ - I_{\mathrm{bc}} &= \frac{\left(V_{\mathrm{b}}-V_{\mathrm{c}}\right)}{Z_{\mathrm{bc}}} \\ - I_{\mathrm{ca}} &= \frac{\left(V_{\mathrm{c}}-V_{\mathrm{a}}\right)}{Z_{\mathrm{ca}}} + """A constant impedance load. + See Also: + :doc:`Impedance Load documentation ` """ _type = "impedance" @@ -478,22 +432,19 @@ def __init__( self.impedances = impedances @property - @ureg.wraps("ohm", (None,), strict=False) - def impedances(self) -> Q_: + @ureg_wraps("ohm", (None,), strict=False) + def impedances(self) -> Q_[np.ndarray]: """The impedances of the load (Ohms).""" return self._impedances @impedances.setter - @ureg.wraps(None, (None, "ohm"), strict=False) + @ureg_wraps(None, (None, "ohm"), strict=False) def impedances(self, impedances: Sequence[complex]) -> None: self._impedances = self._validate_value(impedances) self._invalidate_network_results() - def to_dict(self) -> JsonDict: - if self.bus is None: - msg = f"The load {self.id!r} is disconnected and can not be used anymore." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT) + def to_dict(self, include_geometry: bool = True) -> JsonDict: + self._raise_disconnected_error() return { "id": self.id, "bus": self.bus.id, diff --git a/roseau/load_flow/models/potential_refs.py b/roseau/load_flow/models/potential_refs.py index 08d82c25..deb25c3e 100644 --- a/roseau/load_flow/models/potential_refs.py +++ b/roseau/load_flow/models/potential_refs.py @@ -8,7 +8,7 @@ from roseau.load_flow.models.core import Element from roseau.load_flow.models.grounds import Ground from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) @@ -21,6 +21,9 @@ class PotentialRef(Element): can be set on any bus or ground elements. If set on a bus with no neutral and without specifying the phase, the reference will be set as ``Va + Vb + Vc = 0``. For other buses, the default is ``Vn = 0``. + + See Also: + :doc:`Potential reference model documentation ` """ allowed_phases = frozenset({"a", "b", "c", "n"}) @@ -68,8 +71,8 @@ def _res_current_getter(self, warning: bool) -> complex: return self._res_getter(self._res_current, warning) @property - @ureg.wraps("A", (None,), strict=False) - def res_current(self) -> Q_: + @ureg_wraps("A", (None,), strict=False) + def res_current(self) -> Q_[complex]: """The sum of the currents (A) of the connection associated to the potential reference. This sum should be equal to 0 after the load flow. @@ -83,7 +86,7 @@ def res_current(self) -> Q_: def from_dict(cls, data: JsonDict) -> Self: return cls(data["id"], data["element"], phase=data.get("phases")) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: res = {"id": self.id} e = self.element if isinstance(e, Bus): diff --git a/roseau/load_flow/models/sources.py b/roseau/load_flow/models/sources.py index 0afc34a5..5da3a7bd 100644 --- a/roseau/load_flow/models/sources.py +++ b/roseau/load_flow/models/sources.py @@ -10,31 +10,16 @@ from roseau.load_flow.models.buses import Bus from roseau.load_flow.models.core import Element from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg +from roseau.load_flow.units import Q_, ureg_wraps logger = logging.getLogger(__name__) class VoltageSource(Element): - r"""A voltage source. + """A voltage source. - The voltage equations are the following: - - For a Star (wye) connected source: - - .. math:: - \left(V_{\mathrm{a}}-V_{\mathrm{n}}\right) &= U_{\mathrm{an}} \\ - \left(V_{\mathrm{b}}-V_{\mathrm{n}}\right) &= U_{\mathrm{bn}} \\ - \left(V_{\mathrm{c}}-V_{\mathrm{n}}\right) &= U_{\mathrm{cn}} - - For a Delta connected source: - - .. math:: - \left(V_{\mathrm{a}}-V_{\mathrm{b}}\right) &= U_{\mathrm{ab}} \\ - \left(V_{\mathrm{b}}-V_{\mathrm{c}}\right) &= U_{\mathrm{bc}} \\ - \left(V_{\mathrm{c}}-V_{\mathrm{a}}\right) &= U_{\mathrm{ca}} - - Where $U$ is the voltage and $V$ is the node potential. + See Also: + :doc:`Voltage source model documentation ` """ allowed_phases = Bus.allowed_phases @@ -103,13 +88,13 @@ def __repr__(self) -> str: ) @property - @ureg.wraps("V", (None,), strict=False) - def voltages(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def voltages(self) -> Q_[np.ndarray]: """The voltages of the source (V).""" return self._voltages @voltages.setter - @ureg.wraps(None, (None, "V"), strict=False) + @ureg_wraps(None, (None, "V"), strict=False) def voltages(self, voltages: Sequence[complex]) -> None: if len(voltages) != self._size: msg = f"Incorrect number of voltages: {len(voltages)} instead of {self._size}" @@ -127,17 +112,18 @@ def _res_currents_getter(self, warning: bool) -> np.ndarray: return self._res_getter(value=self._res_currents, warning=warning) @property - @ureg.wraps("A", (None,), strict=False) - def res_currents(self) -> Q_: + @ureg_wraps("A", (None,), strict=False) + def res_currents(self) -> Q_[np.ndarray]: """The load flow result of the source currents (A).""" return self._res_currents_getter(warning=True) def _res_potentials_getter(self, warning: bool) -> np.ndarray: + self._raise_disconnected_error() return self.bus._get_potentials_of(self.phases, warning) @property - @ureg.wraps("V", (None,), strict=False) - def res_potentials(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def res_potentials(self) -> Q_[np.ndarray]: """The load flow result of the source potentials (V).""" return self._res_potentials_getter(warning=True) @@ -147,8 +133,8 @@ def _res_powers_getter(self, warning: bool) -> np.ndarray: return pots * curs.conj() @property - @ureg.wraps("VA", (None,), strict=False) - def res_powers(self) -> np.ndarray: + @ureg_wraps("VA", (None,), strict=False) + def res_powers(self) -> Q_[np.ndarray]: """The load flow result of the source powers (VA).""" return self._res_powers_getter(warning=True) @@ -160,6 +146,13 @@ def disconnect(self) -> None: self._disconnect() self.bus = None + def _raise_disconnected_error(self) -> None: + """Raise an error if the voltage source is disconnected.""" + if self.bus is None: + msg = f"The voltage source {self.id!r} is disconnected and cannot be used anymore." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT) + # # Json Mixin interface # @@ -168,11 +161,8 @@ def from_dict(cls, data: JsonDict) -> Self: voltages = [complex(v[0], v[1]) for v in data["voltages"]] return cls(data["id"], data["bus"], voltages=voltages, phases=data["phases"]) - def to_dict(self) -> JsonDict: - if self.bus is None: - msg = f"The voltage source {self.id!r} is disconnected and can not be used anymore." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT) + def to_dict(self, include_geometry: bool = True) -> JsonDict: + self._raise_disconnected_error() return { "id": self.id, "bus": self.bus.id, diff --git a/roseau/load_flow/models/tests/data/Network_1Ph.json b/roseau/load_flow/models/tests/data/Network_1Ph.json index 9a025c38..495bfc4f 100644 --- a/roseau/load_flow/models/tests/data/Network_1Ph.json +++ b/roseau/load_flow/models/tests/data/Network_1Ph.json @@ -1,164 +1,160 @@ { - "network": { - "version": 1, - "grounds": [ - { - "id": "gnd", - "buses": [ - { - "id": "bus1", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "gnd" - } - ], + "network": { + "version": 1, + "grounds": [ + { + "id": "gnd", "buses": [ - { - "id": "bus1", - "phases": "an", - "potentials": [ - [20000.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "bus2", - "phases": "an", - "potentials": [ - [20000.0, 0.0], - [0.0, 0.0] - ] - } - ], - "branches": [ - { - "id": "line", - "type": "line", - "phases1": "an", - "phases2": "an", - "bus1": "bus1", - "bus2": "bus2", - "length": 10, - "params_id": "lp" - } - ], - "loads": [ - { - "id": "load", - "bus": "bus2", - "phases": "an", - "powers": [ - [1500000.0, -500000.0] - ] - } - ], - "sources": [ - { - "id": "vs", - "bus": "bus1", - "phases": "an", - "voltages": [ - [20000.0, 0.0] - ] - } - ], - "lines_params": [ - { - "id": "lp", - "model": "z_neutral", - "z_line": [ - [ - [0.05, 0.0], - [0.0, 0.05] - ], - [ - [0.05, 0.0], - [0.0, 0.05] - ] - ] - } - ], - "transformers_params": [] + { + "id": "bus1", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "gnd" + } + ], + "buses": [ + { + "id": "bus1", + "phases": "an", + "potentials": [ + [20000.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "bus2", + "phases": "an", + "potentials": [ + [20000.0, 0.0], + [0.0, 0.0] + ] + } + ], + "branches": [ + { + "id": "line", + "type": "line", + "phases1": "an", + "phases2": "an", + "bus1": "bus1", + "bus2": "bus2", + "length": 10, + "params_id": "lp" + } + ], + "loads": [ + { + "id": "load", + "bus": "bus2", + "phases": "an", + "powers": [[1500000.0, -500000.0]] + } + ], + "sources": [ + { + "id": "vs", + "bus": "bus1", + "phases": "an", + "voltages": [[20000.0, 0.0]] + } + ], + "lines_params": [ + { + "id": "lp", + "model": "z_neutral", + "z_line": [ + [ + [0.05, 0.0], + [0.0, 0.05] + ], + [ + [0.05, 0.0], + [0.0, 0.05] + ] + ] + } + ], + "transformers_params": [] + }, + "results": { + "info": { + "status": "success", + "solver": "newton", + "solver_params": {}, + "iterations": 2, + "tolerance": 1e-6, + "residual": 1.9468870959826745e-12 }, - "results": { - "info": { - "status": "success", - "solver": "newton", - "solver_params": {}, - "iterations": 2, - "tolerance": 1e-06, - "residual": 1.9468870959826745e-12 - }, - "buses": [ - { - "id": "bus1", - "phases": "an", - "potentials": [ - [20000.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": "bus2", - "phases": "an", - "potentials": [ - [19974.685919734027, -50.00000000000026], - [25.31408026597291, 50.00000000000026] - ] - } - ], - "branches": [ - { - "id": "line", - "phases1": "an", - "phases2": "an", - "currents1": [ - [75.31408026597299, 24.68591973402753], - [-75.31408026597317, -24.685919734027355] - ], - "currents2": [ - [-75.31408026597299, -24.68591973402753], - [75.31408026597317, 24.685919734027355] - ] - } - ], - "loads": [ - { - "id": "load", - "phases": "an", - "currents": [ - [75.31408026597121, 24.685919734028797], - [-75.31408026597121, -24.685919734028797] - ] - } - ], - "sources": [ - { - "id": "vs", - "phases": "an", - "currents": [ - [-75.31408026597317, -24.685919734027358], - [75.31408026597317, 24.685919734027358] - ] - } - ], - "grounds": [ - { - "id": "gnd", - "potential": [0.0, 0.0] - } + "buses": [ + { + "id": "bus1", + "phases": "an", + "potentials": [ + [20000.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": "bus2", + "phases": "an", + "potentials": [ + [19974.685919734027, -50.00000000000026], + [25.31408026597291, 50.00000000000026] + ] + } + ], + "branches": [ + { + "id": "line", + "phases1": "an", + "phases2": "an", + "currents1": [ + [75.31408026597299, 24.68591973402753], + [-75.31408026597317, -24.685919734027355] ], - "potential_refs": [ - { - "id": "pref", - "current": [0.0, 3.552713678800501e-15] - } + "currents2": [ + [-75.31408026597299, -24.68591973402753], + [75.31408026597317, 24.685919734027355] + ] + } + ], + "loads": [ + { + "id": "load", + "phases": "an", + "currents": [ + [75.31408026597121, 24.685919734028797], + [-75.31408026597121, -24.685919734028797] + ] + } + ], + "sources": [ + { + "id": "vs", + "phases": "an", + "currents": [ + [-75.31408026597317, -24.685919734027358], + [75.31408026597317, 24.685919734027358] ] - } + } + ], + "grounds": [ + { + "id": "gnd", + "potential": [0.0, 0.0] + } + ], + "potential_refs": [ + { + "id": "pref", + "current": [0.0, 3.552713678800501e-15] + } + ] + } } diff --git a/roseau/load_flow/models/tests/data/Network_3Ph_Balanced.json b/roseau/load_flow/models/tests/data/Network_3Ph_Balanced.json index 1f6e1eb6..b44b8bbe 100644 --- a/roseau/load_flow/models/tests/data/Network_3Ph_Balanced.json +++ b/roseau/load_flow/models/tests/data/Network_3Ph_Balanced.json @@ -1,209 +1,169 @@ { - "network": { - "version": 1, - "grounds": [ - { - "id": "gnd", - "buses": [ - { - "id": "bus1", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "gnd" - } - ], - "buses": [ - { - "id": "bus1", - "phases": "abcn" - }, - { - "id": "bus2", - "phases": "abcn" - } - ], - "branches": [ - { - "id": "line", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "bus1", - "bus2": "bus2", - "length": 10, - "params_id": "lp" - } - ], - "loads": [ - { - "id": "load", - "bus": "bus2", - "phases": "abcn", - "powers": [ - [2000000.0, 0.0], - [2000000.0, 0.0], - [2000000.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "vs", - "bus": "bus1", - "phases": "abcn", - "voltages": [ - [20000.0, 0.0], - [-9999.999999999996, -17320.508075688773], - [-9999.999999999996, 17320.508075688773] - ] - } - ], - "lines_params": [ - { - "id": "lp", - "model": "z_neutral", - "z_line": [ - [ - [ - 0.05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.05 - ] - ], - [ - [ - 0.05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.05 - ] - ] - ] - } - ], - "transformers_params": [] - }, - "results": { - "info": {}, + "network": { + "version": 1, + "grounds": [ + { + "id": "gnd", "buses": [ - { - "id": "bus1", - "phases": "abcn", - "potentials": [ - [20000.0, 0.0], - [-9999.999999999996, -17320.508075688773], - [-9999.999999999996, 17320.508075688773], - [0.0, 0.0] - ] - }, - { - "id": "bus2", - "phases": "abcn", - "potentials": [ - [19949.748740546165, -49.99999999999989], - [-10018.175640462301, -17251.98920842959], - [-9931.573100083857, 17301.98920842959], - [3.544638799965941e-15, -4.655042719028526e-16] - ] - } - ], - "branches": [ - { - "id": "line", - "phases1": "abcn", - "phases2": "abcn", - "currents1": [ - [100.25125945383468, -0.2512594538348978], - [-50.3432267968783, -86.69450772148775], - [-49.90803265695649, 86.94576717532254], - [-3.0791345280630885e-15, 4.010143071868794e-15] - ], - "currents2": [ - [-100.25125945383468, 0.2512594538348978], - [50.3432267968783, 86.69450772148775], - [49.90803265695649, -86.94576717532254], - [3.0791345280630885e-15, -4.010143071868794e-15] - ] - } - ], - "loads": [ - { - "id": "load", - "phases": "abcn", - "currents": [ - [100.25125945383483, -0.25125945383483067], - [-50.34322679687937, -86.69450772148842], - [-49.908032656955434, 86.94576717532327], - [-2.842170943040401e-14, -1.4210854715202004e-14] - ] - } - ], - "sources": [ - { - "id": "vs", - "phases": "abcn", - "currents": [ - [-100.25125945383482, 0.25125945383502946], - [50.34322679687954, 86.69450772148834], - [49.90803265695527, -86.94576717532335], - [3.0793510102933297e-15, -9.450556656687148e-15] - ] - } - ], - "grounds": [ - { - "id": "gnd", - "potential": [0.0, 0.0] - } + { + "id": "bus1", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "gnd" + } + ], + "buses": [ + { + "id": "bus1", + "phases": "abcn" + }, + { + "id": "bus2", + "phases": "abcn" + } + ], + "branches": [ + { + "id": "line", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "bus1", + "bus2": "bus2", + "length": 10, + "params_id": "lp" + } + ], + "loads": [ + { + "id": "load", + "bus": "bus2", + "phases": "abcn", + "powers": [ + [2000000.0, 0.0], + [2000000.0, 0.0], + [2000000.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "vs", + "bus": "bus1", + "phases": "abcn", + "voltages": [ + [20000.0, 0.0], + [-9999.999999999996, -17320.508075688773], + [-9999.999999999996, 17320.508075688773] + ] + } + ], + "lines_params": [ + { + "id": "lp", + "model": "z_neutral", + "z_line": [ + [ + [0.05, 0.0, 0.0, 0.0], + [0.0, 0.05, 0.0, 0.0], + [0.0, 0.0, 0.05, 0.0], + [0.0, 0.0, 0.0, 0.05] + ], + [ + [0.05, 0.0, 0.0, 0.0], + [0.0, 0.05, 0.0, 0.0], + [0.0, 0.0, 0.05, 0.0], + [0.0, 0.0, 0.0, 0.05] + ] + ] + } + ], + "transformers_params": [] + }, + "results": { + "info": {}, + "buses": [ + { + "id": "bus1", + "phases": "abcn", + "potentials": [ + [20000.0, 0.0], + [-9999.999999999996, -17320.508075688773], + [-9999.999999999996, 17320.508075688773], + [0.0, 0.0] + ] + }, + { + "id": "bus2", + "phases": "abcn", + "potentials": [ + [19949.748740546165, -49.99999999999989], + [-10018.175640462301, -17251.98920842959], + [-9931.573100083857, 17301.98920842959], + [3.544638799965941e-15, -4.655042719028526e-16] + ] + } + ], + "branches": [ + { + "id": "line", + "phases1": "abcn", + "phases2": "abcn", + "currents1": [ + [100.25125945383468, -0.2512594538348978], + [-50.3432267968783, -86.69450772148775], + [-49.90803265695649, 86.94576717532254], + [-3.0791345280630885e-15, 4.010143071868794e-15] ], - "potential_refs": [ - { - "id": "pref", - "current": [2.1648223024119769e-19, -5.440413584818354e-15] - } + "currents2": [ + [-100.25125945383468, 0.2512594538348978], + [50.3432267968783, 86.69450772148775], + [49.90803265695649, -86.94576717532254], + [3.0791345280630885e-15, -4.010143071868794e-15] + ] + } + ], + "loads": [ + { + "id": "load", + "phases": "abcn", + "currents": [ + [100.25125945383483, -0.25125945383483067], + [-50.34322679687937, -86.69450772148842], + [-49.908032656955434, 86.94576717532327], + [-2.842170943040401e-14, -1.4210854715202004e-14] + ] + } + ], + "sources": [ + { + "id": "vs", + "phases": "abcn", + "currents": [ + [-100.25125945383482, 0.25125945383502946], + [50.34322679687954, 86.69450772148834], + [49.90803265695527, -86.94576717532335], + [3.0793510102933297e-15, -9.450556656687148e-15] ] - } + } + ], + "grounds": [ + { + "id": "gnd", + "potential": [0.0, 0.0] + } + ], + "potential_refs": [ + { + "id": "pref", + "current": [2.1648223024119769e-19, -5.440413584818354e-15] + } + ] + } } diff --git a/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced.json b/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced.json index 0abb9d3e..f817d13b 100644 --- a/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced.json +++ b/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced.json @@ -1,228 +1,188 @@ { - "network": { - "version": 1, - "grounds": [ - { - "id": "gnd", - "buses": [ - { - "id": "bus1", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "gnd" - } - ], + "network": { + "version": 1, + "grounds": [ + { + "id": "gnd", "buses": [ - { - "id": "bus1", - "phases": "abcn", - "potentials": [ - [20000.0, 0.0], - [-9999.999999999996, -17320.508075688773], - [-9999.999999999996, 17320.508075688773], - [0.0, 0.0] - ] - }, - { - "id": "bus2", - "phases": "abcn", - "potentials": [ - [20000.0, 0.0], - [-9999.999999999996, -17320.508075688773], - [-9999.999999999996, 17320.508075688773], - [0.0, 0.0] - ] - } - ], - "branches": [ - { - "id": "line", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": "bus1", - "bus2": "bus2", - "length": 10, - "params_id": "lp" - } - ], - "loads": [ - { - "id": "load", - "bus": "bus2", - "phases": "abcn", - "powers": [ - [2000000.0, 0.0], - [1000000.0, 500000.0], - [1500000.0, 0.0] - ] - } - ], - "sources": [ - { - "id": "vs", - "bus": "bus1", - "phases": "abcn", - "voltages": [ - [20000.0, 0.0], - [-9999.999999999996, -17320.508075688773], - [-9999.999999999996, 17320.508075688773] - ] - } - ], - "lines_params": [ - { - "id": "lp", - "model": "z_neutral", - "z_line": [ - [ - [ - 0.05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.05 - ] - ], - [ - [ - 0.05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.05 - ] - ] - ] - } - ], - "transformers_params": [] + { + "id": "bus1", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "gnd" + } + ], + "buses": [ + { + "id": "bus1", + "phases": "abcn", + "potentials": [ + [20000.0, 0.0], + [-9999.999999999996, -17320.508075688773], + [-9999.999999999996, 17320.508075688773], + [0.0, 0.0] + ] + }, + { + "id": "bus2", + "phases": "abcn", + "potentials": [ + [20000.0, 0.0], + [-9999.999999999996, -17320.508075688773], + [-9999.999999999996, 17320.508075688773], + [0.0, 0.0] + ] + } + ], + "branches": [ + { + "id": "line", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": "bus1", + "bus2": "bus2", + "length": 10, + "params_id": "lp" + } + ], + "loads": [ + { + "id": "load", + "bus": "bus2", + "phases": "abcn", + "powers": [ + [2000000.0, 0.0], + [1000000.0, 500000.0], + [1500000.0, 0.0] + ] + } + ], + "sources": [ + { + "id": "vs", + "bus": "bus1", + "phases": "abcn", + "voltages": [ + [20000.0, 0.0], + [-9999.999999999996, -17320.508075688773], + [-9999.999999999996, 17320.508075688773] + ] + } + ], + "lines_params": [ + { + "id": "lp", + "model": "z_neutral", + "z_line": [ + [ + [0.05, 0.0, 0.0, 0.0], + [0.0, 0.05, 0.0, 0.0], + [0.0, 0.0, 0.05, 0.0], + [0.0, 0.0, 0.0, 0.05] + ], + [ + [0.05, 0.0, 0.0, 0.0], + [0.0, 0.05, 0.0, 0.0], + [0.0, 0.0, 0.05, 0.0], + [0.0, 0.0, 0.0, 0.05] + ] + ] + } + ], + "transformers_params": [] + }, + "results": { + "info": { + "status": "success", + "solver": "newton", + "solver_params": {}, + "iterations": 2, + "tolerance": 1e-6, + "residual": 1.2896350654045818e-12 }, - "results": { - "info": { - "status": "success", - "solver": "newton", - "solver_params": {}, - "iterations": 2, - "tolerance": 1e-06, - "residual": 1.2896350654045818e-12 - }, - "buses": [ - { - "id": "bus1", - "phases": "abcn", - "potentials": [ - [20000.0, 0.0], - [-9999.999999999996, -17320.508075688773], - [-9999.999999999996, 17320.508075688773], - [0.0, 0.0] - ] - }, - { - "id": "bus2", - "phases": "abcn", - "potentials": [ - [19949.70918868138, -49.914688038585716], - [-9992.082295943741, -17281.739546644596], - [-9948.632862419658, 17306.653544143624], - [-8.994030317973111, 25.000690539556487] - ] - } - ], - "branches": [ - { - "id": "line", - "phases1": "abcn", - "phases2": "abcn", - "currents1": [ - [100.20549935720612, -0.3761232800346832], - [-46.68623310043222, -30.850824987921442], - [-37.5126060351904, 65.2216691254871], - [-16.006660221583374, -33.9947208575296] - ], - "currents2": [ - [-100.20549935720612, 0.3761232800346832], - [46.68623310043222, 30.850824987921442], - [37.5126060351904, -65.2216691254871], - [16.006660221583374, 33.9947208575296] - ] - } - ], - "loads": [ - { - "id": "load", - "phases": "abcn", - "currents": [ - [100.20549935720497, -0.37612328003408035], - [-46.68623310043201, -30.850824987922692], - [-37.51260603519053, 65.22166912548674], - [-16.00666022158243, -33.99472085752997] - ] - } - ], - "sources": [ - { - "id": "vs", - "phases": "abcn", - "currents": [ - [-100.20549935720585, 0.37612328003441564], - [46.68623310043194, 30.85082498792273], - [37.51260603519053, -65.22166912548674], - [16.006660221583374, 33.9947208575296] - ] - } - ], - "grounds": [ - { - "id": "gnd", - "potential": [0.0, 0.0] - } + "buses": [ + { + "id": "bus1", + "phases": "abcn", + "potentials": [ + [20000.0, 0.0], + [-9999.999999999996, -17320.508075688773], + [-9999.999999999996, 17320.508075688773], + [0.0, 0.0] + ] + }, + { + "id": "bus2", + "phases": "abcn", + "potentials": [ + [19949.70918868138, -49.914688038585716], + [-9992.082295943741, -17281.739546644596], + [-9948.632862419658, 17306.653544143624], + [-8.994030317973111, 25.000690539556487] + ] + } + ], + "branches": [ + { + "id": "line", + "phases1": "abcn", + "phases2": "abcn", + "currents1": [ + [100.20549935720612, -0.3761232800346832], + [-46.68623310043222, -30.850824987921442], + [-37.5126060351904, 65.2216691254871], + [-16.006660221583374, -33.9947208575296] ], - "potential_refs": [ - { - "id": "pref", - "current": [0.0, 0.0] - } + "currents2": [ + [-100.20549935720612, 0.3761232800346832], + [46.68623310043222, 30.850824987921442], + [37.5126060351904, -65.2216691254871], + [16.006660221583374, 33.9947208575296] + ] + } + ], + "loads": [ + { + "id": "load", + "phases": "abcn", + "currents": [ + [100.20549935720497, -0.37612328003408035], + [-46.68623310043201, -30.850824987922692], + [-37.51260603519053, 65.22166912548674], + [-16.00666022158243, -33.99472085752997] + ] + } + ], + "sources": [ + { + "id": "vs", + "phases": "abcn", + "currents": [ + [-100.20549935720585, 0.37612328003441564], + [46.68623310043194, 30.85082498792273], + [37.51260603519053, -65.22166912548674], + [16.006660221583374, 33.9947208575296] ] - } + } + ], + "grounds": [ + { + "id": "gnd", + "potential": [0.0, 0.0] + } + ], + "potential_refs": [ + { + "id": "pref", + "current": [0.0, 0.0] + } + ] + } } diff --git a/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced_Shunt.json b/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced_Shunt.json index 3d6c00bd..013fe973 100644 --- a/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced_Shunt.json +++ b/roseau/load_flow/models/tests/data/Network_3Ph_Unbalanced_Shunt.json @@ -1,243 +1,195 @@ { - "network": { - "version": 1, - "grounds": [ - { - "id": "gnd", - "buses": [ - { - "id": "sb", - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "gnd" - } - ], + "network": { + "version": 1, + "grounds": [ + { + "id": "gnd", "buses": [ - { - "id": "sb", - "phases": "abcn", - "potentials": [ - [11547.005383792517, 0.0], - [-5773.502691896257, -10000.000000000002], - [-5773.502691896257, 10000.000000000002], - [0.0, 0.0] - ] - }, - { - "id": "lb", - "phases": "abc", - "potentials": [ - [11547.005383792517, 0.0], - [-5773.502691896257, -10000.000000000002], - [-5773.502691896257, 10000.000000000002] - ] - } - ], - "branches": [ - { - "id": "line", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": "sb", - "bus2": "lb", - "length": 10, - "params_id": "lp", - "ground": "gnd" - } - ], - "loads": [ - { - "id": "load", - "bus": "lb", - "phases": "abc", - "powers": [ - [800000.0, 599999.9999999999], - [500000.0, 0.0], - [400000.0, 299999.99999999994] - ] - } - ], - "sources": [ - { - "id": "vs", - "bus": "sb", - "phases": "abcn", - "voltages": [ - [11547.005383792517, 0.0], - [-5773.502691896257, -10000.000000000002], - [-5773.502691896257, 10000.000000000002] - ] - } - ], - "lines_params": [ - { - "id": "lp", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.12918333333333334, - 0.0, - 0.0 - ], - [ - 0.0, - 0.12918333333333334, - 0.0 - ], - [ - 0.0, - 0.0, - 0.12918333333333334 - ] - ], - [ - [ - 0.10995533333333332, - 0.05497783333333334, - 0.05497783333333334 - ], - [ - 0.05497783333333334, - 0.10995533333333332, - 0.05497783333333334 - ], - [ - 0.05497783333333334, - 0.05497783333333334, - 0.10995533333333332 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 4.930205666666666e-05, - 6.073716666666661e-07, - 6.073716666666661e-07 - ], - [ - 6.073716666666661e-07, - 4.930205666666666e-05, - 6.073716666666661e-07 - ], - [ - 6.073716666666661e-07, - 6.073716666666661e-07, - 4.930205666666666e-05 - ] - ] - ] - } + { + "id": "sb", + "phase": "n" + } + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "gnd" + } + ], + "buses": [ + { + "id": "sb", + "phases": "abcn", + "potentials": [ + [11547.005383792517, 0.0], + [-5773.502691896257, -10000.000000000002], + [-5773.502691896257, 10000.000000000002], + [0.0, 0.0] + ] + }, + { + "id": "lb", + "phases": "abc", + "potentials": [ + [11547.005383792517, 0.0], + [-5773.502691896257, -10000.000000000002], + [-5773.502691896257, 10000.000000000002] + ] + } + ], + "branches": [ + { + "id": "line", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": "sb", + "bus2": "lb", + "length": 10, + "params_id": "lp", + "ground": "gnd" + } + ], + "loads": [ + { + "id": "load", + "bus": "lb", + "phases": "abc", + "powers": [ + [800000.0, 599999.9999999999], + [500000.0, 0.0], + [400000.0, 299999.99999999994] + ] + } + ], + "sources": [ + { + "id": "vs", + "bus": "sb", + "phases": "abcn", + "voltages": [ + [11547.005383792517, 0.0], + [-5773.502691896257, -10000.000000000002], + [-5773.502691896257, 10000.000000000002] + ] + } + ], + "lines_params": [ + { + "id": "lp", + "model": "zy_neutral", + "z_line": [ + [ + [0.12918333333333334, 0.0, 0.0], + [0.0, 0.12918333333333334, 0.0], + [0.0, 0.0, 0.12918333333333334] + ], + [ + [0.10995533333333332, 0.05497783333333334, 0.05497783333333334], + [0.05497783333333334, 0.10995533333333332, 0.05497783333333334], + [0.05497783333333334, 0.05497783333333334, 0.10995533333333332] + ] ], - "transformers_params": [] + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [4.930205666666666e-5, 6.073716666666661e-7, 6.073716666666661e-7], + [6.073716666666661e-7, 4.930205666666666e-5, 6.073716666666661e-7], + [6.073716666666661e-7, 6.073716666666661e-7, 4.930205666666666e-5] + ] + ] + } + ], + "transformers_params": [] + }, + "results": { + "info": { + "solver": "newton", + "solver_params": {}, + "tolerance": 1e-6, + "max_iterations": 20, + "status": "success", + "iterations": 2, + "residual": 8.284928298962768e-12 }, - "results": { - "info": { - "solver": "newton", - "solver_params": {}, - "tolerance": 1e-06, - "max_iterations": 20, - "status": "success", - "iterations": 2, - "residual": 8.284928298962768e-12 - }, - "buses": [ - { - "id": "sb", - "phases": "abcn", - "potentials": [ - [11547.005383792517, 0.0], - [-5773.502691896257, -10000.000000000002], - [-5773.502691896257, 10000.000000000002], - [0.0, 0.0] - ] - }, - { - "id": "lb", - "phases": "abc", - "potentials": [ - [11455.159113672085, 1.0958017067068864], - [-5723.334202012903, -9947.26661034906], - [-5731.824911659177, 9946.17080864235] - ] - } - ], - "branches": [ - { - "id": "line", - "phases1": "abc", - "phases2": "abc", - "currents1": [ - [59.88964164257595, -23.524538885127185], - [-45.15366676852227, -21.973732003466466], - [-14.735974874052772, 45.49827088859456] - ], - "currents2": [ - [-59.88990844117143, 29.124954657737362], - [50.01029608953468, 19.17455774824157], - [9.879612351638343, -48.29951240597802] - ] - } - ], - "loads": [ - { - "id": "load", - "phases": "abc", - "currents": [ - [59.88990844117971, -29.124954657740865], - [-50.010296089540994, -19.174557748241565], - [-9.879612351638723, 48.299512405982426] - ] - } - ], - "sources": [ - { - "id": "vs", - "phases": "abcn", - "currents": [ - [-59.88964164257699, 23.524538885127143], - [45.15366676852186, 21.973732003464814], - [14.735974874052634, -45.49827088859377], - [2.498404261253029e-12, 1.8188563719392925e-12] - ] - } - ], - "grounds": [ - { - "id": "gnd", - "potential": [0.0, 0.0] - } + "buses": [ + { + "id": "sb", + "phases": "abcn", + "potentials": [ + [11547.005383792517, 0.0], + [-5773.502691896257, -10000.000000000002], + [-5773.502691896257, 10000.000000000002], + [0.0, 0.0] + ] + }, + { + "id": "lb", + "phases": "abc", + "potentials": [ + [11455.159113672085, 1.0958017067068864], + [-5723.334202012903, -9947.26661034906], + [-5731.824911659177, 9946.17080864235] + ] + } + ], + "branches": [ + { + "id": "line", + "phases1": "abc", + "phases2": "abc", + "currents1": [ + [59.88964164257595, -23.524538885127185], + [-45.15366676852227, -21.973732003466466], + [-14.735974874052772, 45.49827088859456] ], - "potential_refs": [ - { - "id": "pref", - "current": [2.4975160828333287e-12, 1.8161918366801921e-12] - } + "currents2": [ + [-59.88990844117143, 29.124954657737362], + [50.01029608953468, 19.17455774824157], + [9.879612351638343, -48.29951240597802] + ] + } + ], + "loads": [ + { + "id": "load", + "phases": "abc", + "currents": [ + [59.88990844117971, -29.124954657740865], + [-50.010296089540994, -19.174557748241565], + [-9.879612351638723, 48.299512405982426] + ] + } + ], + "sources": [ + { + "id": "vs", + "phases": "abcn", + "currents": [ + [-59.88964164257699, 23.524538885127143], + [45.15366676852186, 21.973732003464814], + [14.735974874052634, -45.49827088859377], + [2.498404261253029e-12, 1.8188563719392925e-12] ] - } + } + ], + "grounds": [ + { + "id": "gnd", + "potential": [0.0, 0.0] + } + ], + "potential_refs": [ + { + "id": "pref", + "current": [2.4975160828333287e-12, 1.8161918366801921e-12] + } + ] + } } diff --git a/roseau/load_flow/models/tests/test_branches.py b/roseau/load_flow/models/tests/test_branches.py index ead9a97d..1b0bebf6 100644 --- a/roseau/load_flow/models/tests/test_branches.py +++ b/roseau/load_flow/models/tests/test_branches.py @@ -222,7 +222,7 @@ def test_powers_equal(network_with_results): ), ), ) -def test_lines_res_powers(phases, z_line, y_shunt, len_line, bus_pot, line_cur, ground_pot, expected_pow): +def test_lines_results(phases, z_line, y_shunt, len_line, bus_pot, line_cur, ground_pot, expected_pow): bus1 = Bus("bus1", phases=phases["bus1"]) bus2 = Bus("bus2", phases=phases["bus2"]) y_shunt = np.asarray(y_shunt, dtype=complex) if y_shunt is not None else None @@ -257,3 +257,10 @@ def test_lines_res_powers(phases, z_line, y_shunt, len_line, bus_pot, line_cur, # Sanity check: the total power lost is equal to the sum of the powers flowing through assert np.allclose(res_powers1 + res_powers2, line_losses) + + # Check currents (Kirchhoff's law at each end of the line) + i1_line, i2_line = line.res_currents + i_series = line.res_series_currents + i1_shunt, i2_shunt = line.res_shunt_currents + assert np.allclose(i1_line, i_series + i1_shunt) + assert np.allclose(i2_line + i_series, i2_shunt, atol=1.0e-4) diff --git a/roseau/load_flow/models/tests/test_buses.py b/roseau/load_flow/models/tests/test_buses.py index 490f4e93..298d7564 100644 --- a/roseau/load_flow/models/tests/test_buses.py +++ b/roseau/load_flow/models/tests/test_buses.py @@ -1,6 +1,16 @@ import numpy as np +import pytest -from roseau.load_flow import Bus +from roseau.load_flow import ( + Bus, + ElectricalNetwork, + Ground, + PotentialRef, + PowerLoad, + RoseauLoadFlowException, + RoseauLoadFlowExceptionCode, + VoltageSource, +) def test_bus_potentials_of_phases(): @@ -14,3 +24,53 @@ def test_bus_potentials_of_phases(): assert np.allclose(bus._get_potentials_of("ca", warning=False), [3, 1]) assert np.allclose(bus._get_potentials_of("n", warning=False), [4]) assert np.allclose(bus._get_potentials_of("", warning=False), []) + + +def test_short_circuit(): + bus = Bus("bus", phases="abc") + + # Bad parameters + with pytest.raises(RoseauLoadFlowException) as e: + bus.add_short_circuit("a", "n") + assert "Phase 'n' is not in the phases" in e.value.msg + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_PHASE + with pytest.raises(RoseauLoadFlowException) as e: + bus.add_short_circuit("n", "a") + assert "Phase 'n' is not in the phases" in e.value.msg + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_PHASE + with pytest.raises(RoseauLoadFlowException) as e: + bus.add_short_circuit("a", "a") + assert "some phases are duplicated" in e.value.msg + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_PHASE + with pytest.raises(RoseauLoadFlowException) as e: + bus.add_short_circuit("a") + assert "at least two phases (or a phase and a ground) should be given" in e.value.msg + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_PHASE + + assert not bus._short_circuits + bus.add_short_circuit("c", "a", "b") + assert bus._short_circuits[0]["phases"] == ["c", "a", "b"] + assert bus._short_circuits[0]["ground"] is None + + # Dict methods + vn = 400 / np.sqrt(3) + voltages = [vn, vn * np.exp(-2 / 3 * np.pi * 1j), vn * np.exp(2 / 3 * np.pi * 1j)] + _ = VoltageSource("vs", bus=bus, voltages=voltages) + _ = PotentialRef("pref", element=bus) + en = ElectricalNetwork.from_element(bus) + en2 = ElectricalNetwork.from_dict(en.to_dict()) + assert en2.buses["bus"]._short_circuits[0]["phases"] == ["c", "a", "b"] + assert en2.buses["bus"]._short_circuits[0]["ground"] is None + + ground = Ground("ground") + bus.add_short_circuit("a", ground=ground) # ok + assert len(bus.short_circuits) == 2 + + # With power load + bus.clear_short_circuits() + assert not bus.short_circuits + PowerLoad(id="load", bus=bus, powers=[10, 10, 10]) + with pytest.raises(RoseauLoadFlowException) as e: + bus.add_short_circuit("a", "b") + assert "is already connected on bus" in e.value.msg + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_SHORT_CIRCUIT diff --git a/roseau/load_flow/models/tests/test_line_parameters.py b/roseau/load_flow/models/tests/test_line_parameters.py index ecd48252..1dcfb110 100644 --- a/roseau/load_flow/models/tests/test_line_parameters.py +++ b/roseau/load_flow/models/tests/test_line_parameters.py @@ -5,7 +5,7 @@ from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.models import Bus, Ground, Line, LineParameters -from roseau.load_flow.utils import ConductorType, InsulationType, LineModel, LineType +from roseau.load_flow.utils import ConductorType, InsulatorType, LineType def test_line_parameters(): @@ -15,10 +15,8 @@ def test_line_parameters(): # Real element off the diagonal (Z) z_line = np.ones(shape=(4, 4), dtype=complex) y_shunt = np.eye(4, dtype=complex) - with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) - Line("line", bus, bus, phases="abcn", ground=ground, parameters=lp, length=2.5) + LineParameters("test", z_line=z_line, y_shunt=y_shunt) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_LINE_VALUE assert e.value.msg == "The z_line matrix of line type 'test' has off-diagonal elements with a non-zero real part." @@ -26,8 +24,7 @@ def test_line_parameters(): z_line = np.eye(3, dtype=complex) y_shunt = np.ones(shape=(3, 3), dtype=complex) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) - Line("line", bus, bus, phases="abc", ground=ground, parameters=lp, length=2.5) + LineParameters("test", z_line=z_line, y_shunt=y_shunt) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Y_SHUNT_VALUE assert e.value.msg == "The y_shunt matrix of line type 'test' has off-diagonal elements with a non-zero real part." @@ -36,8 +33,7 @@ def test_line_parameters(): z_line[1, 1] = -3 y_shunt = -2 * np.eye(4, dtype=complex) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) - Line("line", bus, bus, phases="abcn", ground=ground, parameters=lp, length=2.4) + LineParameters("test", z_line=z_line, y_shunt=y_shunt) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_LINE_VALUE assert e.value.msg == "The z_line matrix of line type 'test' has coefficients with negative real part." @@ -45,8 +41,7 @@ def test_line_parameters(): y_shunt = 2 * np.eye(3, dtype=complex) y_shunt[1, 1] = -3 with pytest.raises(RoseauLoadFlowException): - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) - Line("line", bus, bus, phases="abcn", ground=ground, parameters=lp, length=2.4) + LineParameters("test", z_line=z_line, y_shunt=y_shunt) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_LINE_VALUE assert e.value.msg == "The z_line matrix of line type 'test' has coefficients with negative real part." @@ -54,16 +49,15 @@ def test_line_parameters(): z_line = np.eye(4, dtype=complex)[:, :2] y_shunt = np.eye(4, dtype=complex) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) - Line("line", bus, bus, phases="abcn", ground=ground, parameters=lp, length=2.4) + LineParameters("test", z_line=z_line, y_shunt=y_shunt) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_LINE_SHAPE assert e.value.msg == "The z_line matrix of line type 'test' has incorrect dimensions (4, 2)." # Bad shape (LV - Y) z_line = np.eye(4, dtype=complex) y_shunt = np.eye(3, dtype=complex) + lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) Line("line", bus, bus, phases="abcn", ground=ground, parameters=lp, length=2.4) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Y_SHUNT_SHAPE assert e.value.msg == "Incorrect y_shunt dimensions for line 'line': (3, 3) instead of (4, 4)" @@ -72,16 +66,15 @@ def test_line_parameters(): z_line = np.eye(4, dtype=complex)[:, :2] y_shunt = np.eye(3, dtype=complex) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) - Line("line", bus, bus, phases="abc", ground=ground, parameters=lp, length=2.4) + LineParameters("test", z_line=z_line, y_shunt=y_shunt) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_LINE_SHAPE assert e.value.msg == "The z_line matrix of line type 'test' has incorrect dimensions (4, 2)." # Bad shape (MV - Y) z_line = np.eye(3, dtype=complex) y_shunt = np.eye(6, dtype=complex) + lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) Line("line", bus, bus, phases="abc", ground=ground, parameters=lp, length=2.4) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Y_SHUNT_SHAPE assert e.value.msg == "Incorrect y_shunt dimensions for line 'line': (6, 6) instead of (3, 3)" @@ -89,8 +82,8 @@ def test_line_parameters(): # LV line with not zero shunt admittance z_line = np.eye(3, dtype=complex) y_shunt = np.eye(3, dtype=complex) + lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) with pytest.raises(RoseauLoadFlowException) as e: - lp = LineParameters("test", z_line=z_line, y_shunt=y_shunt) Line("line", bus, bus, phases="abcn", ground=ground, parameters=lp, length=2.4) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_LINE_SHAPE assert e.value.msg == "Incorrect z_line dimensions for line 'line': (3, 3) instead of (4, 4)" @@ -114,23 +107,15 @@ def test_line_parameters(): assert e.value.code == RoseauLoadFlowExceptionCode.BAD_LINE_MODEL -def test_bad_model(): - # Unknown line model - data = {"model": "unknown", "id": "test"} - with pytest.raises(RoseauLoadFlowException) as e: - LineParameters.from_dict(data=data) - assert e.value.code == RoseauLoadFlowExceptionCode.BAD_LINE_MODEL - - -def test_lv_exact(): +def test_geometry(): # line_data = {"dpp": 0, "dpn": 0, "dsh": 0.04} # Working example - z_line, y_shunt, model = LineParameters._lv_exact_to_zy( + z_line, y_shunt = LineParameters._geometry_to_zy( "test", line_type=LineType.OVERHEAD, conductor_type=ConductorType.AL, - insulator_type=InsulationType.PEX, + insulator_type=InsulatorType.PEX, section=150, section_neutral=70, height=10, @@ -153,46 +138,45 @@ def test_lv_exact(): ] ) - npt.assert_allclose(z_line.m_as("ohm/km"), nplin.inv(y_line_expected)) + npt.assert_allclose(z_line, nplin.inv(y_line_expected)) y_shunt_expected = np.array( [ [ - 9.88365369e-08 + 4.88246547e-05j, - -0.00000000e00 - 1.92652134e-06j, - -0.00000000e00 - 1.92555213e-06j, - -0.00000000e00 - 1.20270689e-05j, + 9.89734304e-08 + 4.88922793e-05j, + -0.00000000e00 - 1.92918966e-06j, + -0.00000000e00 - 1.92821912e-06j, + -0.00000000e00 - 1.20437270e-05j, ], [ - -0.00000000e00 - 1.92652134e-06j, - 9.88365369e-08 + 4.88246547e-05j, - -0.00000000e00 - 1.92555213e-06j, - -0.00000000e00 - 1.20270689e-05j, + -0.00000000e00 - 1.92918966e-06j, + 9.89734304e-08 + 4.88922793e-05j, + -0.00000000e00 - 1.92821912e-06j, + -0.00000000e00 - 1.20437270e-05j, ], [ - -0.00000000e00 - 1.92555213e-06j, - -0.00000000e00 - 1.92555213e-06j, - 9.88422745e-08 + 4.88265397e-05j, - -0.00000000e00 - 1.20280106e-05j, + -0.00000000e00 - 1.92821912e-06j, + -0.00000000e00 - 1.92821912e-06j, + 9.89791759e-08 + 4.88941669e-05j, + -0.00000000e00 - 1.20446700e-05j, ], [ - -0.00000000e00 - 1.20270689e-05j, - -0.00000000e00 - 1.20270689e-05j, - -0.00000000e00 - 1.20280106e-05j, - 2.13032359e-07 + 1.07092935e-04j, + -0.00000000e00 - 1.20437270e-05j, + -0.00000000e00 - 1.20437270e-05j, + -0.00000000e00 - 1.20446700e-05j, + 2.13327419e-07 + 1.07241264e-04j, ], ] ) - npt.assert_allclose(y_shunt.m_as("S/km"), y_shunt_expected) - assert model == LineModel.LV_EXACT + npt.assert_allclose(y_shunt, y_shunt_expected) # line_data = {"dpp": 0, "dpn": 0, "dsh": 0.04} # Working example - z_line, y_shunt, model = LineParameters._lv_exact_to_zy( + z_line, y_shunt = LineParameters._geometry_to_zy( "test", line_type=LineType.UNDERGROUND, conductor_type=ConductorType.AL, - insulator_type=InsulationType.PVC, + insulator_type=InsulatorType.PVC, section=150, section_neutral=70, height=-1.5, @@ -213,65 +197,54 @@ def test_lv_exact(): [-0.03859093131793137, 0.20837873067712717, -0.03859093131792582, -0.6182914857776997], ] ) - npt.assert_allclose(z_line.m_as("ohm/km"), nplin.inv(y_line_expected)) + npt.assert_allclose(z_line, nplin.inv(y_line_expected)) y_shunt_expected = np.array( [ [ - 1.90627193e-05 + 4.58276186e-04j, - -0.00000000e00 - 7.47170855e-05j, - -0.00000000e00 - 2.09865188e-05j, - -0.00000000e00 - 4.48605942e-05j, + 1.90891221e-05 + 4.58910922e-04j, + -0.00000000e00 - 7.48205724e-05j, + -0.00000000e00 - 2.10155861e-05j, + -0.00000000e00 - 4.49227283e-05j, ], [ - -0.00000000e00 - 7.47170855e-05j, - 2.06105773e-05 + 4.99042392e-04j, - -0.00000000e00 - 7.47170855e-05j, - -0.00000000e00 - 6.09859898e-06j, + -0.00000000e00 - 7.48205724e-05j, + 2.06391240e-05 + 4.99733590e-04j, + -0.00000000e00 - 7.48205724e-05j, + -0.00000000e00 - 6.10704585e-06j, ], [ - -0.00000000e00 - 2.09865188e-05j, - -0.00000000e00 - 7.47170855e-05j, - 1.90627193e-05 + 4.58276186e-04j, - -0.00000000e00 - 4.48605942e-05j, + -0.00000000e00 - 2.10155861e-05j, + -0.00000000e00 - 7.48205724e-05j, + 1.90891221e-05 + 4.58910922e-04j, + -0.00000000e00 - 4.49227283e-05j, ], [ - -0.00000000e00 - 4.48605942e-05j, - -0.00000000e00 - 6.09859898e-06j, - -0.00000000e00 - 4.48605942e-05j, - 1.26671519e-05 + 3.06938986e-04j, + -0.00000000e00 - 4.49227283e-05j, + -0.00000000e00 - 6.10704585e-06j, + -0.00000000e00 - 4.49227283e-05j, + 1.26846966e-05 + 3.07364112e-04j, ], ] ) - npt.assert_allclose(y_shunt.m_as("S/km"), y_shunt_expected) - assert model == LineModel.LV_EXACT + npt.assert_allclose(y_shunt, y_shunt_expected) def test_sym(): # With the bad model of PwF # line_data = {"id": "NKBA NOR 25.00 kV", "un": 25000.0, "in": 277.0000100135803} - z_line, y_shunt, model = LineParameters._sym_to_zy( - "NKBA NOR 25.00 kV", - z0=0.0j, - z1=1.0 + 1.0j, - zn=0.0j, - xpn=0.0, - y0=0.0j, - y1=1e-06j, - bn=0.0, - bpn=0.0, - model=LineModel.SYM, + z_line, y_shunt = LineParameters._sym_to_zy( + "NKBA NOR 25.00 kV", z0=0.0j, z1=1.0 + 1.0j, zn=0.0j, xpn=0.0, y0=0.0j, y1=1e-06j, bn=0.0, bpn=0.0 ) z_line_expected = (1 + 1j) * np.eye(3) npt.assert_allclose(z_line, z_line_expected) y_shunt_expected = 1e-6j * np.eye(3) npt.assert_allclose(y_shunt, y_shunt_expected) - assert model == LineModel.SYM # line_data = {"id": "NKBA 4x150 1.00 kV", "un": 1000.0, "in": 361.0000014305115} - - z_line, y_shunt, model = LineParameters._sym_to_zy( + # Downgraded model because of PwF bad data + z_line, y_shunt = LineParameters._sym_to_zy( "NKBA 4x150 1.00 kV", z0=0.5 + 0.3050000071525574j, z1=0.125 + 0.0860000029206276j, @@ -281,7 +254,6 @@ def test_sym(): y1=0.0j, bn=0.0, bpn=0.0, - model=LineModel.SYM_NEUTRAL, ) z_line_expected = np.array( [ @@ -294,12 +266,11 @@ def test_sym(): npt.assert_allclose(z_line, z_line_expected) y_shunt_expected = np.zeros(shape=(3, 3), dtype=complex) npt.assert_allclose(y_shunt, y_shunt_expected) - assert model == LineModel.SYM # Downgraded model because of PwF bad data # First line # line_data = {"id": "sym_neutral_underground_line_example", "un": 400.0, "in": 150} - z_line, y_shunt, model = LineParameters._sym_to_zy( + z_line, y_shunt = LineParameters._sym_to_zy( "sym_neutral_underground_line_example", z0=0.188 + 0.8224j, z1=0.188 + 0.0812j, @@ -309,7 +280,6 @@ def test_sym(): y1=0.000010462 + 0.00022999j, bn=0.00011407, bpn=-0.000031502, - model=LineModel.SYM_NEUTRAL, ) z_line_expected = np.array( [ @@ -329,19 +299,17 @@ def test_sym(): ] ) npt.assert_allclose(y_shunt, y_shunt_expected) - assert model == LineModel.SYM_NEUTRAL # Second line # line_data = {"id": "sym_line_example", "un": 20000.0, "in": 309} - z_line, y_shunt, model = LineParameters._sym_to_zy( - "sym_line_example", z0=0.2 + 0.1j, z1=0.2 + 0.1j, zn=0.4029, y0=0.00014106j, y1=0.00014106j, model=LineModel.SYM + z_line, y_shunt = LineParameters._sym_to_zy( + "sym_line_example", z0=0.2 + 0.1j, z1=0.2 + 0.1j, zn=0.4029, y0=0.00014106j, y1=0.00014106j ) z_line_expected = (0.2 + 0.1j) * np.eye(3) npt.assert_allclose(z_line, z_line_expected) y_shunt_expected = 0.00014106j * np.eye(3) npt.assert_allclose(y_shunt, y_shunt_expected) - assert model == LineModel.SYM def test_from_name_lv(): @@ -355,6 +323,10 @@ def test_from_name_lv(): assert lp.y_shunt.shape == (4, 4) assert (lp.z_line.real >= 0).all().all() + lp2 = LineParameters.from_name_lv("U_AL_150") + npt.assert_allclose(lp2.z_line.m_as("ohm/km"), lp.z_line.m_as("ohm/km")) + npt.assert_allclose(lp2.y_shunt.m_as("S/km"), lp.y_shunt.m_as("S/km"), rtol=1e-4) + def test_from_name_mv(): with pytest.raises(RoseauLoadFlowException) as e: @@ -368,3 +340,8 @@ def test_from_name_mv(): npt.assert_allclose(lp.z_line.m_as("ohm/km"), z_line_expected) npt.assert_allclose(lp.y_shunt.m_as("S/km"), y_shunt_expected, rtol=1e-4) + + # The same with "underground" + lp = LineParameters.from_name_mv("U_AL_150") + npt.assert_allclose(lp.z_line.m_as("ohm/km"), z_line_expected) + npt.assert_allclose(lp.y_shunt.m_as("S/km"), y_shunt_expected, rtol=1e-4) diff --git a/roseau/load_flow/models/tests/test_loads.py b/roseau/load_flow/models/tests/test_loads.py index 1ed1f14b..d4244542 100644 --- a/roseau/load_flow/models/tests/test_loads.py +++ b/roseau/load_flow/models/tests/test_loads.py @@ -65,23 +65,23 @@ def test_loads(): assert "Incorrect number of impedances" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_SIZE + fp = [FlexibleParameter.constant()] * 3 with pytest.raises(RoseauLoadFlowException) as e: - fp = [FlexibleParameter.constant()] * 3 PowerLoad("load", bus, phases="abcn", powers=[100, 100], flexible_params=fp) assert "Incorrect number of powers" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_S_SIZE + fp = [FlexibleParameter.constant()] * 3 with pytest.raises(RoseauLoadFlowException) as e: - fp = [FlexibleParameter.constant()] * 3 PowerLoad("load", bus, phases="abcn", powers=[100, 100, 100, 100], flexible_params=fp) assert "Incorrect number of powers" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_S_SIZE + fp = [FlexibleParameter.constant()] * 2 with pytest.raises(RoseauLoadFlowException) as e: - fp = [FlexibleParameter.constant()] * 2 PowerLoad("load", bus, phases="abcn", powers=[100, 100, 100], flexible_params=fp) assert "Incorrect number of parameters" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PARAMETERS_SIZE + fp = [FlexibleParameter.constant()] * 4 with pytest.raises(RoseauLoadFlowException) as e: - fp = [FlexibleParameter.constant()] * 4 PowerLoad("load", bus, phases="abcn", powers=[100, 100, 100], flexible_params=fp) assert "Incorrect number of parameters" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PARAMETERS_SIZE @@ -144,6 +144,14 @@ def test_loads(): assert "An impedance of the load" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_Z_VALUE + # Short-circuit + bus = Bus(id="bus", phases="abcn") + bus.add_short_circuit("a", "b") + with pytest.raises(RoseauLoadFlowException) as e: + PowerLoad(id="load", bus=bus, powers=[10, 10, 10]) + assert "that already has a short-circuit. It makes the short-circuit calculation impossible." in e.value.msg + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_SHORT_CIRCUIT + def test_flexible_load(): bus = Bus("bus", phases="abcn") diff --git a/roseau/load_flow/models/tests/test_phases.py b/roseau/load_flow/models/tests/test_phases.py index 9220fd51..945e6675 100644 --- a/roseau/load_flow/models/tests/test_phases.py +++ b/roseau/load_flow/models/tests/test_phases.py @@ -217,14 +217,16 @@ def test_switches_phases(): assert switch.phases == switch.phases1 == switch.phases2 == "ca" -def test_transformer_phases(): +def test_transformer_three_phases(): bus1 = Bus("bus-1", phases="abcn") bus2 = Bus("bus-2", phases="abcn") - assert Transformer.allowed_phases == {"abc", "abcn"} + assert Transformer.allowed_phases == Bus.allowed_phases # Not allowed - tp = TransformerParameters.from_name("H61_50kVA", "Dyn11") + tp = TransformerParameters( + id="H61_50kVA", type="Dyn11", uhv=20000, ulv=400, sn=50 * 1e3, p0=145, i0=1.8 / 100, psc=1350, vsc=4 / 100 + ) for ph in ("ba", "nc", "anb", "nabc", "acb"): with pytest.raises(RoseauLoadFlowException) as e: Transformer("tr1", bus1, bus2, phases1=ph, phases2=ph, parameters=tp) @@ -252,18 +254,167 @@ def test_transformer_phases(): # Default bus1.phases = "abc" bus2.phases = "abcn" - transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp, length=10) + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) assert transformer.phases1 == "abc" assert transformer.phases2 == "abcn" # Intersection bus1.phases = "abcn" bus2.phases = "abcn" - transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp, length=10) + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) assert transformer.phases1 == "abc" assert transformer.phases2 == "abcn" +def test_transformer_single_phases(): + bus1 = Bus("bus-1", phases="an") + bus2 = Bus("bus-2", phases="an") + + # Not allowed + tp = TransformerParameters( + id="160kVA", type="single", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 + ) + for ph in ("ba", "nc", "anb", "nabc", "acb"): + with pytest.raises(RoseauLoadFlowException) as e: + Transformer("tr1", bus1, bus2, phases1=ph, phases2=ph, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg.startswith(f"Transformer of id 'tr1' got invalid phases1 '{ph}', allowed values are") + + # Allowed + Transformer("tr1", bus1, bus2, phases1="an", phases2="an", parameters=tp) + + # Not in bus + bus2.phases = "ab" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer("tr1", bus1, bus2, phases1="an", phases2="an", parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (2) ['n'] of transformer 'tr1' are not in phases 'ab' of bus 'bus-2'." + + # Default + bus1.phases = "ab" + bus2.phases = "ab" + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert transformer.phases1 == "ab" + assert transformer.phases2 == "ab" + + # Intersection + bus1.phases = "abcn" + bus2.phases = "ab" + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert transformer.phases1 == "ab" + assert transformer.phases2 == "ab" + + bus1.phases = "abc" + bus2.phases = "bcn" + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert transformer.phases1 == "bc" + assert transformer.phases2 == "bc" + + bus1.phases = "abc" + bus2.phases = "ca" + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert transformer.phases1 == "ca" + assert transformer.phases2 == "ca" + + # Cannot be deduced + bus1.phases = "abc" + bus2.phases = "abc" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (1) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + bus1.phases = "abcn" + bus2.phases = "abn" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (1) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + bus1.phases = "abcn" + bus2.phases = "a" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (1) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + +def test_transformer_center_phases(): + bus1 = Bus("bus-1", phases="ab") + bus2 = Bus("bus-2", phases="abn") + + # Not allowed + tp = TransformerParameters( + id="160kVA", type="center", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 + ) + for ph in ("ba", "nc", "anb", "nabc", "acb"): + with pytest.raises(RoseauLoadFlowException) as e: + Transformer("tr1", bus1, bus2, phases1=ph, phases2=ph, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg.startswith(f"Transformer of id 'tr1' got invalid phases1 '{ph}', allowed values are") + + # Allowed + Transformer("tr1", bus1, bus2, phases1="ab", phases2="abn", parameters=tp) + + # Not in bus 1 + bus1.phases = "acn" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer("tr1", bus1, bus2, phases1="ab", phases2="abn", parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (1) ['b'] of transformer 'tr1' are not in phases 'acn' of bus 'bus-1'." + + # Not in bus 2 + bus1.phases = "abc" + bus2.phases = "acn" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer("tr1", bus1, bus2, phases1="ab", phases2="abn", parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (2) ['b'] of transformer 'tr1' are not in phases 'acn' of bus 'bus-2'." + + # Default + bus1.phases = "ab" + bus2.phases = "abn" + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert transformer.phases1 == "ab" + assert transformer.phases2 == "abn" + + # Intersection + bus1.phases = "abcn" + bus2.phases = "can" + transformer = Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert transformer.phases1 == "ca" + assert transformer.phases2 == "can" + + # Cannot be deduced + bus1.phases = "abc" + bus2.phases = "abcn" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (1) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + bus1.phases = "a" + bus2.phases = "abn" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (1) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + bus1.phases = "ab" + bus2.phases = "ab" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (2) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + bus1.phases = "ab" + bus2.phases = "abc" + with pytest.raises(RoseauLoadFlowException) as e: + Transformer(id="tr1", bus1=bus1, bus2=bus2, parameters=tp) + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_PHASE + assert e.value.msg == "Phases (2) of transformer 'tr1' cannot be deduced from the buses, they need to be specified." + + def test_voltage_phases(): # Bus bus = Bus("bus", phases="abcn") diff --git a/roseau/load_flow/models/tests/test_transformer_parameters.py b/roseau/load_flow/models/tests/test_transformer_parameters.py index e4dcb105..09920c4c 100644 --- a/roseau/load_flow/models/tests/test_transformer_parameters.py +++ b/roseau/load_flow/models/tests/test_transformer_parameters.py @@ -1,10 +1,12 @@ import numpy as np +import pandas as pd import pytest from pint import DimensionalityError from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.models import TransformerParameters from roseau.load_flow.units import Q_ +from roseau.load_flow.utils import console def test_transformer_parameters(): @@ -123,7 +125,7 @@ def test_transformer_parameters(): "psc": 2350.0, # W "p0": 460.0, # W "i0": 5.6 / 100, # % - "ulv": 400, # V + "ulv": 401, # V "uhv": 400, # V "sn": 160 * 1e3, # VA "vsc": 4 / 100, # % @@ -182,7 +184,7 @@ def test_transformer_parameters(): } with pytest.raises(RoseauLoadFlowException) as e: TransformerParameters.from_dict(data) - assert "has the 'voltages on LV side during short circuit test' vsc" in e.value.msg + assert "has the 'voltages on LV side during short-circuit test' vsc" in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_PARAMETERS # Bad l2_omega @@ -203,28 +205,6 @@ def test_transformer_parameters(): assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_PARAMETERS -def test_from_name(): - # Bad ones - with pytest.raises(RoseauLoadFlowException) as e: - TransformerParameters.from_name("toto", "Dyn11") - assert "The transformer type name does not follow the syntax rule" in e.value.msg - assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TYPE_NAME_SYNTAX - - with pytest.raises(RoseauLoadFlowException) as e: - TransformerParameters.from_name("A160kVA", "Dyn11") - assert "The transformer type name does not follow the syntax rule" in e.value.msg - assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TYPE_NAME_SYNTAX - - with pytest.raises(RoseauLoadFlowException) as e: - TransformerParameters.from_name("160kVA", "totoDyn11") - assert "Transformer windings cannot be extracted from the string" in e.value.msg - assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS - - # Good ones - TransformerParameters.from_name("160kVA", "Dyn11") - TransformerParameters.from_name("H61_50kVA", "Dyn11") - - def test_transformers_parameters_units(): # Example in the "transformers" document of Victor. # Yzn11 - 50kVA. Good units @@ -264,3 +244,215 @@ def test_transformers_parameters_units(): DimensionalityError, match=r"Cannot convert from 'ampere' \(\[current\]\) to '\w+?' \(.+?\)" ): TransformerParameters.from_dict(copy_data) + + +def test_transformer_type(): + valid_windings = ("y", "yn", "z", "zn", "d") + valid_phase_displacements = (0, 5, 6, 11) + valid_types = {"dd", "yy", "yny", "yyn", "ynyn", "dz", "dzn", "dy", "dyn", "yd", "ynd", "yz", "ynz", "yzn", "ynzn"} + valid_full_types = { + "dd0", + "dd6", + "yy0", + "yy6", + "yny0", + "yny6", + "yyn0", + "yyn6", + "ynyn0", + "ynyn6", + "dz0", + "dz6", + "dzn0", + "dzn6", + "dy5", + "dy11", + "dyn5", + "dyn11", + "yd5", + "yd11", + "ynd5", + "ynd11", + "yz5", + "yz11", + "ynz5", + "ynz11", + "yzn5", + "yzn11", + "ynzn5", + "ynzn11", + } + + for winding1 in valid_windings: + for winding2 in valid_windings: + t = f"{winding1}{winding2}" + if t in valid_types: + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.extract_windings(t) + assert "Transformer windings cannot be extracted from the string" in e.value.msg + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS + for phase_displacement in valid_phase_displacements: + t = f"{winding1}{winding2}{phase_displacement}" + if t in valid_full_types: + w1, w2, p = TransformerParameters.extract_windings(t) + assert w1 == winding1.upper() + assert w2 == winding2 + assert p == phase_displacement + else: + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.extract_windings(t) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS + else: + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.extract_windings(t) + assert "Transformer windings cannot be extracted from the string" in e.value.msg + assert e.value.code == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS + + +def test_catalogue_data(): + # The catalogue data path exists + catalogue_path = TransformerParameters.catalogue_path() + assert catalogue_path.exists() + + # Read it and copy it + catalogue_data = TransformerParameters.catalogue_data() + + # Iterate over the folder and ensure that the elements are in the catalogue data + error_message = ( + "Something changed in the transformers parameters catalogue. Please regenerate the json files for the " + "transformers catalogue by using the python file `scripts/generate_transformer_parameters_catalogue.py`. " + "Don't forget to delete files that are useless too." + ) + + # Check that the id is unique + assert catalogue_data["id"].is_unique, error_message + + catalogue_data.set_index("id", inplace=True) + catalogue_data["found"] = False + for p in catalogue_path.glob("**/*.json"): + # The file can be read + tp = TransformerParameters.from_json(p) + + # The entry of the catalogue has been found + assert tp.id in catalogue_data.index, error_message + catalogue_data.at[tp.id, "found"] = True + + # Check the values are the same + manufacturer, range, efficiency, filename = p.relative_to(catalogue_path).parts + sn_kva = int(catalogue_data.at[tp.id, "sn"] / 1000) + assert tp.id == f"{manufacturer}_{range}_{efficiency}_{sn_kva}kVA" + assert tp.type == catalogue_data.at[tp.id, "type"] + assert np.isclose(tp.uhv.m_as("V"), catalogue_data.at[tp.id, "uhv"]) + assert np.isclose(tp.ulv.m_as("V"), catalogue_data.at[tp.id, "ulv"]) + assert np.isclose(tp.sn.m_as("VA"), catalogue_data.at[tp.id, "sn"]) + assert np.isclose(tp.p0.m_as("W"), catalogue_data.at[tp.id, "p0"]) + assert np.isclose(tp.i0.m_as(""), catalogue_data.at[tp.id, "i0"]) + assert np.isclose(tp.psc.m_as("W"), catalogue_data.at[tp.id, "psc"]) + assert np.isclose(tp.vsc.m_as(""), catalogue_data.at[tp.id, "vsc"]) + + # Check that the transformer can be used + res = tp.to_zyk() + assert all(pd.notna(x) for x in res) + + # At the end of the process, the found column must be full of True + assert catalogue_data["found"].all(), error_message + + +def test_from_catalogue(): + # Unknown strings + for field_name in ("id", "manufacturer", "range", "efficiency", "type"): + # String + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.from_catalogue(**{field_name: "unknown"}) + assert e.value.args[0].startswith(f"No {field_name} matching the name 'unknown' has been found. Available ") + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND + + # Regexp + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.from_catalogue(**{field_name: r"unknown[a-z]+"}) + assert e.value.args[0].startswith( + f"No {field_name} matching the name 'unknown[a-z]+' has been found. " f"Available " + ) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND + + # Unknown floats + for field_name, display_name, display_unit in ( + ("sn", "nominal power", "kVA"), + ("uhv", "primary side voltage", "kV"), + ("ulv", "secondary side voltage", "kV"), + ): + # Without unit + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.from_catalogue(**{field_name: 3141.5}) + assert e.value.args[0].startswith(f"No {display_name} matching 3.1 {display_unit} has been found. Available ") + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND + + # With unit + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.from_catalogue(**{field_name: Q_(3141.5, display_unit.removeprefix("k"))}) + assert e.value.args[0].startswith(f"No {display_name} matching 3.1 {display_unit} has been found. Available ") + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND + + # Several transformers + with pytest.raises(RoseauLoadFlowException) as e: + TransformerParameters.from_catalogue(type="yzn", sn=50e3) + assert ( + e.value.args[0] + == "Several transformers matching the query (\"type='yzn', nominal power=50.0 kVA\") have been found. Please " + "look at the catalogue using the `print_catalogue` class method." + ) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND + + +def test_print_catalogue(): + # Print the entire catalogue + with console.capture() as capture: + TransformerParameters.print_catalogue() + assert len(capture.get().split("\n")) == 138 + + # Filter on a single attribute + for field_name, value, expected_lines in ( + ("id", "SE_Minera_A0Ak_50kVA", 9), + ("manufacturer", "SE", 124), + ("range", r"min.*", 64), + ("efficiency", "c0", 37), + ("type", "dy", 134), + ("sn", Q_(160, "kVA"), 18), + ("uhv", Q_(20, "kV"), 138), + ("ulv", 400, 138), + ): + with console.capture() as capture: + TransformerParameters.print_catalogue(**{field_name: value}) + assert len(capture.get().split("\n")) == expected_lines + + # Filter on two attributes + for field_name, value, expected_lines in ( + ("id", "SE_Minera_A0Ak_50kVA", 9), + ("range", "minera", 64), + ("efficiency", "c0", 37), + ("type", r"^d.*11$", 120), + ("sn", Q_(160, "kVA"), 17), + ("uhv", Q_(20, "kV"), 124), + ("ulv", 400, 124), + ): + with console.capture() as capture: + TransformerParameters.print_catalogue(**{field_name: value}, manufacturer="se") + assert len(capture.get().split("\n")) == expected_lines + + # Filter on three attributes + for field_name, value, expected_lines in ( + ("id", "se_VEGETA_C0BK_3150kva", 9), + ("efficiency", r"c0[abc]k", 23), + ("type", "dyn", 38), + ("sn", Q_(160, "kVA"), 10), + ("uhv", Q_(20, "kV"), 38), + ("ulv", 400, 38), + ): + with console.capture() as capture: + TransformerParameters.print_catalogue(**{field_name: value}, manufacturer="se", range=r"^vegeta$") + assert len(capture.get().split("\n")) == expected_lines + + # No results + with console.capture() as capture: + TransformerParameters.print_catalogue(ulv=250) + assert len(capture.get().split("\n")) == 2 diff --git a/roseau/load_flow/models/transformers/parameters.py b/roseau/load_flow/models/transformers/parameters.py index 66c0c4af..c3f8acf9 100644 --- a/roseau/load_flow/models/transformers/parameters.py +++ b/roseau/load_flow/models/transformers/parameters.py @@ -1,25 +1,50 @@ import logging -from typing import NoReturn +import re +import textwrap +from importlib import resources +from pathlib import Path +from typing import NoReturn, Optional, Union import numpy as np +import pandas as pd +import regex +from rich.table import Table from typing_extensions import Self from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.units import Q_, ureg -from roseau.load_flow.utils import Identifiable, JsonMixin, TransformerType +from roseau.load_flow.units import Q_, ureg_wraps +from roseau.load_flow.utils import CatalogueMixin, Identifiable, JsonMixin, console logger = logging.getLogger(__name__) -class TransformerParameters(Identifiable, JsonMixin): - """A class to store the parameters of the transformers.""" - - @ureg.wraps(None, (None, None, None, "V", "V", "VA", "W", "", "W", ""), strict=False) +class TransformerParameters(Identifiable, JsonMixin, CatalogueMixin[pd.DataFrame]): + """A class to store the parameters of the transformers. + + See Also: + :ref:`Transformer parameters documentation ` + """ + + _EXTRACT_WINDINGS_RE = regex.compile( + "(?(DEFINE)(?Pyn?)(?Pd)(?Pzn?)(?P[06])" + "(?P5|11))" + "" + "(?|(?P(?&y_winding))(?P(?&y_winding))(?P

(?&p_set_1))" # yy + "|(?P(?&y_winding))(?P(?&d_winding))(?P

(?&p_set_2))" # yd + "|(?P(?&y_winding))(?P(?&z_winding))(?P

(?&p_set_2))" # yz + "|(?P(?&d_winding))(?P(?&z_winding))(?P

(?&p_set_1))" # dz + "|(?P(?&d_winding))(?P(?&y_winding))(?P

(?&p_set_2))" # dy + "|(?P(?&d_winding))(?P(?&d_winding))(?P

(?&p_set_1)))", # dd + regex.IGNORECASE, + ) + """The pattern to extract the winding of the primary and of the secondary of the transformer.""" + + @ureg_wraps(None, (None, None, None, "V", "V", "VA", "W", "", "W", ""), strict=False) def __init__( self, id: Id, - windings: str, + type: str, uhv: float, ulv: float, sn: float, @@ -34,8 +59,10 @@ def __init__( id: A unique ID of the transformer parameters, typically its canonical name. - windings: - The type of windings such as "Dyn11" + type: + The type of transformer parameters. It can be "single" for single-phase transformers, "center" for + center-tapped transformers, or the name of the windings such as "Dyn11" for three-phase transformers. + Allowed windings are "D" for delta, "Y" for wye (star), and "Z" for zigzag. uhv: Phase-to-phase nominal voltages of the high voltages side (V) @@ -53,10 +80,10 @@ def __init__( Current during off-load test (%) psc: - Losses during short circuit test (W) + Losses during short-circuit test (W) vsc: - Voltages on LV side during short circuit test (%) + Voltages on LV side during short-circuit test (%) """ super().__init__(id) self._sn = sn @@ -66,11 +93,16 @@ def __init__( self._p0 = p0 self._psc = psc self._vsc = vsc - self.windings = windings - self.winding1, self.winding2, self.phase_displacement = TransformerType.extract_windings(string=windings) + self.type = type + if type in ("single", "center"): + self.winding1 = None + self.winding2 = None + self.phase_displacement = None + else: + self.winding1, self.winding2, self.phase_displacement = self.extract_windings(string=type) # Check - if uhv <= ulv: + if uhv < ulv: msg = ( f"Transformer type {id!r} has the low voltages higher than the high voltages: " f"uhv={uhv:.2f} V and ulv={ulv:.2f} V." @@ -86,7 +118,7 @@ def __init__( raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_PARAMETERS) if vsc > 1.0 or vsc < 0.0: msg = ( - f"Transformer type {id!r} has the 'voltages on LV side during short circuit test' " + f"Transformer type {id!r} has the 'voltages on LV side during short-circuit test' " f"vsc={vsc}. It is a percentage that should be between 0 and 1." ) logger.error(msg) @@ -110,7 +142,7 @@ def __eq__(self, other: object) -> bool: else: return ( self.id == other.id - and self.windings == other.windings + and self.type == other.type and np.isclose(self._sn, other._sn) and np.isclose(self._p0, other._p0) and np.isclose(self._i0, other._i0) @@ -121,81 +153,49 @@ def __eq__(self, other: object) -> bool: ) @property - @ureg.wraps("V", (None,), strict=False) - def uhv(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def uhv(self) -> Q_[float]: """Phase-to-phase nominal voltages of the high voltages side (V)""" return self._uhv @property - @ureg.wraps("V", (None,), strict=False) - def ulv(self) -> Q_: + @ureg_wraps("V", (None,), strict=False) + def ulv(self) -> Q_[float]: """Phase-to-phase nominal voltages of the low voltages side (V)""" return self._ulv @property - @ureg.wraps("VA", (None,), strict=False) - def sn(self) -> Q_: + @ureg_wraps("VA", (None,), strict=False) + def sn(self) -> Q_[float]: """The nominal power of the transformer (VA)""" return self._sn @property - @ureg.wraps("W", (None,), strict=False) - def p0(self) -> Q_: + @ureg_wraps("W", (None,), strict=False) + def p0(self) -> Q_[float]: """Losses during off-load test (W)""" return self._p0 @property - @ureg.wraps("", (None,), strict=False) - def i0(self) -> float: + @ureg_wraps("", (None,), strict=False) + def i0(self) -> Q_[float]: """Current during off-load test (%)""" return self._i0 @property - @ureg.wraps("W", (None,), strict=False) - def psc(self) -> Q_: - """Losses during short circuit test (W)""" + @ureg_wraps("W", (None,), strict=False) + def psc(self) -> Q_[float]: + """Losses during short-circuit test (W)""" return self._psc @property - @ureg.wraps("", (None,), strict=False) - def vsc(self) -> float: - """Voltages on LV side during short circuit test (%)""" + @ureg_wraps("", (None,), strict=False) + def vsc(self) -> Q_[float]: + """Voltages on LV side during short-circuit test (%)""" return self._vsc - @classmethod - def from_name(cls, name: str, windings: str) -> Self: - """Construct TransformerParameters from name and windings. - - Args: - name: - The name of the transformer parameters, such as `"160kVA"` or `"H61_50kVA"`. - - windings: - The type of windings such as `"Dyn11"`. - - Returns: - The constructed transformer parameters. - """ - if name == "H61_50kVA": - return cls( - id=name, windings=windings, uhv=20000, ulv=400, sn=50 * 1e3, p0=145, i0=1.8 / 100, psc=1350, vsc=4 / 100 - ) - elif name[-3:] == "kVA": - try: - sn = float(name[:-3]) - except ValueError: - msg = f"The transformer type name does not follow the syntax rule. {name!r} was provided." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TYPE_NAME_SYNTAX) from None - else: - return cls(name, windings, 20000, 400, sn * 1e3, 460, 2.3 / 100, 2350, 4 / 100) - else: - msg = f"The transformer type name does not follow the syntax rule. {name!r} was provided." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TYPE_NAME_SYNTAX) - - @ureg.wraps(("ohm", "S", "", None), (None,), strict=False) - def to_zyk(self) -> tuple[Q_, Q_, float, float]: + @ureg_wraps(("ohm", "S", "", None), (None,), strict=False) + def to_zyk(self) -> tuple[Q_[complex], Q_[complex], Q_[float], float]: """Compute the transformer parameters ``z2``, ``ym``, ``k`` and ``orientation`` mandatory for some models. @@ -208,9 +208,6 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]: Returns: The parameters (``z2``, ``ym``, ``k``, ``orientation``). """ - # Extract the windings of the primary and the secondary of the transformer - winding1, winding2, phase_displacement = TransformerType.extract_windings(self.windings) - # Off-load test # Iron losses resistance (Ohm) r_iron = self._uhv**2 / self._p0 @@ -221,7 +218,7 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]: else: ym = 1 / r_iron - # Short circuit test + # Short-circuit test r2 = self._psc * (self._ulv / self._sn) ** 2 l2_omega = np.sqrt((self._vsc * self._ulv**2 / self._sn) ** 2 - r2**2) z2 = r2 + 1j * l2_omega @@ -229,22 +226,25 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]: # Change the voltages if the reference voltages is phase to neutral uhv = self._uhv ulv = self._ulv - if winding1[0] in ("y", "Y"): - uhv /= np.sqrt(3.0) - if winding2[0] in ("y", "Y"): - ulv /= np.sqrt(3.0) - if winding1[0] in ("z", "Z"): - uhv /= 3.0 - if winding2[0] in ("z", "Z"): - ulv /= 3.0 - - if phase_displacement in (5, 6): - # Reverse winding - return z2, ym, ulv / uhv, -1.0 + if self.type == "single" or self.type == "center": + orientation = 1.0 else: - # Normal winding - assert phase_displacement in (0, 11) - return z2, ym, ulv / uhv, 1.0 + # Extract the windings of the primary and the secondary of the transformer + if self.winding1[0] in ("y", "Y"): + uhv /= np.sqrt(3.0) + if self.winding2[0] in ("y", "Y"): + ulv /= np.sqrt(3.0) + if self.winding1[0] in ("z", "Z"): + uhv /= 3.0 + if self.winding2[0] in ("z", "Z"): + ulv /= 3.0 + if self.phase_displacement in (0, 11): # Normal winding + orientation = 1.0 + else: # Reverse winding + assert self.phase_displacement in (5, 6) + orientation = -1.0 + + return z2, ym, ulv / uhv, orientation # # Json Mixin interface @@ -253,17 +253,17 @@ def to_zyk(self) -> tuple[Q_, Q_, float, float]: def from_dict(cls, data: JsonDict) -> Self: return cls( id=data["id"], - windings=data["type"], # Windings of the transformer + type=data["type"], # Type of the transformer uhv=data["uhv"], # Phase-to-phase nominal voltages of the high voltages side (V) ulv=data["ulv"], # Phase-to-phase nominal voltages of the low voltages side (V) - sn=data["sn"], + sn=data["sn"], # Nominal power p0=data["p0"], # Losses during off-load test (W) - i0=data["i0"], - psc=data["psc"], # Losses during short circuit test (W) - vsc=data["vsc"], + i0=data["i0"], # Current during off-load test (%) + psc=data["psc"], # Losses during short-circuit test (W) + vsc=data["vsc"], # Voltages on LV side during short-circuit test (%) ) - def to_dict(self) -> JsonDict: + def to_dict(self, include_geometry: bool = True) -> JsonDict: return { "id": self.id, "sn": self._sn, @@ -273,7 +273,7 @@ def to_dict(self) -> JsonDict: "p0": self._p0, "psc": self._psc, "vsc": self._vsc, - "type": self.windings, + "type": self.type, } def _results_to_dict(self, warning: bool) -> NoReturn: @@ -285,3 +285,337 @@ def results_from_dict(self, data: JsonDict) -> NoReturn: msg = f"The {type(self).__name__} has no results to import." logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.JSON_NO_RESULTS) + + # + # Catalogue Mixin + # + @classmethod + def catalogue_path(cls) -> Path: + return Path(resources.files("roseau.load_flow") / "data" / "transformers").expanduser().absolute() + + @classmethod + def catalogue_data(cls) -> pd.DataFrame: + return pd.read_csv(cls.catalogue_path() / "Catalogue.csv") + + @classmethod + @ureg_wraps(None, (None, None, None, None, None, None, "VA", "V", "V"), strict=False) + def from_catalogue( + cls, + id: Optional[Union[str, re.Pattern[str]]] = None, + manufacturer: Optional[Union[str, re.Pattern[str]]] = None, + range: Optional[Union[str, re.Pattern[str]]] = None, + efficiency: Optional[Union[str, re.Pattern[str]]] = None, + type: Optional[Union[str, re.Pattern[str]]] = None, + sn: Optional[float] = None, + uhv: Optional[float] = None, + ulv: Optional[float] = None, + ) -> Self: + """Build a transformer parameters from one in the catalogue. + + Args: + id: + The id of the transformer to get from the catalogue. It can be a regular expression. + + manufacturer: + The name of the manufacturer to get. It can be a regular expression. + + range: + The name of the product range to get. It can be a regular expression. + + efficiency: + The efficiency of the transformer get. It can be a regular expression. + + type: + The type of the transformer to get. It can be a regular expression. + + sn: + The nominal power of the transformer to get. + + uhv: + The primary side voltage of the transformer to get. + + ulv: + The secondary side voltage of the transformer to get. + + Returns: + The selected transformer. If several transformers fitting the filters are in the catalogue, an error is + raised. + """ + # Get the catalogue data + catalogue_data = cls.catalogue_data() + + # Filter on string/regular expressions + query_msg_list = [] + for value, column_name, display_name, display_name_plural in ( + (id, "id", "id", "ids"), + (manufacturer, "manufacturer", "manufacturer", "manufacturers"), + (range, "range", "range", "ranges"), + (efficiency, "efficiency", "efficiency", "efficiencies"), + (type, "type", "type", "types"), + ): + if pd.isna(value): + continue + + mask = cls._filter_catalogue_str(value=value, catalogue_data=catalogue_data, column_name=column_name) + if mask.sum() == 0: + available_values = catalogue_data[column_name].unique().tolist() + msg_part = textwrap.shorten(", ".join(repr(x) for x in available_values), width=500) + if query_msg_list: + query_msg_part = ", ".join(query_msg_list) + msg = ( + f"No {display_name} matching the name {value!r} has been found for the query {query_msg_part}. " + f"Available {display_name_plural} are {msg_part}." + ) + else: + msg = ( + f"No {display_name} matching the name {value!r} has been found. " + f"Available {display_name_plural} are {msg_part}." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND) + catalogue_data = catalogue_data.loc[mask, :] + query_msg_list.append(f"{display_name}={value!r}") + + # Filter on float + for value, column_name, display_name, display_name_plural, display_unit in ( + (sn, "sn", "nominal power", "nominal powers", "kVA"), + (uhv, "uhv", "primary side voltage", "primary side voltages", "kV"), + (ulv, "ulv", "secondary side voltage", "secondary side voltages", "kV"), + ): + if pd.isna(value): + continue + + mask = cls._filter_catalogue_float(value=value, catalogue_data=catalogue_data, column_name=column_name) + if mask.sum() == 0: + available_values = catalogue_data[column_name].unique().tolist() + msg_part = textwrap.shorten( + ", ".join(f"{x/1000:.1f} {display_unit}" for x in available_values), width=500 + ) + if query_msg_list: + query_msg_part = ", ".join(query_msg_list) + msg = ( + f"No {display_name} matching {value/1000:.1f} {display_unit} has been found for the query" + f" {query_msg_part}. Available {display_name_plural} are {msg_part}." + ) + else: + msg = ( + f"No {display_name} matching {value/1000:.1f} {display_unit} has been found. " + f"Available {display_name_plural} are {msg_part}." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND) + catalogue_data = catalogue_data.loc[mask, :] + query_msg_list.append(f"{display_name}={value/1000:.1f} {display_unit}") + + # Final check + if len(catalogue_data) == 0: # pragma: no cover + # This option should never happen as an error is raised when a filter is empty + query_msg_part = ", ".join(query_msg_list) + msg = ( + f"No transformers matching the query ({query_msg_part!r}) have been found. Please look at the " + f"catalogue using the `print_catalogue` class method." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND) + elif len(catalogue_data) > 1: + query_msg_part = ", ".join(query_msg_list) + msg = ( + f"Several transformers matching the query ({query_msg_part!r}) have been found. Please look at the " + f"catalogue using the `print_catalogue` class method." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND) + + # A single one has been chosen + idx = catalogue_data.index[0] + manufacturer = catalogue_data.at[idx, "manufacturer"] + range = catalogue_data.at[idx, "range"] + efficiency = catalogue_data.at[idx, "efficiency"] + nominal_power = int(catalogue_data.at[idx, "sn"] / 1000) + + # Get the data from the Json file + path = cls.catalogue_path() / manufacturer / range / efficiency / f"{nominal_power}.json" + if not path.exists(): # pragma: no cover + msg = f"The file {path} has not been found while it should exist. Please post an issue on GitHub." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_MISSING) + + return cls.from_json(path=path) + + @classmethod + @ureg_wraps(None, (None, None, None, None, None, None, "VA", "V", "V"), strict=False) + def print_catalogue( + cls, + id: Optional[Union[str, re.Pattern[str]]] = None, + manufacturer: Optional[Union[str, re.Pattern[str]]] = None, + range: Optional[Union[str, re.Pattern[str]]] = None, + efficiency: Optional[Union[str, re.Pattern[str]]] = None, + type: Optional[Union[str, re.Pattern[str]]] = None, + sn: Optional[float] = None, + uhv: Optional[float] = None, + ulv: Optional[float] = None, + ) -> None: + """Print the catalogue of available transformers. + + Args: + id: + An optional manufacturer to filter the output. It can be a regular expression. + + manufacturer: + An optional manufacturer to filter the output. It can be a regular expression. + + range: + An optional product range to filter the output. It can be a regular expression. + + efficiency: + An optional efficiency to filter the output. It can be a regular expression. + + type: + An optional type of the transformer. It can be a regular expression. + + sn: + An optional nominal power of the transformer to filter the output. + + uhv: + An optional primary side voltage to filter the output. + + ulv: + An optional secondary side voltage to filter the output. + """ + # Get the catalogue data + catalogue_data = cls.catalogue_data() + + # Start creating a table to display the results + table = Table(title="Available Transformer Parameters") + table.add_column("Id") + table.add_column("Manufacturer", style="color(1)", header_style="color(1)") + table.add_column("Product range", style="color(2)", header_style="color(2)") + table.add_column("Efficiency", style="color(3)", header_style="color(3)") + table.add_column("Type", style="color(4)", header_style="color(4)") + table.add_column("Nominal power (kVA)", justify="right", style="color(5)", header_style="color(5)") + table.add_column("High voltage (kV)", justify="right", style="color(6)", header_style="color(6)") + table.add_column("Low voltage (kV)", justify="right", style="color(9)", header_style="color(9)") + empty_table = True + + # Match on the manufacturer, range, efficiency and type + catalogue_mask = pd.Series(True, index=catalogue_data.index) + query_msg_list = [] + for value, column_name in ( + (id, "id"), + (manufacturer, "manufacturer"), + (range, "range"), + (efficiency, "efficiency"), + (type, "type"), + ): + if pd.isna(value): + continue + catalogue_mask &= cls._filter_catalogue_str( + value=value, catalogue_data=catalogue_data, column_name=column_name + ) + query_msg_list.append(f"{column_name}={value!r}") + + # Mask on nominal power, primary and secondary voltages + for value, column_name, display_unit in ((uhv, "uhv", "kV"), (ulv, "ulv", "kV"), (sn, "sn", "kVA")): + if pd.isna(value): + continue + catalogue_mask &= cls._filter_catalogue_float( + value=value, catalogue_data=catalogue_data, column_name=column_name + ) + query_msg_list.append(f"{column_name}={value/1000:.1f} {display_unit}") + + # Iterate over the transformers + selected_index = catalogue_mask[catalogue_mask].index + for idx in selected_index: + empty_table = False + table.add_row( + catalogue_data.at[idx, "id"], + catalogue_data.at[idx, "manufacturer"], + catalogue_data.at[idx, "range"], + catalogue_data.at[idx, "efficiency"], + catalogue_data.at[idx, "type"], + f"{catalogue_data.at[idx, 'sn']/1000:.1f}", # VA to kVA + f"{catalogue_data.at[idx, 'uhv']/1000:.1f}", # V to kV + f"{catalogue_data.at[idx, 'ulv']/1000:.1f}", # V to kV + ) + + # Handle the case of an empty table + if empty_table: + query_msg_part = ", ".join(query_msg_list) + msg = f"No transformers can be found in the catalogue matching your query: {query_msg_part}." + console.print(msg) + else: + console.print(table) + + @staticmethod + def _filter_catalogue_str( + value: Union[str, re.Pattern[str]], catalogue_data: pd.DataFrame, column_name: str + ) -> pd.Series: + """Filter the catalogue using a string/regexp value. + + Args: + value: + The string or regular expression to use as a filter. + + catalogue_data: + The catalogue data to use. + + column_name: + The name of the column to use for the filter. + + Returns: + The mask of matching results. + """ + if isinstance(value, re.Pattern): + return catalogue_data[column_name].str.match(value) + else: + try: + pattern = re.compile(pattern=value, flags=re.IGNORECASE) + return catalogue_data[column_name].str.match(pattern) + except re.error: + return catalogue_data[column_name].str.lower() == value.lower() + + @staticmethod + def _filter_catalogue_float(value: float, catalogue_data: pd.DataFrame, column_name: str) -> pd.Series: + """Filter the catalogue using a float/int value. + + Args: + value: + The float or integer to use as a filter. + + catalogue_data: + The catalogue data to use. + + column_name: + The name of the column to use for the filter. + + Returns: + The mask of matching results. + """ + if isinstance(value, int): + return catalogue_data[column_name] == value + else: + return np.isclose(catalogue_data[column_name], value) + + # + # Utils + # + @classmethod + def extract_windings(cls, string: str) -> tuple[str, str, int]: + """Extract the windings and phase displacement from a given string + + Args: + string: + The string to parse. + + Returns: + The first winding, the second winding, and the phase displacement + """ + match = cls._EXTRACT_WINDINGS_RE.fullmatch(string=string) + if match: + groups = match.groupdict() + winding1, winding2, phase_displacement = groups["w1"], groups["w2"], groups["p"] + return winding1.upper(), winding2.lower(), int(phase_displacement) + else: + msg = f"Transformer windings cannot be extracted from the string {string!r}." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS) diff --git a/roseau/load_flow/models/transformers/transformers.py b/roseau/load_flow/models/transformers/transformers.py index f94ba6c0..300d8432 100644 --- a/roseau/load_flow/models/transformers/transformers.py +++ b/roseau/load_flow/models/transformers/transformers.py @@ -8,7 +8,6 @@ from roseau.load_flow.models.buses import Bus from roseau.load_flow.models.transformers.parameters import TransformerParameters from roseau.load_flow.typing import Id, JsonDict -from roseau.load_flow.utils import BranchType logger = logging.getLogger(__name__) @@ -16,19 +15,25 @@ class Transformer(AbstractBranch): """A generic transformer model. - The model parameters and windings type are defined in the ``parameters``. + The model parameters are defined in the ``parameters``. + + See Also: + :doc:`Transformer models documentation ` """ - branch_type = BranchType.TRANSFORMER + branch_type = "transformer" - allowed_phases = frozenset({"abc", "abcn"}) # Only these for now + allowed_phases = Bus.allowed_phases """The allowed phases for a transformer are: - - P-P-P or P-P-P-N: ``"abc"``, ``"abcn"`` - - .. note:: - Only 3-phase transformers are currently supported. + - P-P-P or P-P-P-N: ``"abc"``, ``"abcn"`` (three-phase transformer) + - P-P or P-N: ``"ab"``, ``"bc"``, ``"ca"``, ``"an"``, ``"bn"``, ``"cn"`` (single-phase + transformer or primary of center-tapped transformer) + - P-P-N: ``"abn"``, ``"bcn"``, ``"can"`` (secondary of center-tapped transformer) """ + _allowed_phases_three = frozenset({"abc", "abcn"}) + _allowed_phases_single = frozenset({"ab", "bc", "ca", "an", "bn", "cn"}) + _allowed_phases_center_secondary = frozenset({"abn", "bcn", "can"}) def __init__( self, @@ -65,7 +70,7 @@ def __init__( The phases of the first extremity of the transformer. A string like ``"abc"`` or ``"abcn"`` etc. The order of the phases is important. For a full list of supported phases, see the class attribute :attr:`allowed_phases`. All phases must be present - in the connected bus. By default determined from the transformer windings. + in the connected bus. By default determined from the transformer type. phases2: The phases of the second extremity of the transformer. See ``phases1``. @@ -78,24 +83,74 @@ def __init__( logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_GEOMETRY_TYPE) - # Compute the phases if not provided, check them if provided + if parameters.type == "single": + phases1, phases2 = self._compute_phases_single( + id=id, bus1=bus1, bus2=bus2, phases1=phases1, phases2=phases2 + ) + elif parameters.type == "center": + phases1, phases2 = self._compute_phases_center( + id=id, bus1=bus1, bus2=bus2, phases1=phases1, phases2=phases2 + ) + else: + phases1, phases2 = self._compute_phases_three( + id=id, bus1=bus1, bus2=bus2, parameters=parameters, phases1=phases1, phases2=phases2 + ) + + super().__init__(id, bus1, bus2, phases1=phases1, phases2=phases2, geometry=geometry, **kwargs) + self.tap = tap + self._parameters = parameters + + @property + def tap(self) -> float: + """The tap of the transformer, for example 1.02.""" + return self._tap + + @tap.setter + def tap(self, value: float) -> None: + if value > 1.1: + logger.warning(f"The provided tap {value:.2f} is higher than 1.1. A good value is between 0.9 and 1.1.") + if value < 0.9: + logger.warning(f"The provided tap {value:.2f} is lower than 0.9. A good value is between 0.9 and 1.1.") + self._tap = value + self._invalidate_network_results() + + @property + def parameters(self) -> TransformerParameters: + """The parameters of the transformer.""" + return self._parameters + + @parameters.setter + def parameters(self, value: TransformerParameters) -> None: + type1 = self._parameters.type + type2 = value.type + if type1 != type2: + msg = f"The updated type changed for transformer {self.id!r}: {type1} to {type2}." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_TYPE) + self._parameters = value + self._invalidate_network_results() + + def to_dict(self, include_geometry: bool = True) -> JsonDict: + return {**super().to_dict(include_geometry=include_geometry), "params_id": self.parameters.id, "tap": self.tap} + + def _compute_phases_three( + self, + id: Id, + bus1: Bus, + bus2: Bus, + parameters: TransformerParameters, + phases1: Optional[str], + phases2: Optional[str], + ) -> tuple[str, str]: w1_has_neutral = "y" in parameters.winding1.lower() or "z" in parameters.winding1.lower() w2_has_neutral = "y" in parameters.winding2.lower() or "z" in parameters.winding2.lower() if phases1 is None: phases1 = "abcn" if w1_has_neutral else "abc" phases1 = "".join(p for p in bus1.phases if p in phases1) - self._check_phases(id, phases1=phases1) + self._check_phases(id, allowed_phases=self._allowed_phases_three, phases1=phases1) else: - self._check_phases(id, phases1=phases1) - # Check that the phases are in the bus - phases_not_in_bus1 = set(phases1) - set(bus1.phases) - if phases_not_in_bus1: - msg = ( - f"Phases (1) {sorted(phases_not_in_bus1)} of transformer {id!r} are not in phases " - f"{bus1.phases!r} of bus {bus1.id!r}." - ) - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + self._check_phases(id, allowed_phases=self._allowed_phases_three, phases1=phases1) + self._check_bus_phases(id, bus1, phases1=phases1) transformer_phases = "abcn" if w1_has_neutral else "abc" phases_not_in_transformer = set(phases1) - set(transformer_phases) if phases_not_in_transformer: @@ -109,18 +164,10 @@ def __init__( if phases2 is None: phases2 = "abcn" if w2_has_neutral else "abc" phases2 = "".join(p for p in bus2.phases if p in phases2) - self._check_phases(id, phases2=phases2) + self._check_phases(id, allowed_phases=self._allowed_phases_three, phases2=phases2) else: - self._check_phases(id, phases2=phases2) - # Check that the phases are in the bus - phases_not_in_bus2 = set(phases2) - set(bus2.phases) - if phases_not_in_bus2: - msg = ( - f"Phases (2) {sorted(phases_not_in_bus2)} of transformer {id!r} are not in phases " - f"{bus2.phases!r} of bus {bus2.id!r}." - ) - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + self._check_phases(id, allowed_phases=self._allowed_phases_three, phases2=phases2) + self._check_bus_phases(id, bus2, phases2=phases2) transformer_phases = "abcn" if w2_has_neutral else "abc" phases_not_in_transformer = set(phases2) - set(transformer_phases) if phases_not_in_transformer: @@ -131,39 +178,70 @@ def __init__( logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) - super().__init__(id, bus1, bus2, phases1=phases1, phases2=phases2, geometry=geometry, **kwargs) - self.tap = tap - self._parameters = parameters + return phases1, phases2 - @property - def tap(self) -> float: - """The tap of the transformer, for example 1.02.""" - return self._tap + def _compute_phases_single( + self, id: Id, bus1: Bus, bus2: Bus, phases1: Optional[str], phases2: Optional[str] + ) -> tuple[str, str]: + if phases1 is None: + phases1 = "".join(p for p in bus1.phases if p in bus2.phases) # can't use set because order is important + phases1 = phases1.replace("ac", "ca") + if phases1 not in self._allowed_phases_single: + msg = f"Phases (1) of transformer {id!r} cannot be deduced from the buses, they need to be specified." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + else: + self._check_phases(id, allowed_phases=self._allowed_phases_single, phases1=phases1) + self._check_bus_phases(id, bus1, phases1=phases1) - @tap.setter - def tap(self, value: float) -> None: - if value > 1.1: - logger.warning(f"The provided tap {value:.2f} is higher than 1.1. A good value is between 0.9 and 1.1.") - if value < 0.9: - logger.warning(f"The provided tap {value:.2f} is lower than 0.9. A good value is between 0.9 and 1.1.") - self._tap = value - self._invalidate_network_results() + if phases2 is None: + phases2 = "".join(p for p in bus1.phases if p in bus2.phases) # can't use set because order is important + phases2 = phases2.replace("ac", "ca") + if phases2 not in self._allowed_phases_single: + msg = f"Phases (2) of transformer {id!r} cannot be deduced from the buses, they need to be specified." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + else: + self._check_phases(id, allowed_phases=self._allowed_phases_single, phases2=phases2) + self._check_bus_phases(id, bus2, phases2=phases2) - @property - def parameters(self) -> TransformerParameters: - """The parameters of the transformer.""" - return self._parameters + return phases1, phases2 - @parameters.setter - def parameters(self, value: TransformerParameters) -> None: - windings1 = self._parameters.windings - windings2 = value.windings - if windings1 != windings2: - msg = f"The updated windings changed for transformer {self.id!r}: {windings1} to {windings2}." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS) - self._parameters = value - self._invalidate_network_results() + def _compute_phases_center( + self, id: Id, bus1: Bus, bus2: Bus, phases1: Optional[str], phases2: Optional[str] + ) -> tuple[str, str]: + if phases1 is None: + phases1 = "".join(p for p in bus2.phases if p in bus1.phases and p != "n") + phases1 = phases1.replace("ac", "ca") + if phases1 not in self._allowed_phases_single: + msg = f"Phases (1) of transformer {id!r} cannot be deduced from the buses, they need to be specified." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + else: + self._check_phases(id, allowed_phases=self._allowed_phases_single, phases1=phases1) + self._check_bus_phases(id, bus1, phases1=phases1) - def to_dict(self) -> JsonDict: - return {**super().to_dict(), "params_id": self.parameters.id, "tap": self.tap} + if phases2 is None: + phases2 = "".join(p for p in bus2.phases if p in bus1.phases or p == "n") + if phases2 not in self._allowed_phases_center_secondary: + msg = f"Phases (2) of transformer {id!r} cannot be deduced from the buses, they need to be specified." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) + else: + self._check_phases(id, allowed_phases=self._allowed_phases_center_secondary, phases2=phases2) + self._check_bus_phases(id, bus2, phases2=phases2) + + return phases1, phases2 + + @staticmethod + def _check_bus_phases(id: Id, bus: Bus, **kwargs: str) -> None: + name, phases = kwargs.popitem() # phases1 or phases2 + name = "Phases (1)" if name == "phases1" else "Phases (2)" + phases_not_in_bus = set(phases) - set(bus.phases) + if phases_not_in_bus: + msg = ( + f"{name} {sorted(phases_not_in_bus)} of transformer {id!r} are not in phases " + f"{bus.phases!r} of bus {bus.id!r}." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_PHASE) diff --git a/roseau/load_flow/network.py b/roseau/load_flow/network.py index 3899b175..01c51c13 100644 --- a/roseau/load_flow/network.py +++ b/roseau/load_flow/network.py @@ -1,10 +1,14 @@ """ This module defines the electrical network class. """ - +import json import logging +import re +import textwrap import warnings from collections.abc import Sized +from importlib import resources +from pathlib import Path from typing import NoReturn, Optional, TypeVar, Union from urllib.parse import urljoin @@ -14,6 +18,7 @@ from pyproj import CRS from requests import Response from requests.auth import HTTPBasicAuth +from rich.table import Table from typing_extensions import Self from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode @@ -33,19 +38,19 @@ ) from roseau.load_flow.solvers import check_solver_params from roseau.load_flow.typing import Id, JsonDict, Solver, StrPath -from roseau.load_flow.utils import JsonMixin +from roseau.load_flow.utils import CatalogueMixin, JsonMixin, console logger = logging.getLogger(__name__) # Phases dtype for all data frames _PHASE_DTYPE = pd.CategoricalDtype(categories=["a", "b", "c", "n"], ordered=True) # Phases dtype for voltage data frames -_VOLTAGE_PHASES_DTYPE = pd.CategoricalDtype(["an", "bn", "cn", "ab", "bc", "ca"], ordered=True) +_VOLTAGE_PHASES_DTYPE = pd.CategoricalDtype(categories=["an", "bn", "cn", "ab", "bc", "ca"], ordered=True) _T = TypeVar("_T", bound=Element) -class ElectricalNetwork(JsonMixin): +class ElectricalNetwork(JsonMixin, CatalogueMixin[JsonDict]): """Electrical network class. This class represents an electrical network, its elements, and their connections. After @@ -103,27 +108,27 @@ class ElectricalNetwork(JsonMixin): DEFAULT_SOLVER (str): The default solver to compute the load flow. - buses (dict[Id, Bus]): + buses (dict[Id, roseau.load_flow.Bus]): Dictionary of buses of the network indexed by their IDs. Also available as a :attr:`GeoDataFrame`. - branches (dict[Id, AbstractBranch]): + branches (dict[Id, roseau.load_flow.AbstractBranch]): Dictionary of branches of the network indexed by their IDs. Also available as a :attr:`GeoDataFrame`. - loads (dict[Id, AbstractLoad]): + loads (dict[Id, roseau.load_flow.AbstractLoad]): Dictionary of loads of the network indexed by their IDs. Also available as a :attr:`DataFrame`. - sources (dict[Id, VoltageSource]): + sources (dict[Id, roseau.load_flow.VoltageSource]): Dictionary of voltage sources of the network indexed by their IDs. Also available as a :attr:`DataFrame`. - grounds (dict[Id, Ground]): + grounds (dict[Id, roseau.load_flow.Ground]): Dictionary of grounds of the network indexed by their IDs. Also available as a :attr:`DataFrame`. - potential_refs (dict[Id, PotentialRef]): + potential_refs (dict[Id, roseau.load_flow.PotentialRef]): Dictionary of potential references of the network indexed by their IDs. Also available as a :attr:`DataFrame`. @@ -149,16 +154,16 @@ class ElectricalNetwork(JsonMixin): DEFAULT_WARM_START: bool = True DEFAULT_SOLVER: Solver = "newton_goldstein" - # Default classes to use - branch_class = AbstractBranch - line_class = Line - transformer_class = Transformer - switch_class = Switch - load_class = AbstractLoad - voltage_source_class = VoltageSource - bus_class = Bus - ground_class = Ground - pref_class = PotentialRef + # Elements classes (for internal use only) + _branch_class = AbstractBranch + _line_class = Line + _transformer_class = Transformer + _switch_class = Switch + _load_class = AbstractLoad + _voltage_source_class = VoltageSource + _bus_class = Bus + _ground_class = Ground + _pref_class = PotentialRef # # Methods to build an electrical network @@ -351,6 +356,18 @@ def potential_refs_frame(self) -> pd.DataFrame: index="id", ) + @property + def short_circuits_frame(self) -> pd.DataFrame: + """The short-circuits of the network as a dataframe.""" + return pd.DataFrame.from_records( + data=[ + (bus.id, bus.phases, "".join(sorted(sc["phases"])), sc["ground"]) + for bus in self.buses.values() + for sc in bus.short_circuits + ], + columns=["bus_id", "phases", "short_circuit", "ground"], + ) + # # Method to solve a load flow # @@ -410,7 +427,7 @@ def solve_load_flow( # Get the data data = { - "network": self.to_dict(), + "network": self.to_dict(include_geometry=False), "solver": { "name": solver, "params": solver_params, @@ -668,52 +685,88 @@ def res_branches(self) -> pd.DataFrame: return res_df @property - def res_lines_losses(self) -> pd.DataFrame: - """The load flow results of the complex power losses of the network lines. + def res_lines(self) -> pd.DataFrame: + """The load flow results of the the network lines. - To get the active power losses, use the real part of the complex power losses. + This is similar to the :attr:`res_branches` property but provides more information that + only apply to lines. This includes currents and complex power losses in the series + components of the lines. The results are returned as a dataframe with the following index: - `line_id`: The id of the line. - `phase`: The phase of the line (in ``{'a', 'b', 'c', 'n'}``). + and the following columns: + - `current1`: The complex current of the line (in Amps) for the given phase at the + first bus. + - `current2`: The complex current of the line (in Amps) for the given phase at the + second bus. + - `power1`: The complex power of the line (in VoltAmps) for the given phase at the + first bus. + - `power2`: The complex power of the line (in VoltAmps) for the given phase at the + second bus. + - `potential1`: The complex potential of the first bus (in Volts) for the given phase. + - `potential2`: The complex potential of the second bus (in Volts) for the given phase. - `series_losses`: The complex power losses of the line (in VoltAmps) for the given phase due to the series and mutual impedances. - - `shunt_losses`: The complex power losses of the line (in VoltAmps) for the given - phase due to the shunt admittances. - - `total_losses`: The complex power losses of the line (in VoltAmps) for the given - phase due to the series and mutual impedances and the shunt admittances. This is - the sum of the series and shunt losses. It is equal to the power flow through the - line; for any line, ``series_losses + shunt_losses == power1 + power2`` is always - true. + - `series_current`: The complex current in the series impedance of the line (in Amps) + for the given phase. + + Additional information can be easily computed from this dataframe. For example: + + * To get the active power losses, use the real part of the complex power losses + * To get the total power losses, add the columns ``powers1 + powers2`` + * To get the power losses in the shunt components of the line, subtract the series losses + from the total power losses computed in the previous step: + ``(powers1 + powers2) - series_losses`` + * To get the currents in the shunt components of the line: + - For the first bus, subtract the columns ``current1 - series_current`` + - For the second bus, add the columns ``series_current + current2`` """ self._warn_invalid_results() - res_dict = {"line_id": [], "phase": [], "series_losses": [], "shunt_losses": [], "total_losses": []} - for br_id, branch in self.branches.items(): + res_dict = { + "line_id": [], + "phase": [], + "current1": [], + "current2": [], + "power1": [], + "power2": [], + "potential1": [], + "potential2": [], + "series_losses": [], + "series_current": [], + } + for branch in self.branches.values(): if not isinstance(branch, Line): continue + potentials = branch._res_potentials_getter(warning=False) + currents = branch._res_currents_getter(warning=False) + powers = branch._res_powers_getter(warning=False) series_losses = branch._res_series_power_losses_getter(warning=False) - shunt_losses = branch._res_shunt_power_losses_getter(warning=False) - total_losses = series_losses + shunt_losses - for series, shunt, total, phase in zip(series_losses, shunt_losses, total_losses, branch.phases): - res_dict["line_id"].append(br_id) + series_currents = branch._res_series_currents_getter(warning=False) + for i1, i2, s1, s2, v1, v2, s_series, i_series, phase in zip( + *currents, *powers, *potentials, series_losses, series_currents, branch.phases + ): + res_dict["line_id"].append(branch.id) res_dict["phase"].append(phase) - res_dict["series_losses"].append(series) - res_dict["shunt_losses"].append(shunt) - res_dict["total_losses"].append(total) - res_df = ( - pd.DataFrame.from_dict(res_dict, orient="columns") + res_dict["current1"].append(i1) + res_dict["current2"].append(i2) + res_dict["power1"].append(s1) + res_dict["power2"].append(s2) + res_dict["potential1"].append(v1) + res_dict["potential2"].append(v2) + res_dict["series_losses"].append(s_series) + res_dict["series_current"].append(i_series) + return ( + pd.DataFrame(res_dict) .astype( { "phase": _PHASE_DTYPE, - "series_losses": complex, - "shunt_losses": complex, - "total_losses": complex, - } + **{k: complex for k in res_dict if k not in ("phase", "line_id")}, + }, ) .set_index(["line_id", "phase"]) ) - return res_df @property def res_loads(self) -> pd.DataFrame: @@ -777,23 +830,26 @@ def res_loads_flexible_powers(self) -> pd.DataFrame: The results are returned as a dataframe with the following index: - `load_id`: The id of the load. - - `phase`: The phase of the load (in ``{'a', 'b', 'c', 'n'}``). + - `phase`: The element phases of the load (in ``{'an', 'bn', 'cn', 'ab', 'bc', 'ca'}``). and the following columns: - `power`: The complex flexible power of the load (in VoltAmps) for the given phase. + + Note that the flexible powers are the powers that flow in the load elements and not in the + lines. These are only different in case of delta loads. To access the powers that flow in + the lines, use the ``power`` column from the :attr:`res_loads` property instead. """ - # TODO(Ali): If the flexible power is not per line, but per physical element, update the - # docstring and add a note about this self._warn_invalid_results() loads_dict = {"load_id": [], "phase": [], "power": []} for load_id, load in self.loads.items(): - if isinstance(load, PowerLoad) and load.is_flexible: - for power, phase in zip(load._res_flexible_powers_getter(warning=False), load.phases): - loads_dict["load_id"].append(load_id) - loads_dict["phase"].append(phase) - loads_dict["power"].append(power) + if not (isinstance(load, PowerLoad) and load.is_flexible): + continue + for power, phase in zip(load._res_flexible_powers_getter(warning=False), load.voltage_phases): + loads_dict["load_id"].append(load_id) + loads_dict["phase"].append(phase) + loads_dict["power"].append(power) powers_df = ( pd.DataFrame.from_dict(loads_dict, orient="columns") - .astype({"phase": _PHASE_DTYPE, "power": complex}) + .astype({"phase": _VOLTAGE_PHASES_DTYPE, "power": complex}) .set_index(["load_id", "phase"]) ) return powers_df @@ -872,6 +928,11 @@ def res_potential_refs(self) -> pd.DataFrame: ) return res_df + def clear_short_circuits(self): + """Remove the short-circuits of all the buses.""" + for bus in self.buses.values(): + bus.clear_short_circuits() + # # Internal methods, please do not use # @@ -916,7 +977,7 @@ def _disconnect_element(self, element: Element) -> None: """ # The C++ electrical network and the tape will be recomputed if isinstance(element, (Bus, AbstractBranch)): - msg = f"{element!r} is a {type(element).__name__} and it can not be disconnected from a network." + msg = f"{element!r} is a {type(element).__name__} and it cannot be disconnected from a network." logger.error(msg) raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_ELEMENT_OBJECT) elif isinstance(element, AbstractLoad): @@ -1050,9 +1111,14 @@ def from_dict(cls, data: JsonDict) -> Self: potential_refs=p_refs, ) - def to_dict(self) -> JsonDict: - """Convert the electrical network to a dictionary.""" - return network_to_dict(self) + def to_dict(self, include_geometry: bool = True) -> JsonDict: + """Convert the electrical network to a dictionary. + + Args: + include_geometry: + If False, the geometry will not be added to the network dictionary. + """ + return network_to_dict(self, include_geometry=include_geometry) # # Results saving/loading @@ -1122,7 +1188,7 @@ def from_dgs(cls, path: StrPath) -> Self: Returns: The constructed network. """ - buses, branches, loads, sources, grounds, potential_refs = network_from_dgs(path) + buses, branches, loads, sources, grounds, potential_refs = network_from_dgs(path, en_class=cls) return cls( buses=buses, branches=branches, @@ -1133,269 +1199,212 @@ def from_dgs(cls, path: StrPath) -> Self: ) # - # Plot - # - # - # def plot( - # self, - # ax: Optional["Axes"] = None, - # crs: Optional[CRS_LIKE_TYPE] = None, - # zoom: Union[str, int] = DEFAULT_ZOOM, - # source: Optional[Union[TileProvider, str]] = None, - # min_size: Optional[float] = DEFAULT_MIN_SIZE, - # margin: Optional[float] = DEFAULT_MARGIN, - # loads_plot_kwargs: Optional[dict[str, Any]] = None, - # slacks_plot_kwargs: Optional[dict[str, Any]] = None, - # junctions_plot_kwargs: Optional[dict[str, Any]] = None, - # branches_plot_kwargs: Optional[dict[str, Any]] = None, - # ) -> tuple["Axes", gpd.GeoDataFrame, gpd.GeoDataFrame]: - # """A basic plot function. It plots the network described by the two `geopandas.GeoDataFrame` `buses` and - # `branches`. It also adds a base map which can come from Maptiler or OSM. - # - # Args: - # ax: - # The axes on which plot the network. - # - # crs: - # The CRS to use for the projection of data. By default pseudo mercator (EPSG:3857). - # - # zoom: - # The zoom to use for the background tiles. By default, 'auto' so let contextily decides. - # - # source: - # A tile source. One taken from `sirao_core.io.providers` or an URL. If None or not provided, use - # `NetworkPlotExporter.DEFAULT_SOURCE`. - # - # min_size: - # The minimum size (in metres) allowed for the plot. This is to ensure a pertinent zoom level on the map. - # Pass None to define no minimum size (this is equivalent to 0.0). Default to 100.0. - # - # margin: - # The margin to use for each side of the plot. It is a percentage of the network's size. Pass None to - # define no margin (this is equivalent to 0.0). Default to 0.05. - # - # loads_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the loads buses. - # - # slacks_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the slack buses - # - # junctions_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the junction buses. To ignore this plot, just pass `{'marker':''}`. - # - # branches_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the branches. - # - # Returns: - # The axe on which the network has been plotted and the data frames of buses and branches converted to the - # new CRS. - # """ - # ax, buses, branches, crs = self.plot_without_basemap( - # ax=ax, - # crs=crs, - # loads_plot_kwargs=loads_plot_kwargs, - # slacks_plot_kwargs=slacks_plot_kwargs, - # junctions_plot_kwargs=junctions_plot_kwargs, - # branches_plot_kwargs=branches_plot_kwargs, - # ) - # - # # Resize axes according to the provided minimum size and margin - # self.resize_axis(ax=ax, min_size=min_size, margin=margin) - # - # # Add the base map - # self.add_basemap(ax=ax, crs=crs, zoom=zoom, source=source) - # - # return ax, buses, branches - # - # - # def plot_without_basemap( - # self, - # ax: Optional["Axes"] = None, - # crs: Optional[CRS_LIKE_TYPE] = None, - # loads_plot_kwargs: Optional[dict[str, Any]] = None, - # slacks_plot_kwargs: Optional[dict[str, Any]] = None, - # junctions_plot_kwargs: Optional[dict[str, Any]] = None, - # branches_plot_kwargs: Optional[dict[str, Any]] = None, - # ) -> tuple["Axes", gpd.GeoDataFrame, gpd.GeoDataFrame, CRS_LIKE_TYPE]: - # """A basic plot function. It plots the network described by the two `geopandas.GeoDataFrame` `buses` and - # `branches` without adding basemap. - # - # Args: - # ax: - # The axes on which plot the network. - # - # crs: - # The CRS to use for the projection of data. By default pseudo mercator (EPSG:3857). - # - # loads_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the loads buses. - # - # slacks_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the slack buses - # - # junctions_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the junction buses. To ignore this plot, just pass `{'marker':''}`. - # - # branches_plot_kwargs: - # The keyword arguments to give to the `geopandas.GeoDataFrame.plot` function (except the `ax` - # argument) to plot the branches. - # - # Returns: - # The axe on which the network has been plotted, the data frames of buses and branches converted to the new - # CRS and the new CRS used. - # """ - # from matplotlib import pyplot as plt - # - # # Default arguments - # loads_plot_kwargs = loads_plot_kwargs if loads_plot_kwargs is not None else self.DEFAULT_LOADS_PLOT_KWARGS - # branches_plot_kwargs = ( - # branches_plot_kwargs if branches_plot_kwargs is not None else self.DEFAULT_BRANCHES_PLOT_KWARGS - # ) - # slacks_plot_kwargs = slacks_plot_kwargs if slacks_plot_kwargs is not None else self.DEFAULT_SLACKS_PLOT_KWARGS - # junctions_plot_kwargs = ( - # junctions_plot_kwargs if junctions_plot_kwargs is not None else self.DEFAULT_JUNCTIONS_PLOT_KWARGS - # ) - # if crs is None: - # crs = CRS.from_epsg(3857) - # - # # Get the data and convert them to the provided CRS - # buses = self.buses_frame.to_crs(crs=crs) - # branches = self.branches_frame.to_crs(crs=crs) - # - # # Get the axes - # if ax is None: - # ax: "Axes" = plt.gca() - # ax.axis("off") - # - # # Plot buses - # # When "marker" is "" and in some other cases, matplotlib raises a ValueError. In these cases, - # # it often means that we do not want to plot the layer, so we just continue - # for bus_type, buses_gdf in buses.groupby(by="bus_type", observed=True): - # if bus_type == "slack": - # if slacks_plot_kwargs["marker"] != "": - # self._plot_with_stroke(df=buses_gdf, ax=ax, stroke_color="white", **slacks_plot_kwargs) - # elif bus_type == "junction": - # if junctions_plot_kwargs["marker"] != "": - # self._plot_with_stroke(df=buses_gdf, ax=ax, stroke_color="white", **junctions_plot_kwargs) - # elif bus_type == "load": - # if loads_plot_kwargs["marker"] != "": - # self._plot_with_stroke(df=buses_gdf, ax=ax, stroke_color="white", **loads_plot_kwargs) - # else: - # logger.warning( - # f"The bus type {bus_type!r} is unknown so we ignore the {buses_gdf.shape[0]} buses of this type " - # f"for the plot." - # ) - # - # if len(branches.index) > 0: - # # Plot branches - # self._plot_with_stroke(df=branches, ax=ax, stroke_color="white", **branches_plot_kwargs) - # - # return ax, buses, branches, crs - # - # - # @staticmethod - # def _plot_with_stroke( - # df: Union[pd.DataFrame, gpd.GeoDataFrame], - # ax: "Axes", - # stroke_color: Optional[str] = None, - # stroke_zorder: float = 1, - # stroke_width: float = 3, - # **kwargs, - # ): - # """Plot a data frame or geo data frame with a stroke. + # Catalogue of networks # - # Args: - # df: - # The data frame or geo data frame to plot. - # - # ax: - # The axes on which to plot the data. - # - # stroke_color: - # The color to use for the stroke. If None or not provided, no stroke will be plotted. - # - # stroke_zorder: - # The zorder to pass to matplotlib for the stroke. By default, use 1. - # - # stroke_width: - # The line width to use for the stroke. It should be greater than the line width uses for the normal plot. - # By default, use 3. - # - # Keyword Args: - # The keyword arguments to pass to the data frame plot method. - # """ - # df.plot(ax=ax, **kwargs) - # - # kwargs.pop("zorder", None) - # kwargs.pop("linewidth", None) - # kwargs.pop("color", None) - # kwargs.pop("column", None) - # kwargs.pop("cmap", None) - # kwargs.pop("label", None) - # if stroke_color is not None: - # df.plot(ax=ax, zorder=stroke_zorder, linewidth=stroke_width, color=stroke_color, **kwargs) - # - # @staticmethod - # def resize_axe(ax: "Axes", figsize:tuple[float, float]): - # xmin, xmax, ymin, ymax = ax.axis() - # xlen, ylen = (xmax - xmin, ymax - ymin) - # xfig, yfig = figsize - # xratio = xlen / xfig - # yratio = ylen / yfig - # - # if xratio > yratio: - # expand = (xratio * yfig - ylen) / 2.0 - # ax.set_ylim(ymin=ymin - expand, ymax=ymax + expand) - # elif xratio < yratio: - # expand = (yratio * xfig - xlen) / 2.0 - # ax.set_xlim(xmin=xmin - expand, xmax=xmax + expand) - # - # def add_basemap( - # self, - # ax: "Axes", - # crs: CRS_LIKE_TYPE, - # zoom: Union[str, int] = DEFAULT_ZOOM, - # source: Optional[Union[TileProvider, str]] = None, - # ): - # """Add a basemap to the provided axes. - # - # Args: - # ax: - # The axes on which to add the basemap. - # - # crs: - # The CRS to use for the projection of data. - # - # zoom: - # The zoom to use for the background tiles. By default, use "auto". - # - # source: - # A tile source. One taken from `sirao_core.io.providers` or an URL. If None or not provided, use - # `NetworkPlotExporter.DEFAULT_SOURCE`. - # """ - # import contextily as ctx - # - # ax.axis("off") - # if source is None: - # source = self.DEFAULT_SOURCE - # try: - # logger.info( - # f"Start adding basemap from {source['url'] if 'url' in source else source} to the plot." - # ) - # ctx.add_basemap(ax=ax, zoom=zoom, source=source, crs=str(crs), reset_extent=True) - # logger.info("Basemap was successfully added to the plot.") - # except (HTTPError, UnidentifiedImageError) as e: - # logger.error( - # f"The following error has been raised by contextily when trying to add basemap to the plot:\n" - # f"{e.__module__}.{e.__class__.__name__}: {e}" - # ) - # if source != self.DEFAULT_SOURCE: - # logger.info(f"Adding default basemap from {self.DEFAULT_SOURCE['url']} to the plot.") - # ctx.add_basemap(ax=ax, zoom=zoom, source=self.DEFAULT_SOURCE, crs=str(crs), reset_extent=True) + @classmethod + def catalogue_path(cls) -> Path: + return Path(resources.files("roseau.load_flow") / "data" / "networks").expanduser().absolute() + + @classmethod + def catalogue_data(cls) -> JsonDict: + return json.loads((cls.catalogue_path() / "Catalogue.json").read_text()) + + @classmethod + def from_catalogue(cls, name: Union[str, re.Pattern[str]], load_point_name: Union[str, re.Pattern[str]]) -> Self: + """Build a network from one in the catalogue. + + Args: + name: + The name of the network to get from the catalogue. It can be a regular expression. + + load_point_name: + The name of the load point to get. For each network, several load points may be available. It can be + a regular expression. + + Returns: + The selected network + """ + # Get the catalogue data + catalogue_data = cls.catalogue_data() + + # Match on the name + if isinstance(name, re.Pattern): + name_pattern = name + name = name.pattern + match_names_list = [k for k in catalogue_data if name_pattern.match(k)] + else: + try: + name_pattern = re.compile(pattern=name, flags=re.IGNORECASE) + match_names_list = [k for k in catalogue_data if name_pattern.match(k)] + except re.error: + name_pattern = name.lower() + match_names_list = [k for k in catalogue_data if k.lower() == name_pattern] + if not match_names_list: + msg = ( + f"No network matching the name {name!r} has been found. " + f"Please look at the catalogue using the `print_catalogue` class method." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND) + elif len(match_names_list) > 1: + msg_part = textwrap.shorten(", ".join(repr(x) for x in sorted(match_names_list)), width=500) + msg = f"Several networks matching the name {name!r} have been found: {msg_part}." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND) + name = match_names_list[0] + + # Match on the load point + c_data = catalogue_data[name] + available_load_points = c_data["load_points"] + if isinstance(load_point_name, re.Pattern): + load_point_name_pattern = load_point_name + load_point_name = load_point_name.pattern + match_load_point_names_list = [k for k in available_load_points if load_point_name_pattern.match(k)] + else: + try: + load_point_name_pattern = re.compile(pattern=load_point_name, flags=re.IGNORECASE) + match_load_point_names_list = [k for k in available_load_points if load_point_name_pattern.match(k)] + except re.error: + load_point_name_pattern = load_point_name.lower() + match_load_point_names_list = [k for k in available_load_points if k.lower() == load_point_name_pattern] + if not match_load_point_names_list: + msg_part = textwrap.shorten(", ".join(repr(x) for x in sorted(available_load_points)), width=500) + msg = ( + f"No load point matching the name {load_point_name!r} has been found for the network {name!r}. " + f"Available load points are {msg_part}." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND) + elif len(match_load_point_names_list) > 1: + msg_part = textwrap.shorten(", ".join(repr(x) for x in sorted(match_load_point_names_list)), width=500) + msg = ( + f"Several load points matching the name {load_point_name!r} have been found for the network " + f"{name!r}: {msg_part}." + ) + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND) + load_point_name = match_load_point_names_list[0] + + # Get the data from the Json file + path = cls.catalogue_path() / f"{name}_{load_point_name}.json" + if not path.exists(): # pragma: no cover + msg = f"The file {path} has not been found while it should exist. Please post an issue on GitHub." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.CATALOGUE_MISSING) + + return cls.from_json(path=path) + + @classmethod + def print_catalogue( + cls, + name: Optional[Union[str, re.Pattern[str]]] = None, + load_point_name: Optional[Union[str, re.Pattern[str]]] = None, + ) -> None: + """Print the catalogue of available networks. + + Args: + name: + The name of the networks to display. It can be a regular expression. For instance, `name="lv"` will + match all the network name starting with "lv" (ignoring case). + + load_point_name: + Only networks having a load point matching this string or regular expression will be displayed. + """ + # Get the catalogue data + catalogue_data = cls.catalogue_data() + + # Start creating a table to display the results + table = Table(title="Available Networks") + table.add_column("Name") + table.add_column("Nb buses", justify="right", style="color(1)", header_style="color(1)") + table.add_column("Nb branches", justify="right", style="color(2)", header_style="color(2)") + table.add_column("Nb loads", justify="right", style="color(3)", header_style="color(3)") + table.add_column("Nb sources", justify="right", style="color(4)", header_style="color(4)") + table.add_column("Nb grounds", justify="right", style="color(5)", header_style="color(5)") + table.add_column("Nb potential refs", justify="right", style="color(6)", header_style="color(6)") + table.add_column("Available load points", justify="right", style="color(9)", header_style="color(9)") + empty_table = True + + # Match on the name + match_names_list = cls._filter_name(name=name, catalogue_data=catalogue_data) + + # Match on load point name + if load_point_name is None: + load_point_name_pattern = None + + def match_load_point_function(x: str) -> bool: + return True + + elif isinstance(load_point_name, re.Pattern): + load_point_name_pattern = load_point_name + load_point_name = load_point_name.pattern + match_load_point_function = load_point_name_pattern.match + else: + try: + load_point_name_pattern = re.compile(pattern=load_point_name, flags=re.IGNORECASE) + match_load_point_function = load_point_name_pattern.match + except re.error: + load_point_name_pattern = name.lower() + + def match_load_point_function(x: str) -> bool: + nonlocal load_point_name_pattern + return x.lower() == load_point_name_pattern + + # Iterate over the networks + for c_name in match_names_list: + c_data = catalogue_data[c_name] + available_load_points = c_data["load_points"] + if any(match_load_point_function(x) for x in available_load_points): + empty_table = False + table.add_row( + c_name, + str(c_data["nb_buses"]), + str(c_data["nb_branches"]), + str(c_data["nb_loads"]), + str(c_data["nb_sources"]), + str(c_data["nb_grounds"]), + str(c_data["nb_potential_refs"]), + ", ".join(repr(x) for x in sorted(c_data["load_points"])), + ) + + # Handle the case of an empty table + if empty_table: + msg = "No networks can be found in the catalogue" + if name is not None and load_point_name is not None: + msg += f" with the name {name!r} and having a load point named {load_point_name!r}" + elif name is not None: + msg += f" with the name {name!r}" + elif load_point_name is not None: + msg += f" having a load point named {load_point_name!r}" + msg += "!" + console.print(msg) + else: + console.print(table) + + @staticmethod + def _filter_name(name: Optional[Union[str, re.Pattern[str]]], catalogue_data: JsonDict) -> list[str]: + """Filter the catalogue using the network name. + + Args: + name: + The optional name to use as a filter. + + catalogue_data: + The catalogue of available networks. It avoids an additional read. + + Returns: + The list of network names matching the provided one. + """ + if name is None: + match_names_list = list(catalogue_data) + elif isinstance(name, re.Pattern): + match_names_list = [k for k in catalogue_data if name.match(k)] + else: + try: + name_pattern = re.compile(pattern=name, flags=re.IGNORECASE) + match_names_list = [k for k in catalogue_data if name_pattern.match(k)] + except re.error: + name_pattern = name.lower() + match_names_list = [k for k in catalogue_data if k.lower() == name_pattern] + + return match_names_list diff --git a/roseau/load_flow/solvers.py b/roseau/load_flow/solvers.py index dcdcbfd5..5071c115 100644 --- a/roseau/load_flow/solvers.py +++ b/roseau/load_flow/solvers.py @@ -26,10 +26,7 @@ def check_solver_params(solver: Solver, params: Optional[JsonDict]) -> JsonDict: Returns: The updated solver parameters. """ - if params is None: - params = {} - else: - params = params.copy() + params = {} if params is None else params.copy() # Check the solver if solver not in _SOLVERS_PARAMS: @@ -51,10 +48,9 @@ def check_solver_params(solver: Solver, params: Optional[JsonDict]) -> JsonDict: # Extra checks per solver if solver == "newton": pass # Nothing more to check - elif solver == "newton_goldstein": - if params.get("m1", 0.1) >= params.get("m2", 0.9): - msg = "For the 'newton_goldstein' solver, the inequality m1 < m2 should be respected." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SOLVER_PARAMS) + elif solver == "newton_goldstein" and params.get("m1", 0.1) >= params.get("m2", 0.9): + msg = "For the 'newton_goldstein' solver, the inequality m1 < m2 should be respected." + logger.error(msg) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_SOLVER_PARAMS) return params diff --git a/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json b/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json index 040ec616..3cb16a7e 100644 --- a/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json +++ b/roseau/load_flow/tests/data/benchmark/B.EC05_N009_55/network.json @@ -1,2704 +1,2461 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 0, - "phase": "n" - }, - { - "id": 50, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 0, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - } - }, - { - "id": 50, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - } - }, - { - "id": 542, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856978967864625, 45.69219040555863] - } - }, - { - "id": 1364, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855867232318871, 45.69136027006984] - } - }, - { - "id": 1365, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855846104884748, 45.69144901085738] - } - }, - { - "id": 1366, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85588829377169, 45.69161122844266] - } - }, - { - "id": 1367, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855860204231766, 45.69176818400519] - } - }, - { - "id": 1407, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855869182087027, 45.69136049630226] - } - }, - { - "id": 1663, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856370661831063, 45.69110851750263] - } - }, - { - "id": 1664, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856375306784422, 45.69110589277815] - } - }, - { - "id": 1665, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856382029776952, 45.69110208720114] - } - }, - { - "id": 1666, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856387024934563, 45.69109925657929] - } - }, - { - "id": 2081, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855854534153559, 45.69135896213488] - } - }, - { - "id": 2082, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855816427653202, 45.69135505659377] - } - }, - { - "id": 2083, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855791018908654, 45.6913524499912] - } - }, - { - "id": 2084, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855786863583238, 45.69135202127266] - } - }, - { - "id": 2085, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85563566314481, 45.69133651542809] - } - }, - { - "id": 2086, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855622952159835, 45.69133520775522] - } - }, - { - "id": 2087, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855600498514187, 45.69133290377598] - } - }, - { - "id": 2088, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855587787530867, 45.69133159609905] - } - }, - { - "id": 2089, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855407023176602, 45.69131305456497] - } - }, - { - "id": 2090, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855368916328575, 45.69130913987988] - } - }, - { - "id": 2091, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855356218598147, 45.6913078408805] - } - }, - { - "id": 2156, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85685262162569, 45.69253367223592] - } - }, - { - "id": 2157, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856851022816997, 45.69253802876519] - } - }, - { - "id": 2488, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856738631522436, 45.69216124238103] - } - }, - { - "id": 2489, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.8563875660472, 45.69228111612342] - } - }, - { - "id": 2490, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856292856235074, 45.69232748538923] - } - }, - { - "id": 2491, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856208673924059, 45.69236870335052] - } - }, - { - "id": 2492, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856029618601329, 45.69250467560685] - } - }, - { - "id": 2493, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855930737267387, 45.69267072873552] - } - }, - { - "id": 2494, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855888072041425, 45.69274239200233] - } - }, - { - "id": 2588, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855825999456157, 45.69273095075617] - } - }, - { - "id": 2589, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855788745488097, 45.6927240826258] - } - }, - { - "id": 2590, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855676659986405, 45.69270342242253] - } - }, - { - "id": 2591, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855670455137178, 45.69270227463329] - } - }, - { - "id": 2649, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85591518390002, 45.69139520669937] - } - }, - { - "id": 2650, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855915068012751, 45.69139520030173] - } - }, - { - "id": 2846, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856360725716369, 45.69102412913973] - } - }, - { - "id": 2847, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856383793336582, 45.69086300169013] - } - }, - { - "id": 2848, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856390704015929, 45.69081473478015] - } - }, - { - "id": 2849, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856458006484099, 45.69111484486989] - } - }, - { - "id": 2850, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856636058726183, 45.69113194244653] - } - }, - { - "id": 2851, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856800333523847, 45.69114772016799] - } - }, - { - "id": 2852, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856801404224056, 45.69114782212127] - } - }, - { - "id": 2853, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856806693572222, 45.69114833332971] - } - }, - { - "id": 2933, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85627431413481, 45.69280960338721] - } - }, - { - "id": 2934, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856417860286734, 45.69283457875029] - } - }, - { - "id": 2935, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856423816029007, 45.69283561508038] - } - }, - { - "id": 2936, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856424087948438, 45.69283566297754] - } - }, - { - "id": 3399, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855763551680219, 45.69182738723423] - } - }, - { - "id": 3400, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855398849537063, 45.69194059727197] - } - }, - { - "id": 3401, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855416724230305, 45.69181947119029] - } - }, - { - "id": 3402, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855418952830454, 45.69181736884877] - } - }, - { - "id": 3403, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855420553793683, 45.69181586568582] - } - } - ], - "branches": [ - { - "id": "transfo", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 0, - "bus2": 50, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line243", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 542, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.856006369563374, 45.69145685074764], - [4.856041286384759, 45.6914589736374], - [4.85608611929476, 45.69142826223273], - [4.85710799403576, 45.691501610824], - [4.857207269582688, 45.69156598849194], - [4.856978967864625, 45.69219040555863] - ] - }, - "length": 0.1698047886136108, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1213", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 1663, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.856000594306501, 45.69144599899529], - [4.856024490964286, 45.69142874679027], - [4.856042739971293, 45.69129421833258], - [4.856370661831063, 45.69110851750263] - ] - }, - "length": 0.0505315521261473, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line987", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 1407, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.855988721281017, 45.6914422332006], - [4.855996361520631, 45.6913753713747], - [4.855869182087027, 45.69136049630226] - ] - }, - "length": 0.0174985508964364, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2112", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 2649, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.855971166936666, 45.69144819937015], - [4.855950443311009, 45.69143851158069], - [4.855955048725805, 45.69139880266571], - [4.85591518390002, 45.69139520669937] - ] - }, - "length": 0.0094992002360799, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line2113", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2649, - "bus2": 2650, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85591518390002, 45.69139520669937], - [4.855915068012751, 45.69139520030173] - ] - }, - "length": 9.054749376593195e-06, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line988", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1407, - "bus2": 1364, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855869182087027, 45.69136049630226], - [4.855867232318871, 45.69136027006984] - ] - }, - "length": 0.0001539404843332, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line952", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1364, - "bus2": 1365, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855867232318871, 45.69136027006984], - [4.855846104884748, 45.69144901085738] - ] - }, - "length": 0.0099994696006292, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1576", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1364, - "bus2": 2081, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855867232318871, 45.69136027006984], - [4.855854534153559, 45.69135896213488] - ] - }, - "length": 0.0009997222679235, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1577", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2081, - "bus2": 2082, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855854534153559, 45.69135896213488], - [4.855816427653202, 45.69135505659377] - ] - }, - "length": 0.0029997976524975, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1578", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2082, - "bus2": 2083, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855816427653202, 45.69135505659377], - [4.855791018908654, 45.6913524499912] - ] - }, - "length": 0.002000251978809, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1579", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2083, - "bus2": 2084, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855791018908654, 45.6913524499912], - [4.855786863583238, 45.69135202127266] - ] - }, - "length": 0.0003271589286956, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1580", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2084, - "bus2": 2085, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855786863583238, 45.69135202127266], - [4.85563566314481, 45.69133651542809] - ] - }, - "length": 0.0119028646292776, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line953", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1365, - "bus2": 1366, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855846104884748, 45.69144901085738], - [4.855845684286097, 45.69145076654667], - [4.855901120337955, 45.69153953345657], - [4.85588829377169, 45.69161122844266] - ] - }, - "length": 0.0189984078266001, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1581", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2085, - "bus2": 2086, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85563566314481, 45.69133651542809], - [4.855622952159835, 45.69133520775522] - ] - }, - "length": 0.0010007064087425, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1582", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2086, - "bus2": 2087, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855622952159835, 45.69133520775522], - [4.855600498514187, 45.69133290377598] - ] - }, - "length": 0.0017676269548577, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1583", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2087, - "bus2": 2088, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855600498514187, 45.69133290377598], - [4.855587787530867, 45.69133159609905] - ] - }, - "length": 0.0010007064104751, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1584", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2088, - "bus2": 2089, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855587787530867, 45.69133159609905], - [4.855407023176602, 45.69131305456497] - ] - }, - "length": 0.0142302752899377, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line954", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1366, - "bus2": 1367, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85588829377169, 45.69161122844266], - [4.855860204231766, 45.69176818400519] - ] - }, - "length": 0.0175815455828478, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1214", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1663, - "bus2": 1664, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856370661831063, 45.69110851750263], - [4.856375306784422, 45.69110589277815] - ] - }, - "length": 0.0004647694653149, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1215", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1664, - "bus2": 1665, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856375306784422, 45.69110589277815], - [4.856382029776952, 45.69110208720114] - ] - }, - "length": 0.000673157746019, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1216", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1665, - "bus2": 1666, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856382029776952, 45.69110208720114], - [4.856387024934563, 45.69109925657929] - ] - }, - "length": 0.0005003696964554, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2308", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1666, - "bus2": 2846, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856387024934563, 45.69109925657929], - [4.856355663247043, 45.69105945574269], - [4.856360725716369, 45.69102412913973] - ] - }, - "length": 0.0089995012028159, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2311", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1666, - "bus2": 2849, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856387024934563, 45.69109925657929], - [4.85640419839692, 45.69110967215316], - [4.856458006484099, 45.69111484486989] - ] - }, - "length": 0.0059995904338227, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1585", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2089, - "bus2": 2090, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855407023176602, 45.69131305456497], - [4.855368916328575, 45.69130913987988] - ] - }, - "length": 0.0029999740821226, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1586", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2090, - "bus2": 2091, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855368916328575, 45.69130913987988], - [4.855356218598147, 45.6913078408805] - ] - }, - "length": 0.0009995457086402, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2312", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2849, - "bus2": 2850, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856458006484099, 45.69111484486989], - [4.856636058726183, 45.69113194244653] - ] - }, - "length": 0.0139986419668756, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2309", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2846, - "bus2": 2847, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856360725716369, 45.69102412913973], - [4.856383793336582, 45.69086300169013] - ] - }, - "length": 0.0179984696461502, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2832", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1367, - "bus2": 3399, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855860204231766, 45.69176818400519], - [4.855763551680219, 45.69182738723423] - ] - }, - "length": 0.0099988303999178, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2313", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2850, - "bus2": 2851, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856636058726183, 45.69113194244653], - [4.856800333523847, 45.69114772016799] - ] - }, - "length": 0.0129154893237343, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2833", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3399, - "bus2": 3400, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855763551680219, 45.69182738723423], - [4.855584089016939, 45.69193730935378], - [4.855398849537063, 45.69194059727197] - ] - }, - "length": 0.0329985491086803, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2310", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2847, - "bus2": 2848, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856383793336582, 45.69086300169013], - [4.856390704015929, 45.69081473478015] - ] - }, - "length": 0.0053915783689662, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2314", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2851, - "bus2": 2852, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856800333523847, 45.69114772016799], - [4.856801404224056, 45.69114782212127] - ] - }, - "length": 8.41665220926229e-05, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2852, - "bus2": 2853, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856801404224056, 45.69114782212127], - [4.856806693572222, 45.69114833332971] - ] - }, - "length": 0.0004159034442303, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2834", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3400, - "bus2": 3401, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855398849537063, 45.69194059727197], - [4.855392869155902, 45.69194070460053], - [4.855387309011729, 45.69184721664104], - [4.855416724230305, 45.69181947119029] - ] - }, - "length": 0.0147075358057835, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2835", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3401, - "bus2": 3402, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855416724230305, 45.69181947119029], - [4.855418952830454, 45.69181736884877] - ] - }, - "length": 0.0002910897047899, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2836", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3402, - "bus2": 3403, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855418952830454, 45.69181736884877], - [4.855420553793683, 45.69181586568582] - ] - }, - "length": 0.0002084777079536, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1646", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 542, - "bus2": 2156, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856978967864625, 45.69219040555863], - [4.85685262162569, 45.69253367223592] - ] - }, - "length": 0.0394013052961165, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1960", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 542, - "bus2": 2488, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856978967864625, 45.69219040555863], - [4.856738631522436, 45.69216124238103] - ] - }, - "length": 0.0189987578088231, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1961", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2488, - "bus2": 2489, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856738631522436, 45.69216124238103], - [4.85665349107763, 45.69215091411277], - [4.8563875660472, 45.69228111612342] - ] - }, - "length": 0.0319981744631324, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1647", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2156, - "bus2": 2157, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85685262162569, 45.69253367223592], - [4.856851022816997, 45.69253802876519] - ] - }, - "length": 0.0004999657082792, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1962", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2489, - "bus2": 2490, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.8563875660472, 45.69228111612342], - [4.856292856235074, 45.69232748538923] - ] - }, - "length": 0.008999023393858, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1963", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2490, - "bus2": 2491, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856292856235074, 45.69232748538923], - [4.856208673924059, 45.69236870335052] - ] - }, - "length": 0.0079989134977189, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1964", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2491, - "bus2": 2492, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856208673924059, 45.69236870335052], - [4.856140935805975, 45.69240186471046], - [4.856052674911791, 45.69246595632609], - [4.856029618601329, 45.69250467560685] - ] - }, - "length": 0.0209990509945453, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1965", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2492, - "bus2": 2493, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856029618601329, 45.69250467560685], - [4.855930737267387, 45.69267072873552] - ] - }, - "length": 0.0199986363582786, - "params_id": "S_AL_240", - "ground": "ground" + "id": 0, + "phase": "n" }, { - "id": "line1966", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2493, - "bus2": 2494, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855930737267387, 45.69267072873552], - [4.855888072041425, 45.69274239200233] - ] - }, - "length": 0.008630510320176, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2389", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2494, - "bus2": 2933, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855888072041425, 45.69274239200233], - [4.85627431413481, 45.69280960338721] - ] - }, - "length": 0.0309983265742373, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2056", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2494, - "bus2": 2588, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855888072041425, 45.69274239200233], - [4.855825999456157, 45.69273095075617] - ] - }, - "length": 0.0049993261430797, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2057", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2588, - "bus2": 2589, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855825999456157, 45.69273095075617], - [4.855788745488097, 45.6927240826258] - ] - }, - "length": 0.003000476475499, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2058", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2589, - "bus2": 2590, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855788745488097, 45.6927240826258], - [4.855676659986405, 45.69270342242253] - ] - }, - "length": 0.0090273856534237, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2059", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2590, - "bus2": 2591, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855676659986405, 45.69270342242253], - [4.855670455137178, 45.69270227463329] - ] - }, - "length": 0.0004998552042313, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2390", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2933, - "bus2": 2934, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85627431413481, 45.69280960338721], - [4.856417860286734, 45.69283457875029] - ] - }, - "length": 0.0115203641917798, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2391", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2934, - "bus2": 2935, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856417860286734, 45.69283457875029], - [4.856423816029007, 45.69283561508038] - ] - }, - "length": 0.0004779834842022, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2392", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2935, - "bus2": 2936, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856423816029007, 45.69283561508038], - [4.856424087948438, 45.69283566297754] - ] - }, - "length": 2.183881197426037e-05, - "params_id": "S_AL_95", - "ground": "ground" - } - ], - "loads": [ - { - "id": 10, - "bus": 542, - "phases": "abcn", - "powers": [ - [1319.5514969710862, 231.89395762970432], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 5, - "bus": 1365, - "phases": "abcn", - "powers": [ - [1279.0606072611827, 398.74167539455425], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 15, - "bus": 1365, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1303.5603371098352, 309.38876556509604] - ] - }, - { - "id": 31, - "bus": 1365, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1299.6575729488254, 325.3938441651446], - [0.0, 0.0] - ] - }, - { - "id": 73, - "bus": 1365, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1277.5307281544729, 403.61640125855155], - [0.0, 0.0] - ] - }, - { - "id": 19, - "bus": 1367, - "phases": "abcn", - "powers": [ - [1317.0812188972347, 245.5361960525906], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 32, - "bus": 1367, - "phases": "abcn", - "powers": [ - [1333.9538346826566, 124.73222390079212], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 61, - "bus": 1367, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1324.0862950086896, 204.41732831138063] - ] - }, - { - "id": 86, - "bus": 1367, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1326.9123992351522, 185.18759542640527], - [0.0, 0.0] - ] - }, - { - "id": 40, - "bus": 1407, - "phases": "abcn", - "powers": [ - [1330.4682005964203, 157.6240081508046], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 60, - "bus": 1407, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1305.3399293324028, 301.7923617891606] - ] - }, - { - "id": 52, - "bus": 1663, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1292.7765005180647, 351.7383693202493] - ] - }, - { - "id": 83, - "bus": 1663, - "phases": "abcn", - "powers": [ - [1285.618448582671, 377.0625484023677], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 16, - "bus": 1664, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1278.0628087235511, 401.92837384472966], - [0.0, 0.0] - ] - }, - { - "id": 46, - "bus": 1664, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1332.054862653535, 143.59945551732818] - ] - }, - { - "id": 57, - "bus": 1664, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1331.6484712473598, 147.32043228408932], - [0.0, 0.0] - ] - }, - { - "id": 36, - "bus": 1665, - "phases": "abcn", - "powers": [ - [1322.6898869253412, 213.2660867771289], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 62, - "bus": 1665, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1304.6226093055911, 304.87834956335075] - ] - }, - { - "id": 41, - "bus": 1666, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1283.5010670472027, 384.20823993310415] - ] - }, - { - "id": 54, - "bus": 1666, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1323.8636496186705, 205.85431246912336], - [0.0, 0.0] - ] - }, - { - "id": 23, - "bus": 2081, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1296.5831906572867, 337.43590568991283], - [0.0, 0.0] - ] - }, - { - "id": 49, - "bus": 2081, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1273.0014902093146, 417.6818965057808], - [0.0, 0.0] - ] - }, - { - "id": 85, - "bus": 2082, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1303.7749143548147, 308.4832790329114], - [0.0, 0.0] - ] - }, - { - "id": 78, - "bus": 2083, - "phases": "abcn", - "powers": [ - [1279.2773539758966, 398.04574152756607], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 75, - "bus": 2084, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1281.6474812299318, 390.34689008723115] - ] - }, - { - "id": 6, - "bus": 2085, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1313.1125046335185, 265.9445636197316] - ] - }, - { - "id": 21, - "bus": 2085, - "phases": "abcn", - "powers": [ - [1298.2482283705212, 330.9720505973342], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 29, - "bus": 2085, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1294.5073490838445, 345.3138918603177] - ] - }, - { - "id": 39, - "bus": 2085, - "phases": "abcn", - "powers": [ - [1306.9165625138949, 294.88991059489666], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 69, - "bus": 2085, - "phases": "abcn", - "powers": [ - [1295.4319816915825, 341.82881908116127], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 71, - "bus": 2085, - "phases": "abcn", - "powers": [ - [1277.5398209320822, 403.58761957798544], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 27, - "bus": 2086, - "phases": "abcn", - "powers": [ - [1303.7502721461626, 308.58740839931943], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 59, - "bus": 2086, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1336.2189429549055, 97.51870196160768] - ] - }, - { - "id": 74, - "bus": 2086, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1317.5980000347338, 242.747751891282], - [0.0, 0.0] - ] - }, - { - "id": 2, - "bus": 2088, - "phases": "abcn", - "powers": [ - [1287.7366738794012, 369.76373468718975], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 28, - "bus": 2088, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1318.883122101868, 235.66559141849945] - ] - }, - { - "id": 17, - "bus": 2089, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1314.2178856839457, 260.42716773067457] - ] - }, - { - "id": 11, - "bus": 2156, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1283.1994505839823, 385.21439584310394], - [0.0, 0.0] - ] - }, - { - "id": 48, - "bus": 2156, - "phases": "abcn", - "powers": [ - [1292.4452642997337, 352.95353735724615], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 14, - "bus": 2157, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1290.50398309402, 359.98670859112406] - ] - }, - { - "id": 18, - "bus": 2488, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1285.6652413586705, 376.90296882082686] - ] - }, - { - "id": 13, - "bus": 2489, - "phases": "abcn", - "powers": [ - [1296.8316300904191, 336.47984180456893], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 43, - "bus": 2489, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1312.7018441498733, 267.9642310259403], - [0.0, 0.0] - ] - }, - { - "id": 82, - "bus": 2490, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1295.5135097591285, 341.51970188465845] - ] - }, - { - "id": 38, - "bus": 2492, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1299.5393861113935, 325.86553160625016] - ] - }, - { - "id": 79, - "bus": 2492, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1301.1590452579821, 319.3369688700921], - [0.0, 0.0] - ] - }, - { - "id": 9, - "bus": 2493, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1291.4197071024971, 356.68767970186735] - ] - }, - { - "id": 22, - "bus": 2494, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1328.6600109664457, 172.20202090116732] - ] - }, - { - "id": 44, - "bus": 2494, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1289.6259799692361, 363.1195292630083] - ] - }, - { - "id": 80, - "bus": 2494, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1276.4129448719732, 407.13751350994266] - ] - }, - { - "id": 51, - "bus": 2590, - "phases": "abcn", - "powers": [ - [1306.792993997642, 295.43701796234075], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 68, - "bus": 2591, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1280.8899969845843, 392.8253764316062], - [0.0, 0.0] - ] - }, - { - "id": 4, - "bus": 2649, - "phases": "abcn", - "powers": [ - [1312.3403791009896, 269.7289197043438], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 37, - "bus": 2649, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1322.825527496478, 212.42312620679115], - [0.0, 0.0] - ] - }, - { - "id": 55, - "bus": 2649, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1334.3127176075302, 120.83266269766999] - ] - }, - { - "id": 65, - "bus": 2649, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1318.9973828548552, 235.0252428269018] - ] - }, - { - "id": 84, - "bus": 2649, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1282.174711833792, 388.6115915380472], - [0.0, 0.0] - ] - }, - { - "id": 88, - "bus": 2649, - "phases": "abcn", - "powers": [ - [1337.6958288260637, 74.57097481696131], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 7, - "bus": 2650, - "phases": "abcn", - "powers": [ - [1320.7492683883816, 224.9718444502703], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 45, - "bus": 2650, - "phases": "abcn", - "powers": [ - [1318.3553489029791, 238.6003662250029], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 63, - "bus": 2650, - "phases": "abcn", - "powers": [ - [1290.5398730409277, 359.85802316372997], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 87, - "bus": 2650, - "phases": "abcn", - "powers": [ - [1276.1729341198768, 407.8892042744769], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 33, - "bus": 2846, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1293.8639330375797, 347.71695893114986] - ] - }, - { - "id": 76, - "bus": 2846, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1304.4476784103185, 305.62593972654224] - ] - }, - { - "id": 70, - "bus": 2847, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1288.1991630529185, 368.1492592055051] - ] - }, - { - "id": 56, - "bus": 2848, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1305.515121009439, 301.0336020438767], - [0.0, 0.0] - ] - }, - { - "id": 64, - "bus": 2848, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1337.385446942204, 79.94452483443143], - [0.0, 0.0] - ] - }, - { - "id": 1, - "bus": 2850, - "phases": "abcn", - "powers": [ - [1274.459527295882, 413.21165766294473], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 26, - "bus": 2850, - "phases": "abcn", - "powers": [ - [1308.5653928987515, 287.4849096066398], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 53, - "bus": 2850, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1313.5781749594094, 263.6348592544411] - ] - }, - { - "id": 72, - "bus": 2850, - "phases": "abcn", - "powers": [ - [1288.1205888132586, 368.4240890864575], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 34, - "bus": 2851, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1299.2869324630979, 326.8706592437368], - [0.0, 0.0] - ] - }, - { - "id": 35, - "bus": 2851, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1282.3548639279086, 388.0167054448003], - [0.0, 0.0] - ] - }, - { - "id": 81, - "bus": 2851, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1279.3769698913727, 397.72544506904677] - ] - }, - { - "id": 24, - "bus": 2852, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1319.798076679979, 230.4864367715152], - [0.0, 0.0] - ] - }, - { - "id": 67, - "bus": 2852, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1297.799021163752, 332.7291111553191] - ] - }, - { - "id": 25, - "bus": 2853, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1277.5672476586992, 403.50079114368214] - ] - }, - { - "id": 42, - "bus": 2853, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1312.736718592784, 267.79333151154407], - [0.0, 0.0] - ] - }, - { - "id": 8, - "bus": 2933, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1300.8871516428294, 320.44278652266155] - ] - }, - { - "id": 66, - "bus": 2934, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1299.5120410055094, 325.97456346392505], - [0.0, 0.0] - ] - }, - { - "id": 50, - "bus": 2935, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1290.428164252019, 360.25839844334774] - ] - }, - { - "id": 3, - "bus": 2936, - "phases": "abcn", - "powers": [ - [1318.1152667995234, 239.92312138229403], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 12, - "bus": 3399, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1279.6310179555057, 396.9073174306034], - [0.0, 0.0] - ] - }, - { - "id": 47, - "bus": 3399, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1324.2714719206322, 203.21424507392098], - [0.0, 0.0] - ] - }, - { - "id": 20, - "bus": 3400, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1338.7827370942632, 51.495083281748634], - [0.0, 0.0] - ] - }, - { - "id": 30, - "bus": 3400, - "phases": "abcn", - "powers": [ - [1288.127708911686, 368.39919418713686], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 77, - "bus": 3401, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1326.8772136572086, 185.43953359810874], - [0.0, 0.0] - ] - }, - { - "id": 58, - "bus": 3402, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1288.8246746527598, 365.953437953532], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": 0, - "bus": 0, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00010284317710785252, - -2.5710794276947463e-05, - -2.5710794276947463e-05, - -2.57107942769788e-05 - ], - [ - -2.5710794276947463e-05, - 0.00010284317710785252, - -2.5710794276947463e-05, - -2.57107942769788e-05 - ], - [ - -2.5710794276947463e-05, - -2.5710794276947463e-05, - 0.00010284317710785252, - -2.57107942769788e-05 - ], - [ - -2.57107942769788e-05, - -2.57107942769788e-05, - -2.57107942769788e-05, - 0.0001028431771079 - ] - ] - ] - }, - { - "id": "S_AL_35", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.8571428571428571, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.8571428571428571, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.8571428571428571, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.8571428571428571 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.719928802753306e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05 - ], - [ - -1.1799822006883264e-05, - 4.719928802753306e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05 - ], - [ - -1.1799822006883264e-05, - -1.1799822006883264e-05, - 4.719928802753306e-05, - -1.1799822006883264e-05 - ], - [ - -1.1799822006883264e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05, - 4.719928802753306e-05 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.31578947368421 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 50, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 0, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + } + }, + { + "id": 50, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + } + }, + { + "id": 542, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856978967864625, 45.69219040555863] + } + }, + { + "id": 1364, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855867232318871, 45.69136027006984] + } + }, + { + "id": 1365, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855846104884748, 45.69144901085738] + } + }, + { + "id": 1366, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85588829377169, 45.69161122844266] + } + }, + { + "id": 1367, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855860204231766, 45.69176818400519] + } + }, + { + "id": 1407, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855869182087027, 45.69136049630226] + } + }, + { + "id": 1663, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856370661831063, 45.69110851750263] + } + }, + { + "id": 1664, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856375306784422, 45.69110589277815] + } + }, + { + "id": 1665, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856382029776952, 45.69110208720114] + } + }, + { + "id": 1666, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856387024934563, 45.69109925657929] + } + }, + { + "id": 2081, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855854534153559, 45.69135896213488] + } + }, + { + "id": 2082, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855816427653202, 45.69135505659377] + } + }, + { + "id": 2083, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855791018908654, 45.6913524499912] + } + }, + { + "id": 2084, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855786863583238, 45.69135202127266] + } + }, + { + "id": 2085, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85563566314481, 45.69133651542809] + } + }, + { + "id": 2086, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855622952159835, 45.69133520775522] + } + }, + { + "id": 2087, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855600498514187, 45.69133290377598] + } + }, + { + "id": 2088, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855587787530867, 45.69133159609905] + } + }, + { + "id": 2089, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855407023176602, 45.69131305456497] + } + }, + { + "id": 2090, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855368916328575, 45.69130913987988] + } + }, + { + "id": 2091, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855356218598147, 45.6913078408805] + } + }, + { + "id": 2156, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85685262162569, 45.69253367223592] + } + }, + { + "id": 2157, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856851022816997, 45.69253802876519] + } + }, + { + "id": 2488, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856738631522436, 45.69216124238103] + } + }, + { + "id": 2489, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.8563875660472, 45.69228111612342] + } + }, + { + "id": 2490, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856292856235074, 45.69232748538923] + } + }, + { + "id": 2491, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856208673924059, 45.69236870335052] + } + }, + { + "id": 2492, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856029618601329, 45.69250467560685] + } + }, + { + "id": 2493, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855930737267387, 45.69267072873552] + } + }, + { + "id": 2494, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855888072041425, 45.69274239200233] + } + }, + { + "id": 2588, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855825999456157, 45.69273095075617] + } + }, + { + "id": 2589, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855788745488097, 45.6927240826258] + } + }, + { + "id": 2590, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855676659986405, 45.69270342242253] + } + }, + { + "id": 2591, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855670455137178, 45.69270227463329] + } + }, + { + "id": 2649, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85591518390002, 45.69139520669937] + } + }, + { + "id": 2650, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855915068012751, 45.69139520030173] + } + }, + { + "id": 2846, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856360725716369, 45.69102412913973] + } + }, + { + "id": 2847, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856383793336582, 45.69086300169013] + } + }, + { + "id": 2848, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856390704015929, 45.69081473478015] + } + }, + { + "id": 2849, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856458006484099, 45.69111484486989] + } + }, + { + "id": 2850, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856636058726183, 45.69113194244653] + } + }, + { + "id": 2851, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856800333523847, 45.69114772016799] + } + }, + { + "id": 2852, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856801404224056, 45.69114782212127] + } + }, + { + "id": 2853, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856806693572222, 45.69114833332971] + } + }, + { + "id": 2933, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85627431413481, 45.69280960338721] + } + }, + { + "id": 2934, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856417860286734, 45.69283457875029] + } + }, + { + "id": 2935, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856423816029007, 45.69283561508038] + } + }, + { + "id": 2936, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856424087948438, 45.69283566297754] + } + }, + { + "id": 3399, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855763551680219, 45.69182738723423] + } + }, + { + "id": 3400, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855398849537063, 45.69194059727197] + } + }, + { + "id": 3401, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855416724230305, 45.69181947119029] + } + }, + { + "id": 3402, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855418952830454, 45.69181736884877] + } + }, + { + "id": 3403, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855420553793683, 45.69181586568582] + } + } + ], + "branches": [ + { + "id": "transfo", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 0, + "bus2": 50, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line243", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 542, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.856006369563374, 45.69145685074764], + [4.856041286384759, 45.6914589736374], + [4.85608611929476, 45.69142826223273], + [4.85710799403576, 45.691501610824], + [4.857207269582688, 45.69156598849194], + [4.856978967864625, 45.69219040555863] + ] + }, + "length": 0.1698047886136108, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1213", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 1663, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.856000594306501, 45.69144599899529], + [4.856024490964286, 45.69142874679027], + [4.856042739971293, 45.69129421833258], + [4.856370661831063, 45.69110851750263] + ] + }, + "length": 0.0505315521261473, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line987", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 1407, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.855988721281017, 45.6914422332006], + [4.855996361520631, 45.6913753713747], + [4.855869182087027, 45.69136049630226] + ] + }, + "length": 0.0174985508964364, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2112", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 2649, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.855971166936666, 45.69144819937015], + [4.855950443311009, 45.69143851158069], + [4.855955048725805, 45.69139880266571], + [4.85591518390002, 45.69139520669937] + ] + }, + "length": 0.0094992002360799, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line2113", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2649, + "bus2": 2650, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85591518390002, 45.69139520669937], + [4.855915068012751, 45.69139520030173] + ] + }, + "length": 9.054749376593195e-6, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line988", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1407, + "bus2": 1364, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855869182087027, 45.69136049630226], + [4.855867232318871, 45.69136027006984] + ] + }, + "length": 0.0001539404843332, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line952", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1364, + "bus2": 1365, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855867232318871, 45.69136027006984], + [4.855846104884748, 45.69144901085738] + ] + }, + "length": 0.0099994696006292, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1576", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1364, + "bus2": 2081, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855867232318871, 45.69136027006984], + [4.855854534153559, 45.69135896213488] + ] + }, + "length": 0.0009997222679235, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1577", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2081, + "bus2": 2082, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855854534153559, 45.69135896213488], + [4.855816427653202, 45.69135505659377] + ] + }, + "length": 0.0029997976524975, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1578", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2082, + "bus2": 2083, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855816427653202, 45.69135505659377], + [4.855791018908654, 45.6913524499912] + ] + }, + "length": 0.002000251978809, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1579", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2083, + "bus2": 2084, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855791018908654, 45.6913524499912], + [4.855786863583238, 45.69135202127266] + ] + }, + "length": 0.0003271589286956, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1580", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2084, + "bus2": 2085, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855786863583238, 45.69135202127266], + [4.85563566314481, 45.69133651542809] + ] + }, + "length": 0.0119028646292776, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line953", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1365, + "bus2": 1366, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855846104884748, 45.69144901085738], + [4.855845684286097, 45.69145076654667], + [4.855901120337955, 45.69153953345657], + [4.85588829377169, 45.69161122844266] + ] + }, + "length": 0.0189984078266001, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1581", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2085, + "bus2": 2086, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85563566314481, 45.69133651542809], + [4.855622952159835, 45.69133520775522] + ] + }, + "length": 0.0010007064087425, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1582", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2086, + "bus2": 2087, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855622952159835, 45.69133520775522], + [4.855600498514187, 45.69133290377598] + ] + }, + "length": 0.0017676269548577, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1583", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2087, + "bus2": 2088, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855600498514187, 45.69133290377598], + [4.855587787530867, 45.69133159609905] + ] + }, + "length": 0.0010007064104751, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1584", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2088, + "bus2": 2089, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855587787530867, 45.69133159609905], + [4.855407023176602, 45.69131305456497] + ] + }, + "length": 0.0142302752899377, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line954", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1366, + "bus2": 1367, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85588829377169, 45.69161122844266], + [4.855860204231766, 45.69176818400519] + ] + }, + "length": 0.0175815455828478, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1214", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1663, + "bus2": 1664, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856370661831063, 45.69110851750263], + [4.856375306784422, 45.69110589277815] + ] + }, + "length": 0.0004647694653149, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1215", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1664, + "bus2": 1665, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856375306784422, 45.69110589277815], + [4.856382029776952, 45.69110208720114] + ] + }, + "length": 0.000673157746019, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1216", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1665, + "bus2": 1666, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856382029776952, 45.69110208720114], + [4.856387024934563, 45.69109925657929] + ] + }, + "length": 0.0005003696964554, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2308", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1666, + "bus2": 2846, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856387024934563, 45.69109925657929], + [4.856355663247043, 45.69105945574269], + [4.856360725716369, 45.69102412913973] + ] + }, + "length": 0.0089995012028159, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2311", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1666, + "bus2": 2849, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856387024934563, 45.69109925657929], + [4.85640419839692, 45.69110967215316], + [4.856458006484099, 45.69111484486989] + ] + }, + "length": 0.0059995904338227, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1585", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2089, + "bus2": 2090, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855407023176602, 45.69131305456497], + [4.855368916328575, 45.69130913987988] + ] + }, + "length": 0.0029999740821226, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1586", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2090, + "bus2": 2091, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855368916328575, 45.69130913987988], + [4.855356218598147, 45.6913078408805] + ] + }, + "length": 0.0009995457086402, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2312", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2849, + "bus2": 2850, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856458006484099, 45.69111484486989], + [4.856636058726183, 45.69113194244653] + ] + }, + "length": 0.0139986419668756, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2309", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2846, + "bus2": 2847, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856360725716369, 45.69102412913973], + [4.856383793336582, 45.69086300169013] + ] + }, + "length": 0.0179984696461502, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2832", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1367, + "bus2": 3399, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855860204231766, 45.69176818400519], + [4.855763551680219, 45.69182738723423] + ] + }, + "length": 0.0099988303999178, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2313", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2850, + "bus2": 2851, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856636058726183, 45.69113194244653], + [4.856800333523847, 45.69114772016799] + ] + }, + "length": 0.0129154893237343, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2833", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3399, + "bus2": 3400, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855763551680219, 45.69182738723423], + [4.855584089016939, 45.69193730935378], + [4.855398849537063, 45.69194059727197] + ] + }, + "length": 0.0329985491086803, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2310", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2847, + "bus2": 2848, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856383793336582, 45.69086300169013], + [4.856390704015929, 45.69081473478015] + ] + }, + "length": 0.0053915783689662, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2314", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2851, + "bus2": 2852, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856800333523847, 45.69114772016799], + [4.856801404224056, 45.69114782212127] + ] + }, + "length": 8.41665220926229e-5, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2852, + "bus2": 2853, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856801404224056, 45.69114782212127], + [4.856806693572222, 45.69114833332971] + ] + }, + "length": 0.0004159034442303, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2834", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3400, + "bus2": 3401, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855398849537063, 45.69194059727197], + [4.855392869155902, 45.69194070460053], + [4.855387309011729, 45.69184721664104], + [4.855416724230305, 45.69181947119029] + ] + }, + "length": 0.0147075358057835, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2835", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3401, + "bus2": 3402, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855416724230305, 45.69181947119029], + [4.855418952830454, 45.69181736884877] + ] + }, + "length": 0.0002910897047899, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2836", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3402, + "bus2": 3403, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855418952830454, 45.69181736884877], + [4.855420553793683, 45.69181586568582] + ] + }, + "length": 0.0002084777079536, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1646", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 542, + "bus2": 2156, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856978967864625, 45.69219040555863], + [4.85685262162569, 45.69253367223592] + ] + }, + "length": 0.0394013052961165, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1960", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 542, + "bus2": 2488, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856978967864625, 45.69219040555863], + [4.856738631522436, 45.69216124238103] + ] + }, + "length": 0.0189987578088231, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1961", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2488, + "bus2": 2489, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856738631522436, 45.69216124238103], + [4.85665349107763, 45.69215091411277], + [4.8563875660472, 45.69228111612342] + ] + }, + "length": 0.0319981744631324, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1647", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2156, + "bus2": 2157, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85685262162569, 45.69253367223592], + [4.856851022816997, 45.69253802876519] + ] + }, + "length": 0.0004999657082792, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1962", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2489, + "bus2": 2490, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.8563875660472, 45.69228111612342], + [4.856292856235074, 45.69232748538923] + ] + }, + "length": 0.008999023393858, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1963", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2490, + "bus2": 2491, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856292856235074, 45.69232748538923], + [4.856208673924059, 45.69236870335052] + ] + }, + "length": 0.0079989134977189, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1964", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2491, + "bus2": 2492, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856208673924059, 45.69236870335052], + [4.856140935805975, 45.69240186471046], + [4.856052674911791, 45.69246595632609], + [4.856029618601329, 45.69250467560685] + ] + }, + "length": 0.0209990509945453, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1965", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2492, + "bus2": 2493, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856029618601329, 45.69250467560685], + [4.855930737267387, 45.69267072873552] + ] + }, + "length": 0.0199986363582786, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1966", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2493, + "bus2": 2494, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855930737267387, 45.69267072873552], + [4.855888072041425, 45.69274239200233] + ] + }, + "length": 0.008630510320176, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2389", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2494, + "bus2": 2933, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855888072041425, 45.69274239200233], + [4.85627431413481, 45.69280960338721] + ] + }, + "length": 0.0309983265742373, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2056", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2494, + "bus2": 2588, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855888072041425, 45.69274239200233], + [4.855825999456157, 45.69273095075617] + ] + }, + "length": 0.0049993261430797, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2057", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2588, + "bus2": 2589, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855825999456157, 45.69273095075617], + [4.855788745488097, 45.6927240826258] + ] + }, + "length": 0.003000476475499, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2058", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2589, + "bus2": 2590, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855788745488097, 45.6927240826258], + [4.855676659986405, 45.69270342242253] + ] + }, + "length": 0.0090273856534237, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2059", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2590, + "bus2": 2591, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855676659986405, 45.69270342242253], + [4.855670455137178, 45.69270227463329] + ] + }, + "length": 0.0004998552042313, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2390", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2933, + "bus2": 2934, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85627431413481, 45.69280960338721], + [4.856417860286734, 45.69283457875029] + ] + }, + "length": 0.0115203641917798, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2391", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2934, + "bus2": 2935, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856417860286734, 45.69283457875029], + [4.856423816029007, 45.69283561508038] + ] + }, + "length": 0.0004779834842022, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2392", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2935, + "bus2": 2936, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856423816029007, 45.69283561508038], + [4.856424087948438, 45.69283566297754] + ] + }, + "length": 2.183881197426037e-5, + "params_id": "S_AL_95", + "ground": "ground" + } + ], + "loads": [ + { + "id": 10, + "bus": 542, + "phases": "abcn", + "powers": [ + [1319.5514969710862, 231.89395762970432], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 5, + "bus": 1365, + "phases": "abcn", + "powers": [ + [1279.0606072611827, 398.74167539455425], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 15, + "bus": 1365, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1303.5603371098352, 309.38876556509604] + ] + }, + { + "id": 31, + "bus": 1365, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1299.6575729488254, 325.3938441651446], + [0.0, 0.0] + ] + }, + { + "id": 73, + "bus": 1365, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1277.5307281544729, 403.61640125855155], + [0.0, 0.0] + ] + }, + { + "id": 19, + "bus": 1367, + "phases": "abcn", + "powers": [ + [1317.0812188972347, 245.5361960525906], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 32, + "bus": 1367, + "phases": "abcn", + "powers": [ + [1333.9538346826566, 124.73222390079212], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 61, + "bus": 1367, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1324.0862950086896, 204.41732831138063] + ] + }, + { + "id": 86, + "bus": 1367, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1326.9123992351522, 185.18759542640527], + [0.0, 0.0] + ] + }, + { + "id": 40, + "bus": 1407, + "phases": "abcn", + "powers": [ + [1330.4682005964203, 157.6240081508046], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 60, + "bus": 1407, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1305.3399293324028, 301.7923617891606] + ] + }, + { + "id": 52, + "bus": 1663, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1292.7765005180647, 351.7383693202493] + ] + }, + { + "id": 83, + "bus": 1663, + "phases": "abcn", + "powers": [ + [1285.618448582671, 377.0625484023677], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 16, + "bus": 1664, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1278.0628087235511, 401.92837384472966], + [0.0, 0.0] + ] + }, + { + "id": 46, + "bus": 1664, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1332.054862653535, 143.59945551732818] + ] + }, + { + "id": 57, + "bus": 1664, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1331.6484712473598, 147.32043228408932], + [0.0, 0.0] + ] + }, + { + "id": 36, + "bus": 1665, + "phases": "abcn", + "powers": [ + [1322.6898869253412, 213.2660867771289], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 62, + "bus": 1665, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1304.6226093055911, 304.87834956335075] + ] + }, + { + "id": 41, + "bus": 1666, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1283.5010670472027, 384.20823993310415] + ] + }, + { + "id": 54, + "bus": 1666, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1323.8636496186705, 205.85431246912336], + [0.0, 0.0] + ] + }, + { + "id": 23, + "bus": 2081, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1296.5831906572867, 337.43590568991283], + [0.0, 0.0] + ] + }, + { + "id": 49, + "bus": 2081, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1273.0014902093146, 417.6818965057808], + [0.0, 0.0] + ] + }, + { + "id": 85, + "bus": 2082, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1303.7749143548147, 308.4832790329114], + [0.0, 0.0] + ] + }, + { + "id": 78, + "bus": 2083, + "phases": "abcn", + "powers": [ + [1279.2773539758966, 398.04574152756607], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 75, + "bus": 2084, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1281.6474812299318, 390.34689008723115] + ] + }, + { + "id": 6, + "bus": 2085, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1313.1125046335185, 265.9445636197316] + ] + }, + { + "id": 21, + "bus": 2085, + "phases": "abcn", + "powers": [ + [1298.2482283705212, 330.9720505973342], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 29, + "bus": 2085, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1294.5073490838445, 345.3138918603177] + ] + }, + { + "id": 39, + "bus": 2085, + "phases": "abcn", + "powers": [ + [1306.9165625138949, 294.88991059489666], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 69, + "bus": 2085, + "phases": "abcn", + "powers": [ + [1295.4319816915825, 341.82881908116127], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 71, + "bus": 2085, + "phases": "abcn", + "powers": [ + [1277.5398209320822, 403.58761957798544], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 27, + "bus": 2086, + "phases": "abcn", + "powers": [ + [1303.7502721461626, 308.58740839931943], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 59, + "bus": 2086, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1336.2189429549055, 97.51870196160768] + ] + }, + { + "id": 74, + "bus": 2086, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1317.5980000347338, 242.747751891282], + [0.0, 0.0] + ] + }, + { + "id": 2, + "bus": 2088, + "phases": "abcn", + "powers": [ + [1287.7366738794012, 369.76373468718975], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 28, + "bus": 2088, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1318.883122101868, 235.66559141849945] + ] + }, + { + "id": 17, + "bus": 2089, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1314.2178856839457, 260.42716773067457] + ] + }, + { + "id": 11, + "bus": 2156, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1283.1994505839823, 385.21439584310394], + [0.0, 0.0] + ] + }, + { + "id": 48, + "bus": 2156, + "phases": "abcn", + "powers": [ + [1292.4452642997337, 352.95353735724615], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 14, + "bus": 2157, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1290.50398309402, 359.98670859112406] + ] + }, + { + "id": 18, + "bus": 2488, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1285.6652413586705, 376.90296882082686] + ] + }, + { + "id": 13, + "bus": 2489, + "phases": "abcn", + "powers": [ + [1296.8316300904191, 336.47984180456893], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 43, + "bus": 2489, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1312.7018441498733, 267.9642310259403], + [0.0, 0.0] + ] + }, + { + "id": 82, + "bus": 2490, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1295.5135097591285, 341.51970188465845] + ] + }, + { + "id": 38, + "bus": 2492, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1299.5393861113935, 325.86553160625016] + ] + }, + { + "id": 79, + "bus": 2492, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1301.1590452579821, 319.3369688700921], + [0.0, 0.0] + ] + }, + { + "id": 9, + "bus": 2493, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1291.4197071024971, 356.68767970186735] + ] + }, + { + "id": 22, + "bus": 2494, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1328.6600109664457, 172.20202090116732] + ] + }, + { + "id": 44, + "bus": 2494, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1289.6259799692361, 363.1195292630083] + ] + }, + { + "id": 80, + "bus": 2494, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1276.4129448719732, 407.13751350994266] + ] + }, + { + "id": 51, + "bus": 2590, + "phases": "abcn", + "powers": [ + [1306.792993997642, 295.43701796234075], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 68, + "bus": 2591, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1280.8899969845843, 392.8253764316062], + [0.0, 0.0] + ] + }, + { + "id": 4, + "bus": 2649, + "phases": "abcn", + "powers": [ + [1312.3403791009896, 269.7289197043438], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 37, + "bus": 2649, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1322.825527496478, 212.42312620679115], + [0.0, 0.0] + ] + }, + { + "id": 55, + "bus": 2649, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1334.3127176075302, 120.83266269766999] + ] + }, + { + "id": 65, + "bus": 2649, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1318.9973828548552, 235.0252428269018] + ] + }, + { + "id": 84, + "bus": 2649, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1282.174711833792, 388.6115915380472], + [0.0, 0.0] + ] + }, + { + "id": 88, + "bus": 2649, + "phases": "abcn", + "powers": [ + [1337.6958288260637, 74.57097481696131], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 7, + "bus": 2650, + "phases": "abcn", + "powers": [ + [1320.7492683883816, 224.9718444502703], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 45, + "bus": 2650, + "phases": "abcn", + "powers": [ + [1318.3553489029791, 238.6003662250029], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 63, + "bus": 2650, + "phases": "abcn", + "powers": [ + [1290.5398730409277, 359.85802316372997], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 87, + "bus": 2650, + "phases": "abcn", + "powers": [ + [1276.1729341198768, 407.8892042744769], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 33, + "bus": 2846, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1293.8639330375797, 347.71695893114986] + ] + }, + { + "id": 76, + "bus": 2846, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1304.4476784103185, 305.62593972654224] + ] + }, + { + "id": 70, + "bus": 2847, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1288.1991630529185, 368.1492592055051] + ] + }, + { + "id": 56, + "bus": 2848, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1305.515121009439, 301.0336020438767], + [0.0, 0.0] + ] + }, + { + "id": 64, + "bus": 2848, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1337.385446942204, 79.94452483443143], + [0.0, 0.0] + ] + }, + { + "id": 1, + "bus": 2850, + "phases": "abcn", + "powers": [ + [1274.459527295882, 413.21165766294473], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 26, + "bus": 2850, + "phases": "abcn", + "powers": [ + [1308.5653928987515, 287.4849096066398], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 53, + "bus": 2850, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1313.5781749594094, 263.6348592544411] + ] + }, + { + "id": 72, + "bus": 2850, + "phases": "abcn", + "powers": [ + [1288.1205888132586, 368.4240890864575], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 34, + "bus": 2851, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1299.2869324630979, 326.8706592437368], + [0.0, 0.0] + ] + }, + { + "id": 35, + "bus": 2851, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1282.3548639279086, 388.0167054448003], + [0.0, 0.0] + ] + }, + { + "id": 81, + "bus": 2851, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1279.3769698913727, 397.72544506904677] + ] + }, + { + "id": 24, + "bus": 2852, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1319.798076679979, 230.4864367715152], + [0.0, 0.0] + ] + }, + { + "id": 67, + "bus": 2852, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1297.799021163752, 332.7291111553191] + ] + }, + { + "id": 25, + "bus": 2853, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1277.5672476586992, 403.50079114368214] + ] + }, + { + "id": 42, + "bus": 2853, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1312.736718592784, 267.79333151154407], + [0.0, 0.0] + ] + }, + { + "id": 8, + "bus": 2933, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1300.8871516428294, 320.44278652266155] + ] + }, + { + "id": 66, + "bus": 2934, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1299.5120410055094, 325.97456346392505], + [0.0, 0.0] + ] + }, + { + "id": 50, + "bus": 2935, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1290.428164252019, 360.25839844334774] + ] + }, + { + "id": 3, + "bus": 2936, + "phases": "abcn", + "powers": [ + [1318.1152667995234, 239.92312138229403], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 12, + "bus": 3399, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1279.6310179555057, 396.9073174306034], + [0.0, 0.0] + ] + }, + { + "id": 47, + "bus": 3399, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1324.2714719206322, 203.21424507392098], + [0.0, 0.0] + ] + }, + { + "id": 20, + "bus": 3400, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1338.7827370942632, 51.495083281748634], + [0.0, 0.0] + ] + }, + { + "id": 30, + "bus": 3400, + "phases": "abcn", + "powers": [ + [1288.127708911686, 368.39919418713686], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 77, + "bus": 3401, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1326.8772136572086, 185.43953359810874], + [0.0, 0.0] + ] + }, + { + "id": 58, + "bus": 3402, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1288.8246746527598, 365.953437953532], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": 0, + "bus": 0, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_240", + "z_line": [ + [ + [0.125, 0.0, 0.0, 0.0], + [0.0, 0.125, 0.0, 0.0], + [0.0, 0.0, 0.125, 0.0], + [0.0, 0.0, 0.0, 0.125] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00010284317710785252, -2.5710794276947463e-5, -2.5710794276947463e-5, -2.57107942769788e-5], + [-2.5710794276947463e-5, 0.00010284317710785252, -2.5710794276947463e-5, -2.57107942769788e-5], + [-2.5710794276947463e-5, -2.5710794276947463e-5, 0.00010284317710785252, -2.57107942769788e-5], + [-2.57107942769788e-5, -2.57107942769788e-5, -2.57107942769788e-5, 0.0001028431771079] + ] + ] + }, + { + "id": "S_AL_35", + "z_line": [ + [ + [0.8571428571428571, 0.0, 0.0, 0.0], + [0.0, 0.8571428571428571, 0.0, 0.0], + [0.0, 0.0, 0.8571428571428571, 0.0], + [0.0, 0.0, 0.0, 0.8571428571428571] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5], + [-1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5], + [-1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5], + [-1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.31578947368421] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json b/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json index 8d7fa93d..8e848b20 100644 --- a/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json +++ b/roseau/load_flow/tests/data/benchmark/B.EC27_N026_19/network.json @@ -1,1131 +1,726 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 0, - "phase": "n" - }, - { - "id": 83, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 0, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845962381409016, 45.68384043214515] - } - }, - { - "id": 83, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845962381409016, 45.68384043214515] - } - }, - { - "id": 99, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.846156585393867, 45.68367766450246] - } - }, - { - "id": 100, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.846250687311938, 45.6832344998551] - } - }, - { - "id": 105, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.847069369791975, 45.68322067202762] - } - }, - { - "id": 106, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.847547024466777, 45.68347281055756] - } - }, - { - "id": 107, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.84623598955454, 45.68279917127494] - } - }, - { - "id": 391, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.848237446933078, 45.68115303991434] - } - }, - { - "id": 474, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845581618983626, 45.68374183928897] - } - }, - { - "id": 475, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845156025280701, 45.68367395215652] - } - }, - { - "id": 523, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845922473772013, 45.6837819174691] - } - }, - { - "id": 582, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845719135428181, 45.68312398072084] - } - }, - { - "id": 1464, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845693784456832, 45.68312113660608] - } - }, - { - "id": 1465, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845207063024701, 45.68321554995192] - } - }, - { - "id": 2470, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845723296509978, 45.68310622726796] - } - }, - { - "id": 2471, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845901154044143, 45.68234732615426] - } - }, - { - "id": 2472, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.84590299176227, 45.68233946299197] - } - }, - { - "id": 3283, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845897154829175, 45.68377893765827] - } - }, - { - "id": 3284, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.845859183244179, 45.68377447677985] - } - } - ], - "branches": [ - { - "id": "transfo", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 0, - "bus2": 83, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line359", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 83, - "bus2": 99, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845962381409016, 45.68384043214515], - [4.845967218558783, 45.68382737117161], - [4.845985253622802, 45.68377871214401], - [4.846037332609646, 45.68373794129257], - [4.846156585393867, 45.68367766450246] - ] - }, - "length": 0.0231239168145578, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line230", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 83, - "bus2": 523, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845962381409016, 45.68384043214515], - [4.845954083097388, 45.68382825923782], - [4.845922473772013, 45.6837819174691] - ] - }, - "length": 0.0057090361650646, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2717", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 523, - "bus2": 3283, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845922473772013, 45.6837819174691], - [4.845897154829175, 45.68377893765827] - ] - }, - "length": 0.0020000434170354, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line2718", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3283, - "bus2": 3284, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845897154829175, 45.68377893765827], - [4.845859183244179, 45.68377447677985] - ] - }, - "length": 0.0029993781124104, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line2719", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3284, - "bus2": 474, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845859183244179, 45.68377447677985], - [4.845581618983626, 45.68374183928897] - ] - }, - "length": 0.0219253677107112, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 99, - "bus2": 100, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.846156585393867, 45.68367766450246], - [4.846250687311938, 45.6832344998551] - ] - }, - "length": 0.0497981490086611, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line203", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 474, - "bus2": 475, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845581618983626, 45.68374183928897], - [4.845532108276982, 45.68395177478787], - [4.845100917560134, 45.68390201502873], - [4.845156025280701, 45.68367395215652] - ] - }, - "length": 0.0834023804327046, - "params_id": "S_CU_14", - "ground": "ground" - }, - { - "id": "line267", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 474, - "bus2": 582, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845581618983626, 45.68374183928897], - [4.845719135428181, 45.68312398072084] - ] - }, - "length": 0.0695025869248514, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 100, - "bus2": 107, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.846250687311938, 45.6832344998551], - [4.84623598955454, 45.68279917127494] - ] - }, - "length": 0.0483981960512238, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line1039", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 582, - "bus2": 1464, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845719135428181, 45.68312398072084], - [4.845693784456832, 45.68312113660608] - ] - }, - "length": 0.0020000879179518, - "params_id": "S_CU_14", - "ground": "ground" - }, - { - "id": "line1943", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 582, - "bus2": 2470, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845719135428181, 45.68312398072084], - [4.845723296509978, 45.68310622726796] - ] - }, - "length": 0.0019996601111272, - "params_id": "S_CU_14", - "ground": "ground" - }, - { - "id": "line1944", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2470, - "bus2": 2471, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845723296509978, 45.68310622726796], - [4.845901154044143, 45.68234732615426] - ] - }, - "length": 0.0854786464782574, - "params_id": "S_CU_14", - "ground": "ground" - }, - { - "id": "line1040", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1464, - "bus2": 1465, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845693784456832, 45.68312113660608], - [4.845324158276797, 45.68307971235598], - [4.845287174983968, 45.68322635909988], - [4.845207063024701, 45.68321554995192] - ] - }, - "length": 0.0520686283532788, - "params_id": "S_CU_14", - "ground": "ground" + "id": 0, + "phase": "n" }, { - "id": "line20", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 107, - "bus2": 105, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.84623598955454, 45.68279917127494], - [4.847069369791975, 45.68322067202762] - ] - }, - "length": 0.0800614921683771, - "params_id": "T_AL_35", - "ground": "ground" - }, - { - "id": "line1945", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2471, - "bus2": 2472, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.845901154044143, 45.68234732615426], - [4.84590299176227, 45.68233946299197] - ] - }, - "length": 0.0008856010986698, - "params_id": "S_CU_14", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 105, - "bus2": 106, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.847069369791975, 45.68322067202762], - [4.847547024466777, 45.68347281055756] - ] - }, - "length": 0.0465834382688477, - "params_id": "T_AL_35", - "ground": "ground" - }, - { - "id": "line157", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 106, - "bus2": 391, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.847547024466777, 45.68347281055756], - [4.847747154588589, 45.68346832835926], - [4.847837128896726, 45.68268140889288], - [4.847871328228379, 45.68196684814885], - [4.848000559193578, 45.68159040386583], - [4.848237446933078, 45.68115303991434] - ] - }, - "length": 0.2778365911956989, - "params_id": "S_AL_95", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 106, - "phases": "abcn", - "powers": [ - [4079.9204366170316, 662.3395468482394], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 3, - "bus": 106, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [4079.7380005646523, 663.4623509990394] - ] - }, - { - "id": 2, - "bus": 475, - "phases": "abcn", - "powers": [ - [3955.5045052285295, 1199.3450519184416], - [0.0, 0.0], - [0.0, 0.0] - ] - } - ], - "sources": [ - { - "id": 0, - "bus": 0, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_50", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.6 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 5.1270792106585444e-05, - -1.2817698026646363e-05, - -1.2817698026646363e-05, - -1.281769802664636e-05 - ], - [ - -1.2817698026646363e-05, - 5.1270792106585444e-05, - -1.2817698026646363e-05, - -1.281769802664636e-05 - ], - [ - -1.2817698026646363e-05, - -1.2817698026646363e-05, - 5.1270792106585444e-05, - -1.281769802664636e-05 - ], - [ - -1.281769802664636e-05, - -1.281769802664636e-05, - -1.281769802664636e-05, - 5.127079210658544e-05 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.31578947368421 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05 - ] - ] - ] - }, - { - "id": "S_CU_14", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.2857142857142856, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.2857142857142856, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.2857142857142856, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 1.2857142857142856 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.149918231685973e-05, - -1.0374795579214933e-05, - -1.0374795579214933e-05, - -1.0374795579214932e-05 - ], - [ - -1.0374795579214933e-05, - 4.149918231685973e-05, - -1.0374795579214933e-05, - -1.0374795579214932e-05 - ], - [ - -1.0374795579214933e-05, - -1.0374795579214933e-05, - 4.149918231685973e-05, - -1.0374795579214932e-05 - ], - [ - -1.0374795579214932e-05, - -1.0374795579214932e-05, - -1.0374795579214932e-05, - 4.149918231685973e-05 - ] - ] - ] - }, - { - "id": "T_AL_35", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.8571428571428571, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.8571428571428571, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.8571428571428571, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.8571428571428571 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.8380526865282814e-05, - -1.2095131716320704e-05, - -1.2095131716320704e-05, - -1.2095131716320704e-05 - ], - [ - -1.2095131716320704e-05, - 4.8380526865282814e-05, - -1.2095131716320704e-05, - -1.2095131716320704e-05 - ], - [ - -1.2095131716320704e-05, - -1.2095131716320704e-05, - 4.8380526865282814e-05, - -1.2095131716320704e-05 - ], - [ - -1.2095131716320704e-05, - -1.2095131716320704e-05, - -1.2095131716320704e-05, - 4.8380526865282814e-05 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.42857142857142855, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.42857142857142855, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.42857142857142855, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4285714285714285 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 5.2778756580308516e-05, - -1.3194689145077129e-05, - -1.3194689145077129e-05, - -1.319468914507713e-05 - ], - [ - -1.3194689145077129e-05, - 5.2778756580308516e-05, - -1.3194689145077129e-05, - -1.319468914507713e-05 - ], - [ - -1.3194689145077129e-05, - -1.3194689145077129e-05, - 5.2778756580308516e-05, - -1.319468914507713e-05 - ], - [ - -1.319468914507713e-05, - -1.319468914507713e-05, - -1.319468914507713e-05, - 5.277875658030852e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 83, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 0, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845962381409016, 45.68384043214515] + } + }, + { + "id": 83, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845962381409016, 45.68384043214515] + } + }, + { + "id": 99, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.846156585393867, 45.68367766450246] + } + }, + { + "id": 100, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.846250687311938, 45.6832344998551] + } + }, + { + "id": 105, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.847069369791975, 45.68322067202762] + } + }, + { + "id": 106, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.847547024466777, 45.68347281055756] + } + }, + { + "id": 107, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.84623598955454, 45.68279917127494] + } + }, + { + "id": 391, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.848237446933078, 45.68115303991434] + } + }, + { + "id": 474, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845581618983626, 45.68374183928897] + } + }, + { + "id": 475, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845156025280701, 45.68367395215652] + } + }, + { + "id": 523, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845922473772013, 45.6837819174691] + } + }, + { + "id": 582, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845719135428181, 45.68312398072084] + } + }, + { + "id": 1464, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845693784456832, 45.68312113660608] + } + }, + { + "id": 1465, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845207063024701, 45.68321554995192] + } + }, + { + "id": 2470, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845723296509978, 45.68310622726796] + } + }, + { + "id": 2471, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845901154044143, 45.68234732615426] + } + }, + { + "id": 2472, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.84590299176227, 45.68233946299197] + } + }, + { + "id": 3283, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845897154829175, 45.68377893765827] + } + }, + { + "id": 3284, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.845859183244179, 45.68377447677985] + } + } + ], + "branches": [ + { + "id": "transfo", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 0, + "bus2": 83, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line359", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 83, + "bus2": 99, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845962381409016, 45.68384043214515], + [4.845967218558783, 45.68382737117161], + [4.845985253622802, 45.68377871214401], + [4.846037332609646, 45.68373794129257], + [4.846156585393867, 45.68367766450246] + ] + }, + "length": 0.0231239168145578, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line230", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 83, + "bus2": 523, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845962381409016, 45.68384043214515], + [4.845954083097388, 45.68382825923782], + [4.845922473772013, 45.6837819174691] + ] + }, + "length": 0.0057090361650646, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2717", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 523, + "bus2": 3283, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845922473772013, 45.6837819174691], + [4.845897154829175, 45.68377893765827] + ] + }, + "length": 0.0020000434170354, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line2718", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3283, + "bus2": 3284, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845897154829175, 45.68377893765827], + [4.845859183244179, 45.68377447677985] + ] + }, + "length": 0.0029993781124104, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line2719", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3284, + "bus2": 474, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845859183244179, 45.68377447677985], + [4.845581618983626, 45.68374183928897] + ] + }, + "length": 0.0219253677107112, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 99, + "bus2": 100, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.846156585393867, 45.68367766450246], + [4.846250687311938, 45.6832344998551] + ] + }, + "length": 0.0497981490086611, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line203", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 474, + "bus2": 475, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845581618983626, 45.68374183928897], + [4.845532108276982, 45.68395177478787], + [4.845100917560134, 45.68390201502873], + [4.845156025280701, 45.68367395215652] + ] + }, + "length": 0.0834023804327046, + "params_id": "S_CU_14", + "ground": "ground" + }, + { + "id": "line267", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 474, + "bus2": 582, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845581618983626, 45.68374183928897], + [4.845719135428181, 45.68312398072084] + ] + }, + "length": 0.0695025869248514, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 100, + "bus2": 107, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.846250687311938, 45.6832344998551], + [4.84623598955454, 45.68279917127494] + ] + }, + "length": 0.0483981960512238, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line1039", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 582, + "bus2": 1464, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845719135428181, 45.68312398072084], + [4.845693784456832, 45.68312113660608] + ] + }, + "length": 0.0020000879179518, + "params_id": "S_CU_14", + "ground": "ground" + }, + { + "id": "line1943", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 582, + "bus2": 2470, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845719135428181, 45.68312398072084], + [4.845723296509978, 45.68310622726796] + ] + }, + "length": 0.0019996601111272, + "params_id": "S_CU_14", + "ground": "ground" + }, + { + "id": "line1944", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2470, + "bus2": 2471, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845723296509978, 45.68310622726796], + [4.845901154044143, 45.68234732615426] + ] + }, + "length": 0.0854786464782574, + "params_id": "S_CU_14", + "ground": "ground" + }, + { + "id": "line1040", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1464, + "bus2": 1465, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845693784456832, 45.68312113660608], + [4.845324158276797, 45.68307971235598], + [4.845287174983968, 45.68322635909988], + [4.845207063024701, 45.68321554995192] + ] + }, + "length": 0.0520686283532788, + "params_id": "S_CU_14", + "ground": "ground" + }, + { + "id": "line20", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 107, + "bus2": 105, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.84623598955454, 45.68279917127494], + [4.847069369791975, 45.68322067202762] + ] + }, + "length": 0.0800614921683771, + "params_id": "T_AL_35", + "ground": "ground" + }, + { + "id": "line1945", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2471, + "bus2": 2472, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.845901154044143, 45.68234732615426], + [4.84590299176227, 45.68233946299197] + ] + }, + "length": 0.0008856010986698, + "params_id": "S_CU_14", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 105, + "bus2": 106, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.847069369791975, 45.68322067202762], + [4.847547024466777, 45.68347281055756] + ] + }, + "length": 0.0465834382688477, + "params_id": "T_AL_35", + "ground": "ground" + }, + { + "id": "line157", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 106, + "bus2": 391, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.847547024466777, 45.68347281055756], + [4.847747154588589, 45.68346832835926], + [4.847837128896726, 45.68268140889288], + [4.847871328228379, 45.68196684814885], + [4.848000559193578, 45.68159040386583], + [4.848237446933078, 45.68115303991434] + ] + }, + "length": 0.2778365911956989, + "params_id": "S_AL_95", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 106, + "phases": "abcn", + "powers": [ + [4079.9204366170316, 662.3395468482394], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 3, + "bus": 106, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [4079.7380005646523, 663.4623509990394] + ] + }, + { + "id": 2, + "bus": 475, + "phases": "abcn", + "powers": [ + [3955.5045052285295, 1199.3450519184416], + [0.0, 0.0], + [0.0, 0.0] + ] + } + ], + "sources": [ + { + "id": 0, + "bus": 0, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_50", + "z_line": [ + [ + [0.6, 0.0, 0.0, 0.0], + [0.0, 0.6, 0.0, 0.0], + [0.0, 0.0, 0.6, 0.0], + [0.0, 0.0, 0.0, 0.6] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [5.1270792106585444e-5, -1.2817698026646363e-5, -1.2817698026646363e-5, -1.281769802664636e-5], + [-1.2817698026646363e-5, 5.1270792106585444e-5, -1.2817698026646363e-5, -1.281769802664636e-5], + [-1.2817698026646363e-5, -1.2817698026646363e-5, 5.1270792106585444e-5, -1.281769802664636e-5], + [-1.281769802664636e-5, -1.281769802664636e-5, -1.281769802664636e-5, 5.127079210658544e-5] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.31578947368421] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5] + ] + ] + }, + { + "id": "S_CU_14", + "z_line": [ + [ + [1.2857142857142856, 0.0, 0.0, 0.0], + [0.0, 1.2857142857142856, 0.0, 0.0], + [0.0, 0.0, 1.2857142857142856, 0.0], + [0.0, 0.0, 0.0, 1.2857142857142856] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.149918231685973e-5, -1.0374795579214933e-5, -1.0374795579214933e-5, -1.0374795579214932e-5], + [-1.0374795579214933e-5, 4.149918231685973e-5, -1.0374795579214933e-5, -1.0374795579214932e-5], + [-1.0374795579214933e-5, -1.0374795579214933e-5, 4.149918231685973e-5, -1.0374795579214932e-5], + [-1.0374795579214932e-5, -1.0374795579214932e-5, -1.0374795579214932e-5, 4.149918231685973e-5] + ] + ] + }, + { + "id": "T_AL_35", + "z_line": [ + [ + [0.8571428571428571, 0.0, 0.0, 0.0], + [0.0, 0.8571428571428571, 0.0, 0.0], + [0.0, 0.0, 0.8571428571428571, 0.0], + [0.0, 0.0, 0.0, 0.8571428571428571] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.8380526865282814e-5, -1.2095131716320704e-5, -1.2095131716320704e-5, -1.2095131716320704e-5], + [-1.2095131716320704e-5, 4.8380526865282814e-5, -1.2095131716320704e-5, -1.2095131716320704e-5], + [-1.2095131716320704e-5, -1.2095131716320704e-5, 4.8380526865282814e-5, -1.2095131716320704e-5], + [-1.2095131716320704e-5, -1.2095131716320704e-5, -1.2095131716320704e-5, 4.8380526865282814e-5] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.42857142857142855, 0.0, 0.0, 0.0], + [0.0, 0.42857142857142855, 0.0, 0.0], + [0.0, 0.0, 0.42857142857142855, 0.0], + [0.0, 0.0, 0.0, 0.4285714285714285] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [5.2778756580308516e-5, -1.3194689145077129e-5, -1.3194689145077129e-5, -1.319468914507713e-5], + [-1.3194689145077129e-5, 5.2778756580308516e-5, -1.3194689145077129e-5, -1.319468914507713e-5], + [-1.3194689145077129e-5, -1.3194689145077129e-5, 5.2778756580308516e-5, -1.319468914507713e-5], + [-1.319468914507713e-5, -1.319468914507713e-5, -1.319468914507713e-5, 5.277875658030852e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json b/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json index 82b44a44..0a440692 100644 --- a/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json +++ b/roseau/load_flow/tests/data/benchmark/CU1C87_V537_64/network.json @@ -1,2975 +1,2327 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 0, - "phase": "n" - }, - { - "id": 497, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 0, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897907144011231, 45.78097150797902] - } - }, - { - "id": 497, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897907144011231, 45.78097150797902] - } - }, - { - "id": 1296, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898045001922835, 45.78100346927449] - } - }, - { - "id": 1456, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898293229168931, 45.78036680840785] - } - }, - { - "id": 1457, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898455400549711, 45.77992654058046] - } - }, - { - "id": 3085, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897884461560674, 45.78087120949469] - } - }, - { - "id": 3761, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897884079699322, 45.78102874289239] - } - }, - { - "id": 4349, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897923183116726, 45.78087392693653] - } - }, - { - "id": 4761, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898123075608456, 45.78093957878617] - } - }, - { - "id": 5457, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898745384410104, 45.77924751952415] - } - }, - { - "id": 5458, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898751180018882, 45.77922998756756] - } - }, - { - "id": 5459, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898838651369918, 45.77896529465339] - } - }, - { - "id": 5460, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898840093936859, 45.77896091405773] - } - }, - { - "id": 6245, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897845942283554, 45.78156339635255] - } - }, - { - "id": 6246, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897839718270447, 45.78158085701398] - } - }, - { - "id": 6247, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897762678044369, 45.78179679355772] - } - }, - { - "id": 6248, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897752048709893, 45.78182656959385] - } - }, - { - "id": 6249, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897730290703834, 45.78188755527319] - } - }, - { - "id": 6250, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897728731469642, 45.78189192051037] - } - }, - { - "id": 6393, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898412763983085, 45.78014354708657] - } - }, - { - "id": 6394, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898419571399055, 45.78012619009918] - } - }, - { - "id": 6395, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898473980842879, 45.77998737132648] - } - }, - { - "id": 6396, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898523221204275, 45.77985689773639] - } - }, - { - "id": 6397, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.89872661987032, 45.77929898564247] - } - }, - { - "id": 6398, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.89872980270631, 45.77929026266951] - } - }, - { - "id": 6419, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898129416377485, 45.78092214244819] - } - }, - { - "id": 6420, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898316620839051, 45.78040775333067] - } - }, - { - "id": 6421, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898317817752009, 45.78040444951417] - } - }, - { - "id": 6422, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898351519836142, 45.78031184833309] - } - }, - { - "id": 6423, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898352250162446, 45.78030985136289] - } - }, - { - "id": 6424, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898389179357653, 45.78020837317398] - } - }, - { - "id": 6425, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898389602073382, 45.78020722935336] - } - }, - { - "id": 6501, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897940702380139, 45.78127769072983] - } - }, - { - "id": 6502, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897939246829146, 45.78128207160847] - } - }, - { - "id": 6503, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897934893026222, 45.78129521395135] - } - }, - { - "id": 6514, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896548496962727, 45.78135624166887] - } - }, - { - "id": 6515, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896523372448674, 45.78135239468216] - } - }, - { - "id": 6516, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896422978076482, 45.7813370223192] - } - }, - { - "id": 6517, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896160874188697, 45.78129687311034] - } - }, - { - "id": 6518, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.89615458975594, 45.78129590916776] - } - }, - { - "id": 6544, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898845721166767, 45.77894335893312] - } - }, - { - "id": 6545, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.899009716651245, 45.77843226148285] - } - }, - { - "id": 6647, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898038388725708, 45.78102085781223] - } - }, - { - "id": 6648, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897968943267765, 45.78120343308894] - } - }, - { - "id": 6934, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897820874721898, 45.7815593953291] - } - }, - { - "id": 6935, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897462306821973, 45.78150214100457] - } - }, - { - "id": 6936, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897124322832424, 45.78144817883301] - } - }, - { - "id": 6937, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896978648710327, 45.78142491892547] - } - }, - { - "id": 6938, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896735556262215, 45.78138610188036] - } - }, - { - "id": 6939, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896573382744059, 45.78136021111021] - } - }, - { - "id": 6940, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896554770232163, 45.78135724184979] - } - }, - { - "id": 6941, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.896554731259192, 45.78135723373672] - } - }, - { - "id": 12391, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.89784423814649, 45.78096220397186] - } - }, - { - "id": 12392, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897833304903626, 45.7809605900276] - } - }, - { - "id": 13415, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898104125351007, 45.78109479929395] - } - }, - { - "id": 13416, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898234177501279, 45.7811182610444] - } - }, - { - "id": 13417, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.89823744259486, 45.78111820457093] - } - }, - { - "id": 13418, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898490322487639, 45.78111415539615] - } - }, - { - "id": 13419, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898491273910041, 45.78111414269355] - } - }, - { - "id": 13420, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898735000638527, 45.78111023876026] - } - }, - { - "id": 13421, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898735514694392, 45.78111022703252] - } - }, - { - "id": 13422, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.898741428012528, 45.78111012812965] - } - }, - { - "id": 24401, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897951242695125, 45.78093941133832] - } - }, - { - "id": 24402, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.897964349302775, 45.78087388818584] - } - } - ], - "branches": [ - { - "id": "transfo", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 0, - "bus2": 497, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line351", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 1296, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.89792101189142, 45.78098088621309], - [4.897948323438979, 45.78099937330788], - [4.898045001922835, 45.78100346927449] - ] - }, - "length": 0.0104875299910643, - "params_id": "S_CU_50", - "ground": "ground" - }, - { - "id": "line1322", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 3085, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.897896621177853, 45.78096019916252], - [4.897875994437282, 45.78093801304183], - [4.897884461560674, 45.78087120949469] - ] - }, - "length": 0.0103959141501447, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line1711", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 3761, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.897901908374765, 45.78098449940555], - [4.897884079699322, 45.78102874289239] - ] - }, - "length": 0.0051092589127879, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2064", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 4349, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.897909349810417, 45.78095809957753], - [4.897923183116726, 45.78087392693653] - ] - }, - "length": 0.0094171895161053, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2218", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 1456, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.897924785315404, 45.78096605584098], - [4.897985775457337, 45.78094721107689], - [4.898047545759933, 45.78094760250347], - [4.898080247290673, 45.78093155423457], - [4.898293229168931, 45.78036680840785] - ] - }, - "length": 0.0780136650514689, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2314", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 4761, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.897926413632788, 45.78097201364331], - [4.898072018461941, 45.78097584883799], - [4.898123075608456, 45.78093957878617] - ] - }, - "length": 0.0169898615012794, - "params_id": "S_CU_50", - "ground": "ground" - }, - { - "id": "line8959", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 12391, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.897888269637416, 45.78096871593997], - [4.89784423814649, 45.78096220397186] - ] - }, - "length": 0.0034999156528606, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line19668", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 497, - "bus2": 24401, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897907144011231, 45.78097150797902], - [4.89792094664669, 45.78096208375364], - [4.897950783612569, 45.78094170816726], - [4.897951242695125, 45.78093941133832] - ] - }, - "length": 0.0035001358562825, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line8960", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 12391, - "bus2": 12392, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.89784423814649, 45.78096220397186], - [4.897833304903626, 45.7809605900276] - ] - }, - "length": 0.0008689777586691, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line19669", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 24401, - "bus2": 24402, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897951242695125, 45.78093941133832], - [4.897964349302775, 45.78087388818584] - ] - }, - "length": 0.0073536872026613, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line9849", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1296, - "bus2": 13415, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898045001922835, 45.78100346927449], - [4.898129493238593, 45.78102543189395], - [4.898104125351007, 45.78109479929395] - ] - }, - "length": 0.0149679163862218, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line3913", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1296, - "bus2": 6647, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898045001922835, 45.78100346927449], - [4.898038388725708, 45.78102085781223] - ] - }, - "length": 0.0019999427589565, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3914", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6647, - "bus2": 6648, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898038388725708, 45.78102085781223], - [4.897968943267765, 45.78120343308894] - ] - }, - "length": 0.0209990652574889, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3683", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4761, - "bus2": 6419, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898123075608456, 45.78093957878617], - [4.898129416377485, 45.78092214244819] - ] - }, - "length": 0.0019997481783991, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3684", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6419, - "bus2": 6420, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898129416377485, 45.78092214244819], - [4.898316620839051, 45.78040775333067] - ] - }, - "length": 0.0589973443359054, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line9850", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13415, - "bus2": 13416, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898104125351007, 45.78109479929395], - [4.898099778060301, 45.78110669930064], - [4.898159319916434, 45.78111945542906], - [4.898234177501279, 45.7811182610444] - ] - }, - "length": 0.0120308859106781, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line3915", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6648, - "bus2": 6501, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897968943267765, 45.78120343308894], - [4.897940702380139, 45.78127769072983] - ] - }, - "length": 0.0085407263877016, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line9851", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13416, - "bus2": 13417, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898234177501279, 45.7811182610444], - [4.89823744259486, 45.78111820457093] - ] - }, - "length": 0.0002539979415765, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line9852", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13417, - "bus2": 13418, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.89823744259486, 45.78111820457093], - [4.898490322487639, 45.78111415539615] - ] - }, - "length": 0.0196711577494569, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line3766", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6501, - "bus2": 6502, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897940702380139, 45.78127769072983], - [4.897939246829146, 45.78128207160847] - ] - }, - "length": 0.0004999059062665, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3767", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6502, - "bus2": 6503, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897939246829146, 45.78128207160847], - [4.897934893026222, 45.78129521395135] - ] - }, - "length": 0.0014994600157975, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3768", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6503, - "bus2": 6245, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897934893026222, 45.78129521395135], - [4.897845942283554, 45.78156339635255] - ] - }, - "length": 0.0305998318156685, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line9853", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13418, - "bus2": 13419, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898490322487639, 45.78111415539615], - [4.898491273910041, 45.78111414269355] - ] - }, - "length": 7.400385918361567e-05, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line9854", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13419, - "bus2": 13420, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898491273910041, 45.78111414269355], - [4.898735000638527, 45.78111023876026] - ] - }, - "length": 0.0189591511709239, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line4222", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6245, - "bus2": 6934, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897845942283554, 45.78156339635255], - [4.897820874721898, 45.7815593953291] - ] - }, - "length": 0.0019995220010623, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3510", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6245, - "bus2": 6246, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897845942283554, 45.78156339635255], - [4.897839718270447, 45.78158085701398] - ] - }, - "length": 0.0020001504559546, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line9855", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13420, - "bus2": 13421, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898735000638527, 45.78111023876026], - [4.898735514694392, 45.78111022703252] - ] - }, - "length": 3.999843822761669e-05, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line9856", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13421, - "bus2": 13422, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898735514694392, 45.78111022703252], - [4.898741428012528, 45.78111012812965] - ] - }, - "length": 0.0004599993990123, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line4223", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6934, - "bus2": 6935, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897820874721898, 45.7815593953291], - [4.897462306821973, 45.78150214100457] - ] - }, - "length": 0.0286018767552987, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3511", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6246, - "bus2": 6247, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897839718270447, 45.78158085701398], - [4.897762678044369, 45.78179679355772] - ] - }, - "length": 0.0247371943252829, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3685", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6420, - "bus2": 6421, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898316620839051, 45.78040775333067], - [4.898317817752009, 45.78040444951417] - ] - }, - "length": 0.0003788233934084, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line434", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1456, - "bus2": 1457, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898293229168931, 45.78036680840785], - [4.89836360781197, 45.78016537166377], - [4.898455400549711, 45.77992654058046] - ] - }, - "length": 0.0505368896290942, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line3686", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6421, - "bus2": 6422, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898317817752009, 45.78040444951417], - [4.898351519836142, 45.78031184833309] - ] - }, - "length": 0.0106208262167897, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3687", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6422, - "bus2": 6423, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898351519836142, 45.78031184833309], - [4.898352250162446, 45.78030985136289] - ] - }, - "length": 0.0002291090083889, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3688", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6423, - "bus2": 6424, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898352250162446, 45.78030985136289], - [4.898389179357653, 45.78020837317398] - ] - }, - "length": 0.011638899013559, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3689", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6424, - "bus2": 6425, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898389179357653, 45.78020837317398], - [4.898389602073382, 45.78020722935336] - ] - }, - "length": 0.0001313138799848, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3690", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6425, - "bus2": 6393, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898389602073382, 45.78020722935336], - [4.898412763983085, 45.78014354708657] - ] - }, - "length": 0.0073037021794629, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3512", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6247, - "bus2": 6248, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897762678044369, 45.78179679355772], - [4.897752048709893, 45.78182656959385] - ] - }, - "length": 0.0034111881398446, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3513", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6248, - "bus2": 6249, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897752048709893, 45.78182656959385], - [4.897730290703834, 45.78188755527319] - ] - }, - "length": 0.0069863781045524, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line4224", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6935, - "bus2": 6936, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897462306821973, 45.78150214100457], - [4.897124322832424, 45.78144817883301] - ] - }, - "length": 0.0269598519903243, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3657", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6393, - "bus2": 6394, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898412763983085, 45.78014354708657], - [4.898419571399055, 45.78012619009918] - ] - }, - "length": 0.0020005000078093, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3658", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6394, - "bus2": 6395, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898419571399055, 45.78012619009918], - [4.898473980842879, 45.77998737132648] - ] - }, - "length": 0.0159989956128032, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3514", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6249, - "bus2": 6250, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897730290703834, 45.78188755527319], - [4.897728731469642, 45.78189192051037] - ] - }, - "length": 0.000500106080843, - "params_id": "A_CU_48", - "ground": "ground" - }, - { - "id": "line3659", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6395, - "bus2": 6396, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898473980842879, 45.77998737132648], - [4.898497851137242, 45.77992647231902], - [4.898523221204275, 45.77985689773639] - ] - }, - "length": 0.0149994353566979, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line4225", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6936, - "bus2": 6937, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.897124322832424, 45.78144817883301], - [4.896978648710327, 45.78142491892547] - ] - }, - "length": 0.0116199876850006, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3660", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6396, - "bus2": 6397, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898523221204275, 45.77985689773639], - [4.89872661987032, 45.77929898564247] - ] - }, - "length": 0.0639960445782171, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line4226", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6937, - "bus2": 6938, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896978648710327, 45.78142491892547], - [4.896735556262215, 45.78138610188036] - ] - }, - "length": 0.0193908217158391, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line4227", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6938, - "bus2": 6939, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896735556262215, 45.78138610188036], - [4.896573382744059, 45.78136021111021] - ] - }, - "length": 0.0129360196826803, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line4228", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6939, - "bus2": 6940, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896573382744059, 45.78136021111021], - [4.896554770232163, 45.78135724184979] - ] - }, - "length": 0.0014846015658598, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line4229", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6940, - "bus2": 6941, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896554770232163, 45.78135724184979], - [4.896554731259192, 45.78135723373672] - ] - }, - "length": 3.1621443333691564e-06, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line4230", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6941, - "bus2": 6514, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896554731259192, 45.78135723373672], - [4.896548496962727, 45.78135624166887] - ] - }, - "length": 0.0004972086628585, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3779", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6514, - "bus2": 6515, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896548496962727, 45.78135624166887], - [4.896523372448674, 45.78135239468216] - ] - }, - "length": 0.0020001175802214, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3780", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6515, - "bus2": 6516, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896523372448674, 45.78135239468216], - [4.896422978076482, 45.7813370223192] - ] - }, - "length": 0.0079922244672148, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3781", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6516, - "bus2": 6517, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896422978076482, 45.7813370223192], - [4.896160874188697, 45.78129687311034] - ] - }, - "length": 0.020866031041008, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line3661", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6397, - "bus2": 6398, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.89872661987032, 45.77929898564247], - [4.89872980270631, 45.77929026266951] - ] - }, - "length": 0.0010006321743201, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3662", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6398, - "bus2": 5457, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.89872980270631, 45.77929026266951], - [4.898745384410104, 45.77924751952415] - ] - }, - "length": 0.0049028870697555, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3782", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6517, - "bus2": 6518, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.896160874188697, 45.78129687311034], - [4.89615458975594, 45.78129590916776] - ] - }, - "length": 0.0005003331232622, - "params_id": "A_AL_69", - "ground": "ground" - }, - { - "id": "line2764", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5457, - "bus2": 5458, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898745384410104, 45.77924751952415], - [4.898751180018882, 45.77922998756756] - ] - }, - "length": 0.0020000735044251, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line2765", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5458, - "bus2": 5459, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898751180018882, 45.77922998756756], - [4.898838651369918, 45.77896529465339] - ] - }, - "length": 0.0301960795919156, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line2766", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5459, - "bus2": 5460, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898838651369918, 45.77896529465339], - [4.898840093936859, 45.77896091405773] - ] - }, - "length": 0.0004996484347619, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line3808", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5460, - "bus2": 6544, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898840093936859, 45.77896091405773], - [4.898845721166767, 45.77894335893312] - ] - }, - "length": 0.0019996761722972, - "params_id": "A_CU_29", - "ground": "ground" - }, - { - "id": "line3809", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6544, - "bus2": 6545, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.898845721166767, 45.77894335893312], - [4.899009716651245, 45.77843226148285] - ] - }, - "length": 0.0582211152736399, - "params_id": "A_CU_29", - "ground": "ground" - } - ], - "loads": [ - { - "id": 7, - "bus": 1456, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3205.1392855729655, 935.5539388097831] - ] - }, - { - "id": 16, - "bus": 1457, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3248.642875745216, 771.037274206333] - ] + "id": 0, + "phase": "n" }, { - "id": 33, - "bus": 1457, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3238.916676944561, 810.9240236644129], - [0.0, 0.0] - ] - }, - { - "id": 34, - "bus": 3761, - "phases": "abcn", - "powers": [ - [3324.387447398753, 310.84901789016556], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 17, - "bus": 5457, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3185.0996997347647, 1001.6580829280964], - [0.0, 0.0] - ] - }, - { - "id": 11, - "bus": 5460, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3242.4975703584037, 796.4851025383498] - ] - }, - { - "id": 6, - "bus": 6247, - "phases": "abcn", - "powers": [ - [3256.310702263922, 737.9834840070072], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 9, - "bus": 6248, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3270.3190766692837, 673.1954761572916], - [0.0, 0.0] - ] - }, - { - "id": 21, - "bus": 6248, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3336.4217038658653, 128.3324834890737], - [0.0, 0.0] - ] - }, - { - "id": 2, - "bus": 6393, - "phases": "abcn", - "powers": [ - [3209.2082371187335, 921.4995947665673], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 12, - "bus": 6393, - "phases": "abcn", - "powers": [ - [3207.889880840739, 926.0785737426751], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 18, - "bus": 6394, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3275.2028808808086, 649.0185678512825] - ] - }, - { - "id": 15, - "bus": 6398, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3216.1047336667857, 897.13396682534] - ] - }, - { - "id": 25, - "bus": 6398, - "phases": "abcn", - "powers": [ - [3283.826466611387, 603.8731237008743], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 14, - "bus": 6420, - "phases": "abcn", - "powers": [ - [3231.8740576864616, 838.5517799151843], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 23, - "bus": 6420, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3247.63877547873, 775.255697400988], - [0.0, 0.0] - ] - }, - { - "id": 29, - "bus": 6420, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3337.139870481276, 108.05784187133824], - [0.0, 0.0] - ] - }, - { - "id": 5, - "bus": 6423, - "phases": "abcn", - "powers": [ - [3176.918924689522, 1027.3096701069494], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 35, - "bus": 6517, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3224.478168433301, 866.5561456955354] - ] - }, - { - "id": 27, - "bus": 6544, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3200.5150909908484, 951.2529446396039] - ] - }, - { - "id": 1, - "bus": 6647, - "phases": "abcn", - "powers": [ - [3176.1198510802283, 1029.7775021429563], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 30, - "bus": 6647, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3264.9241100023783, 698.8916713417448] - ] - }, - { - "id": 8, - "bus": 6648, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3262.919397178481, 708.1920783672274] - ] - }, - { - "id": 36, - "bus": 6648, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3237.9929923715163, 814.6044400189779], - [0.0, 0.0] - ] - }, - { - "id": 31, - "bus": 6935, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3312.653890009465, 417.73582244145035], - [0.0, 0.0] - ] - }, - { - "id": 26, - "bus": 6936, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3280.1303518147784, 623.6376251070296] - ] - }, - { - "id": 20, - "bus": 6937, - "phases": "abcn", - "powers": [ - [3179.5945707158476, 1018.9982228738099], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 28, - "bus": 6938, - "phases": "abcn", - "powers": [ - [3199.223582986366, 955.5875043184461], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 3, - "bus": 6939, - "phases": "abcn", - "powers": [ - [3284.9156644281024, 597.9198022649499], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 13, - "bus": 6940, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3189.0078822745636, 989.1449535514915], - [0.0, 0.0] - ] - }, - { - "id": 32, - "bus": 6941, - "phases": "abcn", - "powers": [ - [3210.1827475695627, 918.098981348096], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 10, - "bus": 12392, - "phases": "abcn", - "powers": [ - [3298.623118790275, 516.9763365261491], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 24, - "bus": 13416, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3199.0986423307795, 956.0056950578493], - [0.0, 0.0] - ] - }, - { - "id": 22, - "bus": 13417, - "phases": "abcn", - "powers": [ - [3316.599078811088, 385.16173586575326], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 19, - "bus": 13418, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [3268.3301775831424, 682.7861031428672], - [0.0, 0.0] - ] - }, - { - "id": 4, - "bus": 13420, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [3186.4583995584103, 997.3273686354607] - ] - } - ], - "sources": [ - { - "id": 0, - "bus": 0, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_69", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.4347826086956521, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.4347826086956521, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.4347826086956521, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4347826086956521 - ] - ], - [ - [ - 0.5249999999999999, - 0.17499999999999993, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.5249999999999999, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.17499999999999993, - 0.5249999999999999, - 0.1749999999999999 - ], - [ - 0.1749999999999999, - 0.1749999999999999, - 0.1749999999999999, - 0.5249999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 1.3089969389957474e-06, - -2.6179938779914946e-07, - -2.6179938779914946e-07, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - 1.3089969389957474e-06, - -2.6179938779914946e-07, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - -2.6179938779914946e-07, - 1.3089969389957474e-06, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - -2.6179938779914946e-07, - -2.6179938779914946e-07, - 1.3089969389957474e-06 - ] - ] - ] - }, - { - "id": "A_CU_29", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6206896551724139, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6206896551724139, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6206896551724139, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.6206896551724139 - ] - ], - [ - [ - 0.5249999999999999, - 0.17499999999999993, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.5249999999999999, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.17499999999999993, - 0.5249999999999999, - 0.1749999999999999 - ], - [ - 0.1749999999999999, - 0.1749999999999999, - 0.1749999999999999, - 0.5249999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 1.30899693899575e-06, - -2.6179938779914994e-07, - -2.6179938779914994e-07, - -2.6179938779915e-07 - ], - [ - -2.6179938779914994e-07, - 1.30899693899575e-06, - -2.6179938779914994e-07, - -2.6179938779915e-07 - ], - [ - -2.6179938779914994e-07, - -2.6179938779914994e-07, - 1.30899693899575e-06, - -2.6179938779915e-07 - ], - [ - -2.6179938779915e-07, - -2.6179938779915e-07, - -2.6179938779915e-07, - 1.3089969389957497e-06 - ] - ] - ] - }, - { - "id": "A_CU_48", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.375, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.375, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.375, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.375 - ] - ], - [ - [ - 0.5249999999999999, - 0.17499999999999993, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.5249999999999999, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.17499999999999993, - 0.5249999999999999, - 0.1749999999999999 - ], - [ - 0.1749999999999999, - 0.1749999999999999, - 0.1749999999999999, - 0.5249999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 1.3089969389957474e-06, - -2.6179938779914946e-07, - -2.6179938779914946e-07, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - 1.3089969389957474e-06, - -2.6179938779914946e-07, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - -2.6179938779914946e-07, - 1.3089969389957474e-06, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - -2.6179938779914946e-07, - -2.6179938779914946e-07, - 1.3089969389957474e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.2 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 7.84141526336012e-05, - -1.96035381584003e-05, - -1.96035381584003e-05, - -1.96035381584003e-05 - ], - [ - -1.96035381584003e-05, - 7.84141526336012e-05, - -1.96035381584003e-05, - -1.96035381584003e-05 - ], - [ - -1.96035381584003e-05, - -1.96035381584003e-05, - 7.84141526336012e-05, - -1.96035381584003e-05 - ], - [ - -1.96035381584003e-05, - -1.96035381584003e-05, - -1.96035381584003e-05, - 7.84141526336012e-05 - ] - ] - ] - }, - { - "id": "S_AL_35", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.8571428571428571, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.8571428571428571, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.8571428571428571, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.8571428571428571 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.719928802753306e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05 - ], - [ - -1.1799822006883264e-05, - 4.719928802753306e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05 - ], - [ - -1.1799822006883264e-05, - -1.1799822006883264e-05, - 4.719928802753306e-05, - -1.1799822006883264e-05 - ], - [ - -1.1799822006883264e-05, - -1.1799822006883264e-05, - -1.1799822006883264e-05, - 4.719928802753306e-05 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.31578947368421 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05 - ] - ] - ] - }, - { - "id": "S_CU_50", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.3619999999999999, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3619999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3619999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.3619999999999999 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 5.1270792106585444e-05, - -1.2817698026646363e-05, - -1.2817698026646363e-05, - -1.281769802664636e-05 - ], - [ - -1.2817698026646363e-05, - 5.1270792106585444e-05, - -1.2817698026646363e-05, - -1.281769802664636e-05 - ], - [ - -1.2817698026646363e-05, - -1.2817698026646363e-05, - 5.1270792106585444e-05, - -1.281769802664636e-05 - ], - [ - -1.281769802664636e-05, - -1.281769802664636e-05, - -1.281769802664636e-05, - 5.127079210658544e-05 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.42857142857142855, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.42857142857142855, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.42857142857142855, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4285714285714285 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 5.2778756580308516e-05, - -1.3194689145077129e-05, - -1.3194689145077129e-05, - -1.319468914507713e-05 - ], - [ - -1.3194689145077129e-05, - 5.2778756580308516e-05, - -1.3194689145077129e-05, - -1.319468914507713e-05 - ], - [ - -1.3194689145077129e-05, - -1.3194689145077129e-05, - 5.2778756580308516e-05, - -1.319468914507713e-05 - ], - [ - -1.319468914507713e-05, - -1.319468914507713e-05, - -1.319468914507713e-05, - 5.277875658030852e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 497, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 0, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897907144011231, 45.78097150797902] + } + }, + { + "id": 497, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897907144011231, 45.78097150797902] + } + }, + { + "id": 1296, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898045001922835, 45.78100346927449] + } + }, + { + "id": 1456, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898293229168931, 45.78036680840785] + } + }, + { + "id": 1457, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898455400549711, 45.77992654058046] + } + }, + { + "id": 3085, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897884461560674, 45.78087120949469] + } + }, + { + "id": 3761, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897884079699322, 45.78102874289239] + } + }, + { + "id": 4349, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897923183116726, 45.78087392693653] + } + }, + { + "id": 4761, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898123075608456, 45.78093957878617] + } + }, + { + "id": 5457, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898745384410104, 45.77924751952415] + } + }, + { + "id": 5458, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898751180018882, 45.77922998756756] + } + }, + { + "id": 5459, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898838651369918, 45.77896529465339] + } + }, + { + "id": 5460, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898840093936859, 45.77896091405773] + } + }, + { + "id": 6245, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897845942283554, 45.78156339635255] + } + }, + { + "id": 6246, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897839718270447, 45.78158085701398] + } + }, + { + "id": 6247, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897762678044369, 45.78179679355772] + } + }, + { + "id": 6248, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897752048709893, 45.78182656959385] + } + }, + { + "id": 6249, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897730290703834, 45.78188755527319] + } + }, + { + "id": 6250, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897728731469642, 45.78189192051037] + } + }, + { + "id": 6393, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898412763983085, 45.78014354708657] + } + }, + { + "id": 6394, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898419571399055, 45.78012619009918] + } + }, + { + "id": 6395, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898473980842879, 45.77998737132648] + } + }, + { + "id": 6396, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898523221204275, 45.77985689773639] + } + }, + { + "id": 6397, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.89872661987032, 45.77929898564247] + } + }, + { + "id": 6398, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.89872980270631, 45.77929026266951] + } + }, + { + "id": 6419, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898129416377485, 45.78092214244819] + } + }, + { + "id": 6420, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898316620839051, 45.78040775333067] + } + }, + { + "id": 6421, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898317817752009, 45.78040444951417] + } + }, + { + "id": 6422, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898351519836142, 45.78031184833309] + } + }, + { + "id": 6423, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898352250162446, 45.78030985136289] + } + }, + { + "id": 6424, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898389179357653, 45.78020837317398] + } + }, + { + "id": 6425, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898389602073382, 45.78020722935336] + } + }, + { + "id": 6501, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897940702380139, 45.78127769072983] + } + }, + { + "id": 6502, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897939246829146, 45.78128207160847] + } + }, + { + "id": 6503, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897934893026222, 45.78129521395135] + } + }, + { + "id": 6514, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896548496962727, 45.78135624166887] + } + }, + { + "id": 6515, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896523372448674, 45.78135239468216] + } + }, + { + "id": 6516, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896422978076482, 45.7813370223192] + } + }, + { + "id": 6517, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896160874188697, 45.78129687311034] + } + }, + { + "id": 6518, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.89615458975594, 45.78129590916776] + } + }, + { + "id": 6544, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898845721166767, 45.77894335893312] + } + }, + { + "id": 6545, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.899009716651245, 45.77843226148285] + } + }, + { + "id": 6647, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898038388725708, 45.78102085781223] + } + }, + { + "id": 6648, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897968943267765, 45.78120343308894] + } + }, + { + "id": 6934, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897820874721898, 45.7815593953291] + } + }, + { + "id": 6935, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897462306821973, 45.78150214100457] + } + }, + { + "id": 6936, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897124322832424, 45.78144817883301] + } + }, + { + "id": 6937, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896978648710327, 45.78142491892547] + } + }, + { + "id": 6938, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896735556262215, 45.78138610188036] + } + }, + { + "id": 6939, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896573382744059, 45.78136021111021] + } + }, + { + "id": 6940, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896554770232163, 45.78135724184979] + } + }, + { + "id": 6941, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.896554731259192, 45.78135723373672] + } + }, + { + "id": 12391, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.89784423814649, 45.78096220397186] + } + }, + { + "id": 12392, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897833304903626, 45.7809605900276] + } + }, + { + "id": 13415, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898104125351007, 45.78109479929395] + } + }, + { + "id": 13416, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898234177501279, 45.7811182610444] + } + }, + { + "id": 13417, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.89823744259486, 45.78111820457093] + } + }, + { + "id": 13418, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898490322487639, 45.78111415539615] + } + }, + { + "id": 13419, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898491273910041, 45.78111414269355] + } + }, + { + "id": 13420, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898735000638527, 45.78111023876026] + } + }, + { + "id": 13421, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898735514694392, 45.78111022703252] + } + }, + { + "id": 13422, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.898741428012528, 45.78111012812965] + } + }, + { + "id": 24401, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897951242695125, 45.78093941133832] + } + }, + { + "id": 24402, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.897964349302775, 45.78087388818584] + } + } + ], + "branches": [ + { + "id": "transfo", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 0, + "bus2": 497, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line351", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 1296, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.89792101189142, 45.78098088621309], + [4.897948323438979, 45.78099937330788], + [4.898045001922835, 45.78100346927449] + ] + }, + "length": 0.0104875299910643, + "params_id": "S_CU_50", + "ground": "ground" + }, + { + "id": "line1322", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 3085, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.897896621177853, 45.78096019916252], + [4.897875994437282, 45.78093801304183], + [4.897884461560674, 45.78087120949469] + ] + }, + "length": 0.0103959141501447, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line1711", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 3761, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.897901908374765, 45.78098449940555], + [4.897884079699322, 45.78102874289239] + ] + }, + "length": 0.0051092589127879, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2064", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 4349, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.897909349810417, 45.78095809957753], + [4.897923183116726, 45.78087392693653] + ] + }, + "length": 0.0094171895161053, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2218", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 1456, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.897924785315404, 45.78096605584098], + [4.897985775457337, 45.78094721107689], + [4.898047545759933, 45.78094760250347], + [4.898080247290673, 45.78093155423457], + [4.898293229168931, 45.78036680840785] + ] + }, + "length": 0.0780136650514689, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2314", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 4761, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.897926413632788, 45.78097201364331], + [4.898072018461941, 45.78097584883799], + [4.898123075608456, 45.78093957878617] + ] + }, + "length": 0.0169898615012794, + "params_id": "S_CU_50", + "ground": "ground" + }, + { + "id": "line8959", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 12391, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.897888269637416, 45.78096871593997], + [4.89784423814649, 45.78096220397186] + ] + }, + "length": 0.0034999156528606, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line19668", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 497, + "bus2": 24401, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897907144011231, 45.78097150797902], + [4.89792094664669, 45.78096208375364], + [4.897950783612569, 45.78094170816726], + [4.897951242695125, 45.78093941133832] + ] + }, + "length": 0.0035001358562825, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line8960", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 12391, + "bus2": 12392, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.89784423814649, 45.78096220397186], + [4.897833304903626, 45.7809605900276] + ] + }, + "length": 0.0008689777586691, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line19669", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 24401, + "bus2": 24402, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897951242695125, 45.78093941133832], + [4.897964349302775, 45.78087388818584] + ] + }, + "length": 0.0073536872026613, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line9849", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1296, + "bus2": 13415, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898045001922835, 45.78100346927449], + [4.898129493238593, 45.78102543189395], + [4.898104125351007, 45.78109479929395] + ] + }, + "length": 0.0149679163862218, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line3913", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1296, + "bus2": 6647, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898045001922835, 45.78100346927449], + [4.898038388725708, 45.78102085781223] + ] + }, + "length": 0.0019999427589565, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3914", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6647, + "bus2": 6648, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898038388725708, 45.78102085781223], + [4.897968943267765, 45.78120343308894] + ] + }, + "length": 0.0209990652574889, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3683", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4761, + "bus2": 6419, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898123075608456, 45.78093957878617], + [4.898129416377485, 45.78092214244819] + ] + }, + "length": 0.0019997481783991, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3684", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6419, + "bus2": 6420, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898129416377485, 45.78092214244819], + [4.898316620839051, 45.78040775333067] + ] + }, + "length": 0.0589973443359054, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line9850", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13415, + "bus2": 13416, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898104125351007, 45.78109479929395], + [4.898099778060301, 45.78110669930064], + [4.898159319916434, 45.78111945542906], + [4.898234177501279, 45.7811182610444] + ] + }, + "length": 0.0120308859106781, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line3915", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6648, + "bus2": 6501, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897968943267765, 45.78120343308894], + [4.897940702380139, 45.78127769072983] + ] + }, + "length": 0.0085407263877016, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line9851", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13416, + "bus2": 13417, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898234177501279, 45.7811182610444], + [4.89823744259486, 45.78111820457093] + ] + }, + "length": 0.0002539979415765, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line9852", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13417, + "bus2": 13418, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.89823744259486, 45.78111820457093], + [4.898490322487639, 45.78111415539615] + ] + }, + "length": 0.0196711577494569, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line3766", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6501, + "bus2": 6502, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897940702380139, 45.78127769072983], + [4.897939246829146, 45.78128207160847] + ] + }, + "length": 0.0004999059062665, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3767", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6502, + "bus2": 6503, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897939246829146, 45.78128207160847], + [4.897934893026222, 45.78129521395135] + ] + }, + "length": 0.0014994600157975, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3768", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6503, + "bus2": 6245, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897934893026222, 45.78129521395135], + [4.897845942283554, 45.78156339635255] + ] + }, + "length": 0.0305998318156685, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line9853", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13418, + "bus2": 13419, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898490322487639, 45.78111415539615], + [4.898491273910041, 45.78111414269355] + ] + }, + "length": 7.400385918361567e-5, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line9854", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13419, + "bus2": 13420, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898491273910041, 45.78111414269355], + [4.898735000638527, 45.78111023876026] + ] + }, + "length": 0.0189591511709239, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line4222", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6245, + "bus2": 6934, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897845942283554, 45.78156339635255], + [4.897820874721898, 45.7815593953291] + ] + }, + "length": 0.0019995220010623, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3510", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6245, + "bus2": 6246, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897845942283554, 45.78156339635255], + [4.897839718270447, 45.78158085701398] + ] + }, + "length": 0.0020001504559546, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line9855", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13420, + "bus2": 13421, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898735000638527, 45.78111023876026], + [4.898735514694392, 45.78111022703252] + ] + }, + "length": 3.999843822761669e-5, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line9856", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13421, + "bus2": 13422, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898735514694392, 45.78111022703252], + [4.898741428012528, 45.78111012812965] + ] + }, + "length": 0.0004599993990123, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line4223", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6934, + "bus2": 6935, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897820874721898, 45.7815593953291], + [4.897462306821973, 45.78150214100457] + ] + }, + "length": 0.0286018767552987, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3511", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6246, + "bus2": 6247, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897839718270447, 45.78158085701398], + [4.897762678044369, 45.78179679355772] + ] + }, + "length": 0.0247371943252829, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3685", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6420, + "bus2": 6421, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898316620839051, 45.78040775333067], + [4.898317817752009, 45.78040444951417] + ] + }, + "length": 0.0003788233934084, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line434", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1456, + "bus2": 1457, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898293229168931, 45.78036680840785], + [4.89836360781197, 45.78016537166377], + [4.898455400549711, 45.77992654058046] + ] + }, + "length": 0.0505368896290942, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line3686", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6421, + "bus2": 6422, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898317817752009, 45.78040444951417], + [4.898351519836142, 45.78031184833309] + ] + }, + "length": 0.0106208262167897, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3687", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6422, + "bus2": 6423, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898351519836142, 45.78031184833309], + [4.898352250162446, 45.78030985136289] + ] + }, + "length": 0.0002291090083889, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3688", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6423, + "bus2": 6424, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898352250162446, 45.78030985136289], + [4.898389179357653, 45.78020837317398] + ] + }, + "length": 0.011638899013559, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3689", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6424, + "bus2": 6425, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898389179357653, 45.78020837317398], + [4.898389602073382, 45.78020722935336] + ] + }, + "length": 0.0001313138799848, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3690", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6425, + "bus2": 6393, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898389602073382, 45.78020722935336], + [4.898412763983085, 45.78014354708657] + ] + }, + "length": 0.0073037021794629, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3512", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6247, + "bus2": 6248, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897762678044369, 45.78179679355772], + [4.897752048709893, 45.78182656959385] + ] + }, + "length": 0.0034111881398446, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3513", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6248, + "bus2": 6249, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897752048709893, 45.78182656959385], + [4.897730290703834, 45.78188755527319] + ] + }, + "length": 0.0069863781045524, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line4224", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6935, + "bus2": 6936, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897462306821973, 45.78150214100457], + [4.897124322832424, 45.78144817883301] + ] + }, + "length": 0.0269598519903243, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3657", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6393, + "bus2": 6394, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898412763983085, 45.78014354708657], + [4.898419571399055, 45.78012619009918] + ] + }, + "length": 0.0020005000078093, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3658", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6394, + "bus2": 6395, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898419571399055, 45.78012619009918], + [4.898473980842879, 45.77998737132648] + ] + }, + "length": 0.0159989956128032, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3514", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6249, + "bus2": 6250, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897730290703834, 45.78188755527319], + [4.897728731469642, 45.78189192051037] + ] + }, + "length": 0.000500106080843, + "params_id": "A_CU_48", + "ground": "ground" + }, + { + "id": "line3659", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6395, + "bus2": 6396, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898473980842879, 45.77998737132648], + [4.898497851137242, 45.77992647231902], + [4.898523221204275, 45.77985689773639] + ] + }, + "length": 0.0149994353566979, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line4225", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6936, + "bus2": 6937, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.897124322832424, 45.78144817883301], + [4.896978648710327, 45.78142491892547] + ] + }, + "length": 0.0116199876850006, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3660", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6396, + "bus2": 6397, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898523221204275, 45.77985689773639], + [4.89872661987032, 45.77929898564247] + ] + }, + "length": 0.0639960445782171, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line4226", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6937, + "bus2": 6938, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896978648710327, 45.78142491892547], + [4.896735556262215, 45.78138610188036] + ] + }, + "length": 0.0193908217158391, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line4227", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6938, + "bus2": 6939, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896735556262215, 45.78138610188036], + [4.896573382744059, 45.78136021111021] + ] + }, + "length": 0.0129360196826803, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line4228", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6939, + "bus2": 6940, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896573382744059, 45.78136021111021], + [4.896554770232163, 45.78135724184979] + ] + }, + "length": 0.0014846015658598, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line4229", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6940, + "bus2": 6941, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896554770232163, 45.78135724184979], + [4.896554731259192, 45.78135723373672] + ] + }, + "length": 3.1621443333691564e-6, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line4230", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6941, + "bus2": 6514, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896554731259192, 45.78135723373672], + [4.896548496962727, 45.78135624166887] + ] + }, + "length": 0.0004972086628585, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3779", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6514, + "bus2": 6515, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896548496962727, 45.78135624166887], + [4.896523372448674, 45.78135239468216] + ] + }, + "length": 0.0020001175802214, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3780", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6515, + "bus2": 6516, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896523372448674, 45.78135239468216], + [4.896422978076482, 45.7813370223192] + ] + }, + "length": 0.0079922244672148, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3781", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6516, + "bus2": 6517, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896422978076482, 45.7813370223192], + [4.896160874188697, 45.78129687311034] + ] + }, + "length": 0.020866031041008, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line3661", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6397, + "bus2": 6398, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.89872661987032, 45.77929898564247], + [4.89872980270631, 45.77929026266951] + ] + }, + "length": 0.0010006321743201, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3662", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6398, + "bus2": 5457, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.89872980270631, 45.77929026266951], + [4.898745384410104, 45.77924751952415] + ] + }, + "length": 0.0049028870697555, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3782", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6517, + "bus2": 6518, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.896160874188697, 45.78129687311034], + [4.89615458975594, 45.78129590916776] + ] + }, + "length": 0.0005003331232622, + "params_id": "A_AL_69", + "ground": "ground" + }, + { + "id": "line2764", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5457, + "bus2": 5458, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898745384410104, 45.77924751952415], + [4.898751180018882, 45.77922998756756] + ] + }, + "length": 0.0020000735044251, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line2765", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5458, + "bus2": 5459, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898751180018882, 45.77922998756756], + [4.898838651369918, 45.77896529465339] + ] + }, + "length": 0.0301960795919156, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line2766", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5459, + "bus2": 5460, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898838651369918, 45.77896529465339], + [4.898840093936859, 45.77896091405773] + ] + }, + "length": 0.0004996484347619, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line3808", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5460, + "bus2": 6544, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898840093936859, 45.77896091405773], + [4.898845721166767, 45.77894335893312] + ] + }, + "length": 0.0019996761722972, + "params_id": "A_CU_29", + "ground": "ground" + }, + { + "id": "line3809", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6544, + "bus2": 6545, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.898845721166767, 45.77894335893312], + [4.899009716651245, 45.77843226148285] + ] + }, + "length": 0.0582211152736399, + "params_id": "A_CU_29", + "ground": "ground" + } + ], + "loads": [ + { + "id": 7, + "bus": 1456, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3205.1392855729655, 935.5539388097831] + ] + }, + { + "id": 16, + "bus": 1457, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3248.642875745216, 771.037274206333] + ] + }, + { + "id": 33, + "bus": 1457, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3238.916676944561, 810.9240236644129], + [0.0, 0.0] + ] + }, + { + "id": 34, + "bus": 3761, + "phases": "abcn", + "powers": [ + [3324.387447398753, 310.84901789016556], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 17, + "bus": 5457, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3185.0996997347647, 1001.6580829280964], + [0.0, 0.0] + ] + }, + { + "id": 11, + "bus": 5460, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3242.4975703584037, 796.4851025383498] + ] + }, + { + "id": 6, + "bus": 6247, + "phases": "abcn", + "powers": [ + [3256.310702263922, 737.9834840070072], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 9, + "bus": 6248, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3270.3190766692837, 673.1954761572916], + [0.0, 0.0] + ] + }, + { + "id": 21, + "bus": 6248, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3336.4217038658653, 128.3324834890737], + [0.0, 0.0] + ] + }, + { + "id": 2, + "bus": 6393, + "phases": "abcn", + "powers": [ + [3209.2082371187335, 921.4995947665673], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 12, + "bus": 6393, + "phases": "abcn", + "powers": [ + [3207.889880840739, 926.0785737426751], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 18, + "bus": 6394, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3275.2028808808086, 649.0185678512825] + ] + }, + { + "id": 15, + "bus": 6398, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3216.1047336667857, 897.13396682534] + ] + }, + { + "id": 25, + "bus": 6398, + "phases": "abcn", + "powers": [ + [3283.826466611387, 603.8731237008743], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 14, + "bus": 6420, + "phases": "abcn", + "powers": [ + [3231.8740576864616, 838.5517799151843], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 23, + "bus": 6420, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3247.63877547873, 775.255697400988], + [0.0, 0.0] + ] + }, + { + "id": 29, + "bus": 6420, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3337.139870481276, 108.05784187133824], + [0.0, 0.0] + ] + }, + { + "id": 5, + "bus": 6423, + "phases": "abcn", + "powers": [ + [3176.918924689522, 1027.3096701069494], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 35, + "bus": 6517, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3224.478168433301, 866.5561456955354] + ] + }, + { + "id": 27, + "bus": 6544, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3200.5150909908484, 951.2529446396039] + ] + }, + { + "id": 1, + "bus": 6647, + "phases": "abcn", + "powers": [ + [3176.1198510802283, 1029.7775021429563], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 30, + "bus": 6647, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3264.9241100023783, 698.8916713417448] + ] + }, + { + "id": 8, + "bus": 6648, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3262.919397178481, 708.1920783672274] + ] + }, + { + "id": 36, + "bus": 6648, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3237.9929923715163, 814.6044400189779], + [0.0, 0.0] + ] + }, + { + "id": 31, + "bus": 6935, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3312.653890009465, 417.73582244145035], + [0.0, 0.0] + ] + }, + { + "id": 26, + "bus": 6936, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3280.1303518147784, 623.6376251070296] + ] + }, + { + "id": 20, + "bus": 6937, + "phases": "abcn", + "powers": [ + [3179.5945707158476, 1018.9982228738099], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 28, + "bus": 6938, + "phases": "abcn", + "powers": [ + [3199.223582986366, 955.5875043184461], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 3, + "bus": 6939, + "phases": "abcn", + "powers": [ + [3284.9156644281024, 597.9198022649499], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 13, + "bus": 6940, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3189.0078822745636, 989.1449535514915], + [0.0, 0.0] + ] + }, + { + "id": 32, + "bus": 6941, + "phases": "abcn", + "powers": [ + [3210.1827475695627, 918.098981348096], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 10, + "bus": 12392, + "phases": "abcn", + "powers": [ + [3298.623118790275, 516.9763365261491], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 24, + "bus": 13416, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3199.0986423307795, 956.0056950578493], + [0.0, 0.0] + ] + }, + { + "id": 22, + "bus": 13417, + "phases": "abcn", + "powers": [ + [3316.599078811088, 385.16173586575326], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 19, + "bus": 13418, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [3268.3301775831424, 682.7861031428672], + [0.0, 0.0] + ] + }, + { + "id": 4, + "bus": 13420, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [3186.4583995584103, 997.3273686354607] + ] + } + ], + "sources": [ + { + "id": 0, + "bus": 0, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_69", + "z_line": [ + [ + [0.4347826086956521, 0.0, 0.0, 0.0], + [0.0, 0.4347826086956521, 0.0, 0.0], + [0.0, 0.0, 0.4347826086956521, 0.0], + [0.0, 0.0, 0.0, 0.4347826086956521] + ], + [ + [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999], + [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7], + [-2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7], + [-2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7], + [-2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6] + ] + ] + }, + { + "id": "A_CU_29", + "z_line": [ + [ + [0.6206896551724139, 0.0, 0.0, 0.0], + [0.0, 0.6206896551724139, 0.0, 0.0], + [0.0, 0.0, 0.6206896551724139, 0.0], + [0.0, 0.0, 0.0, 0.6206896551724139] + ], + [ + [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999], + [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [1.30899693899575e-6, -2.6179938779914994e-7, -2.6179938779914994e-7, -2.6179938779915e-7], + [-2.6179938779914994e-7, 1.30899693899575e-6, -2.6179938779914994e-7, -2.6179938779915e-7], + [-2.6179938779914994e-7, -2.6179938779914994e-7, 1.30899693899575e-6, -2.6179938779915e-7], + [-2.6179938779915e-7, -2.6179938779915e-7, -2.6179938779915e-7, 1.3089969389957497e-6] + ] + ] + }, + { + "id": "A_CU_48", + "z_line": [ + [ + [0.375, 0.0, 0.0, 0.0], + [0.0, 0.375, 0.0, 0.0], + [0.0, 0.0, 0.375, 0.0], + [0.0, 0.0, 0.0, 0.375] + ], + [ + [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999], + [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7], + [-2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7], + [-2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7], + [-2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0, 0.0], + [0.0, 0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.0, 0.2] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5], + [-1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5], + [-1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5], + [-1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5] + ] + ] + }, + { + "id": "S_AL_35", + "z_line": [ + [ + [0.8571428571428571, 0.0, 0.0, 0.0], + [0.0, 0.8571428571428571, 0.0, 0.0], + [0.0, 0.0, 0.8571428571428571, 0.0], + [0.0, 0.0, 0.0, 0.8571428571428571] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5], + [-1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5, -1.1799822006883264e-5], + [-1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5, -1.1799822006883264e-5], + [-1.1799822006883264e-5, -1.1799822006883264e-5, -1.1799822006883264e-5, 4.719928802753306e-5] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.31578947368421] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5] + ] + ] + }, + { + "id": "S_CU_50", + "z_line": [ + [ + [0.3619999999999999, 0.0, 0.0, 0.0], + [0.0, 0.3619999999999999, 0.0, 0.0], + [0.0, 0.0, 0.3619999999999999, 0.0], + [0.0, 0.0, 0.0, 0.3619999999999999] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [5.1270792106585444e-5, -1.2817698026646363e-5, -1.2817698026646363e-5, -1.281769802664636e-5], + [-1.2817698026646363e-5, 5.1270792106585444e-5, -1.2817698026646363e-5, -1.281769802664636e-5], + [-1.2817698026646363e-5, -1.2817698026646363e-5, 5.1270792106585444e-5, -1.281769802664636e-5], + [-1.281769802664636e-5, -1.281769802664636e-5, -1.281769802664636e-5, 5.127079210658544e-5] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.42857142857142855, 0.0, 0.0, 0.0], + [0.0, 0.42857142857142855, 0.0, 0.0], + [0.0, 0.0, 0.42857142857142855, 0.0], + [0.0, 0.0, 0.0, 0.4285714285714285] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [5.2778756580308516e-5, -1.3194689145077129e-5, -1.3194689145077129e-5, -1.319468914507713e-5], + [-1.3194689145077129e-5, 5.2778756580308516e-5, -1.3194689145077129e-5, -1.319468914507713e-5], + [-1.3194689145077129e-5, -1.3194689145077129e-5, 5.2778756580308516e-5, -1.319468914507713e-5], + [-1.319468914507713e-5, -1.319468914507713e-5, -1.319468914507713e-5, 5.277875658030852e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json b/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json index eda93553..f6a07c75 100644 --- a/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json +++ b/roseau/load_flow/tests/data/benchmark/DECIN_395/network.json @@ -1,18644 +1,17962 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 505000, - "phase": "n" - }, - { - "id": 9, - "phase": "n" - }, - { - "id": 31, - "phase": "n" - }, - { - "id": 116, - "phase": "n" - }, - { - "id": 106, - "phase": "n" - }, - { - "id": 54, - "phase": "n" - }, - { - "id": 13, - "phase": "n" - }, - { - "id": 33, - "phase": "n" - }, - { - "id": 17, - "phase": "n" - }, - { - "id": 64, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95294809914324, 45.73754749124046] - } - }, - { - "id": 2607, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.952945371546177, 45.73752959668326] - } - }, - { - "id": 2608, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.952137678945869, 45.73757489683429] - } - }, - { - "id": 2609, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.952013669787013, 45.73755036805922] - } - }, - { - "id": 3997, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.952958860905261, 45.73762811051713] - } - }, - { - "id": 3998, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95299984255245, 45.73763540056071] - } - }, - { - "id": 31, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962468682717135, 45.7385727604298] - } - }, - { - "id": 725, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96228365590198, 45.73894135774701] - } - }, - { - "id": 928, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96348113017075, 45.73866878906255] - } - }, - { - "id": 929, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963847991183937, 45.73859809048848] - } - }, - { - "id": 2382, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963315264239038, 45.73827681599819] - } - }, - { - "id": 2383, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963320276703058, 45.73827490736029] - } - }, - { - "id": 2384, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963320908022739, 45.73827466754383] - } - }, - { - "id": 2546, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963379363543611, 45.73866953268058] - } - }, - { - "id": 2596, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962023378725025, 45.73799627314051] - } - }, - { - "id": 2597, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962011674654462, 45.73798025401729] - } - }, - { - "id": 2598, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961721983117246, 45.73756662819431] - } - }, - { - "id": 2599, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961749094610482, 45.73755530911566] - } - }, - { - "id": 2962, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96204604983626, 45.73798780336082] - } - }, - { - "id": 2963, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962386088267413, 45.73786072075063] - } - }, - { - "id": 2964, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962395965099435, 45.73785703304483] - } - }, - { - "id": 3555, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962044899263728, 45.73745010990579] - } - }, - { - "id": 3556, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962070618646461, 45.73745057041838] - } - }, - { - "id": 3575, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962306221292184, 45.73889078983816] - } - }, - { - "id": 3576, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962305021429685, 45.73889016079168] - } - }, - { - "id": 3577, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962272135033172, 45.73886128786016] - } - }, - { - "id": 4301, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962204444303315, 45.73868466650154] - } - }, - { - "id": 4302, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962205665041238, 45.73870028274997] - } - }, - { - "id": 5147, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962443400091122, 45.73858604424576] - } - }, - { - "id": 5148, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962426037335454, 45.73863679651681] - } - }, - { - "id": 5149, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962426101871827, 45.73866266565135] - } - }, - { - "id": 5150, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962391466086718, 45.73869842928318] - } - }, - { - "id": 5151, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962291199755762, 45.7386883168697] - } - }, - { - "id": 5177, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962488351451723, 45.73858434439914] - } - }, - { - "id": 5178, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962534067334214, 45.7384817455323] - } - }, - { - "id": 5179, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962059173865351, 45.73804193810163] - } - }, - { - "id": 116, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949490109697274, 45.74058056584027] - } - }, - { - "id": 156, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950202564891636, 45.7416954746224] - } - }, - { - "id": 157, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950195488412604, 45.74181716061058] - } - }, - { - "id": 260, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949352369787704, 45.74090298593372] - } - }, - { - "id": 261, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949359604960197, 45.74092865200017] - } - }, - { - "id": 355, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949577399652404, 45.74084858066003] - } - }, - { - "id": 458, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950181282916888, 45.74176168166396] - } - }, - { - "id": 459, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95011990117204, 45.74174150721939] - } - }, - { - "id": 671, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950162413477225, 45.74168920833736] - } - }, - { - "id": 809, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948901699557921, 45.74238903979888] - } - }, - { - "id": 1961, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949419516477821, 45.740886750247] - } - }, - { - "id": 2042, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948747655385304, 45.74202231858337] - } - }, - { - "id": 2043, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948754290464784, 45.74203724178536] - } - }, - { - "id": 2139, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949406732822898, 45.74115551056487] - } - }, - { - "id": 2140, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949420405824933, 45.74114510150768] - } - }, - { - "id": 2192, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949444471734358, 45.74048336720885] - } - }, - { - "id": 2193, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949356695302401, 45.74050535808706] - } - }, - { - "id": 2205, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950206721460432, 45.74186500342928] - } - }, - { - "id": 2206, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950214698930297, 45.74189897862477] - } - }, - { - "id": 2207, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950243322914806, 45.74202091347151] - } - }, - { - "id": 2208, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950171682347555, 45.74205055859117] - } - }, - { - "id": 2531, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95014676376539, 45.74146121192071] - } - }, - { - "id": 2909, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949103736628304, 45.74096308905356] - } - }, - { - "id": 2910, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948824395771884, 45.74103062148168] - } - }, - { - "id": 2911, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948666498708469, 45.74106879030815] - } - }, - { - "id": 2912, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948362867574832, 45.7411421887841] - } - }, - { - "id": 2913, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948333087920872, 45.74114938988678] - } - }, - { - "id": 3627, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950284047815058, 45.74232480334145] - } - }, - { - "id": 3628, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950291314624964, 45.74234083694983] - } - }, - { - "id": 3629, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95040077529106, 45.74267759317598] - } - }, - { - "id": 3630, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950450977745136, 45.74286052423763] - } - }, - { - "id": 3631, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950449800250516, 45.74308527593394] - } - }, - { - "id": 3632, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950443458289948, 45.743086008727] - } - }, - { - "id": 3967, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950061390994315, 45.74126666860317] - } - }, - { - "id": 3968, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950063509303619, 45.74127553983312] - } - }, - { - "id": 3969, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950142006222518, 45.7416038445639] - } - }, - { - "id": 4357, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949968838151226, 45.74069976250984] - } - }, - { - "id": 4358, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950058223808567, 45.74093010166632] - } - }, - { - "id": 4784, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95030933222711, 45.74201102286589] - } - }, - { - "id": 4785, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950345628579671, 45.74199512699472] - } - }, - { - "id": 4979, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950120320168629, 45.74174599824795] - } - }, - { - "id": 4980, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.950121576731756, 45.74175946234211] - } - }, - { - "id": 4981, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949469231184263, 45.74181897439431] - } - }, - { - "id": 4982, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949462402830679, 45.7418113560017] - } - }, - { - "id": 4983, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949398247419865, 45.74185297848733] - } - }, - { - "id": 4984, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.949335012650569, 45.74186092264297] - } - }, - { - "id": 4985, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948959201377501, 45.74190962828636] - } - }, - { - "id": 4986, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948848153785544, 45.74193515786838] - } - }, - { - "id": 4987, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948737285115905, 45.74195687551208] - } - }, - { - "id": 4988, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.948687881229532, 45.74193417113748] - } - }, - { - "id": 106, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956821263808188, 45.7395436998441] - } - }, - { - "id": 290, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956768992915554, 45.73946458993685] - } - }, - { - "id": 2401, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956728606339034, 45.73964182901081] - } - }, - { - "id": 2402, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956729477860355, 45.73964447313664] - } - }, - { - "id": 2403, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956763170616643, 45.73974703386555] - } - }, - { - "id": 2404, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956763290472624, 45.73974739113116] - } - }, - { - "id": 2405, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956788668742579, 45.73982463544426] - } - }, - { - "id": 2406, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956789104077987, 45.73982594851545] - } - }, - { - "id": 2407, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956794862323364, 45.73984347521288] - } - }, - { - "id": 2408, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956823655746058, 45.73993115365443] - } - }, - { - "id": 2409, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956824392437657, 45.73993339585589] - } - }, - { - "id": 2410, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956869496855397, 45.73995486482325] - } - }, - { - "id": 2411, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956873061652036, 45.73995656391332] - } - }, - { - "id": 2717, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956740752516652, 45.73943765934415] - } - }, - { - "id": 2718, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95674016308763, 45.73943607982265] - } - }, - { - "id": 2719, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956754846985068, 45.73942155950624] - } - }, - { - "id": 3034, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956709810858944, 45.73936857433193] - } - }, - { - "id": 3035, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956708697918765, 45.73936490966044] - } - }, - { - "id": 3036, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956719399624836, 45.73933803310992] - } - }, - { - "id": 5249, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956793992755852, 45.73964107665473] - } - }, - { - "id": 5250, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956795272180759, 45.73964094776769] - } - }, - { - "id": 5251, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956810392422511, 45.73963937055225] - } - }, - { - "id": 54, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956052315026593, 45.7355287394871] - } - }, - { - "id": 220, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95615091490285, 45.73559635332465] - } - }, - { - "id": 221, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956204677642744, 45.73560887080555] - } - }, - { - "id": 504, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956033322551094, 45.73549107007767] - } - }, - { - "id": 522, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956249667952791, 45.73536985465486] - } - }, - { - "id": 851, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956701860310014, 45.73551415251796] - } - }, - { - "id": 935, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956421946673418, 45.73544764843857] - } - }, - { - "id": 3513, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956125443948416, 45.73586872377459] - } - }, - { - "id": 3514, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956126641959938, 45.73587012706333] - } - }, - { - "id": 3515, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.956271120290809, 45.73596229744482] - } - }, - { - "id": 13, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959246469022067, 45.7378307590273] - } - }, - { - "id": 1017, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959200448814673, 45.73770131122335] - } - }, - { - "id": 3073, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959101179036857, 45.73775440898316] - } - }, - { - "id": 3074, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959096975421994, 45.73775575843332] - } - }, - { - "id": 3075, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959083641643665, 45.73776001270964] - } - }, - { - "id": 3076, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.95908115996522, 45.73776080883098] - } - }, - { - "id": 4580, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959088866017715, 45.7377317966323] - } - }, - { - "id": 4581, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959086005541451, 45.73773273662928] - } - }, - { - "id": 4582, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959071057271706, 45.7377376407394] - } - }, - { - "id": 33, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960105183392078, 45.73904390876906] - } - }, - { - "id": 338, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960199756304963, 45.73870863853983] - } - }, - { - "id": 339, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960001290873768, 45.73884393616881] - } - }, - { - "id": 421, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961968644340571, 45.73876996402976] - } - }, - { - "id": 422, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962163012139682, 45.73868603185797] - } - }, - { - "id": 452, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96095747863722, 45.73882774732266] - } - }, - { - "id": 453, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961544572899767, 45.73879241358706] - } - }, - { - "id": 613, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961479027499966, 45.73865802224827] - } - }, - { - "id": 614, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961398418773967, 45.73855818930203] - } - }, - { - "id": 848, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960760924727571, 45.7388394635442] - } - }, - { - "id": 849, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96089024310949, 45.73883175894161] - } - }, - { - "id": 872, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961665400590003, 45.73828009622697] - } - }, - { - "id": 926, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960916340919087, 45.73874417513907] - } - }, - { - "id": 979, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960818791783983, 45.73931617700526] - } - }, - { - "id": 1470, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96093602356783, 45.73876144806627] - } - }, - { - "id": 1757, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960475547969224, 45.73885647863783] - } - }, - { - "id": 1829, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960804607699028, 45.73933118128229] - } - }, - { - "id": 1830, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960248469013997, 45.73991911622788] - } - }, - { - "id": 1865, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960736612800587, 45.73866337541409] - } - }, - { - "id": 1866, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960616899657214, 45.73850504564253] - } - }, - { - "id": 1867, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960621839886369, 45.73849218385909] - } - }, - { - "id": 2035, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960834371764742, 45.73930186921763] - } - }, - { - "id": 2036, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961738822421614, 45.73928025843389] - } - }, - { - "id": 2915, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960757004187017, 45.73868580772434] - } - }, - { - "id": 2916, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960783074661972, 45.73867016545922] - } - }, - { - "id": 3049, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959799155586835, 45.73737046237839] - } - }, - { - "id": 3050, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959726093502897, 45.7372753938573] - } - }, - { - "id": 3051, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959283390068452, 45.73736170490385] - } - }, - { - "id": 3052, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959279701686487, 45.73736820023878] - } - }, - { - "id": 3565, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959932834842134, 45.73939269895975] - } - }, - { - "id": 3566, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960120329088985, 45.73944599859148] - } - }, - { - "id": 3567, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960208458261459, 45.73948437369319] - } - }, - { - "id": 4159, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961172370845995, 45.73823961583732] - } - }, - { - "id": 4160, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961232766999241, 45.73804208532634] - } - }, - { - "id": 4161, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961235967630083, 45.73803992210173] - } - }, - { - "id": 4162, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961237387326696, 45.73803896173435] - } - }, - { - "id": 4574, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960740549922936, 45.73708555348455] - } - }, - { - "id": 4575, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960650120456335, 45.73707758610233] - } - }, - { - "id": 4576, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960523291499956, 45.73712123874899] - } - }, - { - "id": 4577, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960235029230575, 45.73722045155628] - } - }, - { - "id": 4578, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960165846935249, 45.73724425782031] - } - }, - { - "id": 4854, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.9599160787222, 45.73940634098333] - } - }, - { - "id": 4855, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959672536121384, 45.73929886508697] - } - }, - { - "id": 5080, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961963947167957, 45.73872566894523] - } - }, - { - "id": 5081, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961963881619567, 45.73872510337682] - } - }, - { - "id": 5082, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961962149366898, 45.73870873395592] - } - }, - { - "id": 5083, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961961425705299, 45.738701918659] - } - }, - { - "id": 5216, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96008019839414, 45.73903972195923] - } - }, - { - "id": 5353, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959682440255655, 45.73761823205071] - } - }, - { - "id": 5354, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959654271490656, 45.73767803996336] - } - }, - { - "id": 5355, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959638274812121, 45.73806334042222] - } - }, - { - "id": 5356, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.959885624432446, 45.73834760879387] - } - }, - { - "id": 5357, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960126272587628, 45.73862419295075] - } - }, - { - "id": 17, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96075889797756, 45.73708967927565] - } - }, - { - "id": 295, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961045955673573, 45.73736741760803] - } - }, - { - "id": 296, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961254260680495, 45.73766500030121] - } - }, - { - "id": 531, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961984072040853, 45.73663344835436] - } - }, - { - "id": 532, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96266036706634, 45.73644749479478] - } - }, - { - "id": 1502, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961982656484691, 45.7366037761511] - } - }, - { - "id": 1503, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96213440083194, 45.73684960686295] - } - }, - { - "id": 1504, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962126926139021, 45.73685244620967] - } - }, - { - "id": 1510, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96219385396506, 45.73657448591048] - } - }, - { - "id": 1511, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962286628397499, 45.73654351020274] - } - }, - { - "id": 1512, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962440113013225, 45.73649225556941] - } - }, - { - "id": 1531, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960935668151952, 45.73720722054048] - } - }, - { - "id": 1532, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960941248158703, 45.73721532652868] - } - }, - { - "id": 1840, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961317252966468, 45.73726479178624] - } - }, - { - "id": 1841, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961334514238821, 45.73725825799199] - } - }, - { - "id": 1842, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961339855392209, 45.73725623373556] - } - }, - { - "id": 1843, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961340171264948, 45.73725611832876] - } - }, - { - "id": 2900, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962478496234752, 45.73659513708291] - } - }, - { - "id": 2901, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962546991911733, 45.73678516075339] - } - }, - { - "id": 2902, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962546801938095, 45.73678575930509] - } - }, - { - "id": 2903, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962545568380995, 45.73678954184167] - } - }, - { - "id": 4647, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960793268398773, 45.7376150105743] - } - }, - { - "id": 4648, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960622693085613, 45.7376778244415] - } - }, - { - "id": 4649, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960513124055958, 45.7377181749721] - } - }, - { - "id": 4650, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960508980416538, 45.73771970310602] - } - }, - { - "id": 4651, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96050743912461, 45.7377202702363] - } - }, - { - "id": 5116, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.960849440960156, 45.73704179794322] - } - }, - { - "id": 5117, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96086667443794, 45.73703575995913] - } - }, - { - "id": 5118, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961136695199635, 45.73694116682628] - } - }, - { - "id": 5119, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961153928614241, 45.73693512879809] - } - }, - { - "id": 5120, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961360232170545, 45.73682367990691] - } - }, - { - "id": 5121, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961366461715031, 45.73681090495221] - } - }, - { - "id": 5122, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961430098987583, 45.73678945101164] - } - }, - { - "id": 5123, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961447470592804, 45.73678361674145] - } - }, - { - "id": 5124, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961661760315602, 45.73671160557122] - } - }, - { - "id": 5125, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961679131871559, 45.73670577126523] - } - }, - { - "id": 5126, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961965980931708, 45.73660937818495] - } - }, - { - "id": 5127, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.961968713751984, 45.73660845910157] - } - }, - { - "id": 64, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965081449499382, 45.73850349730601] - } - }, - { - "id": 146, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96395197494093, 45.7380834639623] - } - }, - { - "id": 147, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964252163804259, 45.73847286744663] - } - }, - { - "id": 198, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964264272577165, 45.73854392180715] - } - }, - { - "id": 199, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963785020541142, 45.73792534316028] - } - }, - { - "id": 306, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966923846400905, 45.73856641666062] - } - }, - { - "id": 307, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966934739302341, 45.73848824321975] - } - }, - { - "id": 330, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963677814127196, 45.73778302565311] - } - }, - { - "id": 331, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963753918031129, 45.73771465018205] - } - }, - { - "id": 345, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966427240851997, 45.7385284734373] - } - }, - { - "id": 346, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966473521113746, 45.73852687587556] - } - }, - { - "id": 398, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965466467843086, 45.73860035649596] - } - }, - { - "id": 441, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964510719345298, 45.73801997295966] - } - }, - { - "id": 455, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96495930499504, 45.73861077678116] - } - }, - { - "id": 461, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964394554729672, 45.73869937201268] - } - }, - { - "id": 511, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964320979401388, 45.73865002848635] - } - }, - { - "id": 512, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963846545798926, 45.73866394418235] - } - }, - { - "id": 570, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966135101225179, 45.73852254528428] - } - }, - { - "id": 588, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965467951236606, 45.73867850089131] - } - }, - { - "id": 621, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965922818643806, 45.73851659985056] - } - }, - { - "id": 650, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965804784154678, 45.7385702243004] - } - }, - { - "id": 651, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965905552164909, 45.73849504039023] - } - }, - { - "id": 741, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966932457213522, 45.73858627049101] - } - }, - { - "id": 750, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964070768491324, 45.73870671870665] - } - }, - { - "id": 751, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964094282222768, 45.73878724583392] - } - }, - { - "id": 762, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963640385938517, 45.73773252953077] - } - }, - { - "id": 837, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964457257085702, 45.73890894695324] - } - }, - { - "id": 873, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964289723841232, 45.73870082731759] - } - }, - { - "id": 921, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963416931799182, 45.73872430139771] - } - }, - { - "id": 922, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962814040532729, 45.73880948751754] - } - }, - { - "id": 940, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966861332364058, 45.73858555198233] - } - }, - { - "id": 1020, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963808763795043, 45.73871376144375] - } - }, - { - "id": 1022, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962859281896754, 45.73880820381644] - } - }, - { - "id": 1118, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963939739555462, 45.73806763749647] - } - }, - { - "id": 1119, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963684793044012, 45.73773775517096] - } - }, - { - "id": 1408, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963728252376153, 45.73771370270651] - } - }, - { - "id": 1409, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963688180820572, 45.73769912193055] - } - }, - { - "id": 1410, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963859714633435, 45.73767153122744] - } - }, - { - "id": 1411, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963861142878668, 45.73767398223961] - } - }, - { - "id": 1412, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963861157007316, 45.73767400891371] - } - }, - { - "id": 1413, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963866392190475, 45.73768295999191] - } - }, - { - "id": 1583, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96614781966638, 45.7385212931198] - } - }, - { - "id": 1584, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966152771529289, 45.73852080803084] - } - }, - { - "id": 1585, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966173960655363, 45.73851872728084] - } - }, - { - "id": 1833, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96449895162743, 45.73800398257293] - } - }, - { - "id": 1834, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964629859448765, 45.73758060440638] - } - }, - { - "id": 1835, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963474814846975, 45.73751312892872] - } - }, - { - "id": 1836, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963497048017847, 45.73750411099638] - } - }, - { - "id": 1837, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963301207348012, 45.73723494661714] - } - }, - { - "id": 1838, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963299402071233, 45.73723267545407] - } - }, - { - "id": 1839, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963298088674567, 45.73723101389017] - } - }, - { - "id": 1850, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964264235958905, 45.7385364243123] - } - }, - { - "id": 1851, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964295208166546, 45.7384861542162] - } - }, - { - "id": 1900, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965698522526376, 45.73857859169032] - } - }, - { - "id": 1901, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965725056144439, 45.73857643983605] - } - }, - { - "id": 2082, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962825142287602, 45.73910487687795] - } - }, - { - "id": 2083, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962799247099212, 45.73910478969897] - } - }, - { - "id": 2182, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964668772496811, 45.73761479951217] - } - }, - { - "id": 2183, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964694464150002, 45.73761521506726] - } - }, - { - "id": 2184, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964989303413325, 45.73802766903388] - } - }, - { - "id": 2243, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965084930423785, 45.73848567357514] - } - }, - { - "id": 2244, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964547700386225, 45.73801370604721] - } - }, - { - "id": 2318, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965749812771702, 45.73787625327925] - } - }, - { - "id": 2319, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965774230664155, 45.73786884000859] - } - }, - { - "id": 2415, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962836266744469, 45.73883721449722] - } - }, - { - "id": 2416, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962814051602552, 45.73883773433524] - } - }, - { - "id": 2493, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963718891198381, 45.73871618029157] - } - }, - { - "id": 2571, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967039911883393, 45.73853347790435] - } - }, - { - "id": 2572, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967092347593016, 45.73853774890823] - } - }, - { - "id": 2573, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967093600205398, 45.73854082511308] - } - }, - { - "id": 2574, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967096686551868, 45.73854837715886] - } - }, - { - "id": 2734, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964669006017743, 45.73759680879945] - } - }, - { - "id": 2735, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964714550721385, 45.73720055297952] - } - }, - { - "id": 2841, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964387501263031, 45.7388655631196] - } - }, - { - "id": 2842, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964387947426963, 45.73886656085501] - } - }, - { - "id": 2843, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964393383784293, 45.73887702847927] - } - }, - { - "id": 2907, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965378471563087, 45.73767863466824] - } - }, - { - "id": 2908, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965336428176132, 45.73765938380543] - } - }, - { - "id": 3107, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964315333159959, 45.73863247249453] - } - }, - { - "id": 3108, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964299275431529, 45.7385891005713] - } - }, - { - "id": 3161, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962888818684407, 45.73897160313579] - } - }, - { - "id": 3162, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962863535513303, 45.73897033144124] - } - }, - { - "id": 3259, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962682042602933, 45.73733274648558] - } - }, - { - "id": 3260, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96269358237546, 45.73734882339289] - } - }, - { - "id": 3261, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.962914757208745, 45.73765675998811] - } - }, - { - "id": 3482, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96479321244731, 45.73862099457246] - } - }, - { - "id": 3483, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964792917532347, 45.73862101048032] - } - }, - { - "id": 3484, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96465439581094, 45.73862952922292] - } - }, - { - "id": 3485, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964652127236736, 45.7386296723614] - } - }, - { - "id": 3486, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96437914655397, 45.73864645216977] - } - }, - { - "id": 3516, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963398996550705, 45.73873718842353] - } - }, - { - "id": 3517, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963291659341217, 45.73917011309167] - } - }, - { - "id": 3561, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963462479145761, 45.73749734977482] - } - }, - { - "id": 3562, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963265346496066, 45.73724528264585] - } - }, - { - "id": 3633, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963242634353148, 45.73725369063208] - } - }, - { - "id": 3634, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96288579730475, 45.73732738442268] - } - }, - { - "id": 3961, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965635709880166, 45.73858368177106] - } - }, - { - "id": 4000, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965512430883249, 45.73773316122202] - } - }, - { - "id": 4001, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965496973365225, 45.73772255032398] - } - }, - { - "id": 4018, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96641420877874, 45.73851643757229] - } - }, - { - "id": 4019, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966421794051887, 45.73849815754939] - } - }, - { - "id": 4080, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966976101032848, 45.73868684905409] - } - }, - { - "id": 4081, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966984130069958, 45.73870394401352] - } - }, - { - "id": 4082, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967098205301746, 45.7390806352544] - } - }, - { - "id": 4083, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967099842838252, 45.73908423353426] - } - }, - { - "id": 4084, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967227282552781, 45.73936342979869] - } - }, - { - "id": 4085, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967229191598985, 45.73936759781802] - } - }, - { - "id": 4086, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967234131662368, 45.73937842801658] - } - }, - { - "id": 4127, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965699320512575, 45.73855439462086] - } - }, - { - "id": 4128, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965699252348427, 45.73855377510523] - } - }, - { - "id": 4238, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963550347283213, 45.73761321427028] - } - }, - { - "id": 4239, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963549619934052, 45.73761225011894] - } - }, - { - "id": 4444, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966880551612587, 45.73849680452578] - } - }, - { - "id": 4445, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966916631945729, 45.73849186318009] - } - }, - { - "id": 4459, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965485033672116, 45.73756303312003] - } - }, - { - "id": 4460, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96546027566689, 45.73752995597727] - } - }, - { - "id": 4679, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963773037764453, 45.73790942074913] - } - }, - { - "id": 4686, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964618117042615, 45.73756460444032] - } - }, - { - "id": 4687, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964821674409172, 45.73712873182915] - } - }, - { - "id": 4711, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965147952614935, 45.73855656162601] - } - }, - { - "id": 4712, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965194158703693, 45.73854856617363] - } - }, - { - "id": 4719, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966755152046447, 45.73918277835366] - } - }, - { - "id": 4720, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966757041384764, 45.73918707286457] - } - }, - { - "id": 4769, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964831602864755, 45.73711213436472] - } - }, - { - "id": 4770, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965111247117847, 45.73694731850593] - } - }, - { - "id": 4776, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966974236946941, 45.73868254495371] - } - }, - { - "id": 4886, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964444177119184, 45.73786241837054] - } - }, - { - "id": 5001, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965878812489984, 45.73856444829248] - } - }, - { - "id": 5002, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966068033230046, 45.73854969028852] - } - }, - { - "id": 5003, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966131857231558, 45.73854451325678] - } - }, - { - "id": 5004, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966144611671658, 45.73854347628841] - } - }, - { - "id": 5005, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966221190525608, 45.73853727122765] - } - }, - { - "id": 5006, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96638249761217, 45.73853210533971] - } - }, - { - "id": 5163, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965879600063498, 45.73799438364752] - } - }, - { - "id": 5164, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965906059884657, 45.73798800270665] - } - }, - { - "id": 5197, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963807861265371, 45.73869027933681] - } - }, - { - "id": 5198, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.963806843225488, 45.73866410844905] - } - }, - { - "id": 5213, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.96436059502179, 45.73869892492372] - } - }, - { - "id": 5338, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.964834124266964, 45.73714447216054] - } - }, - { - "id": 5339, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.965208295435371, 45.73704136284544] - } - }, - { - "id": 5409, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.966859127692572, 45.73855744654087] - } - }, - { - "id": 5410, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967179562034882, 45.73852652304286] - } - }, - { - "id": 5411, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.967184445653658, 45.73852945112759] - } - }, - { - "id": 505000, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.934853888991207, 45.75111906308752] - } - }, - { - "id": 740000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.934012554090829, 45.74963878116863] - } - }, - { - "id": 873000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.934405208834641, 45.75109114554304] - } - }, - { - "id": 911000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.965999144972133, 45.73853954813616] - } - }, - { - "id": 912000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.964967023796365, 45.73861896752438] - } - }, - { - "id": 913000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.95935517406077, 45.73798696194202] - } - }, - { - "id": 914000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.959945775117695, 45.7387863723316] - } - }, - { - "id": 922000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.964922099667358, 45.73862204497594] - } - }, - { - "id": 923000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.964710680877293, 45.73864011135382] - } - }, - { - "id": 924000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.966075646839055, 45.73853361502763] - } - }, - { - "id": 929000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.958670666082522, 45.73892603465969] - } - }, - { - "id": 952000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.962508976327063, 45.73870055878569] - } - }, - { - "id": 953000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.951951711472315, 45.74009336132657] - } - }, - { - "id": 954000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.950700727347117, 45.73896168111497] - } - }, - { - "id": 1275000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.956590211563276, 45.73916813738952] - } - }, - { - "id": 1276000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.958507278623495, 45.73882766560496] - } - }, - { - "id": 1279000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.959457101250193, 45.73792677160319] - } - }, - { - "id": 1282000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.959254914727904, 45.73784289385675] - } - }, - { - "id": 1283000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.962445409300398, 45.73870412544466] - } - }, - { - "id": 1284000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.962460458941739, 45.73858496099791] - } - }, - { - "id": 1285000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.956805769545054, 45.73955173093524] - } - }, - { - "id": 1286000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.956540133369497, 45.73917989229741] - } - }, - { - "id": 1287000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.956043948302113, 45.73551202979766] - } - }, - { - "id": 1288000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.952966927517592, 45.73755037388134] - } - }, - { - "id": 1291000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.947923168242962, 45.7454139309383] - } - }, - { - "id": 1294000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.968629499909648, 45.7381231100194] - } - }, - { - "id": 1295000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.962475676465369, 45.73834215542708] - } - }, - { - "id": 1298000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.950552409384916, 45.74327504293316] - } - }, - { - "id": 1303000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.960091104079988, 45.73903468717842] - } - }, - { - "id": 1304000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.960266999084436, 45.73878216700876] - } - }, - { - "id": 1315000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.950690491372931, 45.73889693720407] - } - }, - { - "id": 1316000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.960749536320644, 45.73710147424123] - } - }, - { - "id": 1319000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.949480260064897, 45.74059216412196] - } - }, - { - "id": 1321000, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.965069722600271, 45.7385142048397] - } - } - ], - "branches": [ - { - "id": "transfo1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1288000, - "bus2": 9, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line1904", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 9, - "bus2": 2607, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95294809914324, 45.73754749124046], - [4.952946059972593, 45.73753407242081], - [4.952945371546177, 45.73752959668326] - ] - }, - "length": 0.0005003382576709, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3163", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 9, - "bus2": 3997, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95294809914324, 45.73754749124046], - [4.952949894765706, 45.73756092473948], - [4.952958860905261, 45.73762811051713] - ] - }, - "length": 0.0074999777410105, - "params_id": "S_AL_25_bt", - "ground": "ground" - }, - { - "id": "line1905", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2607, - "bus2": 2608, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.952945371546177, 45.73752959668326], - [4.952925679418836, 45.7374003880531], - [4.952221303417048, 45.73759143713276], - [4.952137678945869, 45.73757489683429] - ] - }, - "length": 0.0799951954264822, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3164", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3997, - "bus2": 3998, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.952958860905261, 45.73762811051713], - [4.952960078525964, 45.7376372277327], - [4.95299984255245, 45.73763540056071] - ] - }, - "length": 0.0041192001404145, - "params_id": "S_AL_25_bt", - "ground": "ground" - }, - { - "id": "line1906", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2608, - "bus2": 2609, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.952137678945869, 45.73757489683429], - [4.952013669787013, 45.73755036805922] - ] - }, - "length": 0.0100291338052338, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "transfo2", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1284000, - "bus2": 31, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line4292", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 31, - "bus2": 5177, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962468682717135, 45.7385727604298], - [4.962483430842504, 45.73858144398642], - [4.962488351451723, 45.73858434439914] - ] - }, - "length": 0.0005005785930769, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1851", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 31, - "bus2": 2546, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962468682717135, 45.7385727604298], - [4.962469326294041, 45.73858624779614], - [4.962473616814869, 45.73867616357228], - [4.963379363543611, 45.73866953268058] - ] - }, - "length": 0.0804949278393397, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4264", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 31, - "bus2": 5147, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962468682717135, 45.7385727604298], - [4.962450190964499, 45.73858287882064], - [4.962443400091122, 45.73858604424576] - ] - }, - "length": 0.0006349088237527, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4293", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5177, - "bus2": 5178, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962488351451723, 45.73858434439914], - [4.962508364359765, 45.73859613635118], - [4.962510809991794, 45.7386473883427], - [4.962672865036608, 45.73864899752117], - [4.962557577118273, 45.73849596710668], - [4.962534067334214, 45.7384817455323] - ] - }, - "length": 0.0419970317072572, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4265", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5147, - "bus2": 5148, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962443400091122, 45.73858604424576], - [4.9624259328287, 45.73859419431346], - [4.962426037335454, 45.73863679651681] - ] - }, - "length": 0.0063686689669366, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4266", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5148, - "bus2": 5149, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962426037335454, 45.73863679651681], - [4.962426101871827, 45.73866266565135] - ] - }, - "length": 0.0028752607062334, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4267", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5149, - "bus2": 5150, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962426101871827, 45.73866266565135], - [4.962426186774521, 45.73869839107908], - [4.962391466086718, 45.73869842928318] - ] - }, - "length": 0.0066729663005973, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4268", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5150, - "bus2": 5151, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962391466086718, 45.73869842928318], - [4.962295133258132, 45.73869854969649], - [4.962291619517926, 45.73869873091996], - [4.962291199755762, 45.7386883168697] - ] - }, - "length": 0.0089294677782444, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2771", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3577, - "bus2": 3576, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962305021429685, 45.73889016079168], - [4.96227148094557, 45.73887263619685], - [4.962272135033172, 45.73886128786016] - ] - }, - "length": 0.0045193175970921, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3451", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4302, - "bus2": 4301, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962204444303315, 45.73868466650154], - [4.962205665041238, 45.73870028274997] - ] - }, - "length": 0.0017382851226349, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3452", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4302, - "bus2": 5151, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962205665041238, 45.73870028274997], - [4.962206267273864, 45.738708055058], - [4.962254965338331, 45.73870620464304], - [4.962257595391107, 45.73868831091244], - [4.962291199755762, 45.7386883168697] - ] - }, - "length": 0.0066600652974873, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4294", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5178, - "bus2": 5179, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962534067334214, 45.7384817455323], - [4.962366959917578, 45.7383807055064], - [4.962243760192935, 45.73827736879885], - [4.962059173865351, 45.73804193810163] - ] - }, - "length": 0.0619962769193219, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2770", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3576, - "bus2": 3575, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962306221292184, 45.73889078983816], - [4.962305021429685, 45.73889016079168] - ] - }, - "length": 0.0001166549485426, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line321", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3576, - "bus2": 725, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962305021429685, 45.73889016079168], - [4.962281073740844, 45.73890798615641], - [4.962240808534379, 45.73889232018421], - [4.962232259109893, 45.73891413307611], - [4.962246258682557, 45.73894673346743], - [4.96228365590198, 45.73894135774701] - ] - }, - "length": 0.0128539123750615, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2772", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5151, - "bus2": 3577, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962272135033172, 45.73886128786016], - [4.962280436136135, 45.73871787794917], - [4.962277607964204, 45.7386893189779], - [4.962291199755762, 45.7386883168697] - ] - }, - "length": 0.0191343998901612, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1852", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2546, - "bus2": 928, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963379363543611, 45.73866953268058], - [4.96348113017075, 45.73866878906255] - ] - }, - "length": 0.0079206398602404, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1715", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 928, - "bus2": 2382, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96348113017075, 45.73866878906255], - [4.963477174286758, 45.73853205702689], - [4.963288079391093, 45.73828713799261], - [4.963315264239038, 45.73827681599819] - ] - }, - "length": 0.0485524283856353, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line453", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 928, - "bus2": 929, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96348113017075, 45.73866878906255], - [4.963847991183937, 45.73859809048848] - ] - }, - "length": 0.029613341361079, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4295", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5179, - "bus2": 2596, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962059173865351, 45.73804193810163], - [4.962023378725025, 45.73799627314051] - ] - }, - "length": 0.0057897859314363, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2221", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2596, - "bus2": 2962, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962023378725025, 45.73799627314051], - [4.96204604983626, 45.73798780336082] - ] - }, - "length": 0.0019998716132067, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1895", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2596, - "bus2": 2597, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962023378725025, 45.73799627314051], - [4.962011674654462, 45.73798025401729] - ] - }, - "length": 0.0019999509303946, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2222", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2962, - "bus2": 2963, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96204604983626, 45.73798780336082], - [4.962386088267413, 45.73786072075063] - ] - }, - "length": 0.0299980427743589, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1896", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2597, - "bus2": 2598, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962011674654462, 45.73798025401729], - [4.961712542478319, 45.73757056668453], - [4.961721983117246, 45.73756662819431] - ] - }, - "length": 0.051996812717244, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1716", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2382, - "bus2": 2383, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963315264239038, 45.73827681599819], - [4.963320276703058, 45.73827490736029] - ] - }, - "length": 0.0004440576697726, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1717", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2383, - "bus2": 2384, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963320276703058, 45.73827490736029], - [4.963320908022739, 45.73827466754383] - ] - }, - "length": 5.589847208640475e-05, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2223", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2963, - "bus2": 2964, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962386088267413, 45.73786072075063], - [4.962395965099435, 45.73785703304483] - ] - }, - "length": 0.0008711441750244, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1897", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2598, - "bus2": 2599, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961721983117246, 45.73756662819431], - [4.961749094610482, 45.73755530911566] - ] - }, - "length": 0.0024566375573587, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2751", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2599, - "bus2": 3555, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961749094610482, 45.73755530911566], - [4.962026874124092, 45.73744979344909], - [4.962044899263728, 45.73745010990579] - ] - }, - "length": 0.0259986378904056, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2752", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3555, - "bus2": 3556, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962044899263728, 45.73745010990579], - [4.962070618646461, 45.73745057041838] - ] - }, - "length": 0.0020023646205635, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "transfo3", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1319000, - "bus2": 116, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "400kVA", - "tap": 1.0 - }, - { - "id": "line115", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 116, - "bus2": 355, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949490109697274, 45.74058056584027], - [4.949480745023916, 45.74059235986793], - [4.949464636609704, 45.74061266434407], - [4.949577399652404, 45.74084858066003] - ] - }, - "length": 0.030232355152662, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1839", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 116, - "bus2": 2531, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949490109697274, 45.74058056584027], - [4.949495990831826, 45.74059341818484], - [4.949597693424425, 45.74081570255527], - [4.949972721763631, 45.74072685681764], - [4.950017902158366, 45.74092023868075], - [4.95014676376539, 45.74146121192071] - ] - }, - "length": 0.1394916214647838, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3500", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 116, - "bus2": 4357, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949490109697274, 45.74058056584027], - [4.94950753285216, 45.74058632629289], - [4.949538434830522, 45.74059654377515], - [4.94962432260402, 45.74078087663503], - [4.949968838151226, 45.74069976250984] - ] - }, - "length": 0.0524971216028656, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1549", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 116, - "bus2": 2192, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949490109697274, 45.74058056584027], - [4.949507899758947, 45.74057537184645], - [4.949537025899295, 45.74056687140702], - [4.949491364509629, 45.74047161767668], - [4.949444471734358, 45.74048336720885] - ] - }, - "length": 0.0174993450141986, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1550", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2192, - "bus2": 2193, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949444471734358, 45.74048336720885], - [4.949356695302401, 45.74050535808706] - ] - }, - "length": 0.0072552737885666, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1354", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 355, - "bus2": 1961, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949577399652404, 45.74084858066003], - [4.949419516477821, 45.740886750247] - ] - }, - "length": 0.0129988959249751, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3134", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 355, - "bus2": 3967, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949577399652404, 45.74084858066003], - [4.949942197636729, 45.7407608733611], - [4.949977922141468, 45.74091756898132], - [4.950061390994315, 45.74126666860317] - ] - }, - "length": 0.0869948949795668, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1355", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1961, - "bus2": 260, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949419516477821, 45.740886750247], - [4.949352369787704, 45.74090298593372] - ] - }, - "length": 0.0055284311183522, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line65", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 260, - "bus2": 261, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949352369787704, 45.74090298593372], - [4.949354557231781, 45.74091250367673], - [4.949359604960197, 45.74092865200017] - ] - }, - "length": 0.0029087843100057, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2174", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 260, - "bus2": 2909, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949352369787704, 45.74090298593372], - [4.949103736628304, 45.74096308905356] - ] - }, - "length": 0.0204703168245886, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1507", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2140, - "bus2": 2139, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949406732822898, 45.74115551056487], - [4.949420155304052, 45.74115282168234], - [4.949420405824933, 45.74114510150768] - ] - }, - "length": 0.0019447888185644, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3501", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4357, - "bus2": 4358, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949968838151226, 45.74069976250984], - [4.950001918987462, 45.74069197100517], - [4.950058223808567, 45.74093010166632] - ] - }, - "length": 0.0295438488161324, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2175", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2909, - "bus2": 2910, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949103736628304, 45.74096308905356], - [4.948824395771884, 45.74103062148168] - ] - }, - "length": 0.022998726468752, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1508", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 261, - "bus2": 2140, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949420405824933, 45.74114510150768], - [4.949421195125904, 45.74112138200793], - [4.949387418600921, 45.74098050165401], - [4.949374659918358, 45.74094355918756], - [4.949391331715796, 45.74093403448928], - [4.949383442055609, 45.74091841140541], - [4.949359604960197, 45.74092865200017] - ] - }, - "length": 0.0262552058736826, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2176", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2910, - "bus2": 2911, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948824395771884, 45.74103062148168], - [4.948666498708469, 45.74106879030815] - ] - }, - "length": 0.0129998523408677, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2177", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2911, - "bus2": 2912, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948666498708469, 45.74106879030815], - [4.948362867574832, 45.7411421887841] - ] - }, - "length": 0.0249983255219346, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3135", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3967, - "bus2": 3968, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950061390994315, 45.74126666860317], - [4.950063509303619, 45.74127553983312] - ] - }, - "length": 0.0009996904364898, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3136", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3968, - "bus2": 3969, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950063509303619, 45.74127553983312], - [4.950142006222518, 45.7416038445639] - ] - }, - "length": 0.0369976668118124, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2178", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2912, - "bus2": 2913, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948362867574832, 45.7411421887841], - [4.948333087920872, 45.74114938988678] - ] - }, - "length": 0.0024518774106525, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1840", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2531, - "bus2": 156, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95014676376539, 45.74146121192071], - [4.950202564891636, 45.7416954746224] - ] - }, - "length": 0.0263970803789386, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3137", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3969, - "bus2": 671, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950142006222518, 45.7416038445639], - [4.950162413477225, 45.74168920833736] - ] - }, - "length": 0.0096198658184063, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line289", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 671, - "bus2": 458, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950162413477225, 45.74168920833736], - [4.950176789760147, 45.74174828393607], - [4.950181282916888, 45.74176168166396] - ] - }, - "length": 0.0081902799410984, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line13", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 156, - "bus2": 157, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950202564891636, 45.7416954746224], - [4.950220150198784, 45.74176797784662], - [4.950195488412604, 45.74181716061058] - ] - }, - "length": 0.0139674557311314, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line170", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 458, - "bus2": 459, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950181282916888, 45.74176168166396], - [4.950153116202084, 45.7417641378672], - [4.95011990117204, 45.74174150721939] - ] - }, - "length": 0.0058156718278381, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4103", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 459, - "bus2": 4979, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95011990117204, 45.74174150721939], - [4.950120320168629, 45.74174599824795] - ] - }, - "length": 0.0005002249885874, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4104", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4979, - "bus2": 4980, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950120320168629, 45.74174599824795], - [4.950121576731756, 45.74175946234211] - ] - }, - "length": 0.0014996755561289, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1561", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 157, - "bus2": 2205, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950195488412604, 45.74181716061058], - [4.950206721460432, 45.74186500342928] - ] - }, - "length": 0.0053889286439807, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4105", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4980, - "bus2": 4981, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950121576731756, 45.74175946234211], - [4.950122509225502, 45.74176935135737], - [4.949738747301098, 45.74180979230424], - [4.949489568591248, 45.74184169798374], - [4.949469231184263, 45.74181897439431] - ] - }, - "length": 0.0539972561494892, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1562", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2205, - "bus2": 2206, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950206721460432, 45.74186500342928], - [4.950214698930297, 45.74189897862477] - ] - }, - "length": 0.0038269097623782, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1563", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2206, - "bus2": 2207, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950214698930297, 45.74189897862477], - [4.950243322914806, 45.74202091347151] - ] - }, - "length": 0.0137344549052552, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1564", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2207, - "bus2": 2208, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950243322914806, 45.74202091347151], - [4.950247948545511, 45.74204061821467], - [4.950171682347555, 45.74205055859117] - ] - }, - "length": 0.0082566766241566, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3914", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2208, - "bus2": 4784, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950171682347555, 45.74205055859117], - [4.950174797281904, 45.74205902854793], - [4.950314951164724, 45.74204487294905], - [4.95030933222711, 45.74201102286589] - ] - }, - "length": 0.0148076510091801, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2820", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2208, - "bus2": 3627, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950171682347555, 45.74205055859117], - [4.950175624912356, 45.74206508533622], - [4.950251540963354, 45.74205914080723], - [4.950315548545417, 45.74231485217745], - [4.950284047815058, 45.74232480334145] - ] - }, - "length": 0.0374887933481141, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3915", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4784, - "bus2": 4785, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95030933222711, 45.74201102286589], - [4.950307440570665, 45.74199961691831], - [4.950345628579671, 45.74199512699472] - ] - }, - "length": 0.0042897434917417, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4106", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4981, - "bus2": 4982, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949469231184263, 45.74181897439431], - [4.949462402830679, 45.7418113560017] - ] - }, - "length": 0.0009996915998455, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4107", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4982, - "bus2": 4983, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949462402830679, 45.7418113560017], - [4.949455627981273, 45.74180378137108], - [4.949452497864194, 45.74184616160709], - [4.949398247419865, 45.74185297848733] - ] - }, - "length": 0.0099994250049299, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4108", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4983, - "bus2": 4984, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949398247419865, 45.74185297848733], - [4.949335012650569, 45.74186092264297] - ] - }, - "length": 0.0049996879919236, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2821", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3627, - "bus2": 3628, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950284047815058, 45.74232480334145], - [4.950250951188242, 45.74233525974066], - [4.950291314624964, 45.74234083694983] - ] - }, - "length": 0.0060274595104198, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4109", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4984, - "bus2": 4985, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949335012650569, 45.74186092264297], - [4.949021817462513, 45.74190029450114], - [4.948961972701536, 45.74191248929228], - [4.948959201377501, 45.74190962828636] - ] - }, - "length": 0.0299981489511425, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2822", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3628, - "bus2": 3629, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950291314624964, 45.74234083694983], - [4.950323421657008, 45.74234527417999], - [4.95040077529106, 45.74267759317598] - ] - }, - "length": 0.039970201546093, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4110", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4985, - "bus2": 4986, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948959201377501, 45.74190962828636], - [4.948929530032742, 45.74187903844593], - [4.948927598325311, 45.74191959045178], - [4.948848153785544, 45.74193515786838] - ] - }, - "length": 0.0150397858917662, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2823", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3629, - "bus2": 3630, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95040077529106, 45.74267759317598], - [4.950400951576777, 45.74267832719964], - [4.950347740868912, 45.74269486901222], - [4.950408696655409, 45.74270605171005], - [4.950450977745136, 45.74286052423763] - ] - }, - "length": 0.0269987834223425, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4111", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4986, - "bus2": 4987, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948848153785544, 45.74193515786838], - [4.948737285115905, 45.74195687551208] - ] - }, - "length": 0.0089593827594157, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4112", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4987, - "bus2": 4988, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948737285115905, 45.74195687551208], - [4.948703415860845, 45.74196351476765], - [4.948687881229532, 45.74193417113748] - ] - }, - "length": 0.0062154329987107, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1426", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4988, - "bus2": 2042, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948687881229532, 45.74193417113748], - [4.948668417395697, 45.74193905288156], - [4.948685728057248, 45.74197764479616], - [4.94872571793278, 45.74197292445942], - [4.948747655385304, 45.74202231858337] - ] - }, - "length": 0.0134012523708699, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2824", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3630, - "bus2": 3631, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950450977745136, 45.74286052423763], - [4.950456921333884, 45.7428822596457], - [4.950401227438782, 45.7429006596228], - [4.950460856538577, 45.7429109730364], - [4.950502276058836, 45.74307923802846], - [4.950449800250516, 45.74308527593394] - ] - }, - "length": 0.035148289614464, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1427", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2042, - "bus2": 2043, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948747655385304, 45.74202231858337], - [4.948754290464784, 45.74203724178536] - ] - }, - "length": 0.001737174038491, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line375", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2043, - "bus2": 809, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.948754290464784, 45.74203724178536], - [4.948773476276781, 45.74203408579645], - [4.948901699557921, 45.74238903979888] - ] - }, - "length": 0.0406942114996201, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2825", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3631, - "bus2": 3632, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950449800250516, 45.74308527593394], - [4.950443458289948, 45.743086008727] - ] - }, - "length": 0.0005002132965161, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "transfo4", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1285000, - "bus2": 106, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "100kVA", - "tap": 1.0 - }, - { - "id": "line80", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 106, - "bus2": 290, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956821263808188, 45.7395436998441], - [4.95680609641228, 45.73953537640867], - [4.956757901902865, 45.73951568986967], - [4.956743343370634, 45.73947695382841], - [4.956768992915554, 45.73946458993685] - ] - }, - "length": 0.0112177985437179, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1730", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 106, - "bus2": 2401, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956821263808188, 45.7395436998441], - [4.956802470560173, 45.73954670404984], - [4.956702610127227, 45.73956267277521], - [4.956728606339034, 45.73964182901081] - ] - }, - "length": 0.0169993694393854, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4365", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 106, - "bus2": 5249, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956821263808188, 45.7395436998441], - [4.956815487479819, 45.73955657195612], - [4.956806154177184, 45.73957735849662], - [4.956748667883184, 45.73958500168168], - [4.956765618971497, 45.73964401646928], - [4.956793992755852, 45.73964107665473] - ] - }, - "length": 0.0158985806026337, - "params_id": "S_AL_35_bt", - "ground": "ground" - }, - { - "id": "line2282", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 290, - "bus2": 3034, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956768992915554, 45.73946458993685], - [4.956768624302769, 45.73945711821771], - [4.956738192164534, 45.73946164535425], - [4.956709810858944, 45.73936857433193] - ] - }, - "length": 0.012998956469388, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2002", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 290, - "bus2": 2717, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956768992915554, 45.73946458993685], - [4.956764772282777, 45.7394507360002], - [4.956744790341858, 45.73944848401223], - [4.956740752516652, 45.73943765934415] - ] - }, - "length": 0.0028186145322106, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2003", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2717, - "bus2": 2718, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956740752516652, 45.73943765934415], - [4.95674016308763, 45.73943607982265] - ] - }, - "length": 0.0001814521700402, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2004", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2718, - "bus2": 2719, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95674016308763, 45.73943607982265], - [4.956737583640353, 45.73942915480448], - [4.956754846985068, 45.73942155950624] - ] - }, - "length": 0.0023821808616207, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4366", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5249, - "bus2": 5250, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956793992755852, 45.73964107665473], - [4.956795272180759, 45.73964094776769] - ] - }, - "length": 0.0001005974948599, - "params_id": "S_AL_35_bt", - "ground": "ground" - }, - { - "id": "line4367", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5250, - "bus2": 5251, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956795272180759, 45.73964094776769], - [4.956810392422511, 45.73963937055225] - ] - }, - "length": 0.001189731053329, - "params_id": "S_AL_35_bt", - "ground": "ground" - }, - { - "id": "line1731", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2401, - "bus2": 2402, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956728606339034, 45.73964182901081], - [4.956729477860355, 45.73964447313664] - ] - }, - "length": 0.0003016101018866, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1732", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2402, - "bus2": 2403, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956729477860355, 45.73964447313664], - [4.956763170616643, 45.73974703386555] - ] - }, - "length": 0.01169693911365, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2283", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3034, - "bus2": 3035, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956709810858944, 45.73936857433193], - [4.956708697918765, 45.73936490966044] - ] - }, - "length": 0.0004164220714956, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2284", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3035, - "bus2": 3036, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956708697918765, 45.73936490966044], - [4.956701324266537, 45.73934072348808], - [4.956719399624836, 45.73933803310992] - ] - }, - "length": 0.0041869395569844, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1733", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2403, - "bus2": 2404, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956763170616643, 45.73974703386555], - [4.956763290472624, 45.73974739113116] - ] - }, - "length": 4.078960848303534e-05, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1734", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2404, - "bus2": 2405, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956763290472624, 45.73974739113116], - [4.956788668742579, 45.73982463544426] - ] - }, - "length": 0.008809669797575, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1735", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2405, - "bus2": 2406, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956788668742579, 45.73982463544426], - [4.956789104077987, 45.73982594851545] - ] - }, - "length": 0.0001498239148669, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1736", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2406, - "bus2": 2407, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956789104077987, 45.73982594851545], - [4.956794862323364, 45.73984347521288] - ] - }, - "length": 0.0019989085093089, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1737", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2407, - "bus2": 2408, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956794862323364, 45.73984347521288], - [4.956823655746058, 45.73993115365443] - ] - }, - "length": 0.0099994498409093, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1738", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2408, - "bus2": 2409, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956823655746058, 45.73993115365443], - [4.956824392437657, 45.73993339585589] - ] - }, - "length": 0.0002557222298103, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1739", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2409, - "bus2": 2410, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956824392437657, 45.73993339585589], - [4.956869496855397, 45.73995486482325] - ] - }, - "length": 0.0042445161037907, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1740", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2410, - "bus2": 2411, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956869496855397, 45.73995486482325], - [4.956873061652036, 45.73995656391332] - ] - }, - "length": 0.0003356064585007, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "transfo5", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1287000, - "bus2": 54, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "400kVA", - "tap": 1.0 - }, - { - "id": "line194", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 54, - "bus2": 504, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956052315026593, 45.7355287394871], - [4.956033604501489, 45.7355161689203], - [4.956033322551094, 45.73549107007767] - ] - }, - "length": 0.0027897260577011, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line128", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 504, - "bus2": 220, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956033322551094, 45.73549107007767], - [4.956034563370537, 45.73548851166989], - [4.956178737154027, 45.73553866083661], - [4.95615091490285, 45.73559635332465] - ] - }, - "length": 0.0192974364705181, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line204", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 504, - "bus2": 522, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956033322551094, 45.73549107007767], - [4.956037862495945, 45.73548733647123], - [4.956182125310585, 45.7355347650762], - [4.956210637034254, 45.73546968418562], - [4.956249667952791, 45.73536985465486] - ] - }, - "length": 0.0314743261836909, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line45", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 220, - "bus2": 221, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95615091490285, 45.73559635332465], - [4.956204677642744, 45.73560887080555] - ] - }, - "length": 0.0044096591919014, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2707", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 220, - "bus2": 3513, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95615091490285, 45.73559635332465], - [4.956088156578513, 45.7357264868948], - [4.95606026307445, 45.7357872775662], - [4.95606030542764, 45.73579248849629], - [4.956125443948416, 45.73586872377459] - ] - }, - "length": 0.0328165699103589, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line456", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 522, - "bus2": 935, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956249667952791, 45.73536985465486], - [4.956256600027722, 45.73537154716573], - [4.956233058051791, 45.73544489253887], - [4.956382576042555, 45.73548281856218], - [4.95640308545411, 45.7354448751772], - [4.956421946673418, 45.73544764843857] - ] - }, - "length": 0.0267418691062935, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2708", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3513, - "bus2": 3514, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956125443948416, 45.73586872377459], - [4.956126641959938, 45.73587012706333] - ] - }, - "length": 0.0001817164085017, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2709", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3514, - "bus2": 3515, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956126641959938, 45.73587012706333], - [4.956214651246689, 45.73597313926646], - [4.956259165800845, 45.73595366492601], - [4.956271120290809, 45.73596229744482] - ] - }, - "length": 0.0187637017295666, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line400", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 935, - "bus2": 851, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956421946673418, 45.73544764843857], - [4.956420010356635, 45.73545152831737], - [4.956409039547999, 45.73545167640629], - [4.956392814960897, 45.73548484794242], - [4.956667948706969, 45.73555193177604], - [4.95669179900583, 45.73551288415374], - [4.956701860310014, 45.73551415251796] - ] - }, - "length": 0.032942199881977, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "transfo6", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1282000, - "bus2": 13, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "630kVA", - "tap": 1.0 - }, - { - "id": "line510", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13, - "bus2": 1017, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959246469022067, 45.7378307590273], - [4.959255831126285, 45.73781896418637], - [4.959268297090128, 45.73780324412505], - [4.959200448814673, 45.73770131122335] - ] - }, - "length": 0.014498142279017, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2316", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13, - "bus2": 3073, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959246469022067, 45.7378307590273], - [4.9592273911606, 45.73782885543228], - [4.959202552832604, 45.73782638432161], - [4.959141939241144, 45.73774138536665], - [4.959101179036857, 45.73775440898316] - ] - }, - "length": 0.0159991368150779, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3709", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13, - "bus2": 4580, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959246469022067, 45.7378307590273], - [4.959237884212604, 45.73781867245589], - [4.959159657960649, 45.73770856555179], - [4.959088866017715, 45.7377317966323] - ] - }, - "length": 0.0197533840312648, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2317", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3073, - "bus2": 3074, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959101179036857, 45.73775440898316], - [4.959096975421994, 45.73775575843332] - ] - }, - "length": 0.000359902842447, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2318", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3074, - "bus2": 3075, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959096975421994, 45.73775575843332], - [4.959083641643665, 45.73776001270964] - ] - }, - "length": 0.0011403959888861, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2319", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3075, - "bus2": 3076, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959083641643665, 45.73776001270964], - [4.95908115996522, 45.73776080883098] - ] - }, - "length": 0.000212449508454, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3710", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4580, - "bus2": 4581, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959088866017715, 45.7377317966323], - [4.959086005541451, 45.73773273662928] - ] - }, - "length": 0.0002459227906416, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3711", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4581, - "bus2": 4582, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959086005541451, 45.73773273662928], - [4.959071057271706, 45.7377376407394] - ] - }, - "length": 0.0012847593141744, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "transfo7", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1303000, - "bus2": 33, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "400kVA", - "tap": 1.0 - }, - { - "id": "line1176", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 33, - "bus2": 1757, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960105183392078, 45.73904390876906], - [4.960111400639391, 45.73903113418077], - [4.960121574971325, 45.73901021965473], - [4.960112705305831, 45.73887810336793], - [4.960475547969224, 45.73885647863783] - ] - }, - "length": 0.0454971945072443, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4331", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 33, - "bus2": 5216, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960105183392078, 45.73904390876906], - [4.960086444428941, 45.73904076416639], - [4.96008019839414, 45.73903972195923] - ] - }, - "length": 0.000499719203563, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line487", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 33, - "bus2": 979, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960105183392078, 45.73904390876906], - [4.960123153890179, 45.73903902389544], - [4.960155947987132, 45.73903011984349], - [4.96015328829069, 45.73894736723048], - [4.960312304348342, 45.7389391491087], - [4.960327297000351, 45.73909182594988], - [4.960818791783983, 45.73931617700526] - ] - }, - "length": 0.0870175633918751, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line472", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 33, - "bus2": 339, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960105183392078, 45.73904390876906], - [4.960097345116976, 45.73903157976098], - [4.960084335555435, 45.73901109015626], - [4.960071097374336, 45.73884126923696], - [4.960001290873768, 45.73884393616881] - ] - }, - "length": 0.0268362299978696, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4332", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5216, - "bus2": 3565, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96008019839414, 45.73903972195923], - [4.96005334712315, 45.7390352187045], - [4.96004401165916, 45.73897422599731], - [4.960017045202498, 45.73897485634307], - [4.960030281400803, 45.73911767249419], - [4.959909243692164, 45.73930233415155], - [4.959932834842134, 45.73939269895975] - ] - }, - "length": 0.0597665823576085, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4465", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5357, - "bus2": 5356, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959885624432446, 45.73834760879387], - [4.960126272587628, 45.73862419295075] - ] - }, - "length": 0.0359972603310922, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1177", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1757, - "bus2": 848, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960475547969224, 45.73885647863783], - [4.960760924727571, 45.7388394635442] - ] - }, - "length": 0.0222903648041503, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line106", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 339, - "bus2": 338, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960199756304963, 45.73870863853983], - [4.96012073094316, 45.73878515420129], - [4.960051938939426, 45.73882474004503], - [4.960001290873768, 45.73884393616881] - ] - }, - "length": 0.0219072952150191, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4464", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5356, - "bus2": 5355, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959638274812121, 45.73806334042222], - [4.959885624432446, 45.73834760879387] - ] - }, - "length": 0.036998038532957, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2760", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3565, - "bus2": 3566, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959932834842134, 45.73939269895975], - [4.960029915934189, 45.7394066326256], - [4.960120329088985, 45.73944599859148] - ] - }, - "length": 0.0159984466404242, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3982", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3565, - "bus2": 4854, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959932834842134, 45.73939269895975], - [4.9599160787222, 45.73940634098333] - ] - }, - "length": 0.0019999066660844, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3983", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4854, - "bus2": 4855, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.9599160787222, 45.73940634098333], - [4.959818981404895, 45.73948537619096], - [4.959659490567712, 45.73945669808589], - [4.959622544267035, 45.73935584343205], - [4.959672536121384, 45.73929886508697] - ] - }, - "length": 0.0434079011695349, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line399", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 848, - "bus2": 849, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960760924727571, 45.7388394635442], - [4.96089024310949, 45.73883175894161] - ] - }, - "length": 0.0101008190175309, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2761", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3566, - "bus2": 3567, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960120329088985, 45.73944599859148], - [4.960208458261459, 45.73948437369319] - ] - }, - "length": 0.0080768028699387, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line451", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 849, - "bus2": 926, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96089024310949, 45.73883175894161], - [4.960916340919087, 45.73874417513907] - ] - }, - "length": 0.0099442456338206, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1240", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 979, - "bus2": 1829, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960818791783983, 45.73931617700526], - [4.960804607699028, 45.73933118128229] - ] - }, - "length": 0.0019999254240497, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1421", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 979, - "bus2": 2035, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960818791783983, 45.73931617700526], - [4.960834371764742, 45.73930186921763] - ] - }, - "length": 0.0019997874322937, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line928", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1470, - "bus2": 452, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96095747863722, 45.73882774732266], - [4.96093602356783, 45.73876144806627] - ] - }, - "length": 0.0075557284635259, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1422", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2035, - "bus2": 2036, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960834371764742, 45.73930186921763], - [4.960928404891914, 45.73921549641435], - [4.96151156517715, 45.73917845461823], - [4.961626527672252, 45.73908214900259], - [4.961790299750718, 45.73911972578223], - [4.961807218664164, 45.7392318502114], - [4.961738822421614, 45.73928025843389] - ] - }, - "length": 0.1051066453823083, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1241", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1829, - "bus2": 1830, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960804607699028, 45.73933118128229], - [4.960248469013997, 45.73991911622788] - ] - }, - "length": 0.0783806505567235, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line167", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 452, - "bus2": 453, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96095747863722, 45.73882774732266], - [4.961544572899767, 45.73879241358706] - ] - }, - "length": 0.0458602317411214, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4463", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5355, - "bus2": 5354, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959654271490656, 45.73767803996336], - [4.959542328938872, 45.73791566113006], - [4.95966723044202, 45.73794694804518], - [4.959621736614228, 45.73804432849675], - [4.959638274812121, 45.73806334042222] - ] - }, - "length": 0.0519968520062209, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2179", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 926, - "bus2": 2915, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960916340919087, 45.73874417513907], - [4.960905544140147, 45.73874475165952], - [4.960889052594204, 45.7387588107271], - [4.96079953543904, 45.73872420430275], - [4.960767503232685, 45.73870325039978], - [4.960757004187017, 45.73868580772434] - ] - }, - "length": 0.0154957070661534, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line929", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 926, - "bus2": 1470, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96093602356783, 45.73876144806627], - [4.960930430213592, 45.73874416974355], - [4.960916340919087, 45.73874417513907] - ] - }, - "length": 0.0019691399428032, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2180", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2915, - "bus2": 2916, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960757004187017, 45.73868580772434], - [4.960783074661972, 45.73867016545922] - ] - }, - "length": 0.0026719767370282, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1272", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2916, - "bus2": 1865, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960783074661972, 45.73867016545922], - [4.960770753031895, 45.73865790531985], - [4.960736612800587, 45.73866337541409] - ] - }, - "length": 0.0027257092541228, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1273", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1865, - "bus2": 1866, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960736612800587, 45.73866337541409], - [4.960613525714848, 45.7385138200812], - [4.960616899657214, 45.73850504564253] - ] - }, - "length": 0.0201952650554332, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1274", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1866, - "bus2": 1867, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960616899657214, 45.73850504564253], - [4.960621839886369, 45.73849218385909] - ] - }, - "length": 0.0014803408852694, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4462", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5354, - "bus2": 5353, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959682440255655, 45.73761823205071], - [4.959654271490656, 45.73767803996336] - ] - }, - "length": 0.00699961071024, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line292", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 453, - "bus2": 421, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961544572899767, 45.73879241358706], - [4.961968644340571, 45.73876996402976] - ] - }, - "length": 0.0330984002559041, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line468", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 453, - "bus2": 613, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961544572899767, 45.73879241358706], - [4.961479027499966, 45.73865802224827] - ] - }, - "length": 0.0157841355046023, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line256", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 613, - "bus2": 614, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961479027499966, 45.73865802224827], - [4.961465535419309, 45.73856382087653], - [4.961398418773967, 45.73855818930203] - ] - }, - "length": 0.015783526014468, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line413", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 614, - "bus2": 872, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961398418773967, 45.73855818930203], - [4.961465103978998, 45.73852782451912], - [4.961362963415412, 45.73840779143752], - [4.961665400590003, 45.73828009622697] - ] - }, - "length": 0.0492066014196515, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3313", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 614, - "bus2": 4159, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961398418773967, 45.73855818930203], - [4.961417291850237, 45.73852264161904], - [4.961172370845995, 45.73823961583732] - ] - }, - "length": 0.0409970179470728, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line151", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 421, - "bus2": 422, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961968644340571, 45.73876996402976], - [4.962167516981007, 45.73875943365877], - [4.962163012139682, 45.73868603185797] - ] - }, - "length": 0.0236877203591259, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4203", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 421, - "bus2": 5080, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961968644340571, 45.73876996402976], - [4.961963947167957, 45.73872566894523] - ] - }, - "length": 0.0049367846142944, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4204", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5080, - "bus2": 5081, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961963947167957, 45.73872566894523], - [4.961963881619567, 45.73872510337682] - ] - }, - "length": 6.306745004955883e-05, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4205", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5081, - "bus2": 5082, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961963881619567, 45.73872510337682], - [4.961962149366898, 45.73870873395592] - ] - }, - "length": 0.0018243872061862, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4206", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5082, - "bus2": 5083, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961962149366898, 45.73870873395592], - [4.961961425705299, 45.738701918659] - ] - }, - "length": 0.000759585304389, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4461", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5353, - "bus2": 3049, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959799155586835, 45.73737046237839], - [4.959682440255655, 45.73761823205071] - ] - }, - "length": 0.028998158624463, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2295", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3049, - "bus2": 3050, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959799155586835, 45.73737046237839], - [4.959726093502897, 45.7372753938573] - ] - }, - "length": 0.0119993997887356, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3708", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3049, - "bus2": 4578, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960165846935249, 45.73724425782031], - [4.959799155586835, 45.73737046237839] - ] - }, - "length": 0.0318001496995585, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3314", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4159, - "bus2": 4160, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961172370845995, 45.73823961583732], - [4.961086686034492, 45.73814060353558], - [4.961232766999241, 45.73804208532634] - ] - }, - "length": 0.0286524746049958, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3707", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4578, - "bus2": 4577, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960235029230575, 45.73722045155628], - [4.960165846935249, 45.73724425782031] - ] - }, - "length": 0.0059994127493386, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2296", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3050, - "bus2": 3051, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959726093502897, 45.7372753938573], - [4.95971692485665, 45.73726346499498], - [4.959460499797927, 45.73735857402437], - [4.959308162719201, 45.73731802631416], - [4.959283390068452, 45.73736170490385] - ] - }, - "length": 0.041997209573858, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4160, - "bus2": 4161, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961232766999241, 45.73804208532634], - [4.961235967630083, 45.73803992210173] - ] - }, - "length": 0.0003462063427907, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3316", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4161, - "bus2": 4162, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961235967630083, 45.73803992210173], - [4.961237387326696, 45.73803896173435] - ] - }, - "length": 0.0001536301071027, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3706", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4577, - "bus2": 4576, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960523291499956, 45.73712123874899], - [4.960235029230575, 45.73722045155628] - ] - }, - "length": 0.0249987466101525, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3705", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4576, - "bus2": 4575, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960650120456335, 45.73707758610233], - [4.960523291499956, 45.73712123874899] - ] - }, - "length": 0.0109989613390624, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2297", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3051, - "bus2": 3052, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959283390068452, 45.73736170490385], - [4.959279701686487, 45.73736820023878] - ] - }, - "length": 0.0007769109155526, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3704", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4575, - "bus2": 4574, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960740549922936, 45.73708555348455], - [4.960671836128309, 45.73707011111041], - [4.960650120456335, 45.73707758610233] - ] - }, - "length": 0.0074999085460423, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4466", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 338, - "bus2": 5357, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960126272587628, 45.73862419295075], - [4.960199756304963, 45.73870863853983] - ] - }, - "length": 0.0109909365086242, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "transfo8", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1316000, - "bus2": 17, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "400kVA", - "tap": 1.0 - }, - { - "id": "line4236", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 17, - "bus2": 5116, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96075889797756, 45.73708967927565], - [4.960771590226623, 45.73707952573821], - [4.960794806906621, 45.73706093464583], - [4.960849440960156, 45.73704179794322] - ] - }, - "length": 0.0074993866686839, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line286", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 17, - "bus2": 531, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96075889797756, 45.73708967927565], - [4.960777939782102, 45.73708759573616], - [4.960811330564744, 45.73708395245376], - [4.961358971029576, 45.73689561425828], - [4.961398300335136, 45.7368307829915], - [4.961984072040853, 45.73663344835436] - ] - }, - "length": 0.1085366702149709, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line977", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 17, - "bus2": 1531, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96075889797756, 45.73708967927565], - [4.960770216708153, 45.73710059461094], - [4.960789889444348, 45.73711956007803], - [4.960858114576383, 45.73709456058403], - [4.960935668151952, 45.73720722054048] - ] - }, - "length": 0.0224988879643285, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4237", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5116, - "bus2": 5117, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960849440960156, 45.73704179794322], - [4.96086667443794, 45.73703575995913] - ] - }, - "length": 0.0014997946053861, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4238", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5117, - "bus2": 5118, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96086667443794, 45.73703575995913], - [4.961136695199635, 45.73694116682628] - ] - }, - "length": 0.0234987629080634, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line978", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1531, - "bus2": 1532, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960935668151952, 45.73720722054048], - [4.960941248158703, 45.73721532652868] - ] - }, - "length": 0.0010001579199835, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line979", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1532, - "bus2": 295, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960941248158703, 45.73721532652868], - [4.961045955673573, 45.73736741760803] - ] - }, - "length": 0.0187661331039162, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4239", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5118, - "bus2": 5119, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961136695199635, 45.73694116682628], - [4.961153928614241, 45.73693512879809] - ] - }, - "length": 0.0014997945502358, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4240", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5119, - "bus2": 5120, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961153928614241, 45.73693512879809], - [4.961337225159591, 45.73687091834149], - [4.961360232170545, 45.73682367990691] - ] - }, - "length": 0.0214987798149279, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3773", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 295, - "bus2": 4647, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961045955673573, 45.73736741760803], - [4.961038896755773, 45.73740808991974], - [4.961099941734808, 45.73750207943066], - [4.960793268398773, 45.7376150105743] - ] - }, - "length": 0.0429972584046471, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1250", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 295, - "bus2": 1840, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961045955673573, 45.73736741760803], - [4.961317252966468, 45.73726479178624] - ] - }, - "length": 0.0239988073603358, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line83", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 295, - "bus2": 296, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961045955673573, 45.73736741760803], - [4.961254260680495, 45.73766500030121] - ] - }, - "length": 0.0368347747644785, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4241", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5120, - "bus2": 5121, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961360232170545, 45.73682367990691], - [4.961366461715031, 45.73681090495221] - ] - }, - "length": 0.0015003845165864, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4242", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5121, - "bus2": 5122, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961366461715031, 45.73681090495221], - [4.96136649637729, 45.73681082312702], - [4.961430098987583, 45.73678945101164] - ] - }, - "length": 0.0055001062627582, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4243", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5122, - "bus2": 5123, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961430098987583, 45.73678945101164], - [4.961447470592804, 45.73678361674145] - ] - }, - "length": 0.0014994921828266, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4244", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5123, - "bus2": 5124, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961447470592804, 45.73678361674145], - [4.961661760315602, 45.73671160557122] - ] - }, - "length": 0.0184992014171015, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1251", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1840, - "bus2": 1841, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961317252966468, 45.73726479178624], - [4.961334514238821, 45.73725825799199] - ] - }, - "length": 0.0015271473619261, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1252", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1841, - "bus2": 1842, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961334514238821, 45.73725825799199], - [4.961339855392209, 45.73725623373556] - ] - }, - "length": 0.0004726775241331, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1253", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1842, - "bus2": 1843, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961339855392209, 45.73725623373556], - [4.961340171264948, 45.73725611832876] - ] - }, - "length": 2.772923754078671e-05, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4245", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5124, - "bus2": 5125, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961661760315602, 45.73671160557122], - [4.961679131871559, 45.73670577126523] - ] - }, - "length": 0.001499492136751, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4246", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5125, - "bus2": 5126, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961679131871559, 45.73670577126523], - [4.961965980931708, 45.73660937818495] - ] - }, - "length": 0.0247630704763613, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3774", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4647, - "bus2": 4648, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960793268398773, 45.7376150105743], - [4.960622693085613, 45.7376778244415] - ] - }, - "length": 0.0149994723794677, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3775", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4648, - "bus2": 4649, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960622693085613, 45.7376778244415], - [4.960513124055958, 45.7377181749721] - ] - }, - "length": 0.0096350082787613, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line209", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 531, - "bus2": 532, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961984072040853, 45.73663344835436], - [4.962053028112852, 45.73665073858405], - [4.96266036706634, 45.73644749479478] - ] - }, - "length": 0.0580902420227454, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4247", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5126, - "bus2": 5127, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961965980931708, 45.73660937818495], - [4.961968713751984, 45.73660845910157] - ] - }, - "length": 0.000235954498344, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4248", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5127, - "bus2": 1502, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961968713751984, 45.73660845910157], - [4.961982656484691, 45.7366037761511] - ] - }, - "length": 0.0012035329395608, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3776", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4649, - "bus2": 4650, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960513124055958, 45.7377181749721], - [4.960508980416538, 45.73771970310602] - ] - }, - "length": 0.000364485419189, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line961", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1502, - "bus2": 1510, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961982656484691, 45.7366037761511], - [4.962051655415735, 45.73662196553913], - [4.96219385396506, 45.73657448591048] - ] - }, - "length": 0.0179992128212935, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line955", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1502, - "bus2": 1503, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.961982656484691, 45.7366037761511], - [4.962002394882419, 45.73666722583931], - [4.962055727770482, 45.73668038074695], - [4.962167329875355, 45.73683709838383], - [4.96213440083194, 45.73684960686295] - ] - }, - "length": 0.0339982521657435, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3777", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4650, - "bus2": 4651, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960508980416538, 45.73771970310602], - [4.96050743912461, 45.7377202702363] - ] - }, - "length": 0.0001355096861915, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line962", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1510, - "bus2": 1511, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96219385396506, 45.73657448591048], - [4.962286628397499, 45.73654351020274] - ] - }, - "length": 0.0079994237598084, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line963", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1511, - "bus2": 1512, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962286628397499, 45.73654351020274], - [4.962440113013225, 45.73649225556941] - ] - }, - "length": 0.01323455875897, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line956", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1503, - "bus2": 1504, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96213440083194, 45.73684960686295], - [4.962126926139021, 45.73685244620967] - ] - }, - "length": 0.0006618375786432, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2166", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1512, - "bus2": 2900, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962440113013225, 45.73649225556941], - [4.962499017231833, 45.73656829120282], - [4.962478496234752, 45.73659513708291] - ] - }, - "length": 0.012998874465924, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2167", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2900, - "bus2": 2901, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962478496234752, 45.73659513708291], - [4.962472398263021, 45.73660312016901], - [4.962562383748659, 45.73673783918393], - [4.962546991911733, 45.73678516075339] - ] - }, - "length": 0.022931005478589, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2168", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2901, - "bus2": 2902, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962546991911733, 45.73678516075339], - [4.962546801938095, 45.73678575930509] - ] - }, - "length": 6.814998294214048e-05, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2169", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2902, - "bus2": 2903, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962546801938095, 45.73678575930509], - [4.962545568380995, 45.73678954184167] - ] - }, - "length": 0.0004312374862264, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "transfo9", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1321000, - "bus2": 64, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "630kVA", - "tap": 1.0 - }, - { - "id": "line1594", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 2243, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965084063081045, 45.73849012268901], - [4.965084930423785, 45.73848567357514] - ] - }, - "length": 0.0004990881977186, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line260", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 621, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965086563914866, 45.73852633167192], - [4.965081747073785, 45.73856274804481], - [4.965140569083272, 45.7386711182296], - [4.965899220039365, 45.7386086992918], - [4.965922818643806, 45.73851659985056] - ] - }, - "length": 0.0868002806626187, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line171", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 461, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965073226315021, 45.73851569806614], - [4.965058640595166, 45.73853733751645], - [4.965010617682945, 45.73855466514089], - [4.965078778436606, 45.73866288865581], - [4.964450467561931, 45.73869650556197], - [4.964394554729672, 45.73869937201268] - ] - }, - "length": 0.0734158864084878, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line168", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 455, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965063299618518, 45.73849896248653], - [4.965032009370969, 45.73849115276518], - [4.964913236217574, 45.73853444168664], - [4.96495930499504, 45.73861077678116] - ] - }, - "length": 0.022217159646987, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line161", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 441, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965071638764609, 45.73849188093678], - [4.9650419343038, 45.73845671414239], - [4.964901632092384, 45.73850680840194], - [4.964510719345298, 45.73801997295966] - ] - }, - "length": 0.0788746145834906, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line230", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 570, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965092310713022, 45.73851557515957], - [4.965167793202724, 45.73864789553053], - [4.966121754461933, 45.73857171884823], - [4.966135101225179, 45.73852254528428] - ] - }, - "length": 0.0961254785888437, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line139", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 398, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965077689549044, 45.73852166963346], - [4.965053551445329, 45.73856536174762], - [4.965097165500242, 45.73862744169458], - [4.965466467843086, 45.73860035649596] - ] - }, - "length": 0.0417955946810107, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3836", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 64, - "bus2": 4711, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965081449499382, 45.73850349730601], - [4.965096556236531, 45.73851187507648], - [4.96512502746423, 45.73852768123741], - [4.965147952614935, 45.73855656162601] - ] - }, - "length": 0.0065002527623105, - "params_id": "S_AL_35_bt", - "ground": "ground" - }, - { - "id": "line1595", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2243, - "bus2": 2244, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965084930423785, 45.73848567357514], - [4.965088677354798, 45.73846642135719], - [4.965052928588864, 45.73841774966102], - [4.964916607629818, 45.73847045118764], - [4.964547700386225, 45.73801370604721] - ] - }, - "length": 0.07868403373704, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3837", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4711, - "bus2": 4712, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965147952614935, 45.73855656162601], - [4.965152384551264, 45.73856214685375], - [4.965194158703693, 45.73854856617363] - ] - }, - "length": 0.0042946510843251, - "params_id": "S_AL_35_bt", - "ground": "ground" - }, - { - "id": "line2677", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 455, - "bus2": 3482, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96495930499504, 45.73861077678116], - [4.96479321244731, 45.73862099457246] - ] - }, - "length": 0.0129763168892696, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2678", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3482, - "bus2": 3483, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96479321244731, 45.73862099457246], - [4.964792917532347, 45.73862101048032] - ] - }, - "length": 2.3020417188823448e-05, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2679", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3483, - "bus2": 3484, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964792917532347, 45.73862101048032], - [4.96465439581094, 45.73862952922292] - ] - }, - "length": 0.010822259929561, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line240", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 398, - "bus2": 588, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965466467843086, 45.73860035649596], - [4.965445515323404, 45.73863806901497], - [4.965452493889316, 45.73867301190182], - [4.965467951236606, 45.73867850089131] - ] - }, - "length": 0.0097680440360565, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3128", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 398, - "bus2": 3961, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965466467843086, 45.73860035649596], - [4.965635709880166, 45.73858368177106] - ] - }, - "length": 0.0133013956335383, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2680", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3484, - "bus2": 3485, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96465439581094, 45.73862952922292], - [4.964652127236736, 45.7386296723614] - ] - }, - "length": 0.0001772721694314, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2681", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3485, - "bus2": 3486, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964652127236736, 45.7386296723614], - [4.96437914655397, 45.73864645216977] - ] - }, - "length": 0.0213270284582181, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3129", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3961, - "bus2": 1900, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965635709880166, 45.73858368177106], - [4.965698522526376, 45.73857859169032] - ] - }, - "length": 0.004921165621923, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1303", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1900, - "bus2": 1901, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965698522526376, 45.73857859169032], - [4.965725056144439, 45.73857643983605] - ] - }, - "length": 0.0020788438731462, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3282", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1900, - "bus2": 4127, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965698522526376, 45.73857859169032], - [4.965699320512575, 45.73855439462086] - ] - }, - "length": 0.0026901295622809, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1304", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1901, - "bus2": 650, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965725056144439, 45.73857643983605], - [4.965804784154678, 45.7385702243004] - ] - }, - "length": 0.0062433544462683, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3283", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4127, - "bus2": 4128, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965699320512575, 45.73855439462086], - [4.965699252348427, 45.73855377510523] - ] - }, - "length": 6.906087275498889e-05, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2682", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3486, - "bus2": 511, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96437914655397, 45.73864645216977], - [4.964320979401388, 45.73865002848635] - ] - }, - "length": 0.0045444041469279, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4126", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 650, - "bus2": 5001, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965804784154678, 45.7385702243004], - [4.965878812489984, 45.73856444829248] - ] - }, - "length": 0.0057970831921064, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line278", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 650, - "bus2": 651, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965804784154678, 45.7385702243004], - [4.965807853201676, 45.73855804521034], - [4.96588560785737, 45.73855142576443], - [4.965892013136321, 45.73849849014617], - [4.965905552164909, 45.73849504039023] - ] - }, - "length": 0.0144965442912675, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line199", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 511, - "bus2": 512, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964320979401388, 45.73865002848635], - [4.964300903280957, 45.73865953616883], - [4.963849315269567, 45.73867375412993], - [4.963846545798926, 45.73866394418235] - ] - }, - "length": 0.0381790357341103, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2343", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 511, - "bus2": 3107, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964320979401388, 45.73865002848635], - [4.964315333159959, 45.73863247249453] - ] - }, - "length": 0.0020001502928667, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line391", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 461, - "bus2": 837, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964394554729672, 45.73869937201268], - [4.964392671373303, 45.7387660011235], - [4.964457257085702, 45.73890894695324] - ] - }, - "length": 0.024071080076804, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4327", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 461, - "bus2": 5213, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964394554729672, 45.73869937201268], - [4.96436059502179, 45.73869892492372] - ] - }, - "length": 0.0026434536605825, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2344", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3107, - "bus2": 3108, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964315333159959, 45.73863247249453], - [4.964302865197918, 45.73859374237484], - [4.964299275431529, 45.7385891005713] - ] - }, - "length": 0.0049994247730048, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4127", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5001, - "bus2": 5002, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965878812489984, 45.73856444829248], - [4.966068033230046, 45.73854969028852] - ] - }, - "length": 0.0148176137400325, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4328", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5213, - "bus2": 873, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96436059502179, 45.73869892492372], - [4.964289723841232, 45.73870082731759] - ] - }, - "length": 0.0055197517724435, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1244", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 441, - "bus2": 1833, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964510719345298, 45.73801997295966], - [4.96449895162743, 45.73800398257293] - ] - }, - "length": 0.0019993720963717, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2345", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3108, - "bus2": 198, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964299275431529, 45.7385891005713], - [4.964264272577165, 45.73854392180715] - ] - }, - "length": 0.0057128006007713, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4012", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2244, - "bus2": 4886, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964547700386225, 45.73801370604721], - [4.964439172513151, 45.73786772048844], - [4.964444177119184, 45.73786241837054] - ] - }, - "length": 0.0189989762344716, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1245", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1833, - "bus2": 1834, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96449895162743, 45.73800398257293], - [4.964399365763311, 45.73786865255626], - [4.964631577039423, 45.73761657068017], - [4.964629859448765, 45.73758060440638] - ] - }, - "length": 0.0542616673342133, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line414", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 873, - "bus2": 750, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964289723841232, 45.73870082731759], - [4.964070768491324, 45.73870671870665] - ] - }, - "length": 0.017053240950427, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2114", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 873, - "bus2": 2841, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964289723841232, 45.73870082731759], - [4.964335562248609, 45.73874947004877], - [4.964387501263031, 45.7388655631196] - ] - }, - "length": 0.0199990456917288, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1662", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2319, - "bus2": 2318, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965749812771702, 45.73787625327925], - [4.965774230664155, 45.73786884000859] - ] - }, - "length": 0.0020713364128582, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1259", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 198, - "bus2": 1850, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964264272577165, 45.73854392180715], - [4.964264235958905, 45.7385364243123] - ] - }, - "length": 0.0008333230108893, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line34", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 198, - "bus2": 199, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964264272577165, 45.73854392180715], - [4.963785020541142, 45.73792534316028] - ] - }, - "length": 0.0782186277177634, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1260", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1850, - "bus2": 1851, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964264235958905, 45.7385364243123], - [4.96426419637153, 45.73852617239019], - [4.964246811848618, 45.73850374229704], - [4.964295208166546, 45.7384861542162] - ] - }, - "length": 0.008219598467182, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4128", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5002, - "bus2": 5003, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966068033230046, 45.73854969028852], - [4.966131857231558, 45.73854451325678] - ] - }, - "length": 0.005000468856018, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 147, - "bus2": 146, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96395197494093, 45.7380834639623], - [4.964252163804259, 45.73847286744663] - ] - }, - "length": 0.0491838494724766, - "params_id": "T_AL_70_bt", - "ground": "ground" - }, - { - "id": "line4129", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5003, - "bus2": 5004, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966131857231558, 45.73854451325678], - [4.966144611671658, 45.73854347628841] - ] - }, - "length": 0.0009993128878082, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4130", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5004, - "bus2": 5005, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966144611671658, 45.73854347628841], - [4.966221190525608, 45.73853727122765] - ] - }, - "length": 0.0059996999556732, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1021", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 570, - "bus2": 1583, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966135101225179, 45.73852254528428], - [4.96614781966638, 45.7385212931198] - ] - }, - "length": 0.0009995789954377, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1022", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1583, - "bus2": 1584, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96614781966638, 45.7385212931198], - [4.966152771529289, 45.73852080803084] - ] - }, - "length": 0.0003891436092389, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line587", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 146, - "bus2": 1118, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96395197494093, 45.7380834639623], - [4.963939739555462, 45.73806763749647] - ] - }, - "length": 0.0020002632179181, - "params_id": "T_AL_70_bt", - "ground": "ground" - }, - { - "id": "line1023", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1584, - "bus2": 1585, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966152771529289, 45.73852080803084], - [4.966173960655363, 45.73851872728084] - ] - }, - "length": 0.0016652315367893, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4013", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4886, - "bus2": 2182, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964444177119184, 45.73786241837054], - [4.96463372403091, 45.73766152852276], - [4.964668772496811, 45.73761479951217] - ] - }, - "length": 0.0326278795576607, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line338", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 750, - "bus2": 751, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964070768491324, 45.73870671870665], - [4.964074290125498, 45.73878020652378], - [4.964094282222768, 45.73878724583392] - ] - }, - "length": 0.0099140527275263, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line513", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 750, - "bus2": 1020, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964070768491324, 45.73870671870665], - [4.963808763795043, 45.73871376144375] - ] - }, - "length": 0.0204060882306732, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4131", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5005, - "bus2": 5006, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966221190525608, 45.73853727122765], - [4.96638249761217, 45.73853210533971] - ] - }, - "length": 0.0125672273490958, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2115", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2841, - "bus2": 2842, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964387501263031, 45.7388655631196], - [4.964387947426963, 45.73886656085501] - ] - }, - "length": 0.0001162037823713, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2116", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2842, - "bus2": 2843, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964387947426963, 45.73886656085501], - [4.964393383784293, 45.73887702847927] - ] - }, - "length": 0.0012379799892217, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4132", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5006, - "bus2": 345, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96638249761217, 45.73853210533971], - [4.966427240851997, 45.7385284734373] - ] - }, - "length": 0.0035055677178873, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3182", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 345, - "bus2": 4018, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966427240851997, 45.7385284734373], - [4.966412768224104, 45.73851991895285], - [4.96641420877874, 45.73851643757229] - ] - }, - "length": 0.0018768720471732, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line110", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 345, - "bus2": 346, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966427240851997, 45.7385284734373], - [4.966473521113746, 45.73852687587556] - ] - }, - "length": 0.0036062449539755, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3183", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4018, - "bus2": 4019, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96641420877874, 45.73851643757229], - [4.966421794051887, 45.73849815754939] - ] - }, - "length": 0.0021157819220978, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4313", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1020, - "bus2": 5197, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963808763795043, 45.73871376144375], - [4.963807861265371, 45.73869027933681] - ] - }, - "length": 0.0026108922941206, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1808", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1020, - "bus2": 2493, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963808763795043, 45.73871376144375], - [4.963718891198381, 45.73871618029157] - ] - }, - "length": 0.0069996890251837, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3843", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 346, - "bus2": 4719, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966473521113746, 45.73852687587556], - [4.966755152046447, 45.73918277835366] - ] - }, - "length": 0.0761248081615365, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3588", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 346, - "bus2": 4444, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966473521113746, 45.73852687587556], - [4.966880551612587, 45.73849680452578] - ] - }, - "length": 0.0318539546392073, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4314", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5197, - "bus2": 5198, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963807861265371, 45.73869027933681], - [4.963806843225488, 45.73866410844905] - ] - }, - "length": 0.0029098739269281, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1809", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2493, - "bus2": 921, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963718891198381, 45.73871618029157], - [4.963416931799182, 45.73872430139771] - ] - }, - "length": 0.0235179522513829, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1543", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2182, - "bus2": 2183, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964668772496811, 45.73761479951217], - [4.964694464150002, 45.73761521506726] - ] - }, - "length": 0.0020000796630264, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2019", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2182, - "bus2": 2734, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964668772496811, 45.73761479951217], - [4.964669006017743, 45.73759680879945] - ] - }, - "length": 0.0019996818008195, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2020", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2734, - "bus2": 2735, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964669006017743, 45.73759680879945], - [4.964669322462765, 45.7375724790019], - [4.964516827801912, 45.73736721224008], - [4.964550498084664, 45.73726470547585], - [4.964714550721385, 45.73720055297952] - ] - }, - "length": 0.0547361961355345, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1544", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2183, - "bus2": 2184, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964694464150002, 45.73761521506726], - [4.964736957699373, 45.73761590327503], - [4.964994169236909, 45.73794113947151], - [4.964942681060684, 45.73796664969664], - [4.964989303413325, 45.73802766903388] - ] - }, - "length": 0.0572302368153654, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3811", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1834, - "bus2": 4686, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964629859448765, 45.73758060440638], - [4.964618117042615, 45.73756460444032] - ] - }, - "length": 0.0019994205494919, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3812", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4686, - "bus2": 4687, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964618117042615, 45.73756460444032], - [4.964477236101665, 45.73737264012023], - [4.964521132064454, 45.73724198889518], - [4.964821674409172, 45.73712873182915] - ] - }, - "length": 0.0654695205155956, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line525", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1851, - "bus2": 147, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964252163804259, 45.73847286744663], - [4.964258060030759, 45.73848192905675], - [4.964277527287557, 45.73846559440268], - [4.964295208166546, 45.7384861542162] - ] - }, - "length": 0.0034714457404252, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line588", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1118, - "bus2": 1119, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963939739555462, 45.73806763749647], - [4.963684793044012, 45.73773775517096] - ] - }, - "length": 0.0416898170124738, - "params_id": "T_AL_70_bt", - "ground": "ground" - }, - { - "id": "line446", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 921, - "bus2": 922, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963416931799182, 45.73872430139771], - [4.963302642840888, 45.73878535183302], - [4.962829897366068, 45.73879641518248], - [4.962814040532729, 45.73880948751754] - ] - }, - "length": 0.0499067215902113, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line2710", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 921, - "bus2": 3516, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963416931799182, 45.73872430139771], - [4.963398996550705, 45.73873718842353] - ] - }, - "length": 0.002000000406419, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2711", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3516, - "bus2": 3517, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963398996550705, 45.73873718842353], - [4.963324954976326, 45.73879036562378], - [4.963300989515336, 45.7388269330034], - [4.963303170042107, 45.73914193866987], - [4.963291659341217, 45.73917011309167] - ] - }, - "length": 0.050995699586163, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3589", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4444, - "bus2": 4445, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966880551612587, 45.73849680452578], - [4.966909055576143, 45.73849338198927], - [4.966916631945729, 45.73849186318009] - ] - }, - "length": 0.0028641060648262, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1663", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 651, - "bus2": 2319, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965774230664155, 45.73786884000859], - [4.965846609451201, 45.73784685470286], - [4.965911994183847, 45.73792009941256], - [4.965883449031353, 45.73797296861514], - [4.965578269249133, 45.73809980354573], - [4.965639238618598, 45.73818476394621], - [4.965721940402679, 45.73830000078299], - [4.965840160537955, 45.73846471558547], - [4.965879397435174, 45.73851938143104], - [4.96591426814956, 45.73850903176411], - [4.965905552164909, 45.73849504039023] - ] - }, - "length": 0.1047828220836059, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3590", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4445, - "bus2": 307, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966916631945729, 45.73849186318009], - [4.966934739302341, 45.73848824321975] - ] - }, - "length": 0.001465559166063, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4278", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5163, - "bus2": 651, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965905552164909, 45.73849504039023], - [4.965894046249666, 45.73847862092615], - [4.965881287996398, 45.73848226842815], - [4.965617501401622, 45.73810702199559], - [4.965879600063498, 45.73799438364752] - ] - }, - "length": 0.0714927558180307, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line331", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 306, - "bus2": 741, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966923846400905, 45.73856641666062], - [4.966932457213522, 45.73858627049101] - ] - }, - "length": 0.0023061954219882, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line460", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 306, - "bus2": 940, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966923846400905, 45.73856641666062], - [4.966904058672045, 45.73857952771669], - [4.966861332364058, 45.73858555198233] - ] - }, - "length": 0.0055122134429526, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3803", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 199, - "bus2": 4679, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963785020541142, 45.73792534316028], - [4.963773037764453, 45.73790942074913] - ] - }, - "length": 0.0020004079740598, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3804", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4679, - "bus2": 330, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963773037764453, 45.73790942074913], - [4.963677814127196, 45.73778302565311] - ] - }, - "length": 0.015883325342187, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line89", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 307, - "bus2": 306, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966923846400905, 45.73856641666062], - [4.966934739302341, 45.73848824321975] - ] - }, - "length": 0.008729942494233, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3906", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 741, - "bus2": 4776, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966932457213522, 45.73858627049101], - [4.966974236946941, 45.73868254495371] - ] - }, - "length": 0.0111836711773385, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line1873", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 741, - "bus2": 2571, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966932457213522, 45.73858627049101], - [4.966944711871314, 45.73857289490283], - [4.966942396755723, 45.73854274867939], - [4.967039911883393, 45.73853347790435] - ] - }, - "length": 0.0127807354164762, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4517", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 940, - "bus2": 5409, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966861332364058, 45.73858555198233], - [4.966854561154346, 45.73856061411885], - [4.966859127692572, 45.73855744654087] - ] - }, - "length": 0.0005002593837252, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4518", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5409, - "bus2": 5410, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966859127692572, 45.73855744654087], - [4.966885408608472, 45.73853925041993], - [4.967086714558416, 45.73851779829013], - [4.967153198292993, 45.73851071299938], - [4.967179562034882, 45.73852652304286] - ] - }, - "length": 0.0266592078044351, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3907", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4776, - "bus2": 4080, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966974236946941, 45.73868254495371], - [4.966976101032848, 45.73868684905409] - ] - }, - "length": 0.0004998988670749, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3240", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4080, - "bus2": 4081, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966976101032848, 45.73868684905409], - [4.966984130069958, 45.73870394401352] - ] - }, - "length": 0.0020001557972112, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1874", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2571, - "bus2": 2572, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967039911883393, 45.73853347790435], - [4.967088720798991, 45.73852884128122], - [4.967092347593016, 45.73853774890823] - ] - }, - "length": 0.0048629663518772, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line102", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 330, - "bus2": 331, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963677814127196, 45.73778302565311], - [4.963753918031129, 45.73771465018205] - ] - }, - "length": 0.0096352240810242, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3241", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4081, - "bus2": 4082, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966984130069958, 45.73870394401352], - [4.967040504754998, 45.73882396476578], - [4.967077614525938, 45.73903553358095], - [4.967098205301746, 45.7390806352544] - ] - }, - "length": 0.0429974144606054, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1875", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2572, - "bus2": 2573, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967092347593016, 45.73853774890823], - [4.967093600205398, 45.73854082511308] - ] - }, - "length": 0.0003555351492179, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1876", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2573, - "bus2": 2574, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967093600205398, 45.73854082511308], - [4.967096686551868, 45.73854837715886] - ] - }, - "length": 0.000873073871471, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3603", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2318, - "bus2": 4459, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965749812771702, 45.73787625327925], - [4.965740732820078, 45.73785813867644], - [4.965833183197056, 45.73782844585855], - [4.965707994515488, 45.73767175276756], - [4.965586043737275, 45.73771951868912], - [4.965523531768788, 45.73764127362278], - [4.965520943090657, 45.73761103478463], - [4.965485033672116, 45.73756303312003] - ] - }, - "length": 0.0581020815410653, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line4279", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5164, - "bus2": 5163, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965879600063498, 45.73799438364752], - [4.965896378940283, 45.73798717632106], - [4.965906059884657, 45.73798800270665] - ] - }, - "length": 0.00229101978137, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3387", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 762, - "bus2": 4238, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963640385938517, 45.73773252953077], - [4.963550347283213, 45.73761321427028] - ] - }, - "length": 0.0149990621636114, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line346", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 331, - "bus2": 762, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963640385938517, 45.73773252953077], - [4.963753918031129, 45.73771465018205] - ] - }, - "length": 0.0090567371203615, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line877", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1408, - "bus2": 331, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963753918031129, 45.73771465018205], - [4.963728252376153, 45.73771370270651] - ] - }, - "length": 0.0020002933298367, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3844", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4719, - "bus2": 4720, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966755152046447, 45.73918277835366], - [4.966757041384764, 45.73918707286457] - ] - }, - "length": 0.0004994537193106, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4519", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5410, - "bus2": 5411, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967179562034882, 45.73852652304286], - [4.967184445653658, 45.73852945112759] - ] - }, - "length": 0.0005003748354409, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line514", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 922, - "bus2": 1022, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962814040532729, 45.73880948751754], - [4.962828539643373, 45.73880729390306], - [4.962835039080114, 45.73880098470804], - [4.962852473515341, 45.73880103581867], - [4.962859281896754, 45.73880820381644] - ] - }, - "length": 0.0031783382162706, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line879", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1409, - "bus2": 1410, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963688180820572, 45.73769912193055], - [4.963686759093996, 45.7376973458852], - [4.963845465167481, 45.73764717336032], - [4.963859714633435, 45.73767153122744] - ] - }, - "length": 0.0167042598176257, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line878", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1409, - "bus2": 1408, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963728252376153, 45.73771370270651], - [4.96369901950342, 45.73771262268939], - [4.963688180820572, 45.73769912193055] - ] - }, - "length": 0.0039997288262935, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line4447", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4687, - "bus2": 5338, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964821674409172, 45.73712873182915], - [4.964834124266964, 45.73714447216054] - ] - }, - "length": 0.0019998907630107, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3897", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4687, - "bus2": 4769, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964821674409172, 45.73712873182915], - [4.964831602864755, 45.73711213436472] - ] - }, - "length": 0.0020000468184538, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1743", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1022, - "bus2": 2415, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962859281896754, 45.73880820381644], - [4.962872412011224, 45.73881207331538], - [4.962873076280744, 45.73882949390529], - [4.962865287680672, 45.73883653539589], - [4.962836266744469, 45.73883721449722] - ] - }, - "length": 0.0051867189317516, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line4448", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5338, - "bus2": 5339, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964834124266964, 45.73714447216054], - [4.964854510441288, 45.7371702704783], - [4.965107597122434, 45.73714003876493], - [4.96519319602257, 45.73710202739505], - [4.965208295435371, 45.73704136284544] - ] - }, - "length": 0.0379922359902965, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3898", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4769, - "bus2": 4770, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964831602864755, 45.73711213436472], - [4.964921677602302, 45.73696166011555], - [4.965022685148439, 45.73692328800584], - [4.965087317927479, 45.73693077587181], - [4.965111247117847, 45.73694731850593] - ] - }, - "length": 0.0347940676041285, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1744", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2415, - "bus2": 2416, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962836266744469, 45.73883721449722], - [4.962814051602552, 45.73883773433524] - ] - }, - "length": 0.0017299015909678, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2388", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2416, - "bus2": 3161, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962814051602552, 45.73883773433524], - [4.962814418019343, 45.7388486447235], - [4.962867898996664, 45.73884599800154], - [4.962877359920165, 45.73885298690654], - [4.962883078694469, 45.73886156664981], - [4.962892422671395, 45.7389636153791], - [4.962888818684407, 45.73897160313579] - ] - }, - "length": 0.0185919906156647, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line880", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1410, - "bus2": 1411, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963859714633435, 45.73767153122744], - [4.963861142878668, 45.73767398223961] - ] - }, - "length": 0.0002942264127686, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line881", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1411, - "bus2": 1412, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963861142878668, 45.73767398223961], - [4.963861157007316, 45.73767400891371] - ] - }, - "length": 3.1620790672645624e-06, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line882", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1412, - "bus2": 1413, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963861157007316, 45.73767400891371], - [4.963866392190475, 45.73768295999191] - ] - }, - "length": 0.0010750793346875, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3388", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4238, - "bus2": 4239, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963550347283213, 45.73761321427028], - [4.963549619934052, 45.73761225011894] - ] - }, - "length": 0.000121194774666, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3389", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4239, - "bus2": 1835, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963549619934052, 45.73761225011894], - [4.963474814846975, 45.73751312892872] - ] - }, - "length": 0.0124606788020934, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3242", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4082, - "bus2": 4083, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967098205301746, 45.7390806352544], - [4.967099842838252, 45.73908423353426] - ] - }, - "length": 0.0004197500645236, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3243", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4083, - "bus2": 4084, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967099842838252, 45.73908423353426], - [4.967227282552781, 45.73936342979869] - ] - }, - "length": 0.0325780757880506, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2756", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1835, - "bus2": 3561, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963474814846975, 45.73751312892872], - [4.963462479145761, 45.73749734977482] - ] - }, - "length": 0.0019993821121835, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1246", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1835, - "bus2": 1836, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963474814846975, 45.73751312892872], - [4.963497048017847, 45.73750411099638] - ] - }, - "length": 0.0019997099976804, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2389", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3161, - "bus2": 3162, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962888818684407, 45.73897160313579], - [4.962863535513303, 45.73897033144124] - ] - }, - "length": 0.001972777034415, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2757", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3561, - "bus2": 3562, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963462479145761, 45.73749734977482], - [4.963265346496066, 45.73724528264585] - ] - }, - "length": 0.0319422828269449, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1247", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1836, - "bus2": 1837, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963497048017847, 45.73750411099638], - [4.963510125291912, 45.73749879999892], - [4.963301207348012, 45.73723494661714] - ] - }, - "length": 0.0347088808774535, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1458", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3162, - "bus2": 2082, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962863535513303, 45.73897033144124], - [4.962863811421402, 45.73898311628438], - [4.962886393534187, 45.73898328097514], - [4.962888281712707, 45.73900183413399], - [4.962866468943565, 45.73904580437819], - [4.962861951193626, 45.73907612852811], - [4.962847860515478, 45.7390938853876], - [4.962825142287602, 45.73910487687795] - ] - }, - "length": 0.0167941126161813, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1459", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2082, - "bus2": 2083, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962825142287602, 45.73910487687795], - [4.962799247099212, 45.73910478969897] - ] - }, - "length": 0.0020153568585986, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3604", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4459, - "bus2": 4460, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965485033672116, 45.73756303312003], - [4.96546027566689, 45.73752995597727] - ] - }, - "length": 0.0041507574815767, - "params_id": "S_AL_240_bt", - "ground": "ground" - }, - { - "id": "line3165", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4460, - "bus2": 4000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96546027566689, 45.73752995597727], - [4.965446080316029, 45.7375363465867], - [4.965496852966263, 45.73761481266828], - [4.965497978548156, 45.73764967660889], - [4.965547551761585, 45.73771890809485], - [4.965512430883249, 45.73773316122202] - ] - }, - "length": 0.0252178508163276, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2172", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4460, - "bus2": 2907, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96546027566689, 45.73752995597727], - [4.965431466504765, 45.73754366516221], - [4.965472463724308, 45.73761905663634], - [4.965472509552071, 45.73764477321136], - [4.965378471563087, 45.73767863466824] - ] - }, - "length": 0.0200545333061928, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3244", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4084, - "bus2": 4085, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967227282552781, 45.73936342979869], - [4.967229191598985, 45.73936759781802] - ] - }, - "length": 0.0004865014431651, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line3245", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4085, - "bus2": 4086, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.967229191598985, 45.73936759781802], - [4.967234131662368, 45.73937842801658] - ] - }, - "length": 0.0012636431424746, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2826", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3562, - "bus2": 3633, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963265346496066, 45.73724528264585], - [4.963242634353148, 45.73725369063208] - ] - }, - "length": 0.0019994910941135, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2827", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3633, - "bus2": 3634, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963242634353148, 45.73725369063208], - [4.962982391175434, 45.73735002242246], - [4.962946816651661, 45.73730494669624], - [4.96288579730475, 45.73732738442268] - ] - }, - "length": 0.033998515467894, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line1248", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1837, - "bus2": 1838, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963301207348012, 45.73723494661714], - [4.963299402071233, 45.73723267545407] - ] - }, - "length": 0.0002888989592709, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line1249", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1838, - "bus2": 1839, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.963299402071233, 45.73723267545407], - [4.963298088674567, 45.73723101389017] - ] - }, - "length": 0.0002110792502328, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2173", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2907, - "bus2": 2908, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965378471563087, 45.73767863466824], - [4.965350955659803, 45.73765779229969], - [4.965336428176132, 45.73765938380543] - ] - }, - "length": 0.0042991690906046, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line3166", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4000, - "bus2": 4001, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965512430883249, 45.73773316122202], - [4.965496973365225, 45.73772255032398] - ] - }, - "length": 0.0016846915662651, - "params_id": "S_AL_150_bt", - "ground": "ground" - }, - { - "id": "line2828", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3634, - "bus2": 3259, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96288579730475, 45.73732738442268], - [4.962834378987221, 45.73734628484756], - [4.962682042602933, 45.73733274648558] - ] - }, - "length": 0.0164709967796539, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2480", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3259, - "bus2": 3260, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962682042602933, 45.73733274648558], - [4.96269358237546, 45.73734882339289] - ] - }, - "length": 0.0019999002187924, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "line2481", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3260, - "bus2": 3261, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.96269358237546, 45.73734882339289], - [4.962914757208745, 45.73765675998811] - ] - }, - "length": 0.0383109844275194, - "params_id": "S_AL_95_bt", - "ground": "ground" - }, - { - "id": "mv_line513", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 505000, - "bus2": 873000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.934853888991207, 45.75111906308752], - [4.934834644632761, 45.75111833830388], - [4.934815400274816, 45.7511176135168], - [4.934796143073234, 45.75111688902378], - [4.934408207723045, 45.75110237305132], - [4.934405208834641, 45.75109114554304] - ] - }, - "length": 0.0344979481355189, - "params_id": "S_AL_240_SO", - "ground": "ground" - }, - { - "id": "mv_line522", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 873000, - "bus2": 740000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.934405208834641, 45.75109114554304], - [4.934012554090829, 45.74963878116863] - ] - }, - "length": 0.164291047512965, - "params_id": "S_AL_240_S3", - "ground": "ground" - }, - { - "id": "mv_line535", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 740000, - "bus2": 1291000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.934012554090829, 45.74963878116863], - [4.934089975267011, 45.74961898670725], - [4.934271103007967, 45.74957267733033], - [4.934362391718408, 45.74951109178252], - [4.934444593253748, 45.74939484320697], - [4.934510542332508, 45.74934830938341], - [4.934700162559126, 45.74911618244491], - [4.93600772006941, 45.7480804416568], - [4.936522791471793, 45.74733488887927], - [4.937125734895893, 45.74546568990075], - [4.937140380788406, 45.74542028316572], - [4.937316748689931, 45.74487348286667], - [4.938907342243382, 45.7450139476745], - [4.941973039404839, 45.74502744476446], - [4.94423254711822, 45.74512080067002], - [4.945957349084773, 45.74537956929375], - [4.94661141421717, 45.74545347790473], - [4.947713015293973, 45.74547556567691], - [4.948514022793406, 45.7454218233143], - [4.948511717973904, 45.74537326847669], - [4.947946666883481, 45.74541439243114], - [4.947923168242962, 45.7454139309383] - ] - }, - "length": 1.5369655813706598, - "params_id": "S_AL_240_S3", - "ground": "ground" - }, - { - "id": "mv_line746", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1291000, - "bus2": 1298000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.947923168242962, 45.7454139309383], - [4.947925694069067, 45.74541893105686], - [4.94794484193671, 45.74542849533407], - [4.948542625889133, 45.74537434957136], - [4.948544760006484, 45.74541930775377], - [4.949076751708565, 45.74538622349836], - [4.950342397648638, 45.74539726599526], - [4.950783116637014, 45.74539150337244], - [4.951100203642397, 45.74538141754201], - [4.950552409384916, 45.74327504293316] - ] - }, - "length": 0.4907623183893089, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line812", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1298000, - "bus2": 1319000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950552409384916, 45.74327504293316], - [4.949906323306207, 45.74079051368596], - [4.9495977722481, 45.74087151043574], - [4.949459670739951, 45.74061638057695], - [4.949470397586742, 45.74060376270168], - [4.949480260064897, 45.74059216412196] - ] - }, - "length": 0.339788688417405, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line861", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1319000, - "bus2": 953000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.949480260064897, 45.74059216412196], - [4.949508035055415, 45.74058553146511], - [4.949525960416786, 45.74059049708699], - [4.949550034971421, 45.74059717386969], - [4.949642047994629, 45.74074805831734], - [4.951974042481999, 45.74017885100903], - [4.951928161380414, 45.74010610723776], - [4.951952004647032, 45.74009384958142], - [4.951951711472315, 45.74009336132657] - ] - }, - "length": 0.2251476354568539, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line889", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 953000, - "bus2": 954000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.951951711472315, 45.74009336132657], - [4.95135518144123, 45.73908607705976], - [4.950827523652318, 45.73920908836617], - [4.950700727347117, 45.73896168111497] - ] - }, - "length": 0.193697358758526, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line921", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 954000, - "bus2": 1315000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950700727347117, 45.73896168111497], - [4.950683002753226, 45.73892710485574], - [4.950687188982982, 45.73891022842621], - [4.950690491372931, 45.73889693720407] - ] - }, - "length": 0.007486392724792, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line924", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1315000, - "bus2": 1288000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.950690491372931, 45.73889693720407], - [4.950711313253716, 45.73888927797029], - [4.950728832749745, 45.738894909956], - [4.95076690045993, 45.73890714755486], - [4.950899600369789, 45.73912944686171], - [4.950900983143112, 45.73913176406161], - [4.953593777785205, 45.7384740021168], - [4.953440535815594, 45.73822569311434], - [4.953029680646615, 45.73755999185273], - [4.952985755893911, 45.73755325651908], - [4.952966927517592, 45.73755037388134] - ] - }, - "length": 0.369445414461516, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line994", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1288000, - "bus2": 1287000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.952966927517592, 45.73755037388134], - [4.952970678553071, 45.73753247231445], - [4.953016249644159, 45.73753652280846], - [4.953055307379572, 45.73752687170771], - [4.953208603799049, 45.73775342303767], - [4.953447302371143, 45.73810549028116], - [4.953663318105447, 45.73841276308804], - [4.953761084376749, 45.73847794111495], - [4.953925398058722, 45.73844435905789], - [4.953998793332333, 45.73844390760684], - [4.954060320030075, 45.73845420174916], - [4.954767759595066, 45.73863168464968], - [4.955017983505683, 45.73856131467854], - [4.955161038663632, 45.7383384463276], - [4.955242819176544, 45.73825945760687], - [4.955409783643996, 45.73815572513228], - [4.955594842131863, 45.73784388552754], - [4.955777692133985, 45.73761533480327], - [4.955829734353092, 45.73752495050727], - [4.95586278507185, 45.73745716233029], - [4.955892585629407, 45.73733756484492], - [4.955886559278371, 45.73717826937097], - [4.955798001969372, 45.73684202052682], - [4.955706183839841, 45.73650205808818], - [4.955615984735573, 45.7361636781212], - [4.955528804272737, 45.73582360739611], - [4.955507372293894, 45.73573007698997], - [4.955536441198181, 45.73564346050048], - [4.955563623646242, 45.73559851135201], - [4.955578510902217, 45.73559098066524], - [4.955566421845806, 45.73554386044366], - [4.955773753814144, 45.73545687330306], - [4.955825102506913, 45.73544919373419], - [4.955876823497322, 45.735449606879], - [4.955910336807397, 45.73545638601512], - [4.955986417604017, 45.73547408969552], - [4.956017067965745, 45.73548121467279], - [4.956043948302113, 45.73551202979766] - ] - }, - "length": 0.630121475715793, - "params_id": "S_AL_240_SO", - "ground": "ground" - }, - { - "id": "mv_line1076", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1287000, - "bus2": 1286000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956043948302113, 45.73551202979766], - [4.956031484106162, 45.7355207732151], - [4.956016138640789, 45.73550463148617], - [4.955974360377148, 45.73549570487705], - [4.955888414300881, 45.73547734028486], - [4.955812288894236, 45.73547436417319], - [4.955759296562427, 45.73548694295187], - [4.955591431270563, 45.73556210811316], - [4.95560115523951, 45.73560193823433], - [4.955575235468778, 45.73561264290327], - [4.955533428485482, 45.73573304256136], - [4.955623354301448, 45.73609514809851], - [4.955702063808622, 45.73636983992795], - [4.95579335174877, 45.73671568376572], - [4.95587561573046, 45.73703098876224], - [4.955900832890308, 45.73714298307286], - [4.955918780146928, 45.73731803214995], - [4.955880878259301, 45.7374540485829], - [4.955818094050436, 45.73758504672529], - [4.95571406195425, 45.73772208434256], - [4.955612171333923, 45.73784848601255], - [4.955488163126232, 45.73805444663595], - [4.955430610837714, 45.73815900180517], - [4.955424792507604, 45.73821907914153], - [4.955448026578344, 45.738278064482], - [4.955532854833927, 45.73834146354646], - [4.955646676128739, 45.73837820738113], - [4.955771405970204, 45.73837755597182], - [4.955833239579399, 45.73836539202305], - [4.955871376723359, 45.73835341201361], - [4.956026723916627, 45.73843018855734], - [4.956176351271163, 45.73874759390392], - [4.956181431593408, 45.73878302260706], - [4.956166703989995, 45.73883092176693], - [4.956127443639037, 45.73891572395237], - [4.956128112590414, 45.73894355025951], - [4.956227263963253, 45.73907338834777], - [4.956268709832248, 45.7391111907987], - [4.956296113861096, 45.73912191115127], - [4.956540133369497, 45.73917989229741] - ] - }, - "length": 0.5085815051709539, - "params_id": "S_AL_240_SO", - "ground": "ground" - }, - { - "id": "mv_line1119", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1286000, - "bus2": 1285000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956540133369497, 45.73917989229741], - [4.956686644194016, 45.73957834821236], - [4.956784880233747, 45.73956255244881], - [4.956790274849269, 45.73955975303269], - [4.956805769545054, 45.73955173093524] - ] - }, - "length": 0.055597773628533, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1125", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1285000, - "bus2": 1275000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956805769545054, 45.73955173093524], - [4.956802389176359, 45.73954094492941], - [4.956783514974541, 45.73953819900303], - [4.956773365608019, 45.73953671664481], - [4.956724868276837, 45.73954414996297], - [4.956588705287621, 45.73916836158606], - [4.956590211563276, 45.73916813738952] - ] - }, - "length": 0.049381536100774, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1275000, - "bus2": 1276000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.956590211563276, 45.73916813738952], - [4.9574004828912, 45.73904588982978], - [4.95791271659061, 45.73897721706705], - [4.958522714313755, 45.73893686348068], - [4.958503536796873, 45.73884032825598], - [4.95850242110051, 45.73883471931859], - [4.958507278623495, 45.73882766560496] - ] - }, - "length": 0.1651155909781519, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1141", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1276000, - "bus2": 929000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.958507278623495, 45.73882766560496], - [4.95853078933913, 45.73882384877223], - [4.958540730331404, 45.73882932354635], - [4.958541745828243, 45.73883390864182], - [4.958563677530362, 45.73893320602062], - [4.958670666082522, 45.73892603465969] - ] - }, - "length": 0.021032388089923, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 929000, - "bus2": 914000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.958670666082522, 45.73892603465969], - [4.959883573875087, 45.7388447523938], - [4.959942510917832, 45.73878666466919], - [4.959945775117695, 45.7387863723316] - ] - }, - "length": 0.1030040053238849, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1150", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 914000, - "bus2": 913000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959945775117695, 45.7387863723316], - [4.960108931149272, 45.73877197263126], - [4.959402413398822, 45.73805485525463], - [4.95935517406077, 45.73798696194202] - ] - }, - "length": 0.118024219916963, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1157", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 913000, - "bus2": 1282000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.95935517406077, 45.73798696194202], - [4.959263360437473, 45.73785502868565], - [4.959254914727904, 45.73784289385675] - ] - }, - "length": 0.017812660865478, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1159", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1282000, - "bus2": 1279000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959254914727904, 45.73784289385675], - [4.959262619023578, 45.7378381229995], - [4.959278769029432, 45.73784548696938], - [4.959457101250193, 45.73792677160319] - ] - }, - "length": 0.01806061181738, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1161", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1279000, - "bus2": 1316000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.959457101250193, 45.73792677160319], - [4.959539506826824, 45.73796433574488], - [4.959767785652898, 45.73744050795777], - [4.959828133973272, 45.73738508776525], - [4.960704666805936, 45.73708464619889], - [4.960720678055627, 45.73708613515478], - [4.960739787801594, 45.73708790272099], - [4.960749536320644, 45.73710147424123] - ] - }, - "length": 0.154982241719371, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1167", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1316000, - "bus2": 1304000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960749536320644, 45.73710147424123], - [4.960740174659695, 45.73711326920607], - [4.96072979525635, 45.73712636619542], - [4.959872308799626, 45.73742186194769], - [4.959813628571298, 45.73745833980615], - [4.959618476114199, 45.7379219828892], - [4.959625846049425, 45.73804963341353], - [4.960267477108633, 45.73878086860401], - [4.960266999084436, 45.73878216700876] - ] - }, - "length": 0.247114507605945, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1184", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1304000, - "bus2": 1303000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960266999084436, 45.73878216700876], - [4.960249289102349, 45.73883080263122], - [4.960179906024735, 45.73885852925228], - [4.960067246898769, 45.73886836406428], - [4.960077303420673, 45.73902537805807], - [4.960077316709229, 45.7390256567973], - [4.960091104079988, 45.73903468717842] - ] - }, - "length": 0.0396010930357249, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1186", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1303000, - "bus2": 1283000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.960091104079988, 45.73903468717842], - [4.96011968477193, 45.73903501825975], - [4.960132662390182, 45.73902706352871], - [4.960133670766166, 45.73902583374149], - [4.960307672403199, 45.73881503520587], - [4.960975108547744, 45.73876612412163], - [4.962445412364442, 45.7387047284812], - [4.962445409300398, 45.73870412544466] - ] - }, - "length": 0.195489447579978, - "params_id": "S_AL_150_PU", - "ground": "ground" - }, - { - "id": "mv_line1196", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1283000, - "bus2": 1284000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962445409300398, 45.73870412544466], - [4.962445872173599, 45.7386066001075], - [4.962452235162686, 45.73859716156536], - [4.962460458941739, 45.73858496099791] - ] - }, - "length": 0.013499202927542, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1197", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1284000, - "bus2": 952000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962460458941739, 45.73858496099791], - [4.962478492915574, 45.73858437702606], - [4.962488315959219, 45.7385959933209], - [4.962500019197009, 45.73860983403072], - [4.962506920894191, 45.73870058887422], - [4.962508976327063, 45.73870055878569] - ] - }, - "length": 0.0135495917010089, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1198", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1284000, - "bus2": 1295000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962460458941739, 45.73858496099791], - [4.96248306372969, 45.7385637824033], - [4.962483662938447, 45.73856340831882], - [4.962483200481335, 45.73855048381665], - [4.962475676465369, 45.73834215542708] - ] - }, - "length": 0.0246617524093749, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1199", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 952000, - "bus2": 923000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.962508976327063, 45.73870055878569], - [4.964271843789176, 45.73867098248862], - [4.964710680877293, 45.73864011135382] - ] - }, - "length": 0.171563703605549, - "params_id": "S_AL_150_PU", - "ground": "ground" - }, - { - "id": "mv_line1206", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 923000, - "bus2": 922000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964710680877293, 45.73864011135382], - [4.964923994213112, 45.7386251061686], - [4.964922099667358, 45.73862204497594] - ] - }, - "length": 0.017055959863808, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1207", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 922000, - "bus2": 1321000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964922099667358, 45.73862204497594], - [4.964875228430449, 45.73854613373273], - [4.965040315249011, 45.73850356051809], - [4.965042911714355, 45.73850355371846], - [4.965062180606872, 45.73850352551388], - [4.965069722600271, 45.7385142048397] - ] - }, - "length": 0.024585707139325, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1213", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1321000, - "bus2": 912000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965069722600271, 45.7385142048397], - [4.965057995696578, 45.73852491237226], - [4.965053117652362, 45.73852936540094], - [4.964928692668426, 45.73856198475284], - [4.964967023796365, 45.73861896752438] - ] - }, - "length": 0.019464487402351, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1214", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 912000, - "bus2": 911000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.964967023796365, 45.73861896752438], - [4.964967439090402, 45.73861958791228], - [4.965999144972133, 45.73853954813616] - ] - }, - "length": 0.080862341930947, - "params_id": "S_AL_150_PU", - "ground": "ground" - }, - { - "id": "mv_line1219", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 911000, - "bus2": 924000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.965999144972133, 45.73853954813616], - [4.966075646839055, 45.73853361502763] - ] - }, - "length": 0.005990345667753, - "params_id": "S_AL_150_S3", - "ground": "ground" - }, - { - "id": "mv_line1220", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 924000, - "bus2": 1294000, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.966075646839055, 45.73853361502763], - [4.966446756203762, 45.73850481893744], - [4.967412346930341, 45.73842727847661], - [4.968632733183615, 45.73830144670887], - [4.968602142577012, 45.73817254049829], - [4.968622530082306, 45.73813569574117], - [4.968629499909648, 45.7381231100194] - ] - }, - "length": 0.221121252329989, - "params_id": "S_AL_150_PU", - "ground": "ground" - } - ], - "loads": [ - { - "id": 314, - "bus": 9, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2432.3856949832066, 279.37897303968185] - ] - }, - { - "id": 47, - "bus": 2607, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2433.179637243938, 272.3777388794874] - ] - }, - { - "id": 285, - "bus": 2607, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2381.108860594792, 569.9766431465541], - [0.0, 0.0] - ] - }, - { - "id": 175, - "bus": 2608, - "phases": "abcn", - "powers": [ - [2421.252055695705, 363.44361670686527], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 10, - "bus": 2609, - "phases": "abcn", - "powers": [ - [2411.4241442242223, 423.77632825362235], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 493, - "bus": 2609, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2417.407333694204, 388.1939756579451], - [0.0, 0.0] - ] - }, - { - "id": 549, - "bus": 929, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2363.7697401405635, 638.0794584779061], - [0.0, 0.0] - ] - }, - { - "id": 217, - "bus": 2382, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2344.6131780238015, 705.2246629073417] - ] - }, - { - "id": 422, - "bus": 2382, - "phases": "abcn", - "powers": [ - [2422.2772138757127, 356.54716220180387], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 501, - "bus": 2382, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2346.999224171061, 697.2427278043713], - [0.0, 0.0] - ] - }, - { - "id": 207, - "bus": 2546, - "phases": "abcn", - "powers": [ - [2404.6433934878683, 460.69830680261157], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 223, - "bus": 2546, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2396.4470921212837, 501.5915812681552], - [0.0, 0.0] - ] - }, - { - "id": 430, - "bus": 2546, - "phases": "abcn", - "powers": [ - [2327.777886666886, 758.9485424455935], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 637, - "bus": 2546, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2348.7344957318965, 691.3747524278559] - ] - }, - { - "id": 577, - "bus": 2596, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2439.909365920717, 203.4577740662893], - [0.0, 0.0] - ] - }, - { - "id": 672, - "bus": 2596, - "phases": "abcn", - "powers": [ - [2331.524085063689, 747.3608368810686], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 216, - "bus": 2597, - "phases": "abcn", - "powers": [ - [2350.3642133275666, 685.814001347839], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 5, - "bus": 2598, - "phases": "abcn", - "powers": [ - [2337.4287683016405, 728.6834243013363], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 70, - "bus": 2598, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2334.6329794111475, 737.5917781411828], - [0.0, 0.0] - ] - }, - { - "id": 345, - "bus": 2962, - "phases": "abcn", - "powers": [ - [2387.448621623947, 542.8092287733876], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 136, - "bus": 2963, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2353.1887884311063, 676.0586555453502], - [0.0, 0.0] - ] - }, - { - "id": 407, - "bus": 2963, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2447.879014903639, 49.40757158607277], - [0.0, 0.0] - ] - }, - { - "id": 100, - "bus": 2964, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.9950186667766, 733.2666994345574] - ] - }, - { - "id": 128, - "bus": 2964, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2351.676036404424, 681.3021352798057], - [0.0, 0.0] - ] - }, - { - "id": 299, - "bus": 2964, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2415.8795215821624, 397.59139444357515], - [0.0, 0.0] - ] - }, - { - "id": 497, - "bus": 3555, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2328.253019965499, 757.4897060404037], - [0.0, 0.0] - ] - }, - { - "id": 526, - "bus": 3555, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2437.243578754593, 233.2306102447708], - [0.0, 0.0] - ] - }, - { - "id": 607, - "bus": 3556, - "phases": "abcn", - "powers": [ - [2434.396168150889, 261.2816033093667], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 361, - "bus": 3575, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2423.4216926378517, 348.68335117687093], - [0.0, 0.0] - ] - }, - { - "id": 489, - "bus": 3575, - "phases": "abcn", - "powers": [ - [2374.3464039458304, 597.5214923374285], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 39, - "bus": 3576, - "phases": "abcn", - "powers": [ - [2344.669365052958, 705.0378346711638], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 586, - "bus": 3576, - "phases": "abcn", - "powers": [ - [2377.3532745302887, 585.4435820946015], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 611, - "bus": 3576, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2366.592550102731, 627.5288690840432] - ] - }, - { - "id": 94, - "bus": 3577, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2384.3266178761673, 556.3626146883353] - ] - }, - { - "id": 380, - "bus": 3577, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2417.1818418777575, 389.59558908193117] - ] - }, - { - "id": 119, - "bus": 4301, - "phases": "abcn", - "powers": [ - [2403.6070931071727, 466.0748026878647], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 214, - "bus": 4301, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2353.4077282518274, 675.2961160411169], - [0.0, 0.0] - ] - }, - { - "id": 270, - "bus": 4301, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2441.1626527016997, 187.82354162895567], - [0.0, 0.0] - ] - }, - { - "id": 318, - "bus": 4301, - "phases": "abcn", - "powers": [ - [2358.651427399194, 656.7466968043236], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 462, - "bus": 4301, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2399.4602324065604, 486.9736880316005], - [0.0, 0.0] - ] - }, - { - "id": 481, - "bus": 4301, - "phases": "abcn", - "powers": [ - [2345.228645221082, 703.1752138479662], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 568, - "bus": 4301, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2384.792071391344, 554.3641005373865] - ] - }, - { - "id": 77, - "bus": 4302, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2405.9539904514168, 453.804115854569] - ] - }, - { - "id": 265, - "bus": 4302, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2361.721742622243, 645.6184555610239] - ] - }, - { - "id": 29, - "bus": 5147, - "phases": "abcn", - "powers": [ - [2426.562854428562, 326.1065673106781], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 661, - "bus": 5147, - "phases": "abcn", - "powers": [ - [2389.384184414002, 534.2246709090471], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 92, - "bus": 5148, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2416.02682277211, 396.6953130317368] - ] - }, - { - "id": 625, - "bus": 5148, - "phases": "abcn", - "powers": [ - [2408.124281383738, 442.1427655697861], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 87, - "bus": 5149, - "phases": "abcn", - "powers": [ - [2372.3521664824248, 605.3907646485777], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 93, - "bus": 5150, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2364.349851343492, 635.9265367852267] - ] - }, - { - "id": 529, - "bus": 5150, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2338.6292858605343, 724.8212490339195], - [0.0, 0.0] - ] - }, - { - "id": 41, - "bus": 5151, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2372.6761073451953, 604.1199130709851], - [0.0, 0.0] - ] - }, - { - "id": 434, - "bus": 5151, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.8360513044254, 571.1151167188597], - [0.0, 0.0] - ] - }, - { - "id": 646, - "bus": 5177, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2392.3307123624213, 520.870946034768] - ] - }, - { - "id": 519, - "bus": 5178, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.0933175492796, 574.2025596363261], - [0.0, 0.0] - ] - }, - { - "id": 594, - "bus": 5178, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2392.564605713904, 519.7955244331347] - ] - }, - { - "id": 19, - "bus": 5179, - "phases": "abcn", - "powers": [ - [2406.9098162848377, 448.70693777490595], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 58, - "bus": 5179, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2419.7112944431856, 373.5639587536871] - ] - }, - { - "id": 97, - "bus": 5179, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2334.278394779038, 738.7131753281797] - ] - }, - { - "id": 140, - "bus": 5179, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2368.9456175720775, 618.5866477072499], - [0.0, 0.0] - ] - }, - { - "id": 152, - "bus": 5179, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2438.678438150586, 217.71599627740528] - ] - }, - { - "id": 215, - "bus": 5179, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2330.8870581355213, 749.3452488352601] - ] - }, - { - "id": 331, - "bus": 5179, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2420.548725681698, 368.0986910277618], - [0.0, 0.0] - ] - }, - { - "id": 356, - "bus": 5179, - "phases": "abcn", - "powers": [ - [2403.2247262521164, 468.04240712363236], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 106, - "bus": 156, - "phases": "abcn", - "powers": [ - [2382.0615020314785, 565.9821377704243], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 171, - "bus": 156, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2376.6941060660924, 588.1138545607836], - [0.0, 0.0] - ] - }, - { - "id": 643, - "bus": 156, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2347.0951006057157, 696.9199153764292], - [0.0, 0.0] - ] - }, - { - "id": 124, - "bus": 157, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2436.6166245419927, 239.69189544335896] - ] - }, - { - "id": 350, - "bus": 157, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2421.632152176491, 360.9023403646745], - [0.0, 0.0] - ] - }, - { - "id": 395, - "bus": 157, - "phases": "abcn", - "powers": [ - [2418.28108248391, 382.7131900471866], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 498, - "bus": 260, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2396.44249312855, 501.61355330918263], - [0.0, 0.0] - ] - }, - { - "id": 634, - "bus": 260, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2342.815182816766, 711.1749425414863] - ] - }, - { - "id": 582, - "bus": 261, - "phases": "abcn", - "powers": [ - [2357.2886225077796, 661.6215911916864], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 57, - "bus": 459, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2385.4531098160455, 551.5126839924912] - ] - }, - { - "id": 275, - "bus": 459, - "phases": "abcn", - "powers": [ - [2340.4594095332614, 718.8897913191299], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 457, - "bus": 459, - "phases": "abcn", - "powers": [ - [2378.828541356629, 579.4200122214775], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 544, - "bus": 459, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2394.38131536513, 511.36180573640195], - [0.0, 0.0] - ] - }, - { - "id": 593, - "bus": 459, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2445.27481231421, 123.22285501216675] - ] - }, - { - "id": 654, - "bus": 671, - "phases": "abcn", - "powers": [ - [2363.8217250071716, 637.8868489942113], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 312, - "bus": 809, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2356.857086472276, 663.1571862545551], - [0.0, 0.0] - ] - }, - { - "id": 524, - "bus": 1961, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2398.685287531307, 490.7766000091022] - ] - }, - { - "id": 573, - "bus": 1961, - "phases": "abcn", - "powers": [ - [2425.938599168151, 330.71844944259215], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 251, - "bus": 2042, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2353.0862850135986, 676.4153420913404], - [0.0, 0.0] - ] - }, - { - "id": 13, - "bus": 2139, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2429.708012399468, 301.780970601978], - [0.0, 0.0] - ] - }, - { - "id": 75, - "bus": 2139, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2378.727504630869, 579.8346647521536] - ] - }, - { - "id": 448, - "bus": 2140, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2339.9651445600243, 720.4969826306201] - ] - }, - { - "id": 21, - "bus": 2192, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2359.987918964805, 651.9277583258859], - [0.0, 0.0] - ] - }, - { - "id": 262, - "bus": 2192, - "phases": "abcn", - "powers": [ - [2362.224862022134, 643.7751789096516], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 553, - "bus": 2192, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2420.3283212243914, 369.5451220281006] - ] - }, - { - "id": 3, - "bus": 2193, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2416.630417120084, 393.0015353477039] - ] - }, - { - "id": 619, - "bus": 2193, - "phases": "abcn", - "powers": [ - [2366.1022892969754, 629.3748774134983], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 114, - "bus": 2205, - "phases": "abcn", - "powers": [ - [2358.334323721875, 657.8844862823025], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 309, - "bus": 2205, - "phases": "abcn", - "powers": [ - [2366.332896868811, 628.5072799356462], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 115, - "bus": 2206, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2393.683720049321, 514.6173608677497] - ] - }, - { - "id": 504, - "bus": 2206, - "phases": "abcn", - "powers": [ - [2379.293734123972, 577.50680211929], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 441, - "bus": 2207, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2413.1700724726534, 413.7184804404721], - [0.0, 0.0] - ] - }, - { - "id": 44, - "bus": 2909, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2434.2735123314396, 262.42188722970695] - ] - }, - { - "id": 324, - "bus": 2909, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2441.8968165425167, 178.02448453840876], - [0.0, 0.0] - ] - }, - { - "id": 486, - "bus": 2909, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2378.5882471563787, 580.4056600561275], - [0.0, 0.0] - ] - }, - { - "id": 143, - "bus": 2910, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2347.818773956216, 694.4780661722697], - [0.0, 0.0] - ] - }, - { - "id": 313, - "bus": 2910, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2431.8400862482385, 284.0890259263862], - [0.0, 0.0] - ] - }, - { - "id": 408, - "bus": 2910, - "phases": "abcn", - "powers": [ - [2354.702658837464, 670.7668508501472], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 639, - "bus": 2911, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2420.82898544707, 366.2510108586108], - [0.0, 0.0] - ] - }, - { - "id": 228, - "bus": 2912, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2421.768043876054, 359.98933511479936] - ] - }, - { - "id": 179, - "bus": 2913, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2342.281925901524, 712.9292807359587], - [0.0, 0.0] - ] - }, - { - "id": 154, - "bus": 3627, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2436.1414267154255, 244.47439288517413] - ] - }, - { - "id": 399, - "bus": 3627, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2371.080545228807, 610.35221616138], - [0.0, 0.0] - ] - }, - { - "id": 612, - "bus": 3627, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2379.449800589041, 576.8634380964165], - [0.0, 0.0] - ] - }, - { - "id": 218, - "bus": 3628, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2407.9131033974227, 443.29140102492005], - [0.0, 0.0] - ] - }, - { - "id": 266, - "bus": 3628, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2432.2747483374987, 280.34323308294887] - ] - }, - { - "id": 444, - "bus": 3628, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2402.386949889882, 472.3237477985124], - [0.0, 0.0] - ] - }, - { - "id": 59, - "bus": 3629, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2384.1422380268355, 557.1521951783332] - ] - }, - { - "id": 127, - "bus": 3629, - "phases": "abcn", - "powers": [ - [2363.6953437230104, 638.3549966889924], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 659, - "bus": 3629, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2404.2815577248275, 462.5829340993052] - ] - }, - { - "id": 121, - "bus": 3630, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2445.9044692740313, 110.01866623879525] - ] - }, - { - "id": 543, - "bus": 3630, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2412.733367540999, 416.25770490156043] - ] - }, - { - "id": 104, - "bus": 3631, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2404.9801850641957, 458.936911987073] - ] - }, - { - "id": 319, - "bus": 3631, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2379.5923833200695, 576.2749942351782], - [0.0, 0.0] - ] - }, - { - "id": 388, - "bus": 3631, - "phases": "abcn", - "powers": [ - [2437.314319207233, 232.49019145552435], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 601, - "bus": 3632, - "phases": "abcn", - "powers": [ - [2369.0867563827105, 618.0458886423338], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 208, - "bus": 3967, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2348.2057657826176, 693.1684220165499], - [0.0, 0.0] - ] - }, - { - "id": 605, - "bus": 3967, - "phases": "abcn", - "powers": [ - [2413.6161353694456, 411.10817410981576], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 38, - "bus": 3968, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2386.3743573684947, 547.5127452669474] - ] - }, - { - "id": 552, - "bus": 3968, - "phases": "abcn", - "powers": [ - [2335.405165187275, 735.1431793550424], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 579, - "bus": 3968, - "phases": "abcn", - "powers": [ - [2361.0781563082614, 647.9681470100406], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 541, - "bus": 4357, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2363.9369236235993, 637.4598033324438], - [0.0, 0.0] - ] - }, - { - "id": 590, - "bus": 4358, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2378.505646205865, 580.7440664375864], - [0.0, 0.0] - ] - }, - { - "id": 628, - "bus": 4358, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2408.969581674959, 437.5138104110737] - ] - }, - { - "id": 363, - "bus": 4784, - "phases": "abcn", - "powers": [ - [2390.9834873249956, 527.0206286995289], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 428, - "bus": 4784, - "phases": "abcn", - "powers": [ - [2392.091272742834, 521.9694652019532], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 511, - "bus": 4784, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2350.108495035974, 686.6897707810949], - [0.0, 0.0] - ] - }, - { - "id": 274, - "bus": 4979, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2442.1495992857176, 174.52253276941764] - ] - }, - { - "id": 583, - "bus": 4979, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2441.0601088426683, 189.1515919908243] - ] - }, - { - "id": 191, - "bus": 4980, - "phases": "abcn", - "powers": [ - [2372.849453203246, 603.4386896518155], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 192, - "bus": 4981, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2352.150573451028, 679.6620186163454] - ] - }, - { - "id": 556, - "bus": 4981, - "phases": "abcn", - "powers": [ - [2348.0976626474953, 693.5345315159251], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 632, - "bus": 4981, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2381.037718588979, 570.2737609185908] - ] - }, - { - "id": 91, - "bus": 4982, - "phases": "abcn", - "powers": [ - [2362.2813414690986, 643.567901221465], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 131, - "bus": 4982, - "phases": "abcn", - "powers": [ - [2431.8027622216177, 284.4083426817042], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 412, - "bus": 4982, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2406.133506625306, 452.8513310465741], - [0.0, 0.0] - ] - }, - { - "id": 371, - "bus": 4983, - "phases": "abcn", - "powers": [ - [2380.034767019346, 574.4451997491249], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 40, - "bus": 4984, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2377.639051982852, 584.2818825034103] - ] - }, - { - "id": 322, - "bus": 4984, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2393.3917958425095, 515.9733436229154], - [0.0, 0.0] - ] - }, - { - "id": 52, - "bus": 4985, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2442.6850723528623, 166.8604717724843] - ] - }, - { - "id": 122, - "bus": 4985, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2380.047710154057, 574.3915712526384] - ] - }, - { - "id": 571, - "bus": 4985, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.9638573613975, 570.5820621736881], - [0.0, 0.0] - ] - }, - { - "id": 222, - "bus": 4986, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2339.192029825341, 723.0030617758442], - [0.0, 0.0] - ] - }, - { - "id": 204, - "bus": 4987, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2438.527956512574, 219.39504334021618], - [0.0, 0.0] - ] - }, - { - "id": 294, - "bus": 4987, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2398.803326102523, 490.1993292683268], - [0.0, 0.0] - ] - }, - { - "id": 558, - "bus": 4987, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2379.538189714576, 576.498728034608] - ] - }, - { - "id": 165, - "bus": 106, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2336.3392766197417, 732.1690817424518] - ] - }, - { - "id": 365, - "bus": 290, - "phases": "abcn", - "powers": [ - [2335.6259190335977, 734.4415198462744], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 284, - "bus": 2401, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.148059172267, 735.9594564102287] - ] - }, - { - "id": 159, - "bus": 2402, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2395.627929430475, 505.48946919624245] - ] - }, - { - "id": 304, - "bus": 2402, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2389.48967374922, 533.7526381962815], - [0.0, 0.0] - ] - }, - { - "id": 429, - "bus": 2402, - "phases": "abcn", - "powers": [ - [2406.884637663093, 448.8419774453408], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 432, - "bus": 2402, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2332.3733310950993, 744.7062670153874], - [0.0, 0.0] - ] - }, - { - "id": 494, - "bus": 2402, - "phases": "abcn", - "powers": [ - [2372.503271378119, 604.7983193063359], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 132, - "bus": 2403, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2328.9930207043503, 755.2114202301697], - [0.0, 0.0] - ] - }, - { - "id": 235, - "bus": 2403, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2389.8303539762446, 532.2251957108213] - ] - }, - { - "id": 472, - "bus": 2405, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2411.982298153164, 420.587889901061], - [0.0, 0.0] - ] - }, - { - "id": 474, - "bus": 2405, - "phases": "abcn", - "powers": [ - [2395.2870956713778, 507.10206965247124], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 618, - "bus": 2405, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2361.9212577834915, 644.8881699690986] - ] - }, - { - "id": 660, - "bus": 2406, - "phases": "abcn", - "powers": [ - [2378.919347755168, 579.0470763347058], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 80, - "bus": 2410, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2380.877469719985, 570.9424260951416] - ] - }, - { - "id": 247, - "bus": 2410, - "phases": "abcn", - "powers": [ - [2355.505239204915, 667.9429974285529], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 139, - "bus": 2411, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2366.1441621672707, 629.2174374390694], - [0.0, 0.0] - ] - }, - { - "id": 509, - "bus": 2717, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2368.939938055252, 618.6083976332874], - [0.0, 0.0] - ] - }, - { - "id": 563, - "bus": 2717, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2408.9962632454317, 437.36687506622076], - [0.0, 0.0] - ] - }, - { - "id": 51, - "bus": 2719, - "phases": "abcn", - "powers": [ - [2371.732816762633, 607.8126566852908], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 169, - "bus": 2719, - "phases": "abcn", - "powers": [ - [2328.9488306509243, 755.3476841464051], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 225, - "bus": 2719, - "phases": "abcn", - "powers": [ - [2398.4426585305864, 491.9609674317439], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 291, - "bus": 2719, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2340.0094883543757, 720.3529510921277], - [0.0, 0.0] - ] - }, - { - "id": 390, - "bus": 3034, - "phases": "abcn", - "powers": [ - [2422.2427187544718, 356.7814333406223], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 650, - "bus": 3034, - "phases": "abcn", - "powers": [ - [2354.939680377301, 669.9342367129025], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 424, - "bus": 5249, - "phases": "abcn", - "powers": [ - [2427.5440715177315, 318.72019166466276], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 282, - "bus": 5250, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2351.7921699267663, 680.9011449592348] - ] - }, - { - "id": 674, - "bus": 5251, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2376.9567891505153, 587.0512773573676] - ] - }, - { - "id": 31, - "bus": 54, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2433.2426445386895, 271.8142978837007] - ] - }, - { - "id": 464, - "bus": 54, - "phases": "abcn", - "powers": [ - [2406.3556241121187, 451.6695584601863], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 72, - "bus": 220, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2342.156170271647, 713.342311792939] - ] - }, - { - "id": 108, - "bus": 220, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2358.4242395638394, 657.562077657592] - ] - }, - { - "id": 164, - "bus": 220, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2383.885624528723, 558.249145902567] - ] - }, - { - "id": 550, - "bus": 220, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2441.9711890934377, 177.00138805451888], - [0.0, 0.0] - ] - }, - { - "id": 415, - "bus": 504, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.397870739917, 572.9387024041167], - [0.0, 0.0] - ] - }, - { - "id": 28, - "bus": 522, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2365.6570309092504, 631.0464260617244] - ] - }, - { - "id": 68, - "bus": 522, - "phases": "abcn", - "powers": [ - [2334.649596074852, 737.5391808461262], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 176, - "bus": 522, - "phases": "abcn", - "powers": [ - [2424.396929295532, 341.83667000197477], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 404, - "bus": 851, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2333.6976613809675, 740.5457480808641] - ] - }, - { - "id": 465, - "bus": 935, - "phases": "abcn", - "powers": [ - [2368.8192647792903, 619.0703276253414], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 66, - "bus": 3513, - "phases": "abcn", - "powers": [ - [2367.346757608022, 624.6776040314155], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 292, - "bus": 3513, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2344.1978175357704, 706.6041126374621] - ] - }, - { - "id": 396, - "bus": 3513, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2414.6165001508375, 405.191235017447] - ] - }, - { - "id": 663, - "bus": 3513, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2441.948525597641, 177.31378419951207], - [0.0, 0.0] - ] - }, - { - "id": 138, - "bus": 3514, - "phases": "abcn", - "powers": [ - [2328.8556756345433, 755.6348468674661], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 301, - "bus": 3515, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2428.2958185165385, 312.9412045588424] - ] - }, - { - "id": 257, - "bus": 13, - "phases": "abcn", - "powers": [ - [2414.257521386525, 407.32468641642384], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 287, - "bus": 13, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2412.5034423008256, 417.5882189697304], - [0.0, 0.0] - ] - }, - { - "id": 6, - "bus": 1017, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2399.6571600459415, 486.0023600517711] - ] - }, - { - "id": 289, - "bus": 1017, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2422.4037259759275, 355.6866150329365], - [0.0, 0.0] - ] - }, - { - "id": 402, - "bus": 1017, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2329.0221916233895, 755.1214542452282], - [0.0, 0.0] - ] - }, - { - "id": 426, - "bus": 1017, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2420.756035335988, 366.7328688841953], - [0.0, 0.0] - ] - }, - { - "id": 98, - "bus": 3073, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2340.635086958129, 718.3175964962559], - [0.0, 0.0] - ] - }, - { - "id": 168, - "bus": 3073, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2363.9599049210588, 637.3745740624291] - ] - }, - { - "id": 416, - "bus": 3073, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2338.121583838213, 726.4573207873459], - [0.0, 0.0] - ] - }, - { - "id": 630, - "bus": 3073, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2370.804223108987, 611.4246604645873] - ] - }, - { - "id": 71, - "bus": 3074, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2407.854211797332, 443.61117486543617], - [0.0, 0.0] - ] - }, - { - "id": 85, - "bus": 3074, - "phases": "abcn", - "powers": [ - [2375.711455472058, 592.0708235291456], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 431, - "bus": 3074, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2365.594441508625, 631.2810135265755] - ] - }, - { - "id": 560, - "bus": 3074, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2400.707109198293, 480.78909677780644], - [0.0, 0.0] - ] - }, - { - "id": 340, - "bus": 3075, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2372.8415641020015, 603.4697104292908] - ] - }, - { - "id": 56, - "bus": 3076, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2441.8831916810227, 178.21127327233032] - ] - }, - { - "id": 249, - "bus": 3076, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2384.2414870134007, 556.727322250105] - ] - }, - { - "id": 174, - "bus": 4580, - "phases": "abcn", - "powers": [ - [2406.2725883809408, 452.111723075316], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 328, - "bus": 4580, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2393.4439548393493, 515.731339728951], - [0.0, 0.0] - ] - }, - { - "id": 423, - "bus": 4580, - "phases": "abcn", - "powers": [ - [2422.299678905655, 356.39450796723037], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 26, - "bus": 4581, - "phases": "abcn", - "powers": [ - [2382.548079031921, 563.9303421850499], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 170, - "bus": 4581, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2400.7901766431214, 480.3741328064345], - [0.0, 0.0] - ] - }, - { - "id": 239, - "bus": 4581, - "phases": "abcn", - "powers": [ - [2360.1047856681043, 651.5045513288104], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 186, - "bus": 4582, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2359.9068470646775, 652.2211687095851] - ] - }, - { - "id": 82, - "bus": 33, - "phases": "abcn", - "powers": [ - [2380.206271149612, 573.7341601436195], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 129, - "bus": 33, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2338.542582004068, 725.1009391039229] - ] - }, - { - "id": 134, - "bus": 33, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2345.4475235507384, 702.4447978349281], - [0.0, 0.0] - ] - }, - { - "id": 665, - "bus": 338, - "phases": "abcn", - "powers": [ - [2403.701679329178, 465.58674436213505], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 369, - "bus": 421, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2327.109125089608, 760.9966489153044] - ] - }, - { - "id": 455, - "bus": 421, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2442.696429148064, 166.6941353585708], - [0.0, 0.0] - ] - }, - { - "id": 492, - "bus": 421, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2366.1270730720366, 629.2816967076051], - [0.0, 0.0] - ] - }, - { - "id": 220, - "bus": 422, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2346.4992609137576, 698.9234566580483], - [0.0, 0.0] - ] - }, - { - "id": 209, - "bus": 453, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2366.032848607911, 629.6358781422618], - [0.0, 0.0] - ] - }, - { - "id": 48, - "bus": 613, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2419.237260355931, 376.62163751060984] - ] - }, - { - "id": 34, - "bus": 614, - "phases": "abcn", - "powers": [ - [2356.1505651011807, 665.6630486282312], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 118, - "bus": 614, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2385.764223788198, 550.1652917332593] - ] - }, - { - "id": 144, - "bus": 614, - "phases": "abcn", - "powers": [ - [2339.229220381742, 722.8827250999102], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 351, - "bus": 614, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2402.2574192379434, 472.9821047903389], - [0.0, 0.0] - ] - }, - { - "id": 45, - "bus": 848, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2367.6026021557177, 623.7072213796454] - ] - }, - { - "id": 293, - "bus": 848, - "phases": "abcn", - "powers": [ - [2334.7006142463606, 737.3776654966646], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 27, - "bus": 872, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2410.202717625317, 430.6688283207658] - ] - }, - { - "id": 116, - "bus": 926, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2400.0012915095995, 484.3000934213193], - [0.0, 0.0] - ] - }, - { - "id": 392, - "bus": 926, - "phases": "abcn", - "powers": [ - [2357.4166917680686, 661.165123935722], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 483, - "bus": 926, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2406.992494842309, 448.26321453855735], - [0.0, 0.0] - ] - }, - { - "id": 485, - "bus": 926, - "phases": "abcn", - "powers": [ - [2418.377995463827, 382.1003150901686], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 2, - "bus": 979, - "phases": "abcn", - "powers": [ - [2353.283910422348, 675.7274721978863], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 188, - "bus": 979, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2335.4441273905204, 735.0193926508156], - [0.0, 0.0] - ] - }, - { - "id": 624, - "bus": 979, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2445.9325430282083, 109.39275429024899] - ] - }, - { - "id": 120, - "bus": 1470, - "phases": "abcn", - "powers": [ - [2326.3927613485043, 763.1837915475708], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 419, - "bus": 1470, - "phases": "abcn", - "powers": [ - [2444.4855025113866, 137.99785414019254], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 467, - "bus": 1757, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2353.6448448808424, 674.4692164224244] - ] - }, - { - "id": 636, - "bus": 1757, - "phases": "abcn", - "powers": [ - [2443.544490174033, 153.7631434244524], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 414, - "bus": 1829, - "phases": "abcn", - "powers": [ - [2410.4620871549378, 429.21475524998635], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 334, - "bus": 1830, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2362.5075745295817, 642.736913539277] - ] - }, - { - "id": 534, - "bus": 1830, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2375.9997934683297, 590.9126510526731], - [0.0, 0.0] - ] - }, - { - "id": 565, - "bus": 1830, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2387.5239755065913, 542.4776918149219], - [0.0, 0.0] - ] - }, - { - "id": 487, - "bus": 1865, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2409.018228827568, 437.24587237861084] - ] - }, - { - "id": 189, - "bus": 1866, - "phases": "abcn", - "powers": [ - [2359.2217608964916, 654.694938615003], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 381, - "bus": 1866, - "phases": "abcn", - "powers": [ - [2400.2749186543274, 482.9421234626425], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 357, - "bus": 1867, - "phases": "abcn", - "powers": [ - [2417.377003597711, 388.382803703508], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 585, - "bus": 1867, - "phases": "abcn", - "powers": [ - [2362.825293732531, 641.5679317371013], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 20, - "bus": 2035, - "phases": "abcn", - "powers": [ - [2430.6657387083437, 293.96742405420565], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 326, - "bus": 2036, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2412.314403073519, 418.6788751056074] - ] - }, - { - "id": 46, - "bus": 2915, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2345.320197065793, 702.8697980215932], - [0.0, 0.0] - ] - }, - { - "id": 362, - "bus": 2915, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2371.846328099338, 607.369554404345], - [0.0, 0.0] - ] - }, - { - "id": 620, - "bus": 2916, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.547209936978, 572.317884568457], - [0.0, 0.0] - ] - }, - { - "id": 50, - "bus": 3049, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2388.106223014961, 539.9087398189263] - ] - }, - { - "id": 279, - "bus": 3049, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2447.1572192016874, 77.29375294748867] - ] - }, - { - "id": 647, - "bus": 3050, - "phases": "abcn", - "powers": [ - [2413.097574679349, 414.14112910007924], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 227, - "bus": 3051, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2399.460418923006, 486.9727690102158] - ] - }, - { - "id": 374, - "bus": 3051, - "phases": "abcn", - "powers": [ - [2448.300893711674, 19.378172934073667], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 491, - "bus": 3051, - "phases": "abcn", - "powers": [ - [2419.896771042204, 372.36057422229965], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 677, - "bus": 3051, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2355.9363813921273, 666.420697884312], - [0.0, 0.0] - ] - }, - { - "id": 161, - "bus": 3052, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2351.68903074522, 681.2572806277019], - [0.0, 0.0] - ] - }, - { - "id": 520, - "bus": 3052, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2398.35964574775, 492.3655038529503], - [0.0, 0.0] - ] - }, - { - "id": 662, - "bus": 3052, - "phases": "abcn", - "powers": [ - [2345.786515697846, 701.3119152743692], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 667, - "bus": 3052, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2391.2664844701703, 525.7350853664955] - ] - }, - { - "id": 280, - "bus": 3565, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2401.984170573729, 474.36781514862423] - ] - }, - { - "id": 473, - "bus": 3567, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2368.9305957539373, 618.6441725552262], - [0.0, 0.0] - ] - }, - { - "id": 506, - "bus": 3567, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2367.5215373677324, 624.0148634732781] - ] - }, - { - "id": 562, - "bus": 3567, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2436.6222272351165, 239.63493376264017], - [0.0, 0.0] - ] - }, - { - "id": 63, - "bus": 4159, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2447.78377080067, 53.92022941806716], - [0.0, 0.0] - ] - }, - { - "id": 479, - "bus": 4159, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2365.6692920980963, 631.0004597143613] - ] - }, - { - "id": 103, - "bus": 4160, - "phases": "abcn", - "powers": [ - [2358.474932950003, 657.3802327284579], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 146, - "bus": 4160, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2400.1701103604864, 483.46274010287], - [0.0, 0.0] - ] - }, - { - "id": 454, - "bus": 4160, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2364.217487322677, 636.4184569709561], - [0.0, 0.0] - ] - }, - { - "id": 30, - "bus": 4161, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2358.7352399793263, 656.4456164948574], - [0.0, 0.0] - ] - }, - { - "id": 32, - "bus": 4161, - "phases": "abcn", - "powers": [ - [2406.196768760288, 452.51507128845486], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 102, - "bus": 4161, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2350.9638842952118, 683.7555078207522], - [0.0, 0.0] - ] - }, - { - "id": 258, - "bus": 4161, - "phases": "abcn", - "powers": [ - [2416.9013691475598, 391.3317665974679], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 608, - "bus": 4161, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2389.0513833453147, 535.7109924870712], - [0.0, 0.0] - ] - }, - { - "id": 657, - "bus": 4162, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.037900649735, 736.3088905241622] - ] - }, - { - "id": 190, - "bus": 4574, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.8229285923103, 733.8147082186945] - ] - }, - { - "id": 645, - "bus": 4574, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2368.490117202509, 620.328416606632] - ] - }, - { - "id": 339, - "bus": 4575, - "phases": "abcn", - "powers": [ - [2446.0240330392407, 107.32758047254688], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 443, - "bus": 4575, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2344.1175627283337, 706.8703076549622] - ] - }, - { - "id": 243, - "bus": 4577, - "phases": "abcn", - "powers": [ - [2385.6440182720967, 550.6862971040849], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 156, - "bus": 4578, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2411.3101745990193, 424.424341444847], - [0.0, 0.0] - ] - }, - { - "id": 389, - "bus": 4578, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2376.8241250055435, 587.5881708537677] - ] - }, - { - "id": 353, - "bus": 4854, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2431.1584089763514, 289.8647446641631] - ] - }, - { - "id": 537, - "bus": 4854, - "phases": "abcn", - "powers": [ - [2394.2639330836687, 511.9111236048368], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 133, - "bus": 5080, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2424.1674285129534, 343.4604173300593], - [0.0, 0.0] - ] - }, - { - "id": 507, - "bus": 5080, - "phases": "abcn", - "powers": [ - [2335.3089798381425, 735.4486715080652], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 540, - "bus": 5080, - "phases": "abcn", - "powers": [ - [2397.2970202222314, 497.5135943562295], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 167, - "bus": 5081, - "phases": "abcn", - "powers": [ - [2426.1491851866417, 329.17003349915944], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 12, - "bus": 5082, - "phases": "abcn", - "powers": [ - [2337.312544248602, 729.0561365448965], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 242, - "bus": 5082, - "phases": "abcn", - "powers": [ - [2386.471150147672, 547.090695633268], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 671, - "bus": 5082, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2331.001662525528, 748.9886708347926] - ] - }, - { - "id": 79, - "bus": 5083, - "phases": "abcn", - "powers": [ - [2356.398931733604, 664.7833137649997], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 394, - "bus": 5083, - "phases": "abcn", - "powers": [ - [2383.2913057150054, 560.7810016743691], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 535, - "bus": 5083, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2399.1512191412803, 488.49381513848545] - ] - }, - { - "id": 602, - "bus": 5083, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2347.3929167334686, 695.9161402102865] - ] - }, - { - "id": 11, - "bus": 5216, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2344.9923281480496, 703.9628972200408], - [0.0, 0.0] - ] - }, - { - "id": 231, - "bus": 5216, - "phases": "abcn", - "powers": [ - [2429.9627979955235, 299.72250515003196], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 117, - "bus": 5353, - "phases": "abcn", - "powers": [ - [2410.1213299270066, 431.1240596006233], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 530, - "bus": 5353, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2336.282179879113, 732.3512515964893] - ] - }, - { - "id": 372, - "bus": 5354, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2362.5808299074824, 642.4675882013946] - ] - }, - { - "id": 229, - "bus": 5355, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2378.4002582573507, 581.1755253423977] - ] - }, - { - "id": 109, - "bus": 5356, - "phases": "abcn", - "powers": [ - [2433.597979537193, 268.6143215246247], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 574, - "bus": 5356, - "phases": "abcn", - "powers": [ - [2376.749916199082, 587.8882679415385], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 622, - "bus": 5357, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2331.1437736232456, 748.5462486935709], - [0.0, 0.0] - ] - }, - { - "id": 198, - "bus": 17, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2418.1982822712816, 383.2360204311011], - [0.0, 0.0] - ] - }, - { - "id": 382, - "bus": 17, - "phases": "abcn", - "powers": [ - [2403.892749077417, 464.59921509690685], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 463, - "bus": 17, - "phases": "abcn", - "powers": [ - [2396.7068392719143, 500.34898453267084], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 521, - "bus": 17, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.041039030063, 736.2989377834574] - ] - }, - { - "id": 623, - "bus": 17, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2448.151179373397, 33.295385089980485] - ] - }, - { - "id": 23, - "bus": 295, - "phases": "abcn", - "powers": [ - [2408.0007956834047, 442.81480070536634], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 244, - "bus": 295, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2367.6226017443, 623.6312976793221], - [0.0, 0.0] - ] - }, - { - "id": 598, - "bus": 296, - "phases": "abcn", - "powers": [ - [2368.169036773689, 621.5530492259048], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 263, - "bus": 532, - "phases": "abcn", - "powers": [ - [2362.9619614583717, 641.0643871222675], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 18, - "bus": 1502, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2349.4984557393846, 688.7741184262749] - ] - }, - { - "id": 55, - "bus": 1502, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2355.272185483863, 668.7643172461532], - [0.0, 0.0] - ] - }, - { - "id": 233, - "bus": 1502, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2435.104315971716, 254.59723107599748] - ] - }, - { - "id": 435, - "bus": 1502, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2398.634630505968, 491.0241226998352] - ] - }, - { - "id": 503, - "bus": 1502, - "phases": "abcn", - "powers": [ - [2379.4204685902105, 576.9844134719641], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 649, - "bus": 1502, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2353.410109241024, 675.2878182358951] - ] - }, - { - "id": 391, - "bus": 1504, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2387.387854377554, 543.0764333923756] - ] - }, - { - "id": 635, - "bus": 1504, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2364.4454153822053, 635.5711269509619], - [0.0, 0.0] - ] - }, - { - "id": 523, - "bus": 1510, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2335.3520252173994, 735.3119732798016], - [0.0, 0.0] - ] - }, - { - "id": 110, - "bus": 1511, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2345.269892456711, 703.037631476246], - [0.0, 0.0] - ] - }, - { - "id": 230, - "bus": 1511, - "phases": "abcn", - "powers": [ - [2387.8978547834768, 540.8295617439131], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 410, - "bus": 1511, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2442.180831531251, 174.08493857014594] - ] - }, - { - "id": 633, - "bus": 1511, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.3052522147123, 573.3233694998828], - [0.0, 0.0] - ] - }, - { - "id": 458, - "bus": 1512, - "phases": "abcn", - "powers": [ - [2394.0689838585163, 512.8220746636168], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 569, - "bus": 1512, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2440.333871654561, 198.30122185983737] - ] - }, - { - "id": 597, - "bus": 1531, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2417.4443615039813, 387.963321421306], - [0.0, 0.0] - ] - }, - { - "id": 224, - "bus": 1532, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2441.2124774025497, 187.17483781147263], - [0.0, 0.0] - ] - }, - { - "id": 16, - "bus": 1840, - "phases": "abcn", - "powers": [ - [2393.5388973387576, 515.2905264625074], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 211, - "bus": 1841, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2418.018901703609, 384.3661935442762], - [0.0, 0.0] - ] - }, - { - "id": 278, - "bus": 1841, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2437.1767895911144, 233.92750161961007], - [0.0, 0.0] - ] - }, - { - "id": 354, - "bus": 1841, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2402.6907549523053, 470.7758657815478], - [0.0, 0.0] - ] - }, - { - "id": 343, - "bus": 1842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2446.9592362256153, 83.32632228652766], - [0.0, 0.0] - ] - }, - { - "id": 366, - "bus": 1842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2409.5872715883556, 434.09902134769675] - ] - }, - { - "id": 446, - "bus": 1842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2390.908875378761, 527.3590137379978] - ] - }, - { - "id": 329, - "bus": 1843, - "phases": "abcn", - "powers": [ - [2438.8127676169906, 216.20606893424576], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 525, - "bus": 1843, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2397.0019776034346, 498.93316095531986], - [0.0, 0.0] - ] - }, - { - "id": 631, - "bus": 1843, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2329.923277124354, 752.3365619519984] - ] - }, - { - "id": 538, - "bus": 2900, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2356.8077435873015, 663.3325255877143], - [0.0, 0.0] - ] - }, - { - "id": 576, - "bus": 2900, - "phases": "abcn", - "powers": [ - [2371.8550912886058, 607.3353321386495], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 614, - "bus": 2900, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2445.160851767213, 125.46389409180834], - [0.0, 0.0] - ] - }, - { - "id": 88, - "bus": 2902, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2439.3820060551984, 209.68597537689348], - [0.0, 0.0] - ] - }, - { - "id": 206, - "bus": 4647, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2395.050935975009, 508.21628645772194] - ] - }, - { - "id": 33, - "bus": 4648, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2382.1308315114366, 565.6902697574671] - ] - }, - { - "id": 398, - "bus": 4648, - "phases": "abcn", - "powers": [ - [2358.3334247835564, 657.8877087195859], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 575, - "bus": 4648, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2371.738648196694, 607.789901516768] - ] - }, - { - "id": 352, - "bus": 4649, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.79081358126, 733.9169264467472] - ] - }, - { - "id": 397, - "bus": 4649, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2370.7364735997967, 611.6872995896233] - ] - }, - { - "id": 37, - "bus": 4650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2352.8077035546526, 677.3837094509474], - [0.0, 0.0] - ] - }, - { - "id": 453, - "bus": 4650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2415.2770473947844, 401.2350483987869], - [0.0, 0.0] - ] - }, - { - "id": 613, - "bus": 4650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2379.790767843293, 575.45519462724] - ] - }, - { - "id": 272, - "bus": 4651, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2335.0277583056313, 736.3410539130776], - [0.0, 0.0] - ] - }, - { - "id": 311, - "bus": 4651, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2330.451123622475, 750.6999001880773] - ] - }, - { - "id": 475, - "bus": 4651, - "phases": "abcn", - "powers": [ - [2343.326838192559, 709.4872156297865], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 505, - "bus": 4651, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2335.586590355571, 734.5665787979206] - ] - }, - { - "id": 297, - "bus": 5116, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2387.2259449864127, 543.7877042738037], - [0.0, 0.0] - ] - }, - { - "id": 160, - "bus": 5117, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2428.0224027319127, 315.0555372749299] - ] - }, - { - "id": 626, - "bus": 5117, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2388.7701174270765, 536.9637844613695], - [0.0, 0.0] - ] - }, - { - "id": 248, - "bus": 5118, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2393.9227515653306, 513.5042738610064], - [0.0, 0.0] - ] - }, - { - "id": 308, - "bus": 5119, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2365.2622938707896, 632.5243559964584], - [0.0, 0.0] - ] - }, - { - "id": 349, - "bus": 5119, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2444.6997255242063, 134.149289068244] - ] - }, - { - "id": 406, - "bus": 5119, - "phases": "abcn", - "powers": [ - [2343.0700472538338, 710.3348037352259], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 656, - "bus": 5119, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2334.9871816690747, 736.4697150438408] - ] - }, - { - "id": 341, - "bus": 5120, - "phases": "abcn", - "powers": [ - [2364.9094913870285, 633.8421548644344], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 559, - "bus": 5120, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2408.7582928342895, 438.6755822218561], - [0.0, 0.0] - ] - }, - { - "id": 452, - "bus": 5121, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2427.2504360718935, 320.94875030828103], - [0.0, 0.0] - ] - }, - { - "id": 193, - "bus": 5122, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2366.4648310562848, 628.0103367854663], - [0.0, 0.0] - ] - }, - { - "id": 327, - "bus": 5122, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2445.9591511889084, 108.7961876670207], - [0.0, 0.0] - ] - }, - { - "id": 332, - "bus": 5122, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2440.3283431794234, 198.3692446192546], - [0.0, 0.0] - ] - }, - { - "id": 276, - "bus": 5123, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2398.9358822552094, 489.55021454807263] - ] - }, - { - "id": 500, - "bus": 5123, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2340.058097243503, 720.1950300167025], - [0.0, 0.0] - ] - }, - { - "id": 592, - "bus": 5123, - "phases": "abcn", - "powers": [ - [2407.2902921011605, 446.66120190940495], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 199, - "bus": 5124, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2417.468732338021, 387.81143343595016] - ] - }, - { - "id": 566, - "bus": 5124, - "phases": "abcn", - "powers": [ - [2425.961611925137, 330.54959870076203], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 195, - "bus": 5125, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2436.7280143100807, 238.55683602046759], - [0.0, 0.0] - ] - }, - { - "id": 212, - "bus": 5125, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2428.1675603800973, 313.934831538985], - [0.0, 0.0] - ] - }, - { - "id": 433, - "bus": 5125, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2339.8715228072024, 720.8009687088021] - ] - }, - { - "id": 76, - "bus": 5126, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2383.131338417469, 561.4604203220449], - [0.0, 0.0] - ] - }, - { - "id": 81, - "bus": 5126, - "phases": "abcn", - "powers": [ - [2360.057886441528, 651.6744220704013], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 373, - "bus": 5127, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2356.575446350795, 664.1573197610595] - ] - }, - { - "id": 617, - "bus": 5127, - "phases": "abcn", - "powers": [ - [2378.6731469266756, 580.057617677408], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 123, - "bus": 64, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2327.1424558517583, 760.8947167038891] - ] - }, - { - "id": 621, - "bus": 64, - "phases": "abcn", - "powers": [ - [2410.3989367271024, 429.5692558371683], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 468, - "bus": 146, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2445.2616046850058, 123.48467268837554] - ] - }, - { - "id": 451, - "bus": 147, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2434.6778094764672, 258.64404841116095], - [0.0, 0.0] - ] - }, - { - "id": 145, - "bus": 199, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2415.1463717318206, 402.02087364497123], - [0.0, 0.0] - ] - }, - { - "id": 358, - "bus": 199, - "phases": "abcn", - "powers": [ - [2419.0423075494455, 377.87179574757647], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 149, - "bus": 306, - "phases": "abcn", - "powers": [ - [2389.6067683348474, 533.2281617318537], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 532, - "bus": 307, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2390.114586892514, 530.9473055391385], - [0.0, 0.0] - ] - }, - { - "id": 629, - "bus": 307, - "phases": "abcn", - "powers": [ - [2341.411640143196, 715.7823070861647], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 269, - "bus": 330, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2348.528295932709, 692.0748680157736], - [0.0, 0.0] - ] - }, - { - "id": 347, - "bus": 330, - "phases": "abcn", - "powers": [ - [2390.345044550188, 529.9088107684225], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 387, - "bus": 330, - "phases": "abcn", - "powers": [ - [2396.9094776483444, 499.3773479996726], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 182, - "bus": 331, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2425.7308851158255, 332.23854793030597] - ] - }, - { - "id": 305, - "bus": 331, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2348.1764000287894, 693.2678948887493], - [0.0, 0.0] - ] - }, - { - "id": 442, - "bus": 345, - "phases": "abcn", - "powers": [ - [2436.0459314236778, 245.42412214326365], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 644, - "bus": 345, - "phases": "abcn", - "powers": [ - [2425.1808217163475, 336.2302212991374], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 9, - "bus": 398, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2360.014496730302, 651.8315387877931] - ] - }, - { - "id": 561, - "bus": 398, - "phases": "abcn", - "powers": [ - [2391.3317484143886, 525.4381493201905], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 240, - "bus": 441, - "phases": "abcn", - "powers": [ - [2417.8311672443087, 385.54536236047153], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 436, - "bus": 455, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2353.080574900763, 676.4352058847452] - ] - }, - { - "id": 89, - "bus": 461, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2377.742804332129, 583.8595175060752], - [0.0, 0.0] - ] - }, - { - "id": 210, - "bus": 461, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2367.2751408409013, 624.9489477488021], - [0.0, 0.0] - ] - }, - { - "id": 256, - "bus": 461, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2363.4951449586324, 639.0958296629832], - [0.0, 0.0] - ] - }, - { - "id": 420, - "bus": 461, - "phases": "abcn", - "powers": [ - [2407.094108051835, 447.71724862661415], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 447, - "bus": 461, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2400.0743712351486, 483.93779794086095] - ] - }, - { - "id": 478, - "bus": 461, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2345.2285691668762, 703.1754675037587], - [0.0, 0.0] - ] - }, - { - "id": 348, - "bus": 511, - "phases": "abcn", - "powers": [ - [2414.399465617055, 406.48247214821464], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 105, - "bus": 512, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2439.688084854805, 206.09422202754436], - [0.0, 0.0] - ] - }, - { - "id": 606, - "bus": 512, - "phases": "abcn", - "powers": [ - [2361.8816126954684, 645.0333536699463], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 15, - "bus": 570, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2341.239780998254, 716.3442382031784] - ] - }, - { - "id": 137, - "bus": 570, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2363.319825942631, 639.7438393936571], - [0.0, 0.0] - ] - }, - { - "id": 234, - "bus": 570, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2344.6877070424634, 704.9768337893089] - ] - }, - { - "id": 315, - "bus": 588, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2332.594305436974, 744.0138345344428], - [0.0, 0.0] - ] - }, - { - "id": 368, - "bus": 588, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2357.0503232615397, 662.4700395854255] - ] - }, - { - "id": 522, - "bus": 588, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2330.562538912095, 750.3539377888629], - [0.0, 0.0] - ] - }, - { - "id": 180, - "bus": 621, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2390.979272162262, 527.039751656422] - ] - }, - { - "id": 405, - "bus": 621, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2362.9524844925186, 641.0993181764252] - ] - }, - { - "id": 163, - "bus": 650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2380.087409059438, 574.2270500180002], - [0.0, 0.0] - ] - }, - { - "id": 194, - "bus": 650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2333.5812005581674, 740.9126535139934], - [0.0, 0.0] - ] - }, - { - "id": 370, - "bus": 650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2408.9110671283534, 437.83587153427925], - [0.0, 0.0] - ] - }, - { - "id": 658, - "bus": 650, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2389.2933347803073, 534.6308447050571] - ] - }, - { - "id": 42, - "bus": 651, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2356.7365368119326, 663.5854698464557] - ] - }, - { - "id": 296, - "bus": 651, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2363.1852047422058, 640.2409451317396] - ] - }, - { - "id": 213, - "bus": 741, - "phases": "abcn", - "powers": [ - [2417.6534124924433, 386.65844979683027], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 581, - "bus": 741, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2401.2889459359503, 477.87464659830675], - [0.0, 0.0] - ] - }, - { - "id": 596, - "bus": 741, - "phases": "abcn", - "powers": [ - [2403.7768078051567, 465.19870807397484], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 580, - "bus": 750, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2427.70231612444, 317.5125887577884] - ] - }, - { - "id": 74, - "bus": 751, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2349.2684703422356, 689.5581440252134], - [0.0, 0.0] - ] - }, - { - "id": 342, - "bus": 751, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2437.7797993053523, 227.55753082330713] - ] - }, - { - "id": 185, - "bus": 762, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2357.6886408887854, 660.1947079155032], - [0.0, 0.0] - ] - }, - { - "id": 271, - "bus": 837, - "phases": "abcn", - "powers": [ - [2426.601177816892, 325.8212754767834], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 440, - "bus": 873, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2378.1426407083177, 582.228786801644], - [0.0, 0.0] - ] - }, - { - "id": 604, - "bus": 873, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2348.272970307303, 692.940716555003] - ] - }, - { - "id": 655, - "bus": 873, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2376.24778025842, 589.9146264948653] - ] - }, - { - "id": 86, - "bus": 921, - "phases": "abcn", - "powers": [ - [2431.808234077445, 284.36155226890713], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 393, - "bus": 921, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2417.351660928488, 388.54050901022634], - [0.0, 0.0] - ] - }, - { - "id": 260, - "bus": 922, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2414.661585679533, 404.9224695904741], - [0.0, 0.0] - ] - }, - { - "id": 337, - "bus": 922, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2366.6556287964486, 627.2909328387669], - [0.0, 0.0] - ] - }, - { - "id": 375, - "bus": 922, - "phases": "abcn", - "powers": [ - [2354.9971582005733, 669.7321588537234], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 202, - "bus": 940, - "phases": "abcn", - "powers": [ - [2373.562164999157, 600.629193945947], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 484, - "bus": 940, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2380.0732558936807, 574.2857096561762] - ] - }, - { - "id": 551, - "bus": 940, - "phases": "abcn", - "powers": [ - [2353.691847879517, 674.3051719816101], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 201, - "bus": 1020, - "phases": "abcn", - "powers": [ - [2359.371136985767, 654.1564168409055], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 355, - "bus": 1020, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2330.3534296261473, 751.0031110223825] - ] - }, - { - "id": 488, - "bus": 1020, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2407.6283220871933, 444.8355228837411] - ] - }, - { - "id": 54, - "bus": 1022, - "phases": "abcn", - "powers": [ - [2339.6534236012303, 721.5085842640304], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 232, - "bus": 1022, - "phases": "abcn", - "powers": [ - [2379.030150899772, 578.5916702178259], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 336, - "bus": 1022, - "phases": "abcn", - "powers": [ - [2380.6245333666448, 571.9961633337148], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 413, - "bus": 1022, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2375.919791316975, 591.2342386600641] - ] - }, - { - "id": 250, - "bus": 1118, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2423.0286549483517, 351.4042074802555], - [0.0, 0.0] - ] - }, - { - "id": 267, - "bus": 1118, - "phases": "abcn", - "powers": [ - [2432.7960737535077, 275.7826014547713], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 307, - "bus": 1118, - "phases": "abcn", - "powers": [ - [2383.496847760633, 559.9067390653295], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 642, - "bus": 1118, - "phases": "abcn", - "powers": [ - [2340.9718377847043, 717.2193767840831], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 298, - "bus": 1119, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2335.8063034036013, 733.8676261531415], - [0.0, 0.0] - ] - }, - { - "id": 651, - "bus": 1119, - "phases": "abcn", - "powers": [ - [2370.1392500426014, 613.9973250293034], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 367, - "bus": 1409, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2343.479012936086, 708.9844114391749] - ] - }, - { - "id": 615, - "bus": 1409, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2386.8649580781284, 545.3700135085708] - ] - }, - { - "id": 317, - "bus": 1410, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2380.0728603612797, 574.2873489006353] - ] - }, - { - "id": 588, - "bus": 1410, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2391.581805454376, 524.298815138115] - ] - }, - { - "id": 668, - "bus": 1412, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2346.6029201254564, 698.5753466837521] - ] - }, - { - "id": 183, - "bus": 1413, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2427.636048800704, 318.0188584014307], - [0.0, 0.0] - ] - }, - { - "id": 49, - "bus": 1583, - "phases": "abcn", - "powers": [ - [2432.526609581787, 278.14937248209134], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 155, - "bus": 1583, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2407.598983835952, 444.9942839719805], - [0.0, 0.0] - ] - }, - { - "id": 333, - "bus": 1583, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2426.4094487823054, 327.2460337354661], - [0.0, 0.0] - ] - }, - { - "id": 595, - "bus": 1583, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2328.448005047076, 756.8901290992872] - ] - }, - { - "id": 96, - "bus": 1584, - "phases": "abcn", - "powers": [ - [2430.179102158646, 297.9636071184551], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 141, - "bus": 1584, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2409.1445484128344, 436.54933809177106], - [0.0, 0.0] - ] - }, - { - "id": 330, - "bus": 1584, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2433.60483654448, 268.55219098521314] - ] - }, - { - "id": 147, - "bus": 1585, - "phases": "abcn", - "powers": [ - [2373.1138952324663, 602.3978917544737], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 572, - "bus": 1833, - "phases": "abcn", - "powers": [ - [2427.6945098037895, 317.5722702066126], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 166, - "bus": 1834, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2403.4426121365204, 466.9222525239327] - ] - }, - { - "id": 65, - "bus": 1835, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2340.771900084168, 717.8716399970104], - [0.0, 0.0] - ] - }, - { - "id": 570, - "bus": 1835, - "phases": "abcn", - "powers": [ - [2360.8557967063775, 648.7778409390528], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 316, - "bus": 1836, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2402.180842811124, 473.37086746744615], - [0.0, 0.0] - ] - }, - { - "id": 616, - "bus": 1836, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2424.034352882518, 344.39836785483817], - [0.0, 0.0] - ] - }, - { - "id": 638, - "bus": 1836, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2437.7935515965996, 227.41015705038822], - [0.0, 0.0] - ] - }, - { - "id": 664, - "bus": 1836, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2429.5169581282253, 303.31523190077274], - [0.0, 0.0] - ] - }, - { - "id": 187, - "bus": 1837, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2402.684543170336, 470.8075676388379], - [0.0, 0.0] - ] - }, - { - "id": 261, - "bus": 1839, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2360.6030860941314, 649.6967366845142] - ] - }, - { - "id": 554, - "bus": 1850, - "phases": "abcn", - "powers": [ - [2406.99133731833, 448.2694299304406], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 53, - "bus": 1900, - "phases": "abcn", - "powers": [ - [2399.280826711208, 487.8568379264831], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 95, - "bus": 1900, - "phases": "abcn", - "powers": [ - [2332.9218364564613, 742.9861941653137], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 254, - "bus": 1900, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2378.048401850343, 582.613575359065], - [0.0, 0.0] - ] - }, - { - "id": 477, - "bus": 1900, - "phases": "abcn", - "powers": [ - [2372.0119995182736, 606.7222213475998], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 264, - "bus": 2082, - "phases": "abcn", - "powers": [ - [2359.5395872020813, 653.5485568508866], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 142, - "bus": 2083, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2440.939059951256, 190.7073290147105], - [0.0, 0.0] - ] - }, - { - "id": 150, - "bus": 2182, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2414.030516119502, 408.6678932574173] - ] - }, - { - "id": 237, - "bus": 2182, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2382.86802809095, 562.576875135827], - [0.0, 0.0] - ] - }, - { - "id": 409, - "bus": 2182, - "phases": "abcn", - "powers": [ - [2373.5362890641027, 600.7314410212371], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 62, - "bus": 2183, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2410.411524283582, 429.4986185502165] - ] - }, - { - "id": 84, - "bus": 2183, - "phases": "abcn", - "powers": [ - [2444.5821376912013, 136.27527955121343], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 111, - "bus": 2243, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2362.99251160361, 640.9517687321767] - ] - }, - { - "id": 338, - "bus": 2243, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2381.701479645899, 567.4952348594471], - [0.0, 0.0] - ] - }, - { - "id": 609, - "bus": 2243, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2356.9690892504677, 662.7589999792264], - [0.0, 0.0] - ] - }, - { - "id": 4, - "bus": 2244, - "phases": "abcn", - "powers": [ - [2398.246133529897, 492.91810957251585], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 125, - "bus": 2244, - "phases": "abcn", - "powers": [ - [2428.1288888651025, 314.2337963911075], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 200, - "bus": 2244, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2435.8677608173057, 247.18622847264498] - ] - }, - { - "id": 184, - "bus": 2318, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2435.793912342715, 247.91288052421723], - [0.0, 0.0] - ] - }, - { - "id": 60, - "bus": 2319, - "phases": "abcn", - "powers": [ - [2358.4066374661134, 657.6252063990742], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 83, - "bus": 2319, - "phases": "abcn", - "powers": [ - [2332.1516686586506, 745.4001436197316], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 255, - "bus": 2319, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2369.0269524955397, 618.2750828598386], - [0.0, 0.0] - ] - }, - { - "id": 323, - "bus": 2415, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2337.36926800349, 728.8742585168397], - [0.0, 0.0] - ] - }, - { - "id": 450, - "bus": 2415, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2431.9113011847962, 283.47875212318127] - ] - }, - { - "id": 653, - "bus": 2415, - "phases": "abcn", - "powers": [ - [2400.8727346570845, 479.9613439808012], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 666, - "bus": 2415, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2341.2819092854465, 716.2065351477454], - [0.0, 0.0] - ] - }, - { - "id": 43, - "bus": 2416, - "phases": "abcn", - "powers": [ - [2409.2382345889246, 436.0320042502448], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 113, - "bus": 2416, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2440.0232319663633, 202.08762258007516], - [0.0, 0.0] - ] - }, - { - "id": 157, - "bus": 2416, - "phases": "abcn", - "powers": [ - [2349.4435512067585, 688.9613773127057], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 425, - "bus": 2416, - "phases": "abcn", - "powers": [ - [2397.74306185438, 495.35945440137436], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 90, - "bus": 2493, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2413.905437831261, 409.40605386866446] - ] - }, - { - "id": 246, - "bus": 2493, - "phases": "abcn", - "powers": [ - [2389.2036311096454, 535.0315774121476], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 466, - "bus": 2493, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2340.0228333672794, 720.3095994469418], - [0.0, 0.0] - ] - }, - { - "id": 178, - "bus": 2571, - "phases": "abcn", - "powers": [ - [2438.2743528020674, 222.19576999417544], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 470, - "bus": 2571, - "phases": "abcn", - "powers": [ - [2400.511176977735, 481.7664049522489], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 130, - "bus": 2572, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2445.174738759432, 125.19295774278942], - [0.0, 0.0] - ] - }, - { - "id": 181, - "bus": 2572, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2364.801962344578, 634.2432172494069] - ] - }, - { - "id": 7, - "bus": 2573, - "phases": "abcn", - "powers": [ - [2413.613020461002, 411.12646131909554], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 35, - "bus": 2573, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2358.123235261657, 658.6407116590494] - ] - }, - { - "id": 403, - "bus": 2573, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2438.003304462658, 225.15032126293772], - [0.0, 0.0] - ] - }, - { - "id": 107, - "bus": 2574, - "phases": "abcn", - "powers": [ - [2334.9271974207513, 736.659868922232], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 219, - "bus": 2574, - "phases": "abcn", - "powers": [ - [2382.887641040005, 562.4937954452879], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 515, - "bus": 2574, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2380.913180428599, 570.7934889231112] - ] - }, - { - "id": 364, - "bus": 2734, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2422.978047687491, 351.75298173598634] - ] - }, - { - "id": 379, - "bus": 2734, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2421.2387376237702, 363.53233028947324] - ] - }, - { - "id": 516, - "bus": 2734, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2403.7312101504854, 465.4342586060108] - ] - }, - { - "id": 480, - "bus": 2735, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2336.359047666823, 732.1059896770556] - ] - }, - { - "id": 99, - "bus": 2841, - "phases": "abcn", - "powers": [ - [2396.8293241491124, 499.76191394958516], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 241, - "bus": 2841, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2407.757585615009, 444.1353269545538] - ] - }, - { - "id": 295, - "bus": 2841, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2379.7193749851326, 575.7503591453618], - [0.0, 0.0] - ] - }, - { - "id": 73, - "bus": 2842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2383.822559268258, 558.518384352187] - ] - }, - { - "id": 376, - "bus": 2842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2396.326534225409, 502.16722424196837], - [0.0, 0.0] - ] - }, - { - "id": 527, - "bus": 2842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2349.002766372781, 690.4627312959524] - ] - }, - { - "id": 564, - "bus": 2842, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2382.477047508263, 564.230358835783], - [0.0, 0.0] - ] - }, - { - "id": 268, - "bus": 2843, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2383.4217498956227, 560.2263309236109], - [0.0, 0.0] - ] - }, - { - "id": 499, - "bus": 2843, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2412.814769631595, 415.785602424226], - [0.0, 0.0] - ] - }, - { - "id": 652, - "bus": 2843, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2383.178000975234, 561.2623231638929], - [0.0, 0.0] - ] - }, - { - "id": 197, - "bus": 2907, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2384.3500262570215, 556.2622870766864], - [0.0, 0.0] - ] - }, - { - "id": 302, - "bus": 2907, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2442.3528924158218, 171.6540959130125] - ] - }, - { - "id": 148, - "bus": 2908, - "phases": "abcn", - "powers": [ - [2357.141545736729, 662.1453866769054], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 162, - "bus": 3107, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2406.107030630317, 452.9919832480526] - ] - }, - { - "id": 253, - "bus": 3108, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2383.894720600355, 558.2103016152607], - [0.0, 0.0] - ] - }, - { - "id": 600, - "bus": 3108, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2418.5904880452545, 380.75297880996607] - ] + "id": 505000, + "phase": "n" }, { - "id": 669, - "bus": 3108, - "phases": "abcn", - "powers": [ - [2346.9168904330836, 697.5198127190012], - [0.0, 0.0], - [0.0, 0.0] - ] + "id": 9, + "phase": "n" }, { - "id": 126, - "bus": 3161, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2344.0881772892344, 706.9677480822436] - ] + "id": 31, + "phase": "n" }, { - "id": 36, - "bus": 3162, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2435.86917306638, 247.1723112335915], - [0.0, 0.0] - ] + "id": 116, + "phase": "n" }, { - "id": 196, - "bus": 3162, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2328.3497823145003, 757.1922285203831] - ] + "id": 106, + "phase": "n" }, { - "id": 306, - "bus": 3162, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2403.668335862373, 465.7588548897952], - [0.0, 0.0] - ] + "id": 54, + "phase": "n" }, { - "id": 445, - "bus": 3162, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2413.139649120035, 413.8958970326718] - ] - }, - { - "id": 335, - "bus": 3259, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2448.243205985302, 25.651200409580643] - ] - }, - { - "id": 459, - "bus": 3259, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2394.7193520210726, 509.77642628059715] - ] - }, - { - "id": 67, - "bus": 3260, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2354.1290896836517, 672.7770870361636] - ] - }, - { - "id": 346, - "bus": 3261, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2432.426439541392, 279.0240060561653], - [0.0, 0.0] - ] - }, - { - "id": 238, - "bus": 3482, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2365.4148678280717, 631.9535448065379], - [0.0, 0.0] - ] - }, - { - "id": 286, - "bus": 3483, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2361.614337742736, 646.0112224285131], - [0.0, 0.0] - ] - }, - { - "id": 245, - "bus": 3484, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2433.700456720035, 267.6842668076244] - ] - }, - { - "id": 427, - "bus": 3484, - "phases": "abcn", - "powers": [ - [2359.902377899678, 652.2373391021782], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 490, - "bus": 3485, - "phases": "abcn", - "powers": [ - [2326.899746503968, 761.6366256000391], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 512, - "bus": 3516, - "phases": "abcn", - "powers": [ - [2419.023406387009, 377.99277650166346], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 14, - "bus": 3517, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2424.766440533589, 339.20567300343396], - [0.0, 0.0] - ] - }, - { - "id": 300, - "bus": 3517, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2329.125053197982, 754.8041244595457], - [0.0, 0.0] - ] - }, - { - "id": 528, - "bus": 3517, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2387.335525155523, 543.3064237297838], - [0.0, 0.0] - ] - }, - { - "id": 567, - "bus": 3517, - "phases": "abcn", - "powers": [ - [2432.830618532339, 275.4776964968323], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 61, - "bus": 3561, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2444.0149280215614, 146.0952132802628], - [0.0, 0.0] - ] - }, - { - "id": 221, - "bus": 3561, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2413.8991887514285, 409.4428974604868] - ] - }, - { - "id": 25, - "bus": 3562, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2346.909303540475, 697.5453395233943] - ] - }, - { - "id": 584, - "bus": 3562, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2377.773075210447, 583.7362268524183] - ] - }, - { - "id": 281, - "bus": 3633, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2338.1067650535506, 726.5050137104802] - ] - }, - { - "id": 533, - "bus": 3633, - "phases": "abcn", - "powers": [ - [2370.506682380404, 612.57721841862], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 641, - "bus": 3634, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2410.9150342277076, 426.66318972985596], - [0.0, 0.0] - ] - }, - { - "id": 437, - "bus": 3961, - "phases": "abcn", - "powers": [ - [2414.986974579041, 402.97728515291533], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 591, - "bus": 3961, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2355.408306520565, 668.2847367025287], - [0.0, 0.0] - ] - }, - { - "id": 277, - "bus": 4001, - "phases": "abcn", - "powers": [ - [2420.91823568577, 365.6606020064821], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 482, - "bus": 4001, - "phases": "abcn", - "powers": [ - [2408.465196137003, 440.28193096286606], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 502, - "bus": 4001, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2427.814381688719, 316.65455594553845], - [0.0, 0.0] - ] - }, - { - "id": 555, - "bus": 4001, - "phases": "abcn", - "powers": [ - [2399.072941901099, 488.8781025712351], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 383, - "bus": 4018, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2408.929867353597, 437.7324227281154], - [0.0, 0.0] - ] - }, - { - "id": 205, - "bus": 4019, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2329.259904879242, 754.3878811709448] - ] - }, - { - "id": 469, - "bus": 4019, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2408.5885944503602, 439.60637213225516] - ] - }, - { - "id": 587, - "bus": 4019, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2333.647483088375, 740.7038574294975], - [0.0, 0.0] - ] - }, - { - "id": 153, - "bus": 4080, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2407.1698532891446, 447.3098223285084], - [0.0, 0.0] - ] - }, - { - "id": 517, - "bus": 4080, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2431.7588357094505, 284.7836805097204], - [0.0, 0.0] - ] - }, - { - "id": 670, - "bus": 4080, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2436.380640378068, 242.07881965714665] - ] - }, - { - "id": 290, - "bus": 4081, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2406.8999890218724, 448.75964901287057] - ] - }, - { - "id": 17, - "bus": 4082, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2434.3547125055384, 261.66756283063245] - ] - }, - { - "id": 226, - "bus": 4082, - "phases": "abcn", - "powers": [ - [2338.433345651941, 725.4531464393232], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 385, - "bus": 4082, - "phases": "abcn", - "powers": [ - [2436.5523708525902, 240.3441778538946], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 514, - "bus": 4082, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2382.7553166468742, 563.0540655449518], - [0.0, 0.0] - ] - }, - { - "id": 518, - "bus": 4082, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2344.438737928651, 705.8043523775968], - [0.0, 0.0] - ] - }, - { - "id": 676, - "bus": 4082, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2361.4199815848574, 646.7213080666329] - ] - }, - { - "id": 172, - "bus": 4083, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2349.761245795569, 687.8770729519192] - ] - }, - { - "id": 273, - "bus": 4083, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2332.521464847021, 744.242162043748] - ] - }, - { - "id": 321, - "bus": 4083, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2423.809793306462, 345.9752384309193] - ] - }, - { - "id": 69, - "bus": 4084, - "phases": "abcn", - "powers": [ - [2353.98549860815, 673.2793269351022], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 536, - "bus": 4084, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2366.9261000332963, 626.2696038582864] - ] - }, - { - "id": 589, - "bus": 4084, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2396.355367219827, 502.02961439777056] - ] - }, - { - "id": 476, - "bus": 4085, - "phases": "abcn", - "powers": [ - [2337.191574769202, 729.4438446950545], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 508, - "bus": 4085, - "phases": "abcn", - "powers": [ - [2390.9147494456192, 527.3323815384719], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 22, - "bus": 4086, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2345.8706343126178, 701.0304892123878], - [0.0, 0.0] - ] - }, - { - "id": 401, - "bus": 4127, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2339.222310446218, 722.9050850881464], - [0.0, 0.0] - ] - }, - { - "id": 1, - "bus": 4128, - "phases": "abcn", - "powers": [ - [2329.0204906836007, 755.1267004361349], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 675, - "bus": 4128, - "phases": "abcn", - "powers": [ - [2386.9279631140084, 545.0941924475585], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 421, - "bus": 4238, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2399.060641062127, 488.9384626333057] - ] - }, - { - "id": 673, - "bus": 4238, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2358.35758163738, 657.8011073790722] - ] - }, - { - "id": 439, - "bus": 4239, - "phases": "abcn", - "powers": [ - [2333.4048802685015, 741.4677636113286], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 545, - "bus": 4239, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2425.5078717649385, 333.86276183779677], - [0.0, 0.0] - ] - }, - { - "id": 78, - "bus": 4444, - "phases": "abcn", - "powers": [ - [2333.3788376819944, 741.5497148495641], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 386, - "bus": 4444, - "phases": "abcn", - "powers": [ - [2363.77791942193, 638.0491575019705], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 418, - "bus": 4444, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2333.3711761074164, 741.5738225198729], - [0.0, 0.0] - ] - }, - { - "id": 510, - "bus": 4444, - "phases": "abcn", - "powers": [ - [2354.882469708817, 670.1353099141597], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 531, - "bus": 4444, - "phases": "abcn", - "powers": [ - [2330.7504372782532, 749.7700840010059], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 325, - "bus": 4445, - "phases": "abcn", - "powers": [ - [2386.9692727001434, 544.9132691731716], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 610, - "bus": 4445, - "phases": "abcn", - "powers": [ - [2360.984077184039, 648.3108567801996], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 64, - "bus": 4459, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2379.5904232520707, 576.2830878159413], - [0.0, 0.0] - ] - }, - { - "id": 578, - "bus": 4459, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2422.838632612125, 352.7119788975892], - [0.0, 0.0] - ] - }, - { - "id": 236, - "bus": 4460, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2401.3580020449035, 477.5275130822856], - [0.0, 0.0] - ] - }, - { - "id": 344, - "bus": 4460, - "phases": "abcn", - "powers": [ - [2386.596280115285, 546.5445777569557], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 112, - "bus": 4679, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2326.916398073199, 761.5857509917666] - ] - }, - { - "id": 449, - "bus": 4686, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2433.406512808746, 270.3433430947068] - ] - }, - { - "id": 513, - "bus": 4686, - "phases": "abcn", - "powers": [ - [2347.6447325997347, 695.0661761532966], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 542, - "bus": 4686, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2407.016545759767, 448.1340515675693] - ] - }, - { - "id": 101, - "bus": 4687, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2395.153148494188, 507.7343547506141] - ] - }, - { - "id": 471, - "bus": 4687, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2358.6993527843524, 656.5745524388838] - ] - }, - { - "id": 539, - "bus": 4687, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2432.8646193967916, 275.1772581863344] - ] - }, - { - "id": 599, - "bus": 4687, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2338.649116522823, 724.7572624835589] - ] - }, - { - "id": 378, - "bus": 4711, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2359.560282529193, 653.4738348598199], - [0.0, 0.0] - ] - }, - { - "id": 384, - "bus": 4711, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2428.5869921945264, 310.6734637512321] - ] - }, - { - "id": 438, - "bus": 4711, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2362.8839488338217, 641.3518722816118] - ] - }, - { - "id": 283, - "bus": 4712, - "phases": "abcn", - "powers": [ - [2345.1854553843846, 703.3192444325559], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 158, - "bus": 4720, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2408.8752056897297, 438.03313019554435], - [0.0, 0.0] - ] - }, - { - "id": 461, - "bus": 4720, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2432.229569846803, 280.73492710825997], - [0.0, 0.0] - ] - }, - { - "id": 203, - "bus": 4770, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2423.666390747604, 346.9783942785563] - ] - }, - { - "id": 496, - "bus": 4770, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2334.782103565117, 737.119602647829], - [0.0, 0.0] - ] - }, - { - "id": 151, - "bus": 4776, - "phases": "abcn", - "powers": [ - [2370.546286368503, 612.4239413348765], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 460, - "bus": 4776, - "phases": "abcn", - "powers": [ - [2376.2494344137745, 589.9079633161949], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 546, - "bus": 4776, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2427.4389303100893, 319.5199827094614] - ] - }, - { - "id": 548, - "bus": 4776, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2388.207292585683, 539.461497584588], - [0.0, 0.0] - ] - }, - { - "id": 303, - "bus": 4886, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2396.502211979392, 501.3281636947251], - [0.0, 0.0] - ] - }, - { - "id": 400, - "bus": 4886, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2397.519893225855, 496.43845673147547], - [0.0, 0.0] - ] - }, - { - "id": 627, - "bus": 5003, - "phases": "abcn", - "powers": [ - [2442.598111933934, 168.12865107537374], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 547, - "bus": 5006, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2337.3991092927427, 728.7785559503906] - ] - }, - { - "id": 603, - "bus": 5006, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2446.0294873458324, 107.203203171955], - [0.0, 0.0] - ] - }, - { - "id": 678, - "bus": 5006, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2362.3702231986263, 643.2415629296024], - [0.0, 0.0] - ] - }, - { - "id": 417, - "bus": 5163, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2392.611602511826, 519.5791559150889], - [0.0, 0.0] - ] - }, - { - "id": 456, - "bus": 5163, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2334.1770863943093, 739.0332259698592], - [0.0, 0.0] - ] - }, - { - "id": 259, - "bus": 5197, - "phases": "abcn", - "powers": [ - [2349.406933274152, 689.0862367069802], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 252, - "bus": 5198, - "phases": "abcn", - "powers": [ - [2363.4441010336245, 639.2845696753576], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 557, - "bus": 5198, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2425.000927330475, 337.52523191900934] - ] - }, - { - "id": 310, - "bus": 5213, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2361.242001497051, 647.3708288931804], - [0.0, 0.0] - ] - }, - { - "id": 360, - "bus": 5213, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2436.554863053378, 240.3189111713415], - [0.0, 0.0] - ] - }, - { - "id": 173, - "bus": 5338, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2386.479800926056, 547.0529585950286], - [0.0, 0.0] - ] - }, - { - "id": 177, - "bus": 5338, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2382.8283782000926, 562.7447909842974] - ] - }, - { - "id": 411, - "bus": 5338, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2377.2677294003274, 585.7908521711967] - ] - }, - { - "id": 320, - "bus": 5339, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2340.8235470783147, 717.7032124627434], - [0.0, 0.0] - ] - }, - { - "id": 377, - "bus": 5409, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2328.6445230418053, 756.285306642307], - [0.0, 0.0] - ] - }, - { - "id": 648, - "bus": 5409, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2347.270728332068, 696.3281608918943] - ] - }, - { - "id": 8, - "bus": 5410, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2377.3158482888166, 585.5955406340356] - ] - }, - { - "id": 24, - "bus": 5410, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [2405.290467515438, 457.3079341264571] - ] - }, - { - "id": 135, - "bus": 5410, - "phases": "abcn", - "powers": [ - [2372.7890309373824, 603.6762330909518], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 288, - "bus": 5410, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2334.6724485143636, 737.4668384975622], - [0.0, 0.0] - ] - }, - { - "id": 359, - "bus": 5411, - "phases": "abcn", - "powers": [ - [2380.2733330205333, 573.4558743678248], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 495, - "bus": 5411, - "phases": "abcn", - "powers": [ - [2387.200257764256, 543.9004587844308], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 640, - "bus": 5411, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [2352.2261730238474, 679.4003316728873], - [0.0, 0.0] - ] - }, - { - "id": 679, - "bus": 1276000, - "phases": "abcn", - "powers": [ - [30243.243418351154, 14016.32400629604], - [30243.243418351154, 14016.32400629604], - [30243.243418351154, 14016.32400629604] - ] - }, - { - "id": 680, - "bus": 1315000, - "phases": "abcn", - "powers": [ - [30199.71010978223, 14109.876696705329], - [30199.71010978223, 14109.876696705329], - [30199.71010978223, 14109.876696705329] - ] - } - ], - "sources": [ - { - "id": 505000, - "bus": 505000, - "phases": "abcn", - "voltages": [ - [12008.885599144214, 0.0], - [-6004.442799572109, -10400.000000186876], - [-6004.442799572109, 10400.000000186876] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_PU", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001410575101461, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001410575101461, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001410575101461 - ] - ] - ] - }, - { - "id": "S_AL_150_S3", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 6.44026493985908e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 6.44026493985908e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 6.44026493985908e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_bt", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.2 - ] - ], - [ - [ - 0.06666666666666664, - 0.03333333333333333, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.06666666666666664, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.03333333333333333, - 0.06666666666666664, - 0.0333333333333333 - ], - [ - 0.0333333333333333, - 0.0333333333333333, - 0.0333333333333333, - 0.0666666666666666 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 6.53451271946559e-05, - 3.267256359732205e-05, - 3.267256359732205e-05, - 3.267256359733384e-05 - ], - [ - 3.267256359732205e-05, - 6.53451271946559e-05, - 3.267256359732205e-05, - 3.267256359733384e-05 - ], - [ - 3.267256359732205e-05, - 3.267256359732205e-05, - 6.53451271946559e-05, - 3.267256359733384e-05 - ], - [ - 3.267256359733384e-05, - 3.267256359733384e-05, - 3.267256359733384e-05, - 6.534512719466767e-05 - ] - ] - ] - }, - { - "id": "S_AL_240_S3", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 7.85398163397448e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 7.85398163397448e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 7.85398163397448e-05 - ] - ] - ] - }, - { - "id": "S_AL_240_SO", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001156106096521, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001156106096521, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001156106096521 - ] - ] - ] - }, - { - "id": "S_AL_240_bt", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.06666666666666664, - 0.03333333333333333, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.06666666666666664, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.03333333333333333, - 0.06666666666666664, - 0.0333333333333333 - ], - [ - 0.0333333333333333, - 0.0333333333333333, - 0.0333333333333333, - 0.0666666666666666 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 8.570264758990977e-05, - 4.2851323794945114e-05, - 4.2851323794945114e-05, - 4.285132379496466e-05 - ], - [ - 4.2851323794945114e-05, - 8.570264758990977e-05, - 4.2851323794945114e-05, - 4.285132379496466e-05 - ], - [ - 4.2851323794945114e-05, - 4.2851323794945114e-05, - 8.570264758990977e-05, - 4.285132379496466e-05 - ], - [ - 4.285132379496466e-05, - 4.285132379496466e-05, - 4.285132379496466e-05, - 8.570264758992933e-05 - ] - ] - ] - }, - { - "id": "S_AL_25_bt", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.2, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.2, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.2, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 1.2 - ] - ], - [ - [ - 0.06666666666666664, - 0.03333333333333333, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.06666666666666664, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.03333333333333333, - 0.06666666666666664, - 0.0333333333333333 - ], - [ - 0.0333333333333333, - 0.0333333333333333, - 0.0333333333333333, - 0.0666666666666666 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 3.707079331235956e-05, - 1.853539665617978e-05, - 1.853539665617978e-05, - 1.853539665617978e-05 - ], - [ - 1.853539665617978e-05, - 3.707079331235956e-05, - 1.853539665617978e-05, - 1.853539665617978e-05 - ], - [ - 1.853539665617978e-05, - 1.853539665617978e-05, - 3.707079331235956e-05, - 1.853539665617978e-05 - ], - [ - 1.853539665617978e-05, - 1.853539665617978e-05, - 1.853539665617978e-05, - 3.707079331235956e-05 - ] - ] - ] - }, - { - "id": "S_AL_35_bt", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.8571428571428571, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.8571428571428571, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.8571428571428571, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.8571428571428571 - ] - ], - [ - [ - 0.06666666666666664, - 0.03333333333333333, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.06666666666666664, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.03333333333333333, - 0.06666666666666664, - 0.0333333333333333 - ], - [ - 0.0333333333333333, - 0.0333333333333333, - 0.0333333333333333, - 0.0666666666666666 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 3.933274002294421e-05, - 1.9666370011472106e-05, - 1.9666370011472106e-05, - 1.9666370011472102e-05 - ], - [ - 1.9666370011472106e-05, - 3.933274002294421e-05, - 1.9666370011472106e-05, - 1.9666370011472102e-05 - ], - [ - 1.9666370011472106e-05, - 1.9666370011472106e-05, - 3.933274002294421e-05, - 1.9666370011472102e-05 - ], - [ - 1.9666370011472102e-05, - 1.9666370011472102e-05, - 1.9666370011472102e-05, - 3.933274002294421e-05 - ] - ] - ] - }, - { - "id": "S_AL_95_bt", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.31578947368421 - ] - ], - [ - [ - 0.06666666666666664, - 0.03333333333333333, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.06666666666666664, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.03333333333333333, - 0.06666666666666664, - 0.0333333333333333 - ], - [ - 0.0333333333333333, - 0.0333333333333333, - 0.0333333333333333, - 0.0666666666666666 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 5.290442028645071e-05, - 2.6452210143224647e-05, - 2.6452210143224647e-05, - 2.6452210143226063e-05 - ], - [ - 2.6452210143224647e-05, - 5.290442028645071e-05, - 2.6452210143224647e-05, - 2.6452210143226063e-05 - ], - [ - 2.6452210143224647e-05, - 2.6452210143224647e-05, - 5.290442028645071e-05, - 2.6452210143226063e-05 - ], - [ - 2.6452210143226063e-05, - 2.6452210143226063e-05, - 2.6452210143226063e-05, - 5.2904420286452125e-05 - ] - ] - ] - }, - { - "id": "T_AL_70_bt", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.42857142857142855, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.42857142857142855, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.42857142857142855, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4285714285714285 - ] - ], - [ - [ - 0.06666666666666664, - 0.03333333333333333, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.06666666666666664, - 0.03333333333333333, - 0.0333333333333333 - ], - [ - 0.03333333333333333, - 0.03333333333333333, - 0.06666666666666664, - 0.0333333333333333 - ], - [ - 0.0333333333333333, - 0.0333333333333333, - 0.0333333333333333, - 0.0666666666666666 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 4.39822971502571e-05, - 2.199114857512855e-05, - 2.199114857512855e-05, - 2.199114857512855e-05 - ], - [ - 2.199114857512855e-05, - 4.39822971502571e-05, - 2.199114857512855e-05, - 2.199114857512855e-05 - ], - [ - 2.199114857512855e-05, - 2.199114857512855e-05, - 4.39822971502571e-05, - 2.199114857512855e-05 - ], - [ - 2.199114857512855e-05, - 2.199114857512855e-05, - 2.199114857512855e-05, - 4.39822971502571e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "100kVA", - "sn": 100000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.025, - "p0": 210.0, - "psc": 2150.0, - "vsc": 0.04, - "type": "dyn11" + "id": 13, + "phase": "n" }, { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 33, + "phase": "n" }, { - "id": "400kVA", - "sn": 400000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.019, - "p0": 930.0, - "psc": 4600.0, - "vsc": 0.04, - "type": "dyn11" + "id": 17, + "phase": "n" }, { - "id": "630kVA", - "sn": 630000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.018000000000000002, - "p0": 1300.0, - "psc": 6500.0, - "vsc": 0.04, - "type": "dyn11" + "id": 64, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95294809914324, 45.73754749124046] + } + }, + { + "id": 2607, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.952945371546177, 45.73752959668326] + } + }, + { + "id": 2608, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.952137678945869, 45.73757489683429] + } + }, + { + "id": 2609, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.952013669787013, 45.73755036805922] + } + }, + { + "id": 3997, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.952958860905261, 45.73762811051713] + } + }, + { + "id": 3998, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95299984255245, 45.73763540056071] + } + }, + { + "id": 31, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962468682717135, 45.7385727604298] + } + }, + { + "id": 725, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96228365590198, 45.73894135774701] + } + }, + { + "id": 928, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96348113017075, 45.73866878906255] + } + }, + { + "id": 929, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963847991183937, 45.73859809048848] + } + }, + { + "id": 2382, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963315264239038, 45.73827681599819] + } + }, + { + "id": 2383, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963320276703058, 45.73827490736029] + } + }, + { + "id": 2384, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963320908022739, 45.73827466754383] + } + }, + { + "id": 2546, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963379363543611, 45.73866953268058] + } + }, + { + "id": 2596, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962023378725025, 45.73799627314051] + } + }, + { + "id": 2597, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962011674654462, 45.73798025401729] + } + }, + { + "id": 2598, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961721983117246, 45.73756662819431] + } + }, + { + "id": 2599, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961749094610482, 45.73755530911566] + } + }, + { + "id": 2962, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96204604983626, 45.73798780336082] + } + }, + { + "id": 2963, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962386088267413, 45.73786072075063] + } + }, + { + "id": 2964, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962395965099435, 45.73785703304483] + } + }, + { + "id": 3555, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962044899263728, 45.73745010990579] + } + }, + { + "id": 3556, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962070618646461, 45.73745057041838] + } + }, + { + "id": 3575, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962306221292184, 45.73889078983816] + } + }, + { + "id": 3576, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962305021429685, 45.73889016079168] + } + }, + { + "id": 3577, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962272135033172, 45.73886128786016] + } + }, + { + "id": 4301, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962204444303315, 45.73868466650154] + } + }, + { + "id": 4302, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962205665041238, 45.73870028274997] + } + }, + { + "id": 5147, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962443400091122, 45.73858604424576] + } + }, + { + "id": 5148, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962426037335454, 45.73863679651681] + } + }, + { + "id": 5149, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962426101871827, 45.73866266565135] + } + }, + { + "id": 5150, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962391466086718, 45.73869842928318] + } + }, + { + "id": 5151, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962291199755762, 45.7386883168697] + } + }, + { + "id": 5177, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962488351451723, 45.73858434439914] + } + }, + { + "id": 5178, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962534067334214, 45.7384817455323] + } + }, + { + "id": 5179, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962059173865351, 45.73804193810163] + } + }, + { + "id": 116, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949490109697274, 45.74058056584027] + } + }, + { + "id": 156, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950202564891636, 45.7416954746224] + } + }, + { + "id": 157, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950195488412604, 45.74181716061058] + } + }, + { + "id": 260, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949352369787704, 45.74090298593372] + } + }, + { + "id": 261, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949359604960197, 45.74092865200017] + } + }, + { + "id": 355, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949577399652404, 45.74084858066003] + } + }, + { + "id": 458, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950181282916888, 45.74176168166396] + } + }, + { + "id": 459, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95011990117204, 45.74174150721939] + } + }, + { + "id": 671, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950162413477225, 45.74168920833736] + } + }, + { + "id": 809, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948901699557921, 45.74238903979888] + } + }, + { + "id": 1961, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949419516477821, 45.740886750247] + } + }, + { + "id": 2042, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948747655385304, 45.74202231858337] + } + }, + { + "id": 2043, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948754290464784, 45.74203724178536] + } + }, + { + "id": 2139, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949406732822898, 45.74115551056487] + } + }, + { + "id": 2140, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949420405824933, 45.74114510150768] + } + }, + { + "id": 2192, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949444471734358, 45.74048336720885] + } + }, + { + "id": 2193, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949356695302401, 45.74050535808706] + } + }, + { + "id": 2205, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950206721460432, 45.74186500342928] + } + }, + { + "id": 2206, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950214698930297, 45.74189897862477] + } + }, + { + "id": 2207, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950243322914806, 45.74202091347151] + } + }, + { + "id": 2208, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950171682347555, 45.74205055859117] + } + }, + { + "id": 2531, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95014676376539, 45.74146121192071] + } + }, + { + "id": 2909, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949103736628304, 45.74096308905356] + } + }, + { + "id": 2910, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948824395771884, 45.74103062148168] + } + }, + { + "id": 2911, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948666498708469, 45.74106879030815] + } + }, + { + "id": 2912, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948362867574832, 45.7411421887841] + } + }, + { + "id": 2913, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948333087920872, 45.74114938988678] + } + }, + { + "id": 3627, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950284047815058, 45.74232480334145] + } + }, + { + "id": 3628, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950291314624964, 45.74234083694983] + } + }, + { + "id": 3629, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95040077529106, 45.74267759317598] + } + }, + { + "id": 3630, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950450977745136, 45.74286052423763] + } + }, + { + "id": 3631, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950449800250516, 45.74308527593394] + } + }, + { + "id": 3632, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950443458289948, 45.743086008727] + } + }, + { + "id": 3967, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950061390994315, 45.74126666860317] + } + }, + { + "id": 3968, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950063509303619, 45.74127553983312] + } + }, + { + "id": 3969, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950142006222518, 45.7416038445639] + } + }, + { + "id": 4357, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949968838151226, 45.74069976250984] + } + }, + { + "id": 4358, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950058223808567, 45.74093010166632] + } + }, + { + "id": 4784, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95030933222711, 45.74201102286589] + } + }, + { + "id": 4785, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950345628579671, 45.74199512699472] + } + }, + { + "id": 4979, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950120320168629, 45.74174599824795] + } + }, + { + "id": 4980, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.950121576731756, 45.74175946234211] + } + }, + { + "id": 4981, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949469231184263, 45.74181897439431] + } + }, + { + "id": 4982, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949462402830679, 45.7418113560017] + } + }, + { + "id": 4983, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949398247419865, 45.74185297848733] + } + }, + { + "id": 4984, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.949335012650569, 45.74186092264297] + } + }, + { + "id": 4985, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948959201377501, 45.74190962828636] + } + }, + { + "id": 4986, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948848153785544, 45.74193515786838] + } + }, + { + "id": 4987, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948737285115905, 45.74195687551208] + } + }, + { + "id": 4988, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.948687881229532, 45.74193417113748] + } + }, + { + "id": 106, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956821263808188, 45.7395436998441] + } + }, + { + "id": 290, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956768992915554, 45.73946458993685] + } + }, + { + "id": 2401, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956728606339034, 45.73964182901081] + } + }, + { + "id": 2402, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956729477860355, 45.73964447313664] + } + }, + { + "id": 2403, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956763170616643, 45.73974703386555] + } + }, + { + "id": 2404, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956763290472624, 45.73974739113116] + } + }, + { + "id": 2405, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956788668742579, 45.73982463544426] + } + }, + { + "id": 2406, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956789104077987, 45.73982594851545] + } + }, + { + "id": 2407, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956794862323364, 45.73984347521288] + } + }, + { + "id": 2408, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956823655746058, 45.73993115365443] + } + }, + { + "id": 2409, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956824392437657, 45.73993339585589] + } + }, + { + "id": 2410, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956869496855397, 45.73995486482325] + } + }, + { + "id": 2411, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956873061652036, 45.73995656391332] + } + }, + { + "id": 2717, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956740752516652, 45.73943765934415] + } + }, + { + "id": 2718, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95674016308763, 45.73943607982265] + } + }, + { + "id": 2719, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956754846985068, 45.73942155950624] + } + }, + { + "id": 3034, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956709810858944, 45.73936857433193] + } + }, + { + "id": 3035, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956708697918765, 45.73936490966044] + } + }, + { + "id": 3036, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956719399624836, 45.73933803310992] + } + }, + { + "id": 5249, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956793992755852, 45.73964107665473] + } + }, + { + "id": 5250, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956795272180759, 45.73964094776769] + } + }, + { + "id": 5251, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956810392422511, 45.73963937055225] + } + }, + { + "id": 54, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956052315026593, 45.7355287394871] + } + }, + { + "id": 220, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95615091490285, 45.73559635332465] + } + }, + { + "id": 221, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956204677642744, 45.73560887080555] + } + }, + { + "id": 504, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956033322551094, 45.73549107007767] + } + }, + { + "id": 522, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956249667952791, 45.73536985465486] + } + }, + { + "id": 851, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956701860310014, 45.73551415251796] + } + }, + { + "id": 935, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956421946673418, 45.73544764843857] + } + }, + { + "id": 3513, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956125443948416, 45.73586872377459] + } + }, + { + "id": 3514, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956126641959938, 45.73587012706333] + } + }, + { + "id": 3515, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.956271120290809, 45.73596229744482] + } + }, + { + "id": 13, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959246469022067, 45.7378307590273] + } + }, + { + "id": 1017, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959200448814673, 45.73770131122335] + } + }, + { + "id": 3073, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959101179036857, 45.73775440898316] + } + }, + { + "id": 3074, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959096975421994, 45.73775575843332] + } + }, + { + "id": 3075, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959083641643665, 45.73776001270964] + } + }, + { + "id": 3076, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.95908115996522, 45.73776080883098] + } + }, + { + "id": 4580, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959088866017715, 45.7377317966323] + } + }, + { + "id": 4581, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959086005541451, 45.73773273662928] + } + }, + { + "id": 4582, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959071057271706, 45.7377376407394] + } + }, + { + "id": 33, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960105183392078, 45.73904390876906] + } + }, + { + "id": 338, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960199756304963, 45.73870863853983] + } + }, + { + "id": 339, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960001290873768, 45.73884393616881] + } + }, + { + "id": 421, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961968644340571, 45.73876996402976] + } + }, + { + "id": 422, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962163012139682, 45.73868603185797] + } + }, + { + "id": 452, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96095747863722, 45.73882774732266] + } + }, + { + "id": 453, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961544572899767, 45.73879241358706] + } + }, + { + "id": 613, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961479027499966, 45.73865802224827] + } + }, + { + "id": 614, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961398418773967, 45.73855818930203] + } + }, + { + "id": 848, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960760924727571, 45.7388394635442] + } + }, + { + "id": 849, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96089024310949, 45.73883175894161] + } + }, + { + "id": 872, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961665400590003, 45.73828009622697] + } + }, + { + "id": 926, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960916340919087, 45.73874417513907] + } + }, + { + "id": 979, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960818791783983, 45.73931617700526] + } + }, + { + "id": 1470, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96093602356783, 45.73876144806627] + } + }, + { + "id": 1757, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960475547969224, 45.73885647863783] + } + }, + { + "id": 1829, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960804607699028, 45.73933118128229] + } + }, + { + "id": 1830, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960248469013997, 45.73991911622788] + } + }, + { + "id": 1865, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960736612800587, 45.73866337541409] + } + }, + { + "id": 1866, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960616899657214, 45.73850504564253] + } + }, + { + "id": 1867, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960621839886369, 45.73849218385909] + } + }, + { + "id": 2035, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960834371764742, 45.73930186921763] + } + }, + { + "id": 2036, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961738822421614, 45.73928025843389] + } + }, + { + "id": 2915, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960757004187017, 45.73868580772434] + } + }, + { + "id": 2916, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960783074661972, 45.73867016545922] + } + }, + { + "id": 3049, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959799155586835, 45.73737046237839] + } + }, + { + "id": 3050, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959726093502897, 45.7372753938573] + } + }, + { + "id": 3051, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959283390068452, 45.73736170490385] + } + }, + { + "id": 3052, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959279701686487, 45.73736820023878] + } + }, + { + "id": 3565, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959932834842134, 45.73939269895975] + } + }, + { + "id": 3566, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960120329088985, 45.73944599859148] + } + }, + { + "id": 3567, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960208458261459, 45.73948437369319] + } + }, + { + "id": 4159, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961172370845995, 45.73823961583732] + } + }, + { + "id": 4160, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961232766999241, 45.73804208532634] + } + }, + { + "id": 4161, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961235967630083, 45.73803992210173] + } + }, + { + "id": 4162, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961237387326696, 45.73803896173435] + } + }, + { + "id": 4574, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960740549922936, 45.73708555348455] + } + }, + { + "id": 4575, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960650120456335, 45.73707758610233] + } + }, + { + "id": 4576, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960523291499956, 45.73712123874899] + } + }, + { + "id": 4577, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960235029230575, 45.73722045155628] + } + }, + { + "id": 4578, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960165846935249, 45.73724425782031] + } + }, + { + "id": 4854, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.9599160787222, 45.73940634098333] + } + }, + { + "id": 4855, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959672536121384, 45.73929886508697] + } + }, + { + "id": 5080, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961963947167957, 45.73872566894523] + } + }, + { + "id": 5081, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961963881619567, 45.73872510337682] + } + }, + { + "id": 5082, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961962149366898, 45.73870873395592] + } + }, + { + "id": 5083, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961961425705299, 45.738701918659] + } + }, + { + "id": 5216, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96008019839414, 45.73903972195923] + } + }, + { + "id": 5353, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959682440255655, 45.73761823205071] + } + }, + { + "id": 5354, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959654271490656, 45.73767803996336] + } + }, + { + "id": 5355, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959638274812121, 45.73806334042222] + } + }, + { + "id": 5356, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.959885624432446, 45.73834760879387] + } + }, + { + "id": 5357, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960126272587628, 45.73862419295075] + } + }, + { + "id": 17, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96075889797756, 45.73708967927565] + } + }, + { + "id": 295, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961045955673573, 45.73736741760803] + } + }, + { + "id": 296, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961254260680495, 45.73766500030121] + } + }, + { + "id": 531, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961984072040853, 45.73663344835436] + } + }, + { + "id": 532, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96266036706634, 45.73644749479478] + } + }, + { + "id": 1502, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961982656484691, 45.7366037761511] + } + }, + { + "id": 1503, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96213440083194, 45.73684960686295] + } + }, + { + "id": 1504, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962126926139021, 45.73685244620967] + } + }, + { + "id": 1510, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96219385396506, 45.73657448591048] + } + }, + { + "id": 1511, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962286628397499, 45.73654351020274] + } + }, + { + "id": 1512, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962440113013225, 45.73649225556941] + } + }, + { + "id": 1531, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960935668151952, 45.73720722054048] + } + }, + { + "id": 1532, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960941248158703, 45.73721532652868] + } + }, + { + "id": 1840, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961317252966468, 45.73726479178624] + } + }, + { + "id": 1841, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961334514238821, 45.73725825799199] + } + }, + { + "id": 1842, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961339855392209, 45.73725623373556] + } + }, + { + "id": 1843, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961340171264948, 45.73725611832876] + } + }, + { + "id": 2900, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962478496234752, 45.73659513708291] + } + }, + { + "id": 2901, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962546991911733, 45.73678516075339] + } + }, + { + "id": 2902, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962546801938095, 45.73678575930509] + } + }, + { + "id": 2903, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962545568380995, 45.73678954184167] + } + }, + { + "id": 4647, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960793268398773, 45.7376150105743] + } + }, + { + "id": 4648, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960622693085613, 45.7376778244415] + } + }, + { + "id": 4649, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960513124055958, 45.7377181749721] + } + }, + { + "id": 4650, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960508980416538, 45.73771970310602] + } + }, + { + "id": 4651, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96050743912461, 45.7377202702363] + } + }, + { + "id": 5116, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.960849440960156, 45.73704179794322] + } + }, + { + "id": 5117, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96086667443794, 45.73703575995913] + } + }, + { + "id": 5118, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961136695199635, 45.73694116682628] + } + }, + { + "id": 5119, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961153928614241, 45.73693512879809] + } + }, + { + "id": 5120, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961360232170545, 45.73682367990691] + } + }, + { + "id": 5121, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961366461715031, 45.73681090495221] + } + }, + { + "id": 5122, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961430098987583, 45.73678945101164] + } + }, + { + "id": 5123, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961447470592804, 45.73678361674145] + } + }, + { + "id": 5124, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961661760315602, 45.73671160557122] + } + }, + { + "id": 5125, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961679131871559, 45.73670577126523] + } + }, + { + "id": 5126, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961965980931708, 45.73660937818495] + } + }, + { + "id": 5127, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.961968713751984, 45.73660845910157] + } + }, + { + "id": 64, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965081449499382, 45.73850349730601] + } + }, + { + "id": 146, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96395197494093, 45.7380834639623] + } + }, + { + "id": 147, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964252163804259, 45.73847286744663] + } + }, + { + "id": 198, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964264272577165, 45.73854392180715] + } + }, + { + "id": 199, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963785020541142, 45.73792534316028] + } + }, + { + "id": 306, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966923846400905, 45.73856641666062] + } + }, + { + "id": 307, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966934739302341, 45.73848824321975] + } + }, + { + "id": 330, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963677814127196, 45.73778302565311] + } + }, + { + "id": 331, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963753918031129, 45.73771465018205] + } + }, + { + "id": 345, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966427240851997, 45.7385284734373] + } + }, + { + "id": 346, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966473521113746, 45.73852687587556] + } + }, + { + "id": 398, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965466467843086, 45.73860035649596] + } + }, + { + "id": 441, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964510719345298, 45.73801997295966] + } + }, + { + "id": 455, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96495930499504, 45.73861077678116] + } + }, + { + "id": 461, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964394554729672, 45.73869937201268] + } + }, + { + "id": 511, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964320979401388, 45.73865002848635] + } + }, + { + "id": 512, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963846545798926, 45.73866394418235] + } + }, + { + "id": 570, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966135101225179, 45.73852254528428] + } + }, + { + "id": 588, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965467951236606, 45.73867850089131] + } + }, + { + "id": 621, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965922818643806, 45.73851659985056] + } + }, + { + "id": 650, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965804784154678, 45.7385702243004] + } + }, + { + "id": 651, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965905552164909, 45.73849504039023] + } + }, + { + "id": 741, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966932457213522, 45.73858627049101] + } + }, + { + "id": 750, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964070768491324, 45.73870671870665] + } + }, + { + "id": 751, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964094282222768, 45.73878724583392] + } + }, + { + "id": 762, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963640385938517, 45.73773252953077] + } + }, + { + "id": 837, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964457257085702, 45.73890894695324] + } + }, + { + "id": 873, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964289723841232, 45.73870082731759] + } + }, + { + "id": 921, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963416931799182, 45.73872430139771] + } + }, + { + "id": 922, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962814040532729, 45.73880948751754] + } + }, + { + "id": 940, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966861332364058, 45.73858555198233] + } + }, + { + "id": 1020, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963808763795043, 45.73871376144375] + } + }, + { + "id": 1022, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962859281896754, 45.73880820381644] + } + }, + { + "id": 1118, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963939739555462, 45.73806763749647] + } + }, + { + "id": 1119, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963684793044012, 45.73773775517096] + } + }, + { + "id": 1408, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963728252376153, 45.73771370270651] + } + }, + { + "id": 1409, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963688180820572, 45.73769912193055] + } + }, + { + "id": 1410, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963859714633435, 45.73767153122744] + } + }, + { + "id": 1411, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963861142878668, 45.73767398223961] + } + }, + { + "id": 1412, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963861157007316, 45.73767400891371] + } + }, + { + "id": 1413, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963866392190475, 45.73768295999191] + } + }, + { + "id": 1583, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96614781966638, 45.7385212931198] + } + }, + { + "id": 1584, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966152771529289, 45.73852080803084] + } + }, + { + "id": 1585, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966173960655363, 45.73851872728084] + } + }, + { + "id": 1833, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96449895162743, 45.73800398257293] + } + }, + { + "id": 1834, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964629859448765, 45.73758060440638] + } + }, + { + "id": 1835, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963474814846975, 45.73751312892872] + } + }, + { + "id": 1836, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963497048017847, 45.73750411099638] + } + }, + { + "id": 1837, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963301207348012, 45.73723494661714] + } + }, + { + "id": 1838, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963299402071233, 45.73723267545407] + } + }, + { + "id": 1839, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963298088674567, 45.73723101389017] + } + }, + { + "id": 1850, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964264235958905, 45.7385364243123] + } + }, + { + "id": 1851, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964295208166546, 45.7384861542162] + } + }, + { + "id": 1900, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965698522526376, 45.73857859169032] + } + }, + { + "id": 1901, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965725056144439, 45.73857643983605] + } + }, + { + "id": 2082, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962825142287602, 45.73910487687795] + } + }, + { + "id": 2083, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962799247099212, 45.73910478969897] + } + }, + { + "id": 2182, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964668772496811, 45.73761479951217] + } + }, + { + "id": 2183, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964694464150002, 45.73761521506726] + } + }, + { + "id": 2184, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964989303413325, 45.73802766903388] + } + }, + { + "id": 2243, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965084930423785, 45.73848567357514] + } + }, + { + "id": 2244, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964547700386225, 45.73801370604721] + } + }, + { + "id": 2318, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965749812771702, 45.73787625327925] + } + }, + { + "id": 2319, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965774230664155, 45.73786884000859] + } + }, + { + "id": 2415, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962836266744469, 45.73883721449722] + } + }, + { + "id": 2416, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962814051602552, 45.73883773433524] + } + }, + { + "id": 2493, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963718891198381, 45.73871618029157] + } + }, + { + "id": 2571, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967039911883393, 45.73853347790435] + } + }, + { + "id": 2572, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967092347593016, 45.73853774890823] + } + }, + { + "id": 2573, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967093600205398, 45.73854082511308] + } + }, + { + "id": 2574, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967096686551868, 45.73854837715886] + } + }, + { + "id": 2734, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964669006017743, 45.73759680879945] + } + }, + { + "id": 2735, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964714550721385, 45.73720055297952] + } + }, + { + "id": 2841, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964387501263031, 45.7388655631196] + } + }, + { + "id": 2842, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964387947426963, 45.73886656085501] + } + }, + { + "id": 2843, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964393383784293, 45.73887702847927] + } + }, + { + "id": 2907, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965378471563087, 45.73767863466824] + } + }, + { + "id": 2908, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965336428176132, 45.73765938380543] + } + }, + { + "id": 3107, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964315333159959, 45.73863247249453] + } + }, + { + "id": 3108, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964299275431529, 45.7385891005713] + } + }, + { + "id": 3161, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962888818684407, 45.73897160313579] + } + }, + { + "id": 3162, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962863535513303, 45.73897033144124] + } + }, + { + "id": 3259, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962682042602933, 45.73733274648558] + } + }, + { + "id": 3260, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96269358237546, 45.73734882339289] + } + }, + { + "id": 3261, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.962914757208745, 45.73765675998811] + } + }, + { + "id": 3482, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96479321244731, 45.73862099457246] + } + }, + { + "id": 3483, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964792917532347, 45.73862101048032] + } + }, + { + "id": 3484, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96465439581094, 45.73862952922292] + } + }, + { + "id": 3485, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964652127236736, 45.7386296723614] + } + }, + { + "id": 3486, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96437914655397, 45.73864645216977] + } + }, + { + "id": 3516, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963398996550705, 45.73873718842353] + } + }, + { + "id": 3517, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963291659341217, 45.73917011309167] + } + }, + { + "id": 3561, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963462479145761, 45.73749734977482] + } + }, + { + "id": 3562, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963265346496066, 45.73724528264585] + } + }, + { + "id": 3633, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963242634353148, 45.73725369063208] + } + }, + { + "id": 3634, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96288579730475, 45.73732738442268] + } + }, + { + "id": 3961, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965635709880166, 45.73858368177106] + } + }, + { + "id": 4000, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965512430883249, 45.73773316122202] + } + }, + { + "id": 4001, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965496973365225, 45.73772255032398] + } + }, + { + "id": 4018, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96641420877874, 45.73851643757229] + } + }, + { + "id": 4019, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966421794051887, 45.73849815754939] + } + }, + { + "id": 4080, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966976101032848, 45.73868684905409] + } + }, + { + "id": 4081, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966984130069958, 45.73870394401352] + } + }, + { + "id": 4082, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967098205301746, 45.7390806352544] + } + }, + { + "id": 4083, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967099842838252, 45.73908423353426] + } + }, + { + "id": 4084, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967227282552781, 45.73936342979869] + } + }, + { + "id": 4085, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967229191598985, 45.73936759781802] + } + }, + { + "id": 4086, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967234131662368, 45.73937842801658] + } + }, + { + "id": 4127, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965699320512575, 45.73855439462086] + } + }, + { + "id": 4128, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965699252348427, 45.73855377510523] + } + }, + { + "id": 4238, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963550347283213, 45.73761321427028] + } + }, + { + "id": 4239, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963549619934052, 45.73761225011894] + } + }, + { + "id": 4444, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966880551612587, 45.73849680452578] + } + }, + { + "id": 4445, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966916631945729, 45.73849186318009] + } + }, + { + "id": 4459, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965485033672116, 45.73756303312003] + } + }, + { + "id": 4460, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96546027566689, 45.73752995597727] + } + }, + { + "id": 4679, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963773037764453, 45.73790942074913] + } + }, + { + "id": 4686, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964618117042615, 45.73756460444032] + } + }, + { + "id": 4687, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964821674409172, 45.73712873182915] + } + }, + { + "id": 4711, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965147952614935, 45.73855656162601] + } + }, + { + "id": 4712, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965194158703693, 45.73854856617363] + } + }, + { + "id": 4719, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966755152046447, 45.73918277835366] + } + }, + { + "id": 4720, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966757041384764, 45.73918707286457] + } + }, + { + "id": 4769, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964831602864755, 45.73711213436472] + } + }, + { + "id": 4770, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965111247117847, 45.73694731850593] + } + }, + { + "id": 4776, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966974236946941, 45.73868254495371] + } + }, + { + "id": 4886, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964444177119184, 45.73786241837054] + } + }, + { + "id": 5001, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965878812489984, 45.73856444829248] + } + }, + { + "id": 5002, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966068033230046, 45.73854969028852] + } + }, + { + "id": 5003, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966131857231558, 45.73854451325678] + } + }, + { + "id": 5004, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966144611671658, 45.73854347628841] + } + }, + { + "id": 5005, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966221190525608, 45.73853727122765] + } + }, + { + "id": 5006, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96638249761217, 45.73853210533971] + } + }, + { + "id": 5163, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965879600063498, 45.73799438364752] + } + }, + { + "id": 5164, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965906059884657, 45.73798800270665] + } + }, + { + "id": 5197, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963807861265371, 45.73869027933681] + } + }, + { + "id": 5198, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.963806843225488, 45.73866410844905] + } + }, + { + "id": 5213, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.96436059502179, 45.73869892492372] + } + }, + { + "id": 5338, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.964834124266964, 45.73714447216054] + } + }, + { + "id": 5339, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.965208295435371, 45.73704136284544] + } + }, + { + "id": 5409, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.966859127692572, 45.73855744654087] + } + }, + { + "id": 5410, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967179562034882, 45.73852652304286] + } + }, + { + "id": 5411, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.967184445653658, 45.73852945112759] + } + }, + { + "id": 505000, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.934853888991207, 45.75111906308752] + } + }, + { + "id": 740000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.934012554090829, 45.74963878116863] + } + }, + { + "id": 873000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.934405208834641, 45.75109114554304] + } + }, + { + "id": 911000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.965999144972133, 45.73853954813616] + } + }, + { + "id": 912000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.964967023796365, 45.73861896752438] + } + }, + { + "id": 913000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.95935517406077, 45.73798696194202] + } + }, + { + "id": 914000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.959945775117695, 45.7387863723316] + } + }, + { + "id": 922000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.964922099667358, 45.73862204497594] + } + }, + { + "id": 923000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.964710680877293, 45.73864011135382] + } + }, + { + "id": 924000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.966075646839055, 45.73853361502763] + } + }, + { + "id": 929000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.958670666082522, 45.73892603465969] + } + }, + { + "id": 952000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.962508976327063, 45.73870055878569] + } + }, + { + "id": 953000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.951951711472315, 45.74009336132657] + } + }, + { + "id": 954000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.950700727347117, 45.73896168111497] + } + }, + { + "id": 1275000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.956590211563276, 45.73916813738952] + } + }, + { + "id": 1276000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.958507278623495, 45.73882766560496] + } + }, + { + "id": 1279000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.959457101250193, 45.73792677160319] + } + }, + { + "id": 1282000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.959254914727904, 45.73784289385675] + } + }, + { + "id": 1283000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.962445409300398, 45.73870412544466] + } + }, + { + "id": 1284000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.962460458941739, 45.73858496099791] + } + }, + { + "id": 1285000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.956805769545054, 45.73955173093524] + } + }, + { + "id": 1286000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.956540133369497, 45.73917989229741] + } + }, + { + "id": 1287000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.956043948302113, 45.73551202979766] + } + }, + { + "id": 1288000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.952966927517592, 45.73755037388134] + } + }, + { + "id": 1291000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.947923168242962, 45.7454139309383] + } + }, + { + "id": 1294000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.968629499909648, 45.7381231100194] + } + }, + { + "id": 1295000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.962475676465369, 45.73834215542708] + } + }, + { + "id": 1298000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.950552409384916, 45.74327504293316] + } + }, + { + "id": 1303000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.960091104079988, 45.73903468717842] + } + }, + { + "id": 1304000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.960266999084436, 45.73878216700876] + } + }, + { + "id": 1315000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.950690491372931, 45.73889693720407] + } + }, + { + "id": 1316000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.960749536320644, 45.73710147424123] + } + }, + { + "id": 1319000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.949480260064897, 45.74059216412196] + } + }, + { + "id": 1321000, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.965069722600271, 45.7385142048397] + } + } + ], + "branches": [ + { + "id": "transfo1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1288000, + "bus2": 9, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line1904", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 9, + "bus2": 2607, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95294809914324, 45.73754749124046], + [4.952946059972593, 45.73753407242081], + [4.952945371546177, 45.73752959668326] + ] + }, + "length": 0.0005003382576709, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3163", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 9, + "bus2": 3997, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95294809914324, 45.73754749124046], + [4.952949894765706, 45.73756092473948], + [4.952958860905261, 45.73762811051713] + ] + }, + "length": 0.0074999777410105, + "params_id": "S_AL_25_bt", + "ground": "ground" + }, + { + "id": "line1905", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2607, + "bus2": 2608, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.952945371546177, 45.73752959668326], + [4.952925679418836, 45.7374003880531], + [4.952221303417048, 45.73759143713276], + [4.952137678945869, 45.73757489683429] + ] + }, + "length": 0.0799951954264822, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3164", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3997, + "bus2": 3998, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.952958860905261, 45.73762811051713], + [4.952960078525964, 45.7376372277327], + [4.95299984255245, 45.73763540056071] + ] + }, + "length": 0.0041192001404145, + "params_id": "S_AL_25_bt", + "ground": "ground" + }, + { + "id": "line1906", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2608, + "bus2": 2609, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.952137678945869, 45.73757489683429], + [4.952013669787013, 45.73755036805922] + ] + }, + "length": 0.0100291338052338, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "transfo2", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1284000, + "bus2": 31, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line4292", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 31, + "bus2": 5177, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962468682717135, 45.7385727604298], + [4.962483430842504, 45.73858144398642], + [4.962488351451723, 45.73858434439914] + ] + }, + "length": 0.0005005785930769, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1851", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 31, + "bus2": 2546, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962468682717135, 45.7385727604298], + [4.962469326294041, 45.73858624779614], + [4.962473616814869, 45.73867616357228], + [4.963379363543611, 45.73866953268058] + ] + }, + "length": 0.0804949278393397, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4264", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 31, + "bus2": 5147, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962468682717135, 45.7385727604298], + [4.962450190964499, 45.73858287882064], + [4.962443400091122, 45.73858604424576] + ] + }, + "length": 0.0006349088237527, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4293", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5177, + "bus2": 5178, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962488351451723, 45.73858434439914], + [4.962508364359765, 45.73859613635118], + [4.962510809991794, 45.7386473883427], + [4.962672865036608, 45.73864899752117], + [4.962557577118273, 45.73849596710668], + [4.962534067334214, 45.7384817455323] + ] + }, + "length": 0.0419970317072572, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4265", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5147, + "bus2": 5148, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962443400091122, 45.73858604424576], + [4.9624259328287, 45.73859419431346], + [4.962426037335454, 45.73863679651681] + ] + }, + "length": 0.0063686689669366, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4266", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5148, + "bus2": 5149, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962426037335454, 45.73863679651681], + [4.962426101871827, 45.73866266565135] + ] + }, + "length": 0.0028752607062334, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4267", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5149, + "bus2": 5150, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962426101871827, 45.73866266565135], + [4.962426186774521, 45.73869839107908], + [4.962391466086718, 45.73869842928318] + ] + }, + "length": 0.0066729663005973, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4268", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5150, + "bus2": 5151, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962391466086718, 45.73869842928318], + [4.962295133258132, 45.73869854969649], + [4.962291619517926, 45.73869873091996], + [4.962291199755762, 45.7386883168697] + ] + }, + "length": 0.0089294677782444, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2771", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3577, + "bus2": 3576, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962305021429685, 45.73889016079168], + [4.96227148094557, 45.73887263619685], + [4.962272135033172, 45.73886128786016] + ] + }, + "length": 0.0045193175970921, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3451", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4302, + "bus2": 4301, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962204444303315, 45.73868466650154], + [4.962205665041238, 45.73870028274997] + ] + }, + "length": 0.0017382851226349, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3452", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4302, + "bus2": 5151, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962205665041238, 45.73870028274997], + [4.962206267273864, 45.738708055058], + [4.962254965338331, 45.73870620464304], + [4.962257595391107, 45.73868831091244], + [4.962291199755762, 45.7386883168697] + ] + }, + "length": 0.0066600652974873, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4294", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5178, + "bus2": 5179, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962534067334214, 45.7384817455323], + [4.962366959917578, 45.7383807055064], + [4.962243760192935, 45.73827736879885], + [4.962059173865351, 45.73804193810163] + ] + }, + "length": 0.0619962769193219, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2770", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3576, + "bus2": 3575, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962306221292184, 45.73889078983816], + [4.962305021429685, 45.73889016079168] + ] + }, + "length": 0.0001166549485426, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line321", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3576, + "bus2": 725, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962305021429685, 45.73889016079168], + [4.962281073740844, 45.73890798615641], + [4.962240808534379, 45.73889232018421], + [4.962232259109893, 45.73891413307611], + [4.962246258682557, 45.73894673346743], + [4.96228365590198, 45.73894135774701] + ] + }, + "length": 0.0128539123750615, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2772", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5151, + "bus2": 3577, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962272135033172, 45.73886128786016], + [4.962280436136135, 45.73871787794917], + [4.962277607964204, 45.7386893189779], + [4.962291199755762, 45.7386883168697] + ] + }, + "length": 0.0191343998901612, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1852", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2546, + "bus2": 928, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963379363543611, 45.73866953268058], + [4.96348113017075, 45.73866878906255] + ] + }, + "length": 0.0079206398602404, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1715", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 928, + "bus2": 2382, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96348113017075, 45.73866878906255], + [4.963477174286758, 45.73853205702689], + [4.963288079391093, 45.73828713799261], + [4.963315264239038, 45.73827681599819] + ] + }, + "length": 0.0485524283856353, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line453", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 928, + "bus2": 929, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96348113017075, 45.73866878906255], + [4.963847991183937, 45.73859809048848] + ] + }, + "length": 0.029613341361079, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4295", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5179, + "bus2": 2596, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962059173865351, 45.73804193810163], + [4.962023378725025, 45.73799627314051] + ] + }, + "length": 0.0057897859314363, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2221", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2596, + "bus2": 2962, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962023378725025, 45.73799627314051], + [4.96204604983626, 45.73798780336082] + ] + }, + "length": 0.0019998716132067, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1895", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2596, + "bus2": 2597, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962023378725025, 45.73799627314051], + [4.962011674654462, 45.73798025401729] + ] + }, + "length": 0.0019999509303946, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2222", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2962, + "bus2": 2963, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96204604983626, 45.73798780336082], + [4.962386088267413, 45.73786072075063] + ] + }, + "length": 0.0299980427743589, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1896", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2597, + "bus2": 2598, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962011674654462, 45.73798025401729], + [4.961712542478319, 45.73757056668453], + [4.961721983117246, 45.73756662819431] + ] + }, + "length": 0.051996812717244, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1716", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2382, + "bus2": 2383, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963315264239038, 45.73827681599819], + [4.963320276703058, 45.73827490736029] + ] + }, + "length": 0.0004440576697726, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1717", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2383, + "bus2": 2384, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963320276703058, 45.73827490736029], + [4.963320908022739, 45.73827466754383] + ] + }, + "length": 5.589847208640475e-5, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2223", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2963, + "bus2": 2964, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962386088267413, 45.73786072075063], + [4.962395965099435, 45.73785703304483] + ] + }, + "length": 0.0008711441750244, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1897", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2598, + "bus2": 2599, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961721983117246, 45.73756662819431], + [4.961749094610482, 45.73755530911566] + ] + }, + "length": 0.0024566375573587, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2751", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2599, + "bus2": 3555, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961749094610482, 45.73755530911566], + [4.962026874124092, 45.73744979344909], + [4.962044899263728, 45.73745010990579] + ] + }, + "length": 0.0259986378904056, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2752", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3555, + "bus2": 3556, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962044899263728, 45.73745010990579], + [4.962070618646461, 45.73745057041838] + ] + }, + "length": 0.0020023646205635, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "transfo3", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1319000, + "bus2": 116, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "400kVA", + "tap": 1.0 + }, + { + "id": "line115", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 116, + "bus2": 355, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949490109697274, 45.74058056584027], + [4.949480745023916, 45.74059235986793], + [4.949464636609704, 45.74061266434407], + [4.949577399652404, 45.74084858066003] + ] + }, + "length": 0.030232355152662, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1839", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 116, + "bus2": 2531, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949490109697274, 45.74058056584027], + [4.949495990831826, 45.74059341818484], + [4.949597693424425, 45.74081570255527], + [4.949972721763631, 45.74072685681764], + [4.950017902158366, 45.74092023868075], + [4.95014676376539, 45.74146121192071] + ] + }, + "length": 0.1394916214647838, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3500", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 116, + "bus2": 4357, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949490109697274, 45.74058056584027], + [4.94950753285216, 45.74058632629289], + [4.949538434830522, 45.74059654377515], + [4.94962432260402, 45.74078087663503], + [4.949968838151226, 45.74069976250984] + ] + }, + "length": 0.0524971216028656, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1549", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 116, + "bus2": 2192, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949490109697274, 45.74058056584027], + [4.949507899758947, 45.74057537184645], + [4.949537025899295, 45.74056687140702], + [4.949491364509629, 45.74047161767668], + [4.949444471734358, 45.74048336720885] + ] + }, + "length": 0.0174993450141986, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1550", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2192, + "bus2": 2193, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949444471734358, 45.74048336720885], + [4.949356695302401, 45.74050535808706] + ] + }, + "length": 0.0072552737885666, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1354", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 355, + "bus2": 1961, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949577399652404, 45.74084858066003], + [4.949419516477821, 45.740886750247] + ] + }, + "length": 0.0129988959249751, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3134", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 355, + "bus2": 3967, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949577399652404, 45.74084858066003], + [4.949942197636729, 45.7407608733611], + [4.949977922141468, 45.74091756898132], + [4.950061390994315, 45.74126666860317] + ] + }, + "length": 0.0869948949795668, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1355", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1961, + "bus2": 260, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949419516477821, 45.740886750247], + [4.949352369787704, 45.74090298593372] + ] + }, + "length": 0.0055284311183522, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line65", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 260, + "bus2": 261, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949352369787704, 45.74090298593372], + [4.949354557231781, 45.74091250367673], + [4.949359604960197, 45.74092865200017] + ] + }, + "length": 0.0029087843100057, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2174", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 260, + "bus2": 2909, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949352369787704, 45.74090298593372], + [4.949103736628304, 45.74096308905356] + ] + }, + "length": 0.0204703168245886, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1507", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2140, + "bus2": 2139, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949406732822898, 45.74115551056487], + [4.949420155304052, 45.74115282168234], + [4.949420405824933, 45.74114510150768] + ] + }, + "length": 0.0019447888185644, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3501", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4357, + "bus2": 4358, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949968838151226, 45.74069976250984], + [4.950001918987462, 45.74069197100517], + [4.950058223808567, 45.74093010166632] + ] + }, + "length": 0.0295438488161324, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2175", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2909, + "bus2": 2910, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949103736628304, 45.74096308905356], + [4.948824395771884, 45.74103062148168] + ] + }, + "length": 0.022998726468752, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1508", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 261, + "bus2": 2140, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949420405824933, 45.74114510150768], + [4.949421195125904, 45.74112138200793], + [4.949387418600921, 45.74098050165401], + [4.949374659918358, 45.74094355918756], + [4.949391331715796, 45.74093403448928], + [4.949383442055609, 45.74091841140541], + [4.949359604960197, 45.74092865200017] + ] + }, + "length": 0.0262552058736826, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2176", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2910, + "bus2": 2911, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948824395771884, 45.74103062148168], + [4.948666498708469, 45.74106879030815] + ] + }, + "length": 0.0129998523408677, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2177", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2911, + "bus2": 2912, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948666498708469, 45.74106879030815], + [4.948362867574832, 45.7411421887841] + ] + }, + "length": 0.0249983255219346, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3135", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3967, + "bus2": 3968, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950061390994315, 45.74126666860317], + [4.950063509303619, 45.74127553983312] + ] + }, + "length": 0.0009996904364898, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3136", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3968, + "bus2": 3969, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950063509303619, 45.74127553983312], + [4.950142006222518, 45.7416038445639] + ] + }, + "length": 0.0369976668118124, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2178", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2912, + "bus2": 2913, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948362867574832, 45.7411421887841], + [4.948333087920872, 45.74114938988678] + ] + }, + "length": 0.0024518774106525, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1840", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2531, + "bus2": 156, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95014676376539, 45.74146121192071], + [4.950202564891636, 45.7416954746224] + ] + }, + "length": 0.0263970803789386, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3137", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3969, + "bus2": 671, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950142006222518, 45.7416038445639], + [4.950162413477225, 45.74168920833736] + ] + }, + "length": 0.0096198658184063, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line289", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 671, + "bus2": 458, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950162413477225, 45.74168920833736], + [4.950176789760147, 45.74174828393607], + [4.950181282916888, 45.74176168166396] + ] + }, + "length": 0.0081902799410984, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line13", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 156, + "bus2": 157, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950202564891636, 45.7416954746224], + [4.950220150198784, 45.74176797784662], + [4.950195488412604, 45.74181716061058] + ] + }, + "length": 0.0139674557311314, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line170", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 458, + "bus2": 459, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950181282916888, 45.74176168166396], + [4.950153116202084, 45.7417641378672], + [4.95011990117204, 45.74174150721939] + ] + }, + "length": 0.0058156718278381, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4103", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 459, + "bus2": 4979, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95011990117204, 45.74174150721939], + [4.950120320168629, 45.74174599824795] + ] + }, + "length": 0.0005002249885874, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4104", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4979, + "bus2": 4980, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950120320168629, 45.74174599824795], + [4.950121576731756, 45.74175946234211] + ] + }, + "length": 0.0014996755561289, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1561", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 157, + "bus2": 2205, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950195488412604, 45.74181716061058], + [4.950206721460432, 45.74186500342928] + ] + }, + "length": 0.0053889286439807, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4105", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4980, + "bus2": 4981, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950121576731756, 45.74175946234211], + [4.950122509225502, 45.74176935135737], + [4.949738747301098, 45.74180979230424], + [4.949489568591248, 45.74184169798374], + [4.949469231184263, 45.74181897439431] + ] + }, + "length": 0.0539972561494892, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1562", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2205, + "bus2": 2206, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950206721460432, 45.74186500342928], + [4.950214698930297, 45.74189897862477] + ] + }, + "length": 0.0038269097623782, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1563", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2206, + "bus2": 2207, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950214698930297, 45.74189897862477], + [4.950243322914806, 45.74202091347151] + ] + }, + "length": 0.0137344549052552, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1564", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2207, + "bus2": 2208, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950243322914806, 45.74202091347151], + [4.950247948545511, 45.74204061821467], + [4.950171682347555, 45.74205055859117] + ] + }, + "length": 0.0082566766241566, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3914", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2208, + "bus2": 4784, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950171682347555, 45.74205055859117], + [4.950174797281904, 45.74205902854793], + [4.950314951164724, 45.74204487294905], + [4.95030933222711, 45.74201102286589] + ] + }, + "length": 0.0148076510091801, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2820", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2208, + "bus2": 3627, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950171682347555, 45.74205055859117], + [4.950175624912356, 45.74206508533622], + [4.950251540963354, 45.74205914080723], + [4.950315548545417, 45.74231485217745], + [4.950284047815058, 45.74232480334145] + ] + }, + "length": 0.0374887933481141, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3915", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4784, + "bus2": 4785, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95030933222711, 45.74201102286589], + [4.950307440570665, 45.74199961691831], + [4.950345628579671, 45.74199512699472] + ] + }, + "length": 0.0042897434917417, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4106", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4981, + "bus2": 4982, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949469231184263, 45.74181897439431], + [4.949462402830679, 45.7418113560017] + ] + }, + "length": 0.0009996915998455, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4107", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4982, + "bus2": 4983, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949462402830679, 45.7418113560017], + [4.949455627981273, 45.74180378137108], + [4.949452497864194, 45.74184616160709], + [4.949398247419865, 45.74185297848733] + ] + }, + "length": 0.0099994250049299, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4108", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4983, + "bus2": 4984, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949398247419865, 45.74185297848733], + [4.949335012650569, 45.74186092264297] + ] + }, + "length": 0.0049996879919236, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2821", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3627, + "bus2": 3628, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950284047815058, 45.74232480334145], + [4.950250951188242, 45.74233525974066], + [4.950291314624964, 45.74234083694983] + ] + }, + "length": 0.0060274595104198, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4109", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4984, + "bus2": 4985, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949335012650569, 45.74186092264297], + [4.949021817462513, 45.74190029450114], + [4.948961972701536, 45.74191248929228], + [4.948959201377501, 45.74190962828636] + ] + }, + "length": 0.0299981489511425, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2822", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3628, + "bus2": 3629, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950291314624964, 45.74234083694983], + [4.950323421657008, 45.74234527417999], + [4.95040077529106, 45.74267759317598] + ] + }, + "length": 0.039970201546093, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4110", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4985, + "bus2": 4986, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948959201377501, 45.74190962828636], + [4.948929530032742, 45.74187903844593], + [4.948927598325311, 45.74191959045178], + [4.948848153785544, 45.74193515786838] + ] + }, + "length": 0.0150397858917662, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2823", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3629, + "bus2": 3630, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95040077529106, 45.74267759317598], + [4.950400951576777, 45.74267832719964], + [4.950347740868912, 45.74269486901222], + [4.950408696655409, 45.74270605171005], + [4.950450977745136, 45.74286052423763] + ] + }, + "length": 0.0269987834223425, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4111", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4986, + "bus2": 4987, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948848153785544, 45.74193515786838], + [4.948737285115905, 45.74195687551208] + ] + }, + "length": 0.0089593827594157, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4112", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4987, + "bus2": 4988, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948737285115905, 45.74195687551208], + [4.948703415860845, 45.74196351476765], + [4.948687881229532, 45.74193417113748] + ] + }, + "length": 0.0062154329987107, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1426", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4988, + "bus2": 2042, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948687881229532, 45.74193417113748], + [4.948668417395697, 45.74193905288156], + [4.948685728057248, 45.74197764479616], + [4.94872571793278, 45.74197292445942], + [4.948747655385304, 45.74202231858337] + ] + }, + "length": 0.0134012523708699, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2824", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3630, + "bus2": 3631, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950450977745136, 45.74286052423763], + [4.950456921333884, 45.7428822596457], + [4.950401227438782, 45.7429006596228], + [4.950460856538577, 45.7429109730364], + [4.950502276058836, 45.74307923802846], + [4.950449800250516, 45.74308527593394] + ] + }, + "length": 0.035148289614464, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1427", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2042, + "bus2": 2043, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948747655385304, 45.74202231858337], + [4.948754290464784, 45.74203724178536] + ] + }, + "length": 0.001737174038491, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line375", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2043, + "bus2": 809, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.948754290464784, 45.74203724178536], + [4.948773476276781, 45.74203408579645], + [4.948901699557921, 45.74238903979888] + ] + }, + "length": 0.0406942114996201, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2825", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3631, + "bus2": 3632, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950449800250516, 45.74308527593394], + [4.950443458289948, 45.743086008727] + ] + }, + "length": 0.0005002132965161, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "transfo4", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1285000, + "bus2": 106, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "100kVA", + "tap": 1.0 + }, + { + "id": "line80", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 106, + "bus2": 290, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956821263808188, 45.7395436998441], + [4.95680609641228, 45.73953537640867], + [4.956757901902865, 45.73951568986967], + [4.956743343370634, 45.73947695382841], + [4.956768992915554, 45.73946458993685] + ] + }, + "length": 0.0112177985437179, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1730", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 106, + "bus2": 2401, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956821263808188, 45.7395436998441], + [4.956802470560173, 45.73954670404984], + [4.956702610127227, 45.73956267277521], + [4.956728606339034, 45.73964182901081] + ] + }, + "length": 0.0169993694393854, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4365", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 106, + "bus2": 5249, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956821263808188, 45.7395436998441], + [4.956815487479819, 45.73955657195612], + [4.956806154177184, 45.73957735849662], + [4.956748667883184, 45.73958500168168], + [4.956765618971497, 45.73964401646928], + [4.956793992755852, 45.73964107665473] + ] + }, + "length": 0.0158985806026337, + "params_id": "S_AL_35_bt", + "ground": "ground" + }, + { + "id": "line2282", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 290, + "bus2": 3034, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956768992915554, 45.73946458993685], + [4.956768624302769, 45.73945711821771], + [4.956738192164534, 45.73946164535425], + [4.956709810858944, 45.73936857433193] + ] + }, + "length": 0.012998956469388, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2002", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 290, + "bus2": 2717, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956768992915554, 45.73946458993685], + [4.956764772282777, 45.7394507360002], + [4.956744790341858, 45.73944848401223], + [4.956740752516652, 45.73943765934415] + ] + }, + "length": 0.0028186145322106, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2003", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2717, + "bus2": 2718, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956740752516652, 45.73943765934415], + [4.95674016308763, 45.73943607982265] + ] + }, + "length": 0.0001814521700402, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2004", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2718, + "bus2": 2719, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95674016308763, 45.73943607982265], + [4.956737583640353, 45.73942915480448], + [4.956754846985068, 45.73942155950624] + ] + }, + "length": 0.0023821808616207, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4366", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5249, + "bus2": 5250, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956793992755852, 45.73964107665473], + [4.956795272180759, 45.73964094776769] + ] + }, + "length": 0.0001005974948599, + "params_id": "S_AL_35_bt", + "ground": "ground" + }, + { + "id": "line4367", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5250, + "bus2": 5251, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956795272180759, 45.73964094776769], + [4.956810392422511, 45.73963937055225] + ] + }, + "length": 0.001189731053329, + "params_id": "S_AL_35_bt", + "ground": "ground" + }, + { + "id": "line1731", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2401, + "bus2": 2402, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956728606339034, 45.73964182901081], + [4.956729477860355, 45.73964447313664] + ] + }, + "length": 0.0003016101018866, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1732", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2402, + "bus2": 2403, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956729477860355, 45.73964447313664], + [4.956763170616643, 45.73974703386555] + ] + }, + "length": 0.01169693911365, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2283", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3034, + "bus2": 3035, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956709810858944, 45.73936857433193], + [4.956708697918765, 45.73936490966044] + ] + }, + "length": 0.0004164220714956, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2284", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3035, + "bus2": 3036, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956708697918765, 45.73936490966044], + [4.956701324266537, 45.73934072348808], + [4.956719399624836, 45.73933803310992] + ] + }, + "length": 0.0041869395569844, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1733", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2403, + "bus2": 2404, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956763170616643, 45.73974703386555], + [4.956763290472624, 45.73974739113116] + ] + }, + "length": 4.078960848303534e-5, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1734", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2404, + "bus2": 2405, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956763290472624, 45.73974739113116], + [4.956788668742579, 45.73982463544426] + ] + }, + "length": 0.008809669797575, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1735", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2405, + "bus2": 2406, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956788668742579, 45.73982463544426], + [4.956789104077987, 45.73982594851545] + ] + }, + "length": 0.0001498239148669, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1736", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2406, + "bus2": 2407, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956789104077987, 45.73982594851545], + [4.956794862323364, 45.73984347521288] + ] + }, + "length": 0.0019989085093089, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1737", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2407, + "bus2": 2408, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956794862323364, 45.73984347521288], + [4.956823655746058, 45.73993115365443] + ] + }, + "length": 0.0099994498409093, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1738", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2408, + "bus2": 2409, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956823655746058, 45.73993115365443], + [4.956824392437657, 45.73993339585589] + ] + }, + "length": 0.0002557222298103, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1739", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2409, + "bus2": 2410, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956824392437657, 45.73993339585589], + [4.956869496855397, 45.73995486482325] + ] + }, + "length": 0.0042445161037907, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1740", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2410, + "bus2": 2411, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956869496855397, 45.73995486482325], + [4.956873061652036, 45.73995656391332] + ] + }, + "length": 0.0003356064585007, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "transfo5", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1287000, + "bus2": 54, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "400kVA", + "tap": 1.0 + }, + { + "id": "line194", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 54, + "bus2": 504, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956052315026593, 45.7355287394871], + [4.956033604501489, 45.7355161689203], + [4.956033322551094, 45.73549107007767] + ] + }, + "length": 0.0027897260577011, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line128", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 504, + "bus2": 220, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956033322551094, 45.73549107007767], + [4.956034563370537, 45.73548851166989], + [4.956178737154027, 45.73553866083661], + [4.95615091490285, 45.73559635332465] + ] + }, + "length": 0.0192974364705181, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line204", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 504, + "bus2": 522, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956033322551094, 45.73549107007767], + [4.956037862495945, 45.73548733647123], + [4.956182125310585, 45.7355347650762], + [4.956210637034254, 45.73546968418562], + [4.956249667952791, 45.73536985465486] + ] + }, + "length": 0.0314743261836909, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line45", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 220, + "bus2": 221, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95615091490285, 45.73559635332465], + [4.956204677642744, 45.73560887080555] + ] + }, + "length": 0.0044096591919014, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2707", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 220, + "bus2": 3513, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95615091490285, 45.73559635332465], + [4.956088156578513, 45.7357264868948], + [4.95606026307445, 45.7357872775662], + [4.95606030542764, 45.73579248849629], + [4.956125443948416, 45.73586872377459] + ] + }, + "length": 0.0328165699103589, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line456", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 522, + "bus2": 935, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956249667952791, 45.73536985465486], + [4.956256600027722, 45.73537154716573], + [4.956233058051791, 45.73544489253887], + [4.956382576042555, 45.73548281856218], + [4.95640308545411, 45.7354448751772], + [4.956421946673418, 45.73544764843857] + ] + }, + "length": 0.0267418691062935, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2708", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3513, + "bus2": 3514, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956125443948416, 45.73586872377459], + [4.956126641959938, 45.73587012706333] + ] + }, + "length": 0.0001817164085017, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2709", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3514, + "bus2": 3515, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956126641959938, 45.73587012706333], + [4.956214651246689, 45.73597313926646], + [4.956259165800845, 45.73595366492601], + [4.956271120290809, 45.73596229744482] + ] + }, + "length": 0.0187637017295666, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line400", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 935, + "bus2": 851, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956421946673418, 45.73544764843857], + [4.956420010356635, 45.73545152831737], + [4.956409039547999, 45.73545167640629], + [4.956392814960897, 45.73548484794242], + [4.956667948706969, 45.73555193177604], + [4.95669179900583, 45.73551288415374], + [4.956701860310014, 45.73551415251796] + ] + }, + "length": 0.032942199881977, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "transfo6", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1282000, + "bus2": 13, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "630kVA", + "tap": 1.0 + }, + { + "id": "line510", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13, + "bus2": 1017, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959246469022067, 45.7378307590273], + [4.959255831126285, 45.73781896418637], + [4.959268297090128, 45.73780324412505], + [4.959200448814673, 45.73770131122335] + ] + }, + "length": 0.014498142279017, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2316", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13, + "bus2": 3073, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959246469022067, 45.7378307590273], + [4.9592273911606, 45.73782885543228], + [4.959202552832604, 45.73782638432161], + [4.959141939241144, 45.73774138536665], + [4.959101179036857, 45.73775440898316] + ] + }, + "length": 0.0159991368150779, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3709", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13, + "bus2": 4580, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959246469022067, 45.7378307590273], + [4.959237884212604, 45.73781867245589], + [4.959159657960649, 45.73770856555179], + [4.959088866017715, 45.7377317966323] + ] + }, + "length": 0.0197533840312648, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2317", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3073, + "bus2": 3074, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959101179036857, 45.73775440898316], + [4.959096975421994, 45.73775575843332] + ] + }, + "length": 0.000359902842447, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2318", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3074, + "bus2": 3075, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959096975421994, 45.73775575843332], + [4.959083641643665, 45.73776001270964] + ] + }, + "length": 0.0011403959888861, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2319", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3075, + "bus2": 3076, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959083641643665, 45.73776001270964], + [4.95908115996522, 45.73776080883098] + ] + }, + "length": 0.000212449508454, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3710", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4580, + "bus2": 4581, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959088866017715, 45.7377317966323], + [4.959086005541451, 45.73773273662928] + ] + }, + "length": 0.0002459227906416, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3711", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4581, + "bus2": 4582, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959086005541451, 45.73773273662928], + [4.959071057271706, 45.7377376407394] + ] + }, + "length": 0.0012847593141744, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "transfo7", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1303000, + "bus2": 33, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "400kVA", + "tap": 1.0 + }, + { + "id": "line1176", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 33, + "bus2": 1757, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960105183392078, 45.73904390876906], + [4.960111400639391, 45.73903113418077], + [4.960121574971325, 45.73901021965473], + [4.960112705305831, 45.73887810336793], + [4.960475547969224, 45.73885647863783] + ] + }, + "length": 0.0454971945072443, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4331", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 33, + "bus2": 5216, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960105183392078, 45.73904390876906], + [4.960086444428941, 45.73904076416639], + [4.96008019839414, 45.73903972195923] + ] + }, + "length": 0.000499719203563, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line487", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 33, + "bus2": 979, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960105183392078, 45.73904390876906], + [4.960123153890179, 45.73903902389544], + [4.960155947987132, 45.73903011984349], + [4.96015328829069, 45.73894736723048], + [4.960312304348342, 45.7389391491087], + [4.960327297000351, 45.73909182594988], + [4.960818791783983, 45.73931617700526] + ] + }, + "length": 0.0870175633918751, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line472", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 33, + "bus2": 339, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960105183392078, 45.73904390876906], + [4.960097345116976, 45.73903157976098], + [4.960084335555435, 45.73901109015626], + [4.960071097374336, 45.73884126923696], + [4.960001290873768, 45.73884393616881] + ] + }, + "length": 0.0268362299978696, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4332", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5216, + "bus2": 3565, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96008019839414, 45.73903972195923], + [4.96005334712315, 45.7390352187045], + [4.96004401165916, 45.73897422599731], + [4.960017045202498, 45.73897485634307], + [4.960030281400803, 45.73911767249419], + [4.959909243692164, 45.73930233415155], + [4.959932834842134, 45.73939269895975] + ] + }, + "length": 0.0597665823576085, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4465", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5357, + "bus2": 5356, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959885624432446, 45.73834760879387], + [4.960126272587628, 45.73862419295075] + ] + }, + "length": 0.0359972603310922, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1177", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1757, + "bus2": 848, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960475547969224, 45.73885647863783], + [4.960760924727571, 45.7388394635442] + ] + }, + "length": 0.0222903648041503, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line106", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 339, + "bus2": 338, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960199756304963, 45.73870863853983], + [4.96012073094316, 45.73878515420129], + [4.960051938939426, 45.73882474004503], + [4.960001290873768, 45.73884393616881] + ] + }, + "length": 0.0219072952150191, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4464", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5356, + "bus2": 5355, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959638274812121, 45.73806334042222], + [4.959885624432446, 45.73834760879387] + ] + }, + "length": 0.036998038532957, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2760", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3565, + "bus2": 3566, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959932834842134, 45.73939269895975], + [4.960029915934189, 45.7394066326256], + [4.960120329088985, 45.73944599859148] + ] + }, + "length": 0.0159984466404242, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3982", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3565, + "bus2": 4854, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959932834842134, 45.73939269895975], + [4.9599160787222, 45.73940634098333] + ] + }, + "length": 0.0019999066660844, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3983", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4854, + "bus2": 4855, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.9599160787222, 45.73940634098333], + [4.959818981404895, 45.73948537619096], + [4.959659490567712, 45.73945669808589], + [4.959622544267035, 45.73935584343205], + [4.959672536121384, 45.73929886508697] + ] + }, + "length": 0.0434079011695349, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line399", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 848, + "bus2": 849, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960760924727571, 45.7388394635442], + [4.96089024310949, 45.73883175894161] + ] + }, + "length": 0.0101008190175309, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2761", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3566, + "bus2": 3567, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960120329088985, 45.73944599859148], + [4.960208458261459, 45.73948437369319] + ] + }, + "length": 0.0080768028699387, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line451", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 849, + "bus2": 926, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96089024310949, 45.73883175894161], + [4.960916340919087, 45.73874417513907] + ] + }, + "length": 0.0099442456338206, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1240", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 979, + "bus2": 1829, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960818791783983, 45.73931617700526], + [4.960804607699028, 45.73933118128229] + ] + }, + "length": 0.0019999254240497, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1421", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 979, + "bus2": 2035, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960818791783983, 45.73931617700526], + [4.960834371764742, 45.73930186921763] + ] + }, + "length": 0.0019997874322937, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line928", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1470, + "bus2": 452, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96095747863722, 45.73882774732266], + [4.96093602356783, 45.73876144806627] + ] + }, + "length": 0.0075557284635259, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1422", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2035, + "bus2": 2036, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960834371764742, 45.73930186921763], + [4.960928404891914, 45.73921549641435], + [4.96151156517715, 45.73917845461823], + [4.961626527672252, 45.73908214900259], + [4.961790299750718, 45.73911972578223], + [4.961807218664164, 45.7392318502114], + [4.961738822421614, 45.73928025843389] + ] + }, + "length": 0.1051066453823083, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1241", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1829, + "bus2": 1830, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960804607699028, 45.73933118128229], + [4.960248469013997, 45.73991911622788] + ] + }, + "length": 0.0783806505567235, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line167", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 452, + "bus2": 453, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96095747863722, 45.73882774732266], + [4.961544572899767, 45.73879241358706] + ] + }, + "length": 0.0458602317411214, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4463", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5355, + "bus2": 5354, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959654271490656, 45.73767803996336], + [4.959542328938872, 45.73791566113006], + [4.95966723044202, 45.73794694804518], + [4.959621736614228, 45.73804432849675], + [4.959638274812121, 45.73806334042222] + ] + }, + "length": 0.0519968520062209, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2179", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 926, + "bus2": 2915, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960916340919087, 45.73874417513907], + [4.960905544140147, 45.73874475165952], + [4.960889052594204, 45.7387588107271], + [4.96079953543904, 45.73872420430275], + [4.960767503232685, 45.73870325039978], + [4.960757004187017, 45.73868580772434] + ] + }, + "length": 0.0154957070661534, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line929", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 926, + "bus2": 1470, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96093602356783, 45.73876144806627], + [4.960930430213592, 45.73874416974355], + [4.960916340919087, 45.73874417513907] + ] + }, + "length": 0.0019691399428032, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2180", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2915, + "bus2": 2916, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960757004187017, 45.73868580772434], + [4.960783074661972, 45.73867016545922] + ] + }, + "length": 0.0026719767370282, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1272", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2916, + "bus2": 1865, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960783074661972, 45.73867016545922], + [4.960770753031895, 45.73865790531985], + [4.960736612800587, 45.73866337541409] + ] + }, + "length": 0.0027257092541228, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1273", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1865, + "bus2": 1866, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960736612800587, 45.73866337541409], + [4.960613525714848, 45.7385138200812], + [4.960616899657214, 45.73850504564253] + ] + }, + "length": 0.0201952650554332, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1274", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1866, + "bus2": 1867, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960616899657214, 45.73850504564253], + [4.960621839886369, 45.73849218385909] + ] + }, + "length": 0.0014803408852694, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4462", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5354, + "bus2": 5353, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959682440255655, 45.73761823205071], + [4.959654271490656, 45.73767803996336] + ] + }, + "length": 0.00699961071024, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line292", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 453, + "bus2": 421, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961544572899767, 45.73879241358706], + [4.961968644340571, 45.73876996402976] + ] + }, + "length": 0.0330984002559041, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line468", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 453, + "bus2": 613, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961544572899767, 45.73879241358706], + [4.961479027499966, 45.73865802224827] + ] + }, + "length": 0.0157841355046023, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line256", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 613, + "bus2": 614, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961479027499966, 45.73865802224827], + [4.961465535419309, 45.73856382087653], + [4.961398418773967, 45.73855818930203] + ] + }, + "length": 0.015783526014468, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line413", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 614, + "bus2": 872, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961398418773967, 45.73855818930203], + [4.961465103978998, 45.73852782451912], + [4.961362963415412, 45.73840779143752], + [4.961665400590003, 45.73828009622697] + ] + }, + "length": 0.0492066014196515, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3313", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 614, + "bus2": 4159, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961398418773967, 45.73855818930203], + [4.961417291850237, 45.73852264161904], + [4.961172370845995, 45.73823961583732] + ] + }, + "length": 0.0409970179470728, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line151", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 421, + "bus2": 422, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961968644340571, 45.73876996402976], + [4.962167516981007, 45.73875943365877], + [4.962163012139682, 45.73868603185797] + ] + }, + "length": 0.0236877203591259, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4203", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 421, + "bus2": 5080, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961968644340571, 45.73876996402976], + [4.961963947167957, 45.73872566894523] + ] + }, + "length": 0.0049367846142944, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4204", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5080, + "bus2": 5081, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961963947167957, 45.73872566894523], + [4.961963881619567, 45.73872510337682] + ] + }, + "length": 6.306745004955883e-5, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4205", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5081, + "bus2": 5082, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961963881619567, 45.73872510337682], + [4.961962149366898, 45.73870873395592] + ] + }, + "length": 0.0018243872061862, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4206", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5082, + "bus2": 5083, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961962149366898, 45.73870873395592], + [4.961961425705299, 45.738701918659] + ] + }, + "length": 0.000759585304389, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4461", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5353, + "bus2": 3049, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959799155586835, 45.73737046237839], + [4.959682440255655, 45.73761823205071] + ] + }, + "length": 0.028998158624463, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2295", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3049, + "bus2": 3050, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959799155586835, 45.73737046237839], + [4.959726093502897, 45.7372753938573] + ] + }, + "length": 0.0119993997887356, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3708", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3049, + "bus2": 4578, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960165846935249, 45.73724425782031], + [4.959799155586835, 45.73737046237839] + ] + }, + "length": 0.0318001496995585, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3314", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4159, + "bus2": 4160, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961172370845995, 45.73823961583732], + [4.961086686034492, 45.73814060353558], + [4.961232766999241, 45.73804208532634] + ] + }, + "length": 0.0286524746049958, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3707", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4578, + "bus2": 4577, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960235029230575, 45.73722045155628], + [4.960165846935249, 45.73724425782031] + ] + }, + "length": 0.0059994127493386, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2296", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3050, + "bus2": 3051, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959726093502897, 45.7372753938573], + [4.95971692485665, 45.73726346499498], + [4.959460499797927, 45.73735857402437], + [4.959308162719201, 45.73731802631416], + [4.959283390068452, 45.73736170490385] + ] + }, + "length": 0.041997209573858, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4160, + "bus2": 4161, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961232766999241, 45.73804208532634], + [4.961235967630083, 45.73803992210173] + ] + }, + "length": 0.0003462063427907, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3316", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4161, + "bus2": 4162, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961235967630083, 45.73803992210173], + [4.961237387326696, 45.73803896173435] + ] + }, + "length": 0.0001536301071027, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3706", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4577, + "bus2": 4576, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960523291499956, 45.73712123874899], + [4.960235029230575, 45.73722045155628] + ] + }, + "length": 0.0249987466101525, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3705", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4576, + "bus2": 4575, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960650120456335, 45.73707758610233], + [4.960523291499956, 45.73712123874899] + ] + }, + "length": 0.0109989613390624, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2297", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3051, + "bus2": 3052, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959283390068452, 45.73736170490385], + [4.959279701686487, 45.73736820023878] + ] + }, + "length": 0.0007769109155526, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3704", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4575, + "bus2": 4574, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960740549922936, 45.73708555348455], + [4.960671836128309, 45.73707011111041], + [4.960650120456335, 45.73707758610233] + ] + }, + "length": 0.0074999085460423, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4466", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 338, + "bus2": 5357, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960126272587628, 45.73862419295075], + [4.960199756304963, 45.73870863853983] + ] + }, + "length": 0.0109909365086242, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "transfo8", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1316000, + "bus2": 17, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "400kVA", + "tap": 1.0 + }, + { + "id": "line4236", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 17, + "bus2": 5116, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96075889797756, 45.73708967927565], + [4.960771590226623, 45.73707952573821], + [4.960794806906621, 45.73706093464583], + [4.960849440960156, 45.73704179794322] + ] + }, + "length": 0.0074993866686839, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line286", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 17, + "bus2": 531, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96075889797756, 45.73708967927565], + [4.960777939782102, 45.73708759573616], + [4.960811330564744, 45.73708395245376], + [4.961358971029576, 45.73689561425828], + [4.961398300335136, 45.7368307829915], + [4.961984072040853, 45.73663344835436] + ] + }, + "length": 0.1085366702149709, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line977", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 17, + "bus2": 1531, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96075889797756, 45.73708967927565], + [4.960770216708153, 45.73710059461094], + [4.960789889444348, 45.73711956007803], + [4.960858114576383, 45.73709456058403], + [4.960935668151952, 45.73720722054048] + ] + }, + "length": 0.0224988879643285, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4237", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5116, + "bus2": 5117, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960849440960156, 45.73704179794322], + [4.96086667443794, 45.73703575995913] + ] + }, + "length": 0.0014997946053861, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4238", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5117, + "bus2": 5118, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96086667443794, 45.73703575995913], + [4.961136695199635, 45.73694116682628] + ] + }, + "length": 0.0234987629080634, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line978", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1531, + "bus2": 1532, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960935668151952, 45.73720722054048], + [4.960941248158703, 45.73721532652868] + ] + }, + "length": 0.0010001579199835, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line979", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1532, + "bus2": 295, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960941248158703, 45.73721532652868], + [4.961045955673573, 45.73736741760803] + ] + }, + "length": 0.0187661331039162, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4239", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5118, + "bus2": 5119, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961136695199635, 45.73694116682628], + [4.961153928614241, 45.73693512879809] + ] + }, + "length": 0.0014997945502358, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4240", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5119, + "bus2": 5120, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961153928614241, 45.73693512879809], + [4.961337225159591, 45.73687091834149], + [4.961360232170545, 45.73682367990691] + ] + }, + "length": 0.0214987798149279, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3773", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 295, + "bus2": 4647, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961045955673573, 45.73736741760803], + [4.961038896755773, 45.73740808991974], + [4.961099941734808, 45.73750207943066], + [4.960793268398773, 45.7376150105743] + ] + }, + "length": 0.0429972584046471, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1250", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 295, + "bus2": 1840, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961045955673573, 45.73736741760803], + [4.961317252966468, 45.73726479178624] + ] + }, + "length": 0.0239988073603358, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line83", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 295, + "bus2": 296, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961045955673573, 45.73736741760803], + [4.961254260680495, 45.73766500030121] + ] + }, + "length": 0.0368347747644785, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4241", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5120, + "bus2": 5121, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961360232170545, 45.73682367990691], + [4.961366461715031, 45.73681090495221] + ] + }, + "length": 0.0015003845165864, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4242", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5121, + "bus2": 5122, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961366461715031, 45.73681090495221], + [4.96136649637729, 45.73681082312702], + [4.961430098987583, 45.73678945101164] + ] + }, + "length": 0.0055001062627582, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4243", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5122, + "bus2": 5123, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961430098987583, 45.73678945101164], + [4.961447470592804, 45.73678361674145] + ] + }, + "length": 0.0014994921828266, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4244", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5123, + "bus2": 5124, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961447470592804, 45.73678361674145], + [4.961661760315602, 45.73671160557122] + ] + }, + "length": 0.0184992014171015, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1251", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1840, + "bus2": 1841, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961317252966468, 45.73726479178624], + [4.961334514238821, 45.73725825799199] + ] + }, + "length": 0.0015271473619261, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1252", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1841, + "bus2": 1842, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961334514238821, 45.73725825799199], + [4.961339855392209, 45.73725623373556] + ] + }, + "length": 0.0004726775241331, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1253", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1842, + "bus2": 1843, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961339855392209, 45.73725623373556], + [4.961340171264948, 45.73725611832876] + ] + }, + "length": 2.772923754078671e-5, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4245", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5124, + "bus2": 5125, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961661760315602, 45.73671160557122], + [4.961679131871559, 45.73670577126523] + ] + }, + "length": 0.001499492136751, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4246", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5125, + "bus2": 5126, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961679131871559, 45.73670577126523], + [4.961965980931708, 45.73660937818495] + ] + }, + "length": 0.0247630704763613, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3774", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4647, + "bus2": 4648, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960793268398773, 45.7376150105743], + [4.960622693085613, 45.7376778244415] + ] + }, + "length": 0.0149994723794677, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3775", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4648, + "bus2": 4649, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960622693085613, 45.7376778244415], + [4.960513124055958, 45.7377181749721] + ] + }, + "length": 0.0096350082787613, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line209", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 531, + "bus2": 532, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961984072040853, 45.73663344835436], + [4.962053028112852, 45.73665073858405], + [4.96266036706634, 45.73644749479478] + ] + }, + "length": 0.0580902420227454, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4247", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5126, + "bus2": 5127, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961965980931708, 45.73660937818495], + [4.961968713751984, 45.73660845910157] + ] + }, + "length": 0.000235954498344, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4248", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5127, + "bus2": 1502, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961968713751984, 45.73660845910157], + [4.961982656484691, 45.7366037761511] + ] + }, + "length": 0.0012035329395608, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3776", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4649, + "bus2": 4650, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960513124055958, 45.7377181749721], + [4.960508980416538, 45.73771970310602] + ] + }, + "length": 0.000364485419189, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line961", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1502, + "bus2": 1510, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961982656484691, 45.7366037761511], + [4.962051655415735, 45.73662196553913], + [4.96219385396506, 45.73657448591048] + ] + }, + "length": 0.0179992128212935, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line955", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1502, + "bus2": 1503, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.961982656484691, 45.7366037761511], + [4.962002394882419, 45.73666722583931], + [4.962055727770482, 45.73668038074695], + [4.962167329875355, 45.73683709838383], + [4.96213440083194, 45.73684960686295] + ] + }, + "length": 0.0339982521657435, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3777", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4650, + "bus2": 4651, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960508980416538, 45.73771970310602], + [4.96050743912461, 45.7377202702363] + ] + }, + "length": 0.0001355096861915, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line962", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1510, + "bus2": 1511, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96219385396506, 45.73657448591048], + [4.962286628397499, 45.73654351020274] + ] + }, + "length": 0.0079994237598084, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line963", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1511, + "bus2": 1512, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962286628397499, 45.73654351020274], + [4.962440113013225, 45.73649225556941] + ] + }, + "length": 0.01323455875897, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line956", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1503, + "bus2": 1504, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96213440083194, 45.73684960686295], + [4.962126926139021, 45.73685244620967] + ] + }, + "length": 0.0006618375786432, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2166", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1512, + "bus2": 2900, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962440113013225, 45.73649225556941], + [4.962499017231833, 45.73656829120282], + [4.962478496234752, 45.73659513708291] + ] + }, + "length": 0.012998874465924, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2167", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2900, + "bus2": 2901, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962478496234752, 45.73659513708291], + [4.962472398263021, 45.73660312016901], + [4.962562383748659, 45.73673783918393], + [4.962546991911733, 45.73678516075339] + ] + }, + "length": 0.022931005478589, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2168", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2901, + "bus2": 2902, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962546991911733, 45.73678516075339], + [4.962546801938095, 45.73678575930509] + ] + }, + "length": 6.814998294214048e-5, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2169", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2902, + "bus2": 2903, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962546801938095, 45.73678575930509], + [4.962545568380995, 45.73678954184167] + ] + }, + "length": 0.0004312374862264, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "transfo9", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1321000, + "bus2": 64, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "630kVA", + "tap": 1.0 + }, + { + "id": "line1594", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 2243, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965084063081045, 45.73849012268901], + [4.965084930423785, 45.73848567357514] + ] + }, + "length": 0.0004990881977186, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line260", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 621, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965086563914866, 45.73852633167192], + [4.965081747073785, 45.73856274804481], + [4.965140569083272, 45.7386711182296], + [4.965899220039365, 45.7386086992918], + [4.965922818643806, 45.73851659985056] + ] + }, + "length": 0.0868002806626187, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line171", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 461, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965073226315021, 45.73851569806614], + [4.965058640595166, 45.73853733751645], + [4.965010617682945, 45.73855466514089], + [4.965078778436606, 45.73866288865581], + [4.964450467561931, 45.73869650556197], + [4.964394554729672, 45.73869937201268] + ] + }, + "length": 0.0734158864084878, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line168", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 455, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965063299618518, 45.73849896248653], + [4.965032009370969, 45.73849115276518], + [4.964913236217574, 45.73853444168664], + [4.96495930499504, 45.73861077678116] + ] + }, + "length": 0.022217159646987, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line161", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 441, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965071638764609, 45.73849188093678], + [4.9650419343038, 45.73845671414239], + [4.964901632092384, 45.73850680840194], + [4.964510719345298, 45.73801997295966] + ] + }, + "length": 0.0788746145834906, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line230", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 570, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965092310713022, 45.73851557515957], + [4.965167793202724, 45.73864789553053], + [4.966121754461933, 45.73857171884823], + [4.966135101225179, 45.73852254528428] + ] + }, + "length": 0.0961254785888437, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line139", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 398, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965077689549044, 45.73852166963346], + [4.965053551445329, 45.73856536174762], + [4.965097165500242, 45.73862744169458], + [4.965466467843086, 45.73860035649596] + ] + }, + "length": 0.0417955946810107, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3836", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 64, + "bus2": 4711, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965081449499382, 45.73850349730601], + [4.965096556236531, 45.73851187507648], + [4.96512502746423, 45.73852768123741], + [4.965147952614935, 45.73855656162601] + ] + }, + "length": 0.0065002527623105, + "params_id": "S_AL_35_bt", + "ground": "ground" + }, + { + "id": "line1595", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2243, + "bus2": 2244, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965084930423785, 45.73848567357514], + [4.965088677354798, 45.73846642135719], + [4.965052928588864, 45.73841774966102], + [4.964916607629818, 45.73847045118764], + [4.964547700386225, 45.73801370604721] + ] + }, + "length": 0.07868403373704, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3837", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4711, + "bus2": 4712, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965147952614935, 45.73855656162601], + [4.965152384551264, 45.73856214685375], + [4.965194158703693, 45.73854856617363] + ] + }, + "length": 0.0042946510843251, + "params_id": "S_AL_35_bt", + "ground": "ground" + }, + { + "id": "line2677", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 455, + "bus2": 3482, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96495930499504, 45.73861077678116], + [4.96479321244731, 45.73862099457246] + ] + }, + "length": 0.0129763168892696, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2678", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3482, + "bus2": 3483, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96479321244731, 45.73862099457246], + [4.964792917532347, 45.73862101048032] + ] + }, + "length": 2.3020417188823448e-5, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2679", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3483, + "bus2": 3484, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964792917532347, 45.73862101048032], + [4.96465439581094, 45.73862952922292] + ] + }, + "length": 0.010822259929561, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line240", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 398, + "bus2": 588, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965466467843086, 45.73860035649596], + [4.965445515323404, 45.73863806901497], + [4.965452493889316, 45.73867301190182], + [4.965467951236606, 45.73867850089131] + ] + }, + "length": 0.0097680440360565, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3128", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 398, + "bus2": 3961, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965466467843086, 45.73860035649596], + [4.965635709880166, 45.73858368177106] + ] + }, + "length": 0.0133013956335383, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2680", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3484, + "bus2": 3485, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96465439581094, 45.73862952922292], + [4.964652127236736, 45.7386296723614] + ] + }, + "length": 0.0001772721694314, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2681", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3485, + "bus2": 3486, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964652127236736, 45.7386296723614], + [4.96437914655397, 45.73864645216977] + ] + }, + "length": 0.0213270284582181, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3129", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3961, + "bus2": 1900, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965635709880166, 45.73858368177106], + [4.965698522526376, 45.73857859169032] + ] + }, + "length": 0.004921165621923, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1303", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1900, + "bus2": 1901, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965698522526376, 45.73857859169032], + [4.965725056144439, 45.73857643983605] + ] + }, + "length": 0.0020788438731462, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3282", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1900, + "bus2": 4127, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965698522526376, 45.73857859169032], + [4.965699320512575, 45.73855439462086] + ] + }, + "length": 0.0026901295622809, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1304", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1901, + "bus2": 650, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965725056144439, 45.73857643983605], + [4.965804784154678, 45.7385702243004] + ] + }, + "length": 0.0062433544462683, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3283", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4127, + "bus2": 4128, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965699320512575, 45.73855439462086], + [4.965699252348427, 45.73855377510523] + ] + }, + "length": 6.906087275498889e-5, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2682", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3486, + "bus2": 511, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96437914655397, 45.73864645216977], + [4.964320979401388, 45.73865002848635] + ] + }, + "length": 0.0045444041469279, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4126", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 650, + "bus2": 5001, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965804784154678, 45.7385702243004], + [4.965878812489984, 45.73856444829248] + ] + }, + "length": 0.0057970831921064, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line278", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 650, + "bus2": 651, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965804784154678, 45.7385702243004], + [4.965807853201676, 45.73855804521034], + [4.96588560785737, 45.73855142576443], + [4.965892013136321, 45.73849849014617], + [4.965905552164909, 45.73849504039023] + ] + }, + "length": 0.0144965442912675, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line199", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 511, + "bus2": 512, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964320979401388, 45.73865002848635], + [4.964300903280957, 45.73865953616883], + [4.963849315269567, 45.73867375412993], + [4.963846545798926, 45.73866394418235] + ] + }, + "length": 0.0381790357341103, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2343", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 511, + "bus2": 3107, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964320979401388, 45.73865002848635], + [4.964315333159959, 45.73863247249453] + ] + }, + "length": 0.0020001502928667, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line391", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 461, + "bus2": 837, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964394554729672, 45.73869937201268], + [4.964392671373303, 45.7387660011235], + [4.964457257085702, 45.73890894695324] + ] + }, + "length": 0.024071080076804, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4327", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 461, + "bus2": 5213, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964394554729672, 45.73869937201268], + [4.96436059502179, 45.73869892492372] + ] + }, + "length": 0.0026434536605825, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2344", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3107, + "bus2": 3108, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964315333159959, 45.73863247249453], + [4.964302865197918, 45.73859374237484], + [4.964299275431529, 45.7385891005713] + ] + }, + "length": 0.0049994247730048, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4127", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5001, + "bus2": 5002, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965878812489984, 45.73856444829248], + [4.966068033230046, 45.73854969028852] + ] + }, + "length": 0.0148176137400325, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4328", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5213, + "bus2": 873, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96436059502179, 45.73869892492372], + [4.964289723841232, 45.73870082731759] + ] + }, + "length": 0.0055197517724435, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1244", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 441, + "bus2": 1833, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964510719345298, 45.73801997295966], + [4.96449895162743, 45.73800398257293] + ] + }, + "length": 0.0019993720963717, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2345", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3108, + "bus2": 198, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964299275431529, 45.7385891005713], + [4.964264272577165, 45.73854392180715] + ] + }, + "length": 0.0057128006007713, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4012", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2244, + "bus2": 4886, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964547700386225, 45.73801370604721], + [4.964439172513151, 45.73786772048844], + [4.964444177119184, 45.73786241837054] + ] + }, + "length": 0.0189989762344716, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1245", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1833, + "bus2": 1834, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96449895162743, 45.73800398257293], + [4.964399365763311, 45.73786865255626], + [4.964631577039423, 45.73761657068017], + [4.964629859448765, 45.73758060440638] + ] + }, + "length": 0.0542616673342133, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line414", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 873, + "bus2": 750, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964289723841232, 45.73870082731759], + [4.964070768491324, 45.73870671870665] + ] + }, + "length": 0.017053240950427, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2114", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 873, + "bus2": 2841, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964289723841232, 45.73870082731759], + [4.964335562248609, 45.73874947004877], + [4.964387501263031, 45.7388655631196] + ] + }, + "length": 0.0199990456917288, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1662", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2319, + "bus2": 2318, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965749812771702, 45.73787625327925], + [4.965774230664155, 45.73786884000859] + ] + }, + "length": 0.0020713364128582, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1259", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 198, + "bus2": 1850, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964264272577165, 45.73854392180715], + [4.964264235958905, 45.7385364243123] + ] + }, + "length": 0.0008333230108893, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line34", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 198, + "bus2": 199, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964264272577165, 45.73854392180715], + [4.963785020541142, 45.73792534316028] + ] + }, + "length": 0.0782186277177634, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1260", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1850, + "bus2": 1851, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964264235958905, 45.7385364243123], + [4.96426419637153, 45.73852617239019], + [4.964246811848618, 45.73850374229704], + [4.964295208166546, 45.7384861542162] + ] + }, + "length": 0.008219598467182, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4128", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5002, + "bus2": 5003, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966068033230046, 45.73854969028852], + [4.966131857231558, 45.73854451325678] + ] + }, + "length": 0.005000468856018, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 147, + "bus2": 146, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96395197494093, 45.7380834639623], + [4.964252163804259, 45.73847286744663] + ] + }, + "length": 0.0491838494724766, + "params_id": "T_AL_70_bt", + "ground": "ground" + }, + { + "id": "line4129", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5003, + "bus2": 5004, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966131857231558, 45.73854451325678], + [4.966144611671658, 45.73854347628841] + ] + }, + "length": 0.0009993128878082, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4130", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5004, + "bus2": 5005, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966144611671658, 45.73854347628841], + [4.966221190525608, 45.73853727122765] + ] + }, + "length": 0.0059996999556732, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1021", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 570, + "bus2": 1583, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966135101225179, 45.73852254528428], + [4.96614781966638, 45.7385212931198] + ] + }, + "length": 0.0009995789954377, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1022", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1583, + "bus2": 1584, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96614781966638, 45.7385212931198], + [4.966152771529289, 45.73852080803084] + ] + }, + "length": 0.0003891436092389, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line587", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 146, + "bus2": 1118, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96395197494093, 45.7380834639623], + [4.963939739555462, 45.73806763749647] + ] + }, + "length": 0.0020002632179181, + "params_id": "T_AL_70_bt", + "ground": "ground" + }, + { + "id": "line1023", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1584, + "bus2": 1585, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966152771529289, 45.73852080803084], + [4.966173960655363, 45.73851872728084] + ] + }, + "length": 0.0016652315367893, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4013", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4886, + "bus2": 2182, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964444177119184, 45.73786241837054], + [4.96463372403091, 45.73766152852276], + [4.964668772496811, 45.73761479951217] + ] + }, + "length": 0.0326278795576607, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line338", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 750, + "bus2": 751, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964070768491324, 45.73870671870665], + [4.964074290125498, 45.73878020652378], + [4.964094282222768, 45.73878724583392] + ] + }, + "length": 0.0099140527275263, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line513", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 750, + "bus2": 1020, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964070768491324, 45.73870671870665], + [4.963808763795043, 45.73871376144375] + ] + }, + "length": 0.0204060882306732, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4131", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5005, + "bus2": 5006, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966221190525608, 45.73853727122765], + [4.96638249761217, 45.73853210533971] + ] + }, + "length": 0.0125672273490958, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2115", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2841, + "bus2": 2842, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964387501263031, 45.7388655631196], + [4.964387947426963, 45.73886656085501] + ] + }, + "length": 0.0001162037823713, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2116", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2842, + "bus2": 2843, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964387947426963, 45.73886656085501], + [4.964393383784293, 45.73887702847927] + ] + }, + "length": 0.0012379799892217, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4132", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5006, + "bus2": 345, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96638249761217, 45.73853210533971], + [4.966427240851997, 45.7385284734373] + ] + }, + "length": 0.0035055677178873, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3182", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 345, + "bus2": 4018, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966427240851997, 45.7385284734373], + [4.966412768224104, 45.73851991895285], + [4.96641420877874, 45.73851643757229] + ] + }, + "length": 0.0018768720471732, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line110", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 345, + "bus2": 346, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966427240851997, 45.7385284734373], + [4.966473521113746, 45.73852687587556] + ] + }, + "length": 0.0036062449539755, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3183", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4018, + "bus2": 4019, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96641420877874, 45.73851643757229], + [4.966421794051887, 45.73849815754939] + ] + }, + "length": 0.0021157819220978, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4313", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1020, + "bus2": 5197, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963808763795043, 45.73871376144375], + [4.963807861265371, 45.73869027933681] + ] + }, + "length": 0.0026108922941206, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1808", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1020, + "bus2": 2493, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963808763795043, 45.73871376144375], + [4.963718891198381, 45.73871618029157] + ] + }, + "length": 0.0069996890251837, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3843", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 346, + "bus2": 4719, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966473521113746, 45.73852687587556], + [4.966755152046447, 45.73918277835366] + ] + }, + "length": 0.0761248081615365, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3588", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 346, + "bus2": 4444, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966473521113746, 45.73852687587556], + [4.966880551612587, 45.73849680452578] + ] + }, + "length": 0.0318539546392073, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4314", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5197, + "bus2": 5198, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963807861265371, 45.73869027933681], + [4.963806843225488, 45.73866410844905] + ] + }, + "length": 0.0029098739269281, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1809", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2493, + "bus2": 921, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963718891198381, 45.73871618029157], + [4.963416931799182, 45.73872430139771] + ] + }, + "length": 0.0235179522513829, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1543", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2182, + "bus2": 2183, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964668772496811, 45.73761479951217], + [4.964694464150002, 45.73761521506726] + ] + }, + "length": 0.0020000796630264, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2019", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2182, + "bus2": 2734, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964668772496811, 45.73761479951217], + [4.964669006017743, 45.73759680879945] + ] + }, + "length": 0.0019996818008195, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2020", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2734, + "bus2": 2735, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964669006017743, 45.73759680879945], + [4.964669322462765, 45.7375724790019], + [4.964516827801912, 45.73736721224008], + [4.964550498084664, 45.73726470547585], + [4.964714550721385, 45.73720055297952] + ] + }, + "length": 0.0547361961355345, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1544", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2183, + "bus2": 2184, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964694464150002, 45.73761521506726], + [4.964736957699373, 45.73761590327503], + [4.964994169236909, 45.73794113947151], + [4.964942681060684, 45.73796664969664], + [4.964989303413325, 45.73802766903388] + ] + }, + "length": 0.0572302368153654, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3811", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1834, + "bus2": 4686, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964629859448765, 45.73758060440638], + [4.964618117042615, 45.73756460444032] + ] + }, + "length": 0.0019994205494919, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3812", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4686, + "bus2": 4687, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964618117042615, 45.73756460444032], + [4.964477236101665, 45.73737264012023], + [4.964521132064454, 45.73724198889518], + [4.964821674409172, 45.73712873182915] + ] + }, + "length": 0.0654695205155956, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line525", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1851, + "bus2": 147, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964252163804259, 45.73847286744663], + [4.964258060030759, 45.73848192905675], + [4.964277527287557, 45.73846559440268], + [4.964295208166546, 45.7384861542162] + ] + }, + "length": 0.0034714457404252, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line588", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1118, + "bus2": 1119, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963939739555462, 45.73806763749647], + [4.963684793044012, 45.73773775517096] + ] + }, + "length": 0.0416898170124738, + "params_id": "T_AL_70_bt", + "ground": "ground" + }, + { + "id": "line446", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 921, + "bus2": 922, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963416931799182, 45.73872430139771], + [4.963302642840888, 45.73878535183302], + [4.962829897366068, 45.73879641518248], + [4.962814040532729, 45.73880948751754] + ] + }, + "length": 0.0499067215902113, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line2710", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 921, + "bus2": 3516, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963416931799182, 45.73872430139771], + [4.963398996550705, 45.73873718842353] + ] + }, + "length": 0.002000000406419, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2711", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3516, + "bus2": 3517, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963398996550705, 45.73873718842353], + [4.963324954976326, 45.73879036562378], + [4.963300989515336, 45.7388269330034], + [4.963303170042107, 45.73914193866987], + [4.963291659341217, 45.73917011309167] + ] + }, + "length": 0.050995699586163, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3589", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4444, + "bus2": 4445, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966880551612587, 45.73849680452578], + [4.966909055576143, 45.73849338198927], + [4.966916631945729, 45.73849186318009] + ] + }, + "length": 0.0028641060648262, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1663", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 651, + "bus2": 2319, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965774230664155, 45.73786884000859], + [4.965846609451201, 45.73784685470286], + [4.965911994183847, 45.73792009941256], + [4.965883449031353, 45.73797296861514], + [4.965578269249133, 45.73809980354573], + [4.965639238618598, 45.73818476394621], + [4.965721940402679, 45.73830000078299], + [4.965840160537955, 45.73846471558547], + [4.965879397435174, 45.73851938143104], + [4.96591426814956, 45.73850903176411], + [4.965905552164909, 45.73849504039023] + ] + }, + "length": 0.1047828220836059, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3590", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4445, + "bus2": 307, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966916631945729, 45.73849186318009], + [4.966934739302341, 45.73848824321975] + ] + }, + "length": 0.001465559166063, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4278", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5163, + "bus2": 651, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965905552164909, 45.73849504039023], + [4.965894046249666, 45.73847862092615], + [4.965881287996398, 45.73848226842815], + [4.965617501401622, 45.73810702199559], + [4.965879600063498, 45.73799438364752] + ] + }, + "length": 0.0714927558180307, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line331", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 306, + "bus2": 741, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966923846400905, 45.73856641666062], + [4.966932457213522, 45.73858627049101] + ] + }, + "length": 0.0023061954219882, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line460", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 306, + "bus2": 940, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966923846400905, 45.73856641666062], + [4.966904058672045, 45.73857952771669], + [4.966861332364058, 45.73858555198233] + ] + }, + "length": 0.0055122134429526, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3803", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 199, + "bus2": 4679, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963785020541142, 45.73792534316028], + [4.963773037764453, 45.73790942074913] + ] + }, + "length": 0.0020004079740598, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3804", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4679, + "bus2": 330, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963773037764453, 45.73790942074913], + [4.963677814127196, 45.73778302565311] + ] + }, + "length": 0.015883325342187, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line89", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 307, + "bus2": 306, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966923846400905, 45.73856641666062], + [4.966934739302341, 45.73848824321975] + ] + }, + "length": 0.008729942494233, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3906", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 741, + "bus2": 4776, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966932457213522, 45.73858627049101], + [4.966974236946941, 45.73868254495371] + ] + }, + "length": 0.0111836711773385, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line1873", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 741, + "bus2": 2571, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966932457213522, 45.73858627049101], + [4.966944711871314, 45.73857289490283], + [4.966942396755723, 45.73854274867939], + [4.967039911883393, 45.73853347790435] + ] + }, + "length": 0.0127807354164762, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4517", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 940, + "bus2": 5409, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966861332364058, 45.73858555198233], + [4.966854561154346, 45.73856061411885], + [4.966859127692572, 45.73855744654087] + ] + }, + "length": 0.0005002593837252, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4518", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5409, + "bus2": 5410, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966859127692572, 45.73855744654087], + [4.966885408608472, 45.73853925041993], + [4.967086714558416, 45.73851779829013], + [4.967153198292993, 45.73851071299938], + [4.967179562034882, 45.73852652304286] + ] + }, + "length": 0.0266592078044351, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3907", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4776, + "bus2": 4080, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966974236946941, 45.73868254495371], + [4.966976101032848, 45.73868684905409] + ] + }, + "length": 0.0004998988670749, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3240", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4080, + "bus2": 4081, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966976101032848, 45.73868684905409], + [4.966984130069958, 45.73870394401352] + ] + }, + "length": 0.0020001557972112, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1874", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2571, + "bus2": 2572, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967039911883393, 45.73853347790435], + [4.967088720798991, 45.73852884128122], + [4.967092347593016, 45.73853774890823] + ] + }, + "length": 0.0048629663518772, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line102", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 330, + "bus2": 331, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963677814127196, 45.73778302565311], + [4.963753918031129, 45.73771465018205] + ] + }, + "length": 0.0096352240810242, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3241", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4081, + "bus2": 4082, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966984130069958, 45.73870394401352], + [4.967040504754998, 45.73882396476578], + [4.967077614525938, 45.73903553358095], + [4.967098205301746, 45.7390806352544] + ] + }, + "length": 0.0429974144606054, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1875", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2572, + "bus2": 2573, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967092347593016, 45.73853774890823], + [4.967093600205398, 45.73854082511308] + ] + }, + "length": 0.0003555351492179, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1876", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2573, + "bus2": 2574, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967093600205398, 45.73854082511308], + [4.967096686551868, 45.73854837715886] + ] + }, + "length": 0.000873073871471, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3603", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2318, + "bus2": 4459, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965749812771702, 45.73787625327925], + [4.965740732820078, 45.73785813867644], + [4.965833183197056, 45.73782844585855], + [4.965707994515488, 45.73767175276756], + [4.965586043737275, 45.73771951868912], + [4.965523531768788, 45.73764127362278], + [4.965520943090657, 45.73761103478463], + [4.965485033672116, 45.73756303312003] + ] + }, + "length": 0.0581020815410653, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line4279", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5164, + "bus2": 5163, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965879600063498, 45.73799438364752], + [4.965896378940283, 45.73798717632106], + [4.965906059884657, 45.73798800270665] + ] + }, + "length": 0.00229101978137, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3387", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 762, + "bus2": 4238, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963640385938517, 45.73773252953077], + [4.963550347283213, 45.73761321427028] + ] + }, + "length": 0.0149990621636114, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line346", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 331, + "bus2": 762, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963640385938517, 45.73773252953077], + [4.963753918031129, 45.73771465018205] + ] + }, + "length": 0.0090567371203615, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line877", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1408, + "bus2": 331, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963753918031129, 45.73771465018205], + [4.963728252376153, 45.73771370270651] + ] + }, + "length": 0.0020002933298367, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3844", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4719, + "bus2": 4720, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966755152046447, 45.73918277835366], + [4.966757041384764, 45.73918707286457] + ] + }, + "length": 0.0004994537193106, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4519", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5410, + "bus2": 5411, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967179562034882, 45.73852652304286], + [4.967184445653658, 45.73852945112759] + ] + }, + "length": 0.0005003748354409, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line514", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 922, + "bus2": 1022, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962814040532729, 45.73880948751754], + [4.962828539643373, 45.73880729390306], + [4.962835039080114, 45.73880098470804], + [4.962852473515341, 45.73880103581867], + [4.962859281896754, 45.73880820381644] + ] + }, + "length": 0.0031783382162706, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line879", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1409, + "bus2": 1410, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963688180820572, 45.73769912193055], + [4.963686759093996, 45.7376973458852], + [4.963845465167481, 45.73764717336032], + [4.963859714633435, 45.73767153122744] + ] + }, + "length": 0.0167042598176257, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line878", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1409, + "bus2": 1408, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963728252376153, 45.73771370270651], + [4.96369901950342, 45.73771262268939], + [4.963688180820572, 45.73769912193055] + ] + }, + "length": 0.0039997288262935, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line4447", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4687, + "bus2": 5338, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964821674409172, 45.73712873182915], + [4.964834124266964, 45.73714447216054] + ] + }, + "length": 0.0019998907630107, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3897", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4687, + "bus2": 4769, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964821674409172, 45.73712873182915], + [4.964831602864755, 45.73711213436472] + ] + }, + "length": 0.0020000468184538, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1743", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1022, + "bus2": 2415, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962859281896754, 45.73880820381644], + [4.962872412011224, 45.73881207331538], + [4.962873076280744, 45.73882949390529], + [4.962865287680672, 45.73883653539589], + [4.962836266744469, 45.73883721449722] + ] + }, + "length": 0.0051867189317516, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line4448", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5338, + "bus2": 5339, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964834124266964, 45.73714447216054], + [4.964854510441288, 45.7371702704783], + [4.965107597122434, 45.73714003876493], + [4.96519319602257, 45.73710202739505], + [4.965208295435371, 45.73704136284544] + ] + }, + "length": 0.0379922359902965, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3898", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4769, + "bus2": 4770, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964831602864755, 45.73711213436472], + [4.964921677602302, 45.73696166011555], + [4.965022685148439, 45.73692328800584], + [4.965087317927479, 45.73693077587181], + [4.965111247117847, 45.73694731850593] + ] + }, + "length": 0.0347940676041285, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1744", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2415, + "bus2": 2416, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962836266744469, 45.73883721449722], + [4.962814051602552, 45.73883773433524] + ] + }, + "length": 0.0017299015909678, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2388", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2416, + "bus2": 3161, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962814051602552, 45.73883773433524], + [4.962814418019343, 45.7388486447235], + [4.962867898996664, 45.73884599800154], + [4.962877359920165, 45.73885298690654], + [4.962883078694469, 45.73886156664981], + [4.962892422671395, 45.7389636153791], + [4.962888818684407, 45.73897160313579] + ] + }, + "length": 0.0185919906156647, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line880", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1410, + "bus2": 1411, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963859714633435, 45.73767153122744], + [4.963861142878668, 45.73767398223961] + ] + }, + "length": 0.0002942264127686, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line881", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1411, + "bus2": 1412, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963861142878668, 45.73767398223961], + [4.963861157007316, 45.73767400891371] + ] + }, + "length": 3.1620790672645624e-6, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line882", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1412, + "bus2": 1413, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963861157007316, 45.73767400891371], + [4.963866392190475, 45.73768295999191] + ] + }, + "length": 0.0010750793346875, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3388", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4238, + "bus2": 4239, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963550347283213, 45.73761321427028], + [4.963549619934052, 45.73761225011894] + ] + }, + "length": 0.000121194774666, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3389", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4239, + "bus2": 1835, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963549619934052, 45.73761225011894], + [4.963474814846975, 45.73751312892872] + ] + }, + "length": 0.0124606788020934, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3242", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4082, + "bus2": 4083, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967098205301746, 45.7390806352544], + [4.967099842838252, 45.73908423353426] + ] + }, + "length": 0.0004197500645236, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3243", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4083, + "bus2": 4084, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967099842838252, 45.73908423353426], + [4.967227282552781, 45.73936342979869] + ] + }, + "length": 0.0325780757880506, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2756", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1835, + "bus2": 3561, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963474814846975, 45.73751312892872], + [4.963462479145761, 45.73749734977482] + ] + }, + "length": 0.0019993821121835, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1246", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1835, + "bus2": 1836, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963474814846975, 45.73751312892872], + [4.963497048017847, 45.73750411099638] + ] + }, + "length": 0.0019997099976804, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2389", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3161, + "bus2": 3162, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962888818684407, 45.73897160313579], + [4.962863535513303, 45.73897033144124] + ] + }, + "length": 0.001972777034415, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2757", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3561, + "bus2": 3562, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963462479145761, 45.73749734977482], + [4.963265346496066, 45.73724528264585] + ] + }, + "length": 0.0319422828269449, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1247", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1836, + "bus2": 1837, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963497048017847, 45.73750411099638], + [4.963510125291912, 45.73749879999892], + [4.963301207348012, 45.73723494661714] + ] + }, + "length": 0.0347088808774535, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1458", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3162, + "bus2": 2082, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962863535513303, 45.73897033144124], + [4.962863811421402, 45.73898311628438], + [4.962886393534187, 45.73898328097514], + [4.962888281712707, 45.73900183413399], + [4.962866468943565, 45.73904580437819], + [4.962861951193626, 45.73907612852811], + [4.962847860515478, 45.7390938853876], + [4.962825142287602, 45.73910487687795] + ] + }, + "length": 0.0167941126161813, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1459", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2082, + "bus2": 2083, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962825142287602, 45.73910487687795], + [4.962799247099212, 45.73910478969897] + ] + }, + "length": 0.0020153568585986, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3604", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4459, + "bus2": 4460, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965485033672116, 45.73756303312003], + [4.96546027566689, 45.73752995597727] + ] + }, + "length": 0.0041507574815767, + "params_id": "S_AL_240_bt", + "ground": "ground" + }, + { + "id": "line3165", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4460, + "bus2": 4000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96546027566689, 45.73752995597727], + [4.965446080316029, 45.7375363465867], + [4.965496852966263, 45.73761481266828], + [4.965497978548156, 45.73764967660889], + [4.965547551761585, 45.73771890809485], + [4.965512430883249, 45.73773316122202] + ] + }, + "length": 0.0252178508163276, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2172", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4460, + "bus2": 2907, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96546027566689, 45.73752995597727], + [4.965431466504765, 45.73754366516221], + [4.965472463724308, 45.73761905663634], + [4.965472509552071, 45.73764477321136], + [4.965378471563087, 45.73767863466824] + ] + }, + "length": 0.0200545333061928, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3244", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4084, + "bus2": 4085, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967227282552781, 45.73936342979869], + [4.967229191598985, 45.73936759781802] + ] + }, + "length": 0.0004865014431651, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line3245", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4085, + "bus2": 4086, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.967229191598985, 45.73936759781802], + [4.967234131662368, 45.73937842801658] + ] + }, + "length": 0.0012636431424746, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2826", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3562, + "bus2": 3633, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963265346496066, 45.73724528264585], + [4.963242634353148, 45.73725369063208] + ] + }, + "length": 0.0019994910941135, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2827", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3633, + "bus2": 3634, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963242634353148, 45.73725369063208], + [4.962982391175434, 45.73735002242246], + [4.962946816651661, 45.73730494669624], + [4.96288579730475, 45.73732738442268] + ] + }, + "length": 0.033998515467894, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line1248", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1837, + "bus2": 1838, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963301207348012, 45.73723494661714], + [4.963299402071233, 45.73723267545407] + ] + }, + "length": 0.0002888989592709, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line1249", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1838, + "bus2": 1839, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.963299402071233, 45.73723267545407], + [4.963298088674567, 45.73723101389017] + ] + }, + "length": 0.0002110792502328, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2173", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2907, + "bus2": 2908, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965378471563087, 45.73767863466824], + [4.965350955659803, 45.73765779229969], + [4.965336428176132, 45.73765938380543] + ] + }, + "length": 0.0042991690906046, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line3166", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4000, + "bus2": 4001, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965512430883249, 45.73773316122202], + [4.965496973365225, 45.73772255032398] + ] + }, + "length": 0.0016846915662651, + "params_id": "S_AL_150_bt", + "ground": "ground" + }, + { + "id": "line2828", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3634, + "bus2": 3259, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96288579730475, 45.73732738442268], + [4.962834378987221, 45.73734628484756], + [4.962682042602933, 45.73733274648558] + ] + }, + "length": 0.0164709967796539, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2480", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3259, + "bus2": 3260, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962682042602933, 45.73733274648558], + [4.96269358237546, 45.73734882339289] + ] + }, + "length": 0.0019999002187924, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "line2481", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3260, + "bus2": 3261, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.96269358237546, 45.73734882339289], + [4.962914757208745, 45.73765675998811] + ] + }, + "length": 0.0383109844275194, + "params_id": "S_AL_95_bt", + "ground": "ground" + }, + { + "id": "mv_line513", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 505000, + "bus2": 873000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.934853888991207, 45.75111906308752], + [4.934834644632761, 45.75111833830388], + [4.934815400274816, 45.7511176135168], + [4.934796143073234, 45.75111688902378], + [4.934408207723045, 45.75110237305132], + [4.934405208834641, 45.75109114554304] + ] + }, + "length": 0.0344979481355189, + "params_id": "S_AL_240_SO", + "ground": "ground" + }, + { + "id": "mv_line522", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 873000, + "bus2": 740000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.934405208834641, 45.75109114554304], + [4.934012554090829, 45.74963878116863] + ] + }, + "length": 0.164291047512965, + "params_id": "S_AL_240_S3", + "ground": "ground" + }, + { + "id": "mv_line535", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 740000, + "bus2": 1291000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.934012554090829, 45.74963878116863], + [4.934089975267011, 45.74961898670725], + [4.934271103007967, 45.74957267733033], + [4.934362391718408, 45.74951109178252], + [4.934444593253748, 45.74939484320697], + [4.934510542332508, 45.74934830938341], + [4.934700162559126, 45.74911618244491], + [4.93600772006941, 45.7480804416568], + [4.936522791471793, 45.74733488887927], + [4.937125734895893, 45.74546568990075], + [4.937140380788406, 45.74542028316572], + [4.937316748689931, 45.74487348286667], + [4.938907342243382, 45.7450139476745], + [4.941973039404839, 45.74502744476446], + [4.94423254711822, 45.74512080067002], + [4.945957349084773, 45.74537956929375], + [4.94661141421717, 45.74545347790473], + [4.947713015293973, 45.74547556567691], + [4.948514022793406, 45.7454218233143], + [4.948511717973904, 45.74537326847669], + [4.947946666883481, 45.74541439243114], + [4.947923168242962, 45.7454139309383] + ] + }, + "length": 1.5369655813706598, + "params_id": "S_AL_240_S3", + "ground": "ground" + }, + { + "id": "mv_line746", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1291000, + "bus2": 1298000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.947923168242962, 45.7454139309383], + [4.947925694069067, 45.74541893105686], + [4.94794484193671, 45.74542849533407], + [4.948542625889133, 45.74537434957136], + [4.948544760006484, 45.74541930775377], + [4.949076751708565, 45.74538622349836], + [4.950342397648638, 45.74539726599526], + [4.950783116637014, 45.74539150337244], + [4.951100203642397, 45.74538141754201], + [4.950552409384916, 45.74327504293316] + ] + }, + "length": 0.4907623183893089, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line812", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1298000, + "bus2": 1319000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950552409384916, 45.74327504293316], + [4.949906323306207, 45.74079051368596], + [4.9495977722481, 45.74087151043574], + [4.949459670739951, 45.74061638057695], + [4.949470397586742, 45.74060376270168], + [4.949480260064897, 45.74059216412196] + ] + }, + "length": 0.339788688417405, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line861", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1319000, + "bus2": 953000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.949480260064897, 45.74059216412196], + [4.949508035055415, 45.74058553146511], + [4.949525960416786, 45.74059049708699], + [4.949550034971421, 45.74059717386969], + [4.949642047994629, 45.74074805831734], + [4.951974042481999, 45.74017885100903], + [4.951928161380414, 45.74010610723776], + [4.951952004647032, 45.74009384958142], + [4.951951711472315, 45.74009336132657] + ] + }, + "length": 0.2251476354568539, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line889", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 953000, + "bus2": 954000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.951951711472315, 45.74009336132657], + [4.95135518144123, 45.73908607705976], + [4.950827523652318, 45.73920908836617], + [4.950700727347117, 45.73896168111497] + ] + }, + "length": 0.193697358758526, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line921", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 954000, + "bus2": 1315000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950700727347117, 45.73896168111497], + [4.950683002753226, 45.73892710485574], + [4.950687188982982, 45.73891022842621], + [4.950690491372931, 45.73889693720407] + ] + }, + "length": 0.007486392724792, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line924", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1315000, + "bus2": 1288000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.950690491372931, 45.73889693720407], + [4.950711313253716, 45.73888927797029], + [4.950728832749745, 45.738894909956], + [4.95076690045993, 45.73890714755486], + [4.950899600369789, 45.73912944686171], + [4.950900983143112, 45.73913176406161], + [4.953593777785205, 45.7384740021168], + [4.953440535815594, 45.73822569311434], + [4.953029680646615, 45.73755999185273], + [4.952985755893911, 45.73755325651908], + [4.952966927517592, 45.73755037388134] + ] + }, + "length": 0.369445414461516, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line994", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1288000, + "bus2": 1287000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.952966927517592, 45.73755037388134], + [4.952970678553071, 45.73753247231445], + [4.953016249644159, 45.73753652280846], + [4.953055307379572, 45.73752687170771], + [4.953208603799049, 45.73775342303767], + [4.953447302371143, 45.73810549028116], + [4.953663318105447, 45.73841276308804], + [4.953761084376749, 45.73847794111495], + [4.953925398058722, 45.73844435905789], + [4.953998793332333, 45.73844390760684], + [4.954060320030075, 45.73845420174916], + [4.954767759595066, 45.73863168464968], + [4.955017983505683, 45.73856131467854], + [4.955161038663632, 45.7383384463276], + [4.955242819176544, 45.73825945760687], + [4.955409783643996, 45.73815572513228], + [4.955594842131863, 45.73784388552754], + [4.955777692133985, 45.73761533480327], + [4.955829734353092, 45.73752495050727], + [4.95586278507185, 45.73745716233029], + [4.955892585629407, 45.73733756484492], + [4.955886559278371, 45.73717826937097], + [4.955798001969372, 45.73684202052682], + [4.955706183839841, 45.73650205808818], + [4.955615984735573, 45.7361636781212], + [4.955528804272737, 45.73582360739611], + [4.955507372293894, 45.73573007698997], + [4.955536441198181, 45.73564346050048], + [4.955563623646242, 45.73559851135201], + [4.955578510902217, 45.73559098066524], + [4.955566421845806, 45.73554386044366], + [4.955773753814144, 45.73545687330306], + [4.955825102506913, 45.73544919373419], + [4.955876823497322, 45.735449606879], + [4.955910336807397, 45.73545638601512], + [4.955986417604017, 45.73547408969552], + [4.956017067965745, 45.73548121467279], + [4.956043948302113, 45.73551202979766] + ] + }, + "length": 0.630121475715793, + "params_id": "S_AL_240_SO", + "ground": "ground" + }, + { + "id": "mv_line1076", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1287000, + "bus2": 1286000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956043948302113, 45.73551202979766], + [4.956031484106162, 45.7355207732151], + [4.956016138640789, 45.73550463148617], + [4.955974360377148, 45.73549570487705], + [4.955888414300881, 45.73547734028486], + [4.955812288894236, 45.73547436417319], + [4.955759296562427, 45.73548694295187], + [4.955591431270563, 45.73556210811316], + [4.95560115523951, 45.73560193823433], + [4.955575235468778, 45.73561264290327], + [4.955533428485482, 45.73573304256136], + [4.955623354301448, 45.73609514809851], + [4.955702063808622, 45.73636983992795], + [4.95579335174877, 45.73671568376572], + [4.95587561573046, 45.73703098876224], + [4.955900832890308, 45.73714298307286], + [4.955918780146928, 45.73731803214995], + [4.955880878259301, 45.7374540485829], + [4.955818094050436, 45.73758504672529], + [4.95571406195425, 45.73772208434256], + [4.955612171333923, 45.73784848601255], + [4.955488163126232, 45.73805444663595], + [4.955430610837714, 45.73815900180517], + [4.955424792507604, 45.73821907914153], + [4.955448026578344, 45.738278064482], + [4.955532854833927, 45.73834146354646], + [4.955646676128739, 45.73837820738113], + [4.955771405970204, 45.73837755597182], + [4.955833239579399, 45.73836539202305], + [4.955871376723359, 45.73835341201361], + [4.956026723916627, 45.73843018855734], + [4.956176351271163, 45.73874759390392], + [4.956181431593408, 45.73878302260706], + [4.956166703989995, 45.73883092176693], + [4.956127443639037, 45.73891572395237], + [4.956128112590414, 45.73894355025951], + [4.956227263963253, 45.73907338834777], + [4.956268709832248, 45.7391111907987], + [4.956296113861096, 45.73912191115127], + [4.956540133369497, 45.73917989229741] + ] + }, + "length": 0.5085815051709539, + "params_id": "S_AL_240_SO", + "ground": "ground" + }, + { + "id": "mv_line1119", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1286000, + "bus2": 1285000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956540133369497, 45.73917989229741], + [4.956686644194016, 45.73957834821236], + [4.956784880233747, 45.73956255244881], + [4.956790274849269, 45.73955975303269], + [4.956805769545054, 45.73955173093524] + ] + }, + "length": 0.055597773628533, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1125", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1285000, + "bus2": 1275000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956805769545054, 45.73955173093524], + [4.956802389176359, 45.73954094492941], + [4.956783514974541, 45.73953819900303], + [4.956773365608019, 45.73953671664481], + [4.956724868276837, 45.73954414996297], + [4.956588705287621, 45.73916836158606], + [4.956590211563276, 45.73916813738952] + ] + }, + "length": 0.049381536100774, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1275000, + "bus2": 1276000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.956590211563276, 45.73916813738952], + [4.9574004828912, 45.73904588982978], + [4.95791271659061, 45.73897721706705], + [4.958522714313755, 45.73893686348068], + [4.958503536796873, 45.73884032825598], + [4.95850242110051, 45.73883471931859], + [4.958507278623495, 45.73882766560496] + ] + }, + "length": 0.1651155909781519, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1141", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1276000, + "bus2": 929000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.958507278623495, 45.73882766560496], + [4.95853078933913, 45.73882384877223], + [4.958540730331404, 45.73882932354635], + [4.958541745828243, 45.73883390864182], + [4.958563677530362, 45.73893320602062], + [4.958670666082522, 45.73892603465969] + ] + }, + "length": 0.021032388089923, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 929000, + "bus2": 914000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.958670666082522, 45.73892603465969], + [4.959883573875087, 45.7388447523938], + [4.959942510917832, 45.73878666466919], + [4.959945775117695, 45.7387863723316] + ] + }, + "length": 0.1030040053238849, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1150", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 914000, + "bus2": 913000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959945775117695, 45.7387863723316], + [4.960108931149272, 45.73877197263126], + [4.959402413398822, 45.73805485525463], + [4.95935517406077, 45.73798696194202] + ] + }, + "length": 0.118024219916963, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1157", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 913000, + "bus2": 1282000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.95935517406077, 45.73798696194202], + [4.959263360437473, 45.73785502868565], + [4.959254914727904, 45.73784289385675] + ] + }, + "length": 0.017812660865478, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1159", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1282000, + "bus2": 1279000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959254914727904, 45.73784289385675], + [4.959262619023578, 45.7378381229995], + [4.959278769029432, 45.73784548696938], + [4.959457101250193, 45.73792677160319] + ] + }, + "length": 0.01806061181738, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1161", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1279000, + "bus2": 1316000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.959457101250193, 45.73792677160319], + [4.959539506826824, 45.73796433574488], + [4.959767785652898, 45.73744050795777], + [4.959828133973272, 45.73738508776525], + [4.960704666805936, 45.73708464619889], + [4.960720678055627, 45.73708613515478], + [4.960739787801594, 45.73708790272099], + [4.960749536320644, 45.73710147424123] + ] + }, + "length": 0.154982241719371, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1167", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1316000, + "bus2": 1304000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960749536320644, 45.73710147424123], + [4.960740174659695, 45.73711326920607], + [4.96072979525635, 45.73712636619542], + [4.959872308799626, 45.73742186194769], + [4.959813628571298, 45.73745833980615], + [4.959618476114199, 45.7379219828892], + [4.959625846049425, 45.73804963341353], + [4.960267477108633, 45.73878086860401], + [4.960266999084436, 45.73878216700876] + ] + }, + "length": 0.247114507605945, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1184", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1304000, + "bus2": 1303000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960266999084436, 45.73878216700876], + [4.960249289102349, 45.73883080263122], + [4.960179906024735, 45.73885852925228], + [4.960067246898769, 45.73886836406428], + [4.960077303420673, 45.73902537805807], + [4.960077316709229, 45.7390256567973], + [4.960091104079988, 45.73903468717842] + ] + }, + "length": 0.0396010930357249, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1186", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1303000, + "bus2": 1283000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.960091104079988, 45.73903468717842], + [4.96011968477193, 45.73903501825975], + [4.960132662390182, 45.73902706352871], + [4.960133670766166, 45.73902583374149], + [4.960307672403199, 45.73881503520587], + [4.960975108547744, 45.73876612412163], + [4.962445412364442, 45.7387047284812], + [4.962445409300398, 45.73870412544466] + ] + }, + "length": 0.195489447579978, + "params_id": "S_AL_150_PU", + "ground": "ground" + }, + { + "id": "mv_line1196", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1283000, + "bus2": 1284000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962445409300398, 45.73870412544466], + [4.962445872173599, 45.7386066001075], + [4.962452235162686, 45.73859716156536], + [4.962460458941739, 45.73858496099791] + ] + }, + "length": 0.013499202927542, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1197", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1284000, + "bus2": 952000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962460458941739, 45.73858496099791], + [4.962478492915574, 45.73858437702606], + [4.962488315959219, 45.7385959933209], + [4.962500019197009, 45.73860983403072], + [4.962506920894191, 45.73870058887422], + [4.962508976327063, 45.73870055878569] + ] + }, + "length": 0.0135495917010089, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1198", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1284000, + "bus2": 1295000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962460458941739, 45.73858496099791], + [4.96248306372969, 45.7385637824033], + [4.962483662938447, 45.73856340831882], + [4.962483200481335, 45.73855048381665], + [4.962475676465369, 45.73834215542708] + ] + }, + "length": 0.0246617524093749, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1199", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 952000, + "bus2": 923000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.962508976327063, 45.73870055878569], + [4.964271843789176, 45.73867098248862], + [4.964710680877293, 45.73864011135382] + ] + }, + "length": 0.171563703605549, + "params_id": "S_AL_150_PU", + "ground": "ground" + }, + { + "id": "mv_line1206", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 923000, + "bus2": 922000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964710680877293, 45.73864011135382], + [4.964923994213112, 45.7386251061686], + [4.964922099667358, 45.73862204497594] + ] + }, + "length": 0.017055959863808, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1207", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 922000, + "bus2": 1321000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964922099667358, 45.73862204497594], + [4.964875228430449, 45.73854613373273], + [4.965040315249011, 45.73850356051809], + [4.965042911714355, 45.73850355371846], + [4.965062180606872, 45.73850352551388], + [4.965069722600271, 45.7385142048397] + ] + }, + "length": 0.024585707139325, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1213", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1321000, + "bus2": 912000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965069722600271, 45.7385142048397], + [4.965057995696578, 45.73852491237226], + [4.965053117652362, 45.73852936540094], + [4.964928692668426, 45.73856198475284], + [4.964967023796365, 45.73861896752438] + ] + }, + "length": 0.019464487402351, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1214", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 912000, + "bus2": 911000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.964967023796365, 45.73861896752438], + [4.964967439090402, 45.73861958791228], + [4.965999144972133, 45.73853954813616] + ] + }, + "length": 0.080862341930947, + "params_id": "S_AL_150_PU", + "ground": "ground" + }, + { + "id": "mv_line1219", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 911000, + "bus2": 924000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.965999144972133, 45.73853954813616], + [4.966075646839055, 45.73853361502763] + ] + }, + "length": 0.005990345667753, + "params_id": "S_AL_150_S3", + "ground": "ground" + }, + { + "id": "mv_line1220", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 924000, + "bus2": 1294000, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.966075646839055, 45.73853361502763], + [4.966446756203762, 45.73850481893744], + [4.967412346930341, 45.73842727847661], + [4.968632733183615, 45.73830144670887], + [4.968602142577012, 45.73817254049829], + [4.968622530082306, 45.73813569574117], + [4.968629499909648, 45.7381231100194] + ] + }, + "length": 0.221121252329989, + "params_id": "S_AL_150_PU", + "ground": "ground" + } + ], + "loads": [ + { + "id": 314, + "bus": 9, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2432.3856949832066, 279.37897303968185] + ] + }, + { + "id": 47, + "bus": 2607, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2433.179637243938, 272.3777388794874] + ] + }, + { + "id": 285, + "bus": 2607, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2381.108860594792, 569.9766431465541], + [0.0, 0.0] + ] + }, + { + "id": 175, + "bus": 2608, + "phases": "abcn", + "powers": [ + [2421.252055695705, 363.44361670686527], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 10, + "bus": 2609, + "phases": "abcn", + "powers": [ + [2411.4241442242223, 423.77632825362235], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 493, + "bus": 2609, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2417.407333694204, 388.1939756579451], + [0.0, 0.0] + ] + }, + { + "id": 549, + "bus": 929, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2363.7697401405635, 638.0794584779061], + [0.0, 0.0] + ] + }, + { + "id": 217, + "bus": 2382, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2344.6131780238015, 705.2246629073417] + ] + }, + { + "id": 422, + "bus": 2382, + "phases": "abcn", + "powers": [ + [2422.2772138757127, 356.54716220180387], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 501, + "bus": 2382, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2346.999224171061, 697.2427278043713], + [0.0, 0.0] + ] + }, + { + "id": 207, + "bus": 2546, + "phases": "abcn", + "powers": [ + [2404.6433934878683, 460.69830680261157], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 223, + "bus": 2546, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2396.4470921212837, 501.5915812681552], + [0.0, 0.0] + ] + }, + { + "id": 430, + "bus": 2546, + "phases": "abcn", + "powers": [ + [2327.777886666886, 758.9485424455935], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 637, + "bus": 2546, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2348.7344957318965, 691.3747524278559] + ] + }, + { + "id": 577, + "bus": 2596, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2439.909365920717, 203.4577740662893], + [0.0, 0.0] + ] + }, + { + "id": 672, + "bus": 2596, + "phases": "abcn", + "powers": [ + [2331.524085063689, 747.3608368810686], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 216, + "bus": 2597, + "phases": "abcn", + "powers": [ + [2350.3642133275666, 685.814001347839], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 5, + "bus": 2598, + "phases": "abcn", + "powers": [ + [2337.4287683016405, 728.6834243013363], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 70, + "bus": 2598, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2334.6329794111475, 737.5917781411828], + [0.0, 0.0] + ] + }, + { + "id": 345, + "bus": 2962, + "phases": "abcn", + "powers": [ + [2387.448621623947, 542.8092287733876], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 136, + "bus": 2963, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2353.1887884311063, 676.0586555453502], + [0.0, 0.0] + ] + }, + { + "id": 407, + "bus": 2963, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2447.879014903639, 49.40757158607277], + [0.0, 0.0] + ] + }, + { + "id": 100, + "bus": 2964, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.9950186667766, 733.2666994345574] + ] + }, + { + "id": 128, + "bus": 2964, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2351.676036404424, 681.3021352798057], + [0.0, 0.0] + ] + }, + { + "id": 299, + "bus": 2964, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2415.8795215821624, 397.59139444357515], + [0.0, 0.0] + ] + }, + { + "id": 497, + "bus": 3555, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2328.253019965499, 757.4897060404037], + [0.0, 0.0] + ] + }, + { + "id": 526, + "bus": 3555, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2437.243578754593, 233.2306102447708], + [0.0, 0.0] + ] + }, + { + "id": 607, + "bus": 3556, + "phases": "abcn", + "powers": [ + [2434.396168150889, 261.2816033093667], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 361, + "bus": 3575, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2423.4216926378517, 348.68335117687093], + [0.0, 0.0] + ] + }, + { + "id": 489, + "bus": 3575, + "phases": "abcn", + "powers": [ + [2374.3464039458304, 597.5214923374285], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 39, + "bus": 3576, + "phases": "abcn", + "powers": [ + [2344.669365052958, 705.0378346711638], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 586, + "bus": 3576, + "phases": "abcn", + "powers": [ + [2377.3532745302887, 585.4435820946015], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 611, + "bus": 3576, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2366.592550102731, 627.5288690840432] + ] + }, + { + "id": 94, + "bus": 3577, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2384.3266178761673, 556.3626146883353] + ] + }, + { + "id": 380, + "bus": 3577, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2417.1818418777575, 389.59558908193117] + ] + }, + { + "id": 119, + "bus": 4301, + "phases": "abcn", + "powers": [ + [2403.6070931071727, 466.0748026878647], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 214, + "bus": 4301, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2353.4077282518274, 675.2961160411169], + [0.0, 0.0] + ] + }, + { + "id": 270, + "bus": 4301, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2441.1626527016997, 187.82354162895567], + [0.0, 0.0] + ] + }, + { + "id": 318, + "bus": 4301, + "phases": "abcn", + "powers": [ + [2358.651427399194, 656.7466968043236], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 462, + "bus": 4301, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2399.4602324065604, 486.9736880316005], + [0.0, 0.0] + ] + }, + { + "id": 481, + "bus": 4301, + "phases": "abcn", + "powers": [ + [2345.228645221082, 703.1752138479662], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 568, + "bus": 4301, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2384.792071391344, 554.3641005373865] + ] + }, + { + "id": 77, + "bus": 4302, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2405.9539904514168, 453.804115854569] + ] + }, + { + "id": 265, + "bus": 4302, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2361.721742622243, 645.6184555610239] + ] + }, + { + "id": 29, + "bus": 5147, + "phases": "abcn", + "powers": [ + [2426.562854428562, 326.1065673106781], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 661, + "bus": 5147, + "phases": "abcn", + "powers": [ + [2389.384184414002, 534.2246709090471], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 92, + "bus": 5148, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2416.02682277211, 396.6953130317368] + ] + }, + { + "id": 625, + "bus": 5148, + "phases": "abcn", + "powers": [ + [2408.124281383738, 442.1427655697861], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 87, + "bus": 5149, + "phases": "abcn", + "powers": [ + [2372.3521664824248, 605.3907646485777], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 93, + "bus": 5150, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2364.349851343492, 635.9265367852267] + ] + }, + { + "id": 529, + "bus": 5150, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2338.6292858605343, 724.8212490339195], + [0.0, 0.0] + ] + }, + { + "id": 41, + "bus": 5151, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2372.6761073451953, 604.1199130709851], + [0.0, 0.0] + ] + }, + { + "id": 434, + "bus": 5151, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.8360513044254, 571.1151167188597], + [0.0, 0.0] + ] + }, + { + "id": 646, + "bus": 5177, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2392.3307123624213, 520.870946034768] + ] + }, + { + "id": 519, + "bus": 5178, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.0933175492796, 574.2025596363261], + [0.0, 0.0] + ] + }, + { + "id": 594, + "bus": 5178, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2392.564605713904, 519.7955244331347] + ] + }, + { + "id": 19, + "bus": 5179, + "phases": "abcn", + "powers": [ + [2406.9098162848377, 448.70693777490595], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 58, + "bus": 5179, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2419.7112944431856, 373.5639587536871] + ] + }, + { + "id": 97, + "bus": 5179, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2334.278394779038, 738.7131753281797] + ] + }, + { + "id": 140, + "bus": 5179, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2368.9456175720775, 618.5866477072499], + [0.0, 0.0] + ] + }, + { + "id": 152, + "bus": 5179, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2438.678438150586, 217.71599627740528] + ] + }, + { + "id": 215, + "bus": 5179, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2330.8870581355213, 749.3452488352601] + ] + }, + { + "id": 331, + "bus": 5179, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2420.548725681698, 368.0986910277618], + [0.0, 0.0] + ] + }, + { + "id": 356, + "bus": 5179, + "phases": "abcn", + "powers": [ + [2403.2247262521164, 468.04240712363236], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 106, + "bus": 156, + "phases": "abcn", + "powers": [ + [2382.0615020314785, 565.9821377704243], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 171, + "bus": 156, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2376.6941060660924, 588.1138545607836], + [0.0, 0.0] + ] + }, + { + "id": 643, + "bus": 156, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2347.0951006057157, 696.9199153764292], + [0.0, 0.0] + ] + }, + { + "id": 124, + "bus": 157, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2436.6166245419927, 239.69189544335896] + ] + }, + { + "id": 350, + "bus": 157, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2421.632152176491, 360.9023403646745], + [0.0, 0.0] + ] + }, + { + "id": 395, + "bus": 157, + "phases": "abcn", + "powers": [ + [2418.28108248391, 382.7131900471866], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 498, + "bus": 260, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2396.44249312855, 501.61355330918263], + [0.0, 0.0] + ] + }, + { + "id": 634, + "bus": 260, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2342.815182816766, 711.1749425414863] + ] + }, + { + "id": 582, + "bus": 261, + "phases": "abcn", + "powers": [ + [2357.2886225077796, 661.6215911916864], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 57, + "bus": 459, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2385.4531098160455, 551.5126839924912] + ] + }, + { + "id": 275, + "bus": 459, + "phases": "abcn", + "powers": [ + [2340.4594095332614, 718.8897913191299], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 457, + "bus": 459, + "phases": "abcn", + "powers": [ + [2378.828541356629, 579.4200122214775], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 544, + "bus": 459, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2394.38131536513, 511.36180573640195], + [0.0, 0.0] + ] + }, + { + "id": 593, + "bus": 459, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2445.27481231421, 123.22285501216675] + ] + }, + { + "id": 654, + "bus": 671, + "phases": "abcn", + "powers": [ + [2363.8217250071716, 637.8868489942113], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 312, + "bus": 809, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2356.857086472276, 663.1571862545551], + [0.0, 0.0] + ] + }, + { + "id": 524, + "bus": 1961, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2398.685287531307, 490.7766000091022] + ] + }, + { + "id": 573, + "bus": 1961, + "phases": "abcn", + "powers": [ + [2425.938599168151, 330.71844944259215], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 251, + "bus": 2042, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2353.0862850135986, 676.4153420913404], + [0.0, 0.0] + ] + }, + { + "id": 13, + "bus": 2139, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2429.708012399468, 301.780970601978], + [0.0, 0.0] + ] + }, + { + "id": 75, + "bus": 2139, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2378.727504630869, 579.8346647521536] + ] + }, + { + "id": 448, + "bus": 2140, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2339.9651445600243, 720.4969826306201] + ] + }, + { + "id": 21, + "bus": 2192, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2359.987918964805, 651.9277583258859], + [0.0, 0.0] + ] + }, + { + "id": 262, + "bus": 2192, + "phases": "abcn", + "powers": [ + [2362.224862022134, 643.7751789096516], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 553, + "bus": 2192, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2420.3283212243914, 369.5451220281006] + ] + }, + { + "id": 3, + "bus": 2193, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2416.630417120084, 393.0015353477039] + ] + }, + { + "id": 619, + "bus": 2193, + "phases": "abcn", + "powers": [ + [2366.1022892969754, 629.3748774134983], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 114, + "bus": 2205, + "phases": "abcn", + "powers": [ + [2358.334323721875, 657.8844862823025], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 309, + "bus": 2205, + "phases": "abcn", + "powers": [ + [2366.332896868811, 628.5072799356462], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 115, + "bus": 2206, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2393.683720049321, 514.6173608677497] + ] + }, + { + "id": 504, + "bus": 2206, + "phases": "abcn", + "powers": [ + [2379.293734123972, 577.50680211929], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 441, + "bus": 2207, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2413.1700724726534, 413.7184804404721], + [0.0, 0.0] + ] + }, + { + "id": 44, + "bus": 2909, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2434.2735123314396, 262.42188722970695] + ] + }, + { + "id": 324, + "bus": 2909, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2441.8968165425167, 178.02448453840876], + [0.0, 0.0] + ] + }, + { + "id": 486, + "bus": 2909, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2378.5882471563787, 580.4056600561275], + [0.0, 0.0] + ] + }, + { + "id": 143, + "bus": 2910, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2347.818773956216, 694.4780661722697], + [0.0, 0.0] + ] + }, + { + "id": 313, + "bus": 2910, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2431.8400862482385, 284.0890259263862], + [0.0, 0.0] + ] + }, + { + "id": 408, + "bus": 2910, + "phases": "abcn", + "powers": [ + [2354.702658837464, 670.7668508501472], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 639, + "bus": 2911, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2420.82898544707, 366.2510108586108], + [0.0, 0.0] + ] + }, + { + "id": 228, + "bus": 2912, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2421.768043876054, 359.98933511479936] + ] + }, + { + "id": 179, + "bus": 2913, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2342.281925901524, 712.9292807359587], + [0.0, 0.0] + ] + }, + { + "id": 154, + "bus": 3627, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2436.1414267154255, 244.47439288517413] + ] + }, + { + "id": 399, + "bus": 3627, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2371.080545228807, 610.35221616138], + [0.0, 0.0] + ] + }, + { + "id": 612, + "bus": 3627, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2379.449800589041, 576.8634380964165], + [0.0, 0.0] + ] + }, + { + "id": 218, + "bus": 3628, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2407.9131033974227, 443.29140102492005], + [0.0, 0.0] + ] + }, + { + "id": 266, + "bus": 3628, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2432.2747483374987, 280.34323308294887] + ] + }, + { + "id": 444, + "bus": 3628, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2402.386949889882, 472.3237477985124], + [0.0, 0.0] + ] + }, + { + "id": 59, + "bus": 3629, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2384.1422380268355, 557.1521951783332] + ] + }, + { + "id": 127, + "bus": 3629, + "phases": "abcn", + "powers": [ + [2363.6953437230104, 638.3549966889924], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 659, + "bus": 3629, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2404.2815577248275, 462.5829340993052] + ] + }, + { + "id": 121, + "bus": 3630, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2445.9044692740313, 110.01866623879525] + ] + }, + { + "id": 543, + "bus": 3630, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2412.733367540999, 416.25770490156043] + ] + }, + { + "id": 104, + "bus": 3631, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2404.9801850641957, 458.936911987073] + ] + }, + { + "id": 319, + "bus": 3631, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2379.5923833200695, 576.2749942351782], + [0.0, 0.0] + ] + }, + { + "id": 388, + "bus": 3631, + "phases": "abcn", + "powers": [ + [2437.314319207233, 232.49019145552435], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 601, + "bus": 3632, + "phases": "abcn", + "powers": [ + [2369.0867563827105, 618.0458886423338], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 208, + "bus": 3967, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2348.2057657826176, 693.1684220165499], + [0.0, 0.0] + ] + }, + { + "id": 605, + "bus": 3967, + "phases": "abcn", + "powers": [ + [2413.6161353694456, 411.10817410981576], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 38, + "bus": 3968, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2386.3743573684947, 547.5127452669474] + ] + }, + { + "id": 552, + "bus": 3968, + "phases": "abcn", + "powers": [ + [2335.405165187275, 735.1431793550424], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 579, + "bus": 3968, + "phases": "abcn", + "powers": [ + [2361.0781563082614, 647.9681470100406], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 541, + "bus": 4357, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2363.9369236235993, 637.4598033324438], + [0.0, 0.0] + ] + }, + { + "id": 590, + "bus": 4358, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2378.505646205865, 580.7440664375864], + [0.0, 0.0] + ] + }, + { + "id": 628, + "bus": 4358, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2408.969581674959, 437.5138104110737] + ] + }, + { + "id": 363, + "bus": 4784, + "phases": "abcn", + "powers": [ + [2390.9834873249956, 527.0206286995289], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 428, + "bus": 4784, + "phases": "abcn", + "powers": [ + [2392.091272742834, 521.9694652019532], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 511, + "bus": 4784, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2350.108495035974, 686.6897707810949], + [0.0, 0.0] + ] + }, + { + "id": 274, + "bus": 4979, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2442.1495992857176, 174.52253276941764] + ] + }, + { + "id": 583, + "bus": 4979, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2441.0601088426683, 189.1515919908243] + ] + }, + { + "id": 191, + "bus": 4980, + "phases": "abcn", + "powers": [ + [2372.849453203246, 603.4386896518155], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 192, + "bus": 4981, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2352.150573451028, 679.6620186163454] + ] + }, + { + "id": 556, + "bus": 4981, + "phases": "abcn", + "powers": [ + [2348.0976626474953, 693.5345315159251], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 632, + "bus": 4981, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2381.037718588979, 570.2737609185908] + ] + }, + { + "id": 91, + "bus": 4982, + "phases": "abcn", + "powers": [ + [2362.2813414690986, 643.567901221465], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 131, + "bus": 4982, + "phases": "abcn", + "powers": [ + [2431.8027622216177, 284.4083426817042], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 412, + "bus": 4982, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2406.133506625306, 452.8513310465741], + [0.0, 0.0] + ] + }, + { + "id": 371, + "bus": 4983, + "phases": "abcn", + "powers": [ + [2380.034767019346, 574.4451997491249], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 40, + "bus": 4984, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2377.639051982852, 584.2818825034103] + ] + }, + { + "id": 322, + "bus": 4984, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2393.3917958425095, 515.9733436229154], + [0.0, 0.0] + ] + }, + { + "id": 52, + "bus": 4985, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2442.6850723528623, 166.8604717724843] + ] + }, + { + "id": 122, + "bus": 4985, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2380.047710154057, 574.3915712526384] + ] + }, + { + "id": 571, + "bus": 4985, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.9638573613975, 570.5820621736881], + [0.0, 0.0] + ] + }, + { + "id": 222, + "bus": 4986, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2339.192029825341, 723.0030617758442], + [0.0, 0.0] + ] + }, + { + "id": 204, + "bus": 4987, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2438.527956512574, 219.39504334021618], + [0.0, 0.0] + ] + }, + { + "id": 294, + "bus": 4987, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2398.803326102523, 490.1993292683268], + [0.0, 0.0] + ] + }, + { + "id": 558, + "bus": 4987, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2379.538189714576, 576.498728034608] + ] + }, + { + "id": 165, + "bus": 106, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2336.3392766197417, 732.1690817424518] + ] + }, + { + "id": 365, + "bus": 290, + "phases": "abcn", + "powers": [ + [2335.6259190335977, 734.4415198462744], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 284, + "bus": 2401, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.148059172267, 735.9594564102287] + ] + }, + { + "id": 159, + "bus": 2402, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2395.627929430475, 505.48946919624245] + ] + }, + { + "id": 304, + "bus": 2402, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2389.48967374922, 533.7526381962815], + [0.0, 0.0] + ] + }, + { + "id": 429, + "bus": 2402, + "phases": "abcn", + "powers": [ + [2406.884637663093, 448.8419774453408], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 432, + "bus": 2402, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2332.3733310950993, 744.7062670153874], + [0.0, 0.0] + ] + }, + { + "id": 494, + "bus": 2402, + "phases": "abcn", + "powers": [ + [2372.503271378119, 604.7983193063359], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 132, + "bus": 2403, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2328.9930207043503, 755.2114202301697], + [0.0, 0.0] + ] + }, + { + "id": 235, + "bus": 2403, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2389.8303539762446, 532.2251957108213] + ] + }, + { + "id": 472, + "bus": 2405, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2411.982298153164, 420.587889901061], + [0.0, 0.0] + ] + }, + { + "id": 474, + "bus": 2405, + "phases": "abcn", + "powers": [ + [2395.2870956713778, 507.10206965247124], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 618, + "bus": 2405, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2361.9212577834915, 644.8881699690986] + ] + }, + { + "id": 660, + "bus": 2406, + "phases": "abcn", + "powers": [ + [2378.919347755168, 579.0470763347058], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 80, + "bus": 2410, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2380.877469719985, 570.9424260951416] + ] + }, + { + "id": 247, + "bus": 2410, + "phases": "abcn", + "powers": [ + [2355.505239204915, 667.9429974285529], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 139, + "bus": 2411, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2366.1441621672707, 629.2174374390694], + [0.0, 0.0] + ] + }, + { + "id": 509, + "bus": 2717, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2368.939938055252, 618.6083976332874], + [0.0, 0.0] + ] + }, + { + "id": 563, + "bus": 2717, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2408.9962632454317, 437.36687506622076], + [0.0, 0.0] + ] + }, + { + "id": 51, + "bus": 2719, + "phases": "abcn", + "powers": [ + [2371.732816762633, 607.8126566852908], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 169, + "bus": 2719, + "phases": "abcn", + "powers": [ + [2328.9488306509243, 755.3476841464051], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 225, + "bus": 2719, + "phases": "abcn", + "powers": [ + [2398.4426585305864, 491.9609674317439], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 291, + "bus": 2719, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2340.0094883543757, 720.3529510921277], + [0.0, 0.0] + ] + }, + { + "id": 390, + "bus": 3034, + "phases": "abcn", + "powers": [ + [2422.2427187544718, 356.7814333406223], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 650, + "bus": 3034, + "phases": "abcn", + "powers": [ + [2354.939680377301, 669.9342367129025], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 424, + "bus": 5249, + "phases": "abcn", + "powers": [ + [2427.5440715177315, 318.72019166466276], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 282, + "bus": 5250, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2351.7921699267663, 680.9011449592348] + ] + }, + { + "id": 674, + "bus": 5251, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2376.9567891505153, 587.0512773573676] + ] + }, + { + "id": 31, + "bus": 54, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2433.2426445386895, 271.8142978837007] + ] + }, + { + "id": 464, + "bus": 54, + "phases": "abcn", + "powers": [ + [2406.3556241121187, 451.6695584601863], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 72, + "bus": 220, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2342.156170271647, 713.342311792939] + ] + }, + { + "id": 108, + "bus": 220, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2358.4242395638394, 657.562077657592] + ] + }, + { + "id": 164, + "bus": 220, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2383.885624528723, 558.249145902567] + ] + }, + { + "id": 550, + "bus": 220, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2441.9711890934377, 177.00138805451888], + [0.0, 0.0] + ] + }, + { + "id": 415, + "bus": 504, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.397870739917, 572.9387024041167], + [0.0, 0.0] + ] + }, + { + "id": 28, + "bus": 522, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2365.6570309092504, 631.0464260617244] + ] + }, + { + "id": 68, + "bus": 522, + "phases": "abcn", + "powers": [ + [2334.649596074852, 737.5391808461262], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 176, + "bus": 522, + "phases": "abcn", + "powers": [ + [2424.396929295532, 341.83667000197477], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 404, + "bus": 851, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2333.6976613809675, 740.5457480808641] + ] + }, + { + "id": 465, + "bus": 935, + "phases": "abcn", + "powers": [ + [2368.8192647792903, 619.0703276253414], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 66, + "bus": 3513, + "phases": "abcn", + "powers": [ + [2367.346757608022, 624.6776040314155], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 292, + "bus": 3513, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2344.1978175357704, 706.6041126374621] + ] + }, + { + "id": 396, + "bus": 3513, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2414.6165001508375, 405.191235017447] + ] + }, + { + "id": 663, + "bus": 3513, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2441.948525597641, 177.31378419951207], + [0.0, 0.0] + ] + }, + { + "id": 138, + "bus": 3514, + "phases": "abcn", + "powers": [ + [2328.8556756345433, 755.6348468674661], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 301, + "bus": 3515, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2428.2958185165385, 312.9412045588424] + ] + }, + { + "id": 257, + "bus": 13, + "phases": "abcn", + "powers": [ + [2414.257521386525, 407.32468641642384], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 287, + "bus": 13, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2412.5034423008256, 417.5882189697304], + [0.0, 0.0] + ] + }, + { + "id": 6, + "bus": 1017, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2399.6571600459415, 486.0023600517711] + ] + }, + { + "id": 289, + "bus": 1017, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2422.4037259759275, 355.6866150329365], + [0.0, 0.0] + ] + }, + { + "id": 402, + "bus": 1017, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2329.0221916233895, 755.1214542452282], + [0.0, 0.0] + ] + }, + { + "id": 426, + "bus": 1017, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2420.756035335988, 366.7328688841953], + [0.0, 0.0] + ] + }, + { + "id": 98, + "bus": 3073, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2340.635086958129, 718.3175964962559], + [0.0, 0.0] + ] + }, + { + "id": 168, + "bus": 3073, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2363.9599049210588, 637.3745740624291] + ] + }, + { + "id": 416, + "bus": 3073, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2338.121583838213, 726.4573207873459], + [0.0, 0.0] + ] + }, + { + "id": 630, + "bus": 3073, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2370.804223108987, 611.4246604645873] + ] + }, + { + "id": 71, + "bus": 3074, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2407.854211797332, 443.61117486543617], + [0.0, 0.0] + ] + }, + { + "id": 85, + "bus": 3074, + "phases": "abcn", + "powers": [ + [2375.711455472058, 592.0708235291456], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 431, + "bus": 3074, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2365.594441508625, 631.2810135265755] + ] + }, + { + "id": 560, + "bus": 3074, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2400.707109198293, 480.78909677780644], + [0.0, 0.0] + ] + }, + { + "id": 340, + "bus": 3075, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2372.8415641020015, 603.4697104292908] + ] + }, + { + "id": 56, + "bus": 3076, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2441.8831916810227, 178.21127327233032] + ] + }, + { + "id": 249, + "bus": 3076, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2384.2414870134007, 556.727322250105] + ] + }, + { + "id": 174, + "bus": 4580, + "phases": "abcn", + "powers": [ + [2406.2725883809408, 452.111723075316], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 328, + "bus": 4580, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2393.4439548393493, 515.731339728951], + [0.0, 0.0] + ] + }, + { + "id": 423, + "bus": 4580, + "phases": "abcn", + "powers": [ + [2422.299678905655, 356.39450796723037], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 26, + "bus": 4581, + "phases": "abcn", + "powers": [ + [2382.548079031921, 563.9303421850499], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 170, + "bus": 4581, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2400.7901766431214, 480.3741328064345], + [0.0, 0.0] + ] + }, + { + "id": 239, + "bus": 4581, + "phases": "abcn", + "powers": [ + [2360.1047856681043, 651.5045513288104], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 186, + "bus": 4582, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2359.9068470646775, 652.2211687095851] + ] + }, + { + "id": 82, + "bus": 33, + "phases": "abcn", + "powers": [ + [2380.206271149612, 573.7341601436195], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 129, + "bus": 33, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2338.542582004068, 725.1009391039229] + ] + }, + { + "id": 134, + "bus": 33, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2345.4475235507384, 702.4447978349281], + [0.0, 0.0] + ] + }, + { + "id": 665, + "bus": 338, + "phases": "abcn", + "powers": [ + [2403.701679329178, 465.58674436213505], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 369, + "bus": 421, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2327.109125089608, 760.9966489153044] + ] + }, + { + "id": 455, + "bus": 421, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2442.696429148064, 166.6941353585708], + [0.0, 0.0] + ] + }, + { + "id": 492, + "bus": 421, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2366.1270730720366, 629.2816967076051], + [0.0, 0.0] + ] + }, + { + "id": 220, + "bus": 422, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2346.4992609137576, 698.9234566580483], + [0.0, 0.0] + ] + }, + { + "id": 209, + "bus": 453, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2366.032848607911, 629.6358781422618], + [0.0, 0.0] + ] + }, + { + "id": 48, + "bus": 613, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2419.237260355931, 376.62163751060984] + ] + }, + { + "id": 34, + "bus": 614, + "phases": "abcn", + "powers": [ + [2356.1505651011807, 665.6630486282312], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 118, + "bus": 614, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2385.764223788198, 550.1652917332593] + ] + }, + { + "id": 144, + "bus": 614, + "phases": "abcn", + "powers": [ + [2339.229220381742, 722.8827250999102], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 351, + "bus": 614, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2402.2574192379434, 472.9821047903389], + [0.0, 0.0] + ] + }, + { + "id": 45, + "bus": 848, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2367.6026021557177, 623.7072213796454] + ] + }, + { + "id": 293, + "bus": 848, + "phases": "abcn", + "powers": [ + [2334.7006142463606, 737.3776654966646], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 27, + "bus": 872, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2410.202717625317, 430.6688283207658] + ] + }, + { + "id": 116, + "bus": 926, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2400.0012915095995, 484.3000934213193], + [0.0, 0.0] + ] + }, + { + "id": 392, + "bus": 926, + "phases": "abcn", + "powers": [ + [2357.4166917680686, 661.165123935722], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 483, + "bus": 926, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2406.992494842309, 448.26321453855735], + [0.0, 0.0] + ] + }, + { + "id": 485, + "bus": 926, + "phases": "abcn", + "powers": [ + [2418.377995463827, 382.1003150901686], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 2, + "bus": 979, + "phases": "abcn", + "powers": [ + [2353.283910422348, 675.7274721978863], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 188, + "bus": 979, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2335.4441273905204, 735.0193926508156], + [0.0, 0.0] + ] + }, + { + "id": 624, + "bus": 979, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2445.9325430282083, 109.39275429024899] + ] + }, + { + "id": 120, + "bus": 1470, + "phases": "abcn", + "powers": [ + [2326.3927613485043, 763.1837915475708], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 419, + "bus": 1470, + "phases": "abcn", + "powers": [ + [2444.4855025113866, 137.99785414019254], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 467, + "bus": 1757, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2353.6448448808424, 674.4692164224244] + ] + }, + { + "id": 636, + "bus": 1757, + "phases": "abcn", + "powers": [ + [2443.544490174033, 153.7631434244524], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 414, + "bus": 1829, + "phases": "abcn", + "powers": [ + [2410.4620871549378, 429.21475524998635], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 334, + "bus": 1830, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2362.5075745295817, 642.736913539277] + ] + }, + { + "id": 534, + "bus": 1830, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2375.9997934683297, 590.9126510526731], + [0.0, 0.0] + ] + }, + { + "id": 565, + "bus": 1830, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2387.5239755065913, 542.4776918149219], + [0.0, 0.0] + ] + }, + { + "id": 487, + "bus": 1865, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2409.018228827568, 437.24587237861084] + ] + }, + { + "id": 189, + "bus": 1866, + "phases": "abcn", + "powers": [ + [2359.2217608964916, 654.694938615003], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 381, + "bus": 1866, + "phases": "abcn", + "powers": [ + [2400.2749186543274, 482.9421234626425], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 357, + "bus": 1867, + "phases": "abcn", + "powers": [ + [2417.377003597711, 388.382803703508], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 585, + "bus": 1867, + "phases": "abcn", + "powers": [ + [2362.825293732531, 641.5679317371013], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 20, + "bus": 2035, + "phases": "abcn", + "powers": [ + [2430.6657387083437, 293.96742405420565], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 326, + "bus": 2036, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2412.314403073519, 418.6788751056074] + ] + }, + { + "id": 46, + "bus": 2915, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2345.320197065793, 702.8697980215932], + [0.0, 0.0] + ] + }, + { + "id": 362, + "bus": 2915, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2371.846328099338, 607.369554404345], + [0.0, 0.0] + ] + }, + { + "id": 620, + "bus": 2916, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.547209936978, 572.317884568457], + [0.0, 0.0] + ] + }, + { + "id": 50, + "bus": 3049, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2388.106223014961, 539.9087398189263] + ] + }, + { + "id": 279, + "bus": 3049, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2447.1572192016874, 77.29375294748867] + ] + }, + { + "id": 647, + "bus": 3050, + "phases": "abcn", + "powers": [ + [2413.097574679349, 414.14112910007924], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 227, + "bus": 3051, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2399.460418923006, 486.9727690102158] + ] + }, + { + "id": 374, + "bus": 3051, + "phases": "abcn", + "powers": [ + [2448.300893711674, 19.378172934073667], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 491, + "bus": 3051, + "phases": "abcn", + "powers": [ + [2419.896771042204, 372.36057422229965], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 677, + "bus": 3051, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2355.9363813921273, 666.420697884312], + [0.0, 0.0] + ] + }, + { + "id": 161, + "bus": 3052, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2351.68903074522, 681.2572806277019], + [0.0, 0.0] + ] + }, + { + "id": 520, + "bus": 3052, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2398.35964574775, 492.3655038529503], + [0.0, 0.0] + ] + }, + { + "id": 662, + "bus": 3052, + "phases": "abcn", + "powers": [ + [2345.786515697846, 701.3119152743692], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 667, + "bus": 3052, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2391.2664844701703, 525.7350853664955] + ] + }, + { + "id": 280, + "bus": 3565, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2401.984170573729, 474.36781514862423] + ] + }, + { + "id": 473, + "bus": 3567, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2368.9305957539373, 618.6441725552262], + [0.0, 0.0] + ] + }, + { + "id": 506, + "bus": 3567, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2367.5215373677324, 624.0148634732781] + ] + }, + { + "id": 562, + "bus": 3567, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2436.6222272351165, 239.63493376264017], + [0.0, 0.0] + ] + }, + { + "id": 63, + "bus": 4159, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2447.78377080067, 53.92022941806716], + [0.0, 0.0] + ] + }, + { + "id": 479, + "bus": 4159, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2365.6692920980963, 631.0004597143613] + ] + }, + { + "id": 103, + "bus": 4160, + "phases": "abcn", + "powers": [ + [2358.474932950003, 657.3802327284579], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 146, + "bus": 4160, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2400.1701103604864, 483.46274010287], + [0.0, 0.0] + ] + }, + { + "id": 454, + "bus": 4160, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2364.217487322677, 636.4184569709561], + [0.0, 0.0] + ] + }, + { + "id": 30, + "bus": 4161, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2358.7352399793263, 656.4456164948574], + [0.0, 0.0] + ] + }, + { + "id": 32, + "bus": 4161, + "phases": "abcn", + "powers": [ + [2406.196768760288, 452.51507128845486], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 102, + "bus": 4161, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2350.9638842952118, 683.7555078207522], + [0.0, 0.0] + ] + }, + { + "id": 258, + "bus": 4161, + "phases": "abcn", + "powers": [ + [2416.9013691475598, 391.3317665974679], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 608, + "bus": 4161, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2389.0513833453147, 535.7109924870712], + [0.0, 0.0] + ] + }, + { + "id": 657, + "bus": 4162, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.037900649735, 736.3088905241622] + ] + }, + { + "id": 190, + "bus": 4574, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.8229285923103, 733.8147082186945] + ] + }, + { + "id": 645, + "bus": 4574, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2368.490117202509, 620.328416606632] + ] + }, + { + "id": 339, + "bus": 4575, + "phases": "abcn", + "powers": [ + [2446.0240330392407, 107.32758047254688], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 443, + "bus": 4575, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2344.1175627283337, 706.8703076549622] + ] + }, + { + "id": 243, + "bus": 4577, + "phases": "abcn", + "powers": [ + [2385.6440182720967, 550.6862971040849], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 156, + "bus": 4578, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2411.3101745990193, 424.424341444847], + [0.0, 0.0] + ] + }, + { + "id": 389, + "bus": 4578, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2376.8241250055435, 587.5881708537677] + ] + }, + { + "id": 353, + "bus": 4854, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2431.1584089763514, 289.8647446641631] + ] + }, + { + "id": 537, + "bus": 4854, + "phases": "abcn", + "powers": [ + [2394.2639330836687, 511.9111236048368], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 133, + "bus": 5080, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2424.1674285129534, 343.4604173300593], + [0.0, 0.0] + ] + }, + { + "id": 507, + "bus": 5080, + "phases": "abcn", + "powers": [ + [2335.3089798381425, 735.4486715080652], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 540, + "bus": 5080, + "phases": "abcn", + "powers": [ + [2397.2970202222314, 497.5135943562295], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 167, + "bus": 5081, + "phases": "abcn", + "powers": [ + [2426.1491851866417, 329.17003349915944], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 12, + "bus": 5082, + "phases": "abcn", + "powers": [ + [2337.312544248602, 729.0561365448965], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 242, + "bus": 5082, + "phases": "abcn", + "powers": [ + [2386.471150147672, 547.090695633268], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 671, + "bus": 5082, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2331.001662525528, 748.9886708347926] + ] + }, + { + "id": 79, + "bus": 5083, + "phases": "abcn", + "powers": [ + [2356.398931733604, 664.7833137649997], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 394, + "bus": 5083, + "phases": "abcn", + "powers": [ + [2383.2913057150054, 560.7810016743691], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 535, + "bus": 5083, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2399.1512191412803, 488.49381513848545] + ] + }, + { + "id": 602, + "bus": 5083, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2347.3929167334686, 695.9161402102865] + ] + }, + { + "id": 11, + "bus": 5216, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2344.9923281480496, 703.9628972200408], + [0.0, 0.0] + ] + }, + { + "id": 231, + "bus": 5216, + "phases": "abcn", + "powers": [ + [2429.9627979955235, 299.72250515003196], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 117, + "bus": 5353, + "phases": "abcn", + "powers": [ + [2410.1213299270066, 431.1240596006233], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 530, + "bus": 5353, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2336.282179879113, 732.3512515964893] + ] + }, + { + "id": 372, + "bus": 5354, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2362.5808299074824, 642.4675882013946] + ] + }, + { + "id": 229, + "bus": 5355, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2378.4002582573507, 581.1755253423977] + ] + }, + { + "id": 109, + "bus": 5356, + "phases": "abcn", + "powers": [ + [2433.597979537193, 268.6143215246247], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 574, + "bus": 5356, + "phases": "abcn", + "powers": [ + [2376.749916199082, 587.8882679415385], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 622, + "bus": 5357, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2331.1437736232456, 748.5462486935709], + [0.0, 0.0] + ] + }, + { + "id": 198, + "bus": 17, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2418.1982822712816, 383.2360204311011], + [0.0, 0.0] + ] + }, + { + "id": 382, + "bus": 17, + "phases": "abcn", + "powers": [ + [2403.892749077417, 464.59921509690685], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 463, + "bus": 17, + "phases": "abcn", + "powers": [ + [2396.7068392719143, 500.34898453267084], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 521, + "bus": 17, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.041039030063, 736.2989377834574] + ] + }, + { + "id": 623, + "bus": 17, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2448.151179373397, 33.295385089980485] + ] + }, + { + "id": 23, + "bus": 295, + "phases": "abcn", + "powers": [ + [2408.0007956834047, 442.81480070536634], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 244, + "bus": 295, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2367.6226017443, 623.6312976793221], + [0.0, 0.0] + ] + }, + { + "id": 598, + "bus": 296, + "phases": "abcn", + "powers": [ + [2368.169036773689, 621.5530492259048], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 263, + "bus": 532, + "phases": "abcn", + "powers": [ + [2362.9619614583717, 641.0643871222675], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 18, + "bus": 1502, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2349.4984557393846, 688.7741184262749] + ] + }, + { + "id": 55, + "bus": 1502, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2355.272185483863, 668.7643172461532], + [0.0, 0.0] + ] + }, + { + "id": 233, + "bus": 1502, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2435.104315971716, 254.59723107599748] + ] + }, + { + "id": 435, + "bus": 1502, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2398.634630505968, 491.0241226998352] + ] + }, + { + "id": 503, + "bus": 1502, + "phases": "abcn", + "powers": [ + [2379.4204685902105, 576.9844134719641], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 649, + "bus": 1502, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2353.410109241024, 675.2878182358951] + ] + }, + { + "id": 391, + "bus": 1504, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2387.387854377554, 543.0764333923756] + ] + }, + { + "id": 635, + "bus": 1504, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2364.4454153822053, 635.5711269509619], + [0.0, 0.0] + ] + }, + { + "id": 523, + "bus": 1510, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2335.3520252173994, 735.3119732798016], + [0.0, 0.0] + ] + }, + { + "id": 110, + "bus": 1511, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2345.269892456711, 703.037631476246], + [0.0, 0.0] + ] + }, + { + "id": 230, + "bus": 1511, + "phases": "abcn", + "powers": [ + [2387.8978547834768, 540.8295617439131], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 410, + "bus": 1511, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2442.180831531251, 174.08493857014594] + ] + }, + { + "id": 633, + "bus": 1511, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.3052522147123, 573.3233694998828], + [0.0, 0.0] + ] + }, + { + "id": 458, + "bus": 1512, + "phases": "abcn", + "powers": [ + [2394.0689838585163, 512.8220746636168], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 569, + "bus": 1512, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2440.333871654561, 198.30122185983737] + ] + }, + { + "id": 597, + "bus": 1531, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2417.4443615039813, 387.963321421306], + [0.0, 0.0] + ] + }, + { + "id": 224, + "bus": 1532, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2441.2124774025497, 187.17483781147263], + [0.0, 0.0] + ] + }, + { + "id": 16, + "bus": 1840, + "phases": "abcn", + "powers": [ + [2393.5388973387576, 515.2905264625074], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 211, + "bus": 1841, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2418.018901703609, 384.3661935442762], + [0.0, 0.0] + ] + }, + { + "id": 278, + "bus": 1841, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2437.1767895911144, 233.92750161961007], + [0.0, 0.0] + ] + }, + { + "id": 354, + "bus": 1841, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2402.6907549523053, 470.7758657815478], + [0.0, 0.0] + ] + }, + { + "id": 343, + "bus": 1842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2446.9592362256153, 83.32632228652766], + [0.0, 0.0] + ] + }, + { + "id": 366, + "bus": 1842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2409.5872715883556, 434.09902134769675] + ] + }, + { + "id": 446, + "bus": 1842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2390.908875378761, 527.3590137379978] + ] + }, + { + "id": 329, + "bus": 1843, + "phases": "abcn", + "powers": [ + [2438.8127676169906, 216.20606893424576], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 525, + "bus": 1843, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2397.0019776034346, 498.93316095531986], + [0.0, 0.0] + ] + }, + { + "id": 631, + "bus": 1843, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2329.923277124354, 752.3365619519984] + ] + }, + { + "id": 538, + "bus": 2900, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2356.8077435873015, 663.3325255877143], + [0.0, 0.0] + ] + }, + { + "id": 576, + "bus": 2900, + "phases": "abcn", + "powers": [ + [2371.8550912886058, 607.3353321386495], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 614, + "bus": 2900, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2445.160851767213, 125.46389409180834], + [0.0, 0.0] + ] + }, + { + "id": 88, + "bus": 2902, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2439.3820060551984, 209.68597537689348], + [0.0, 0.0] + ] + }, + { + "id": 206, + "bus": 4647, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2395.050935975009, 508.21628645772194] + ] + }, + { + "id": 33, + "bus": 4648, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2382.1308315114366, 565.6902697574671] + ] + }, + { + "id": 398, + "bus": 4648, + "phases": "abcn", + "powers": [ + [2358.3334247835564, 657.8877087195859], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 575, + "bus": 4648, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2371.738648196694, 607.789901516768] + ] + }, + { + "id": 352, + "bus": 4649, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.79081358126, 733.9169264467472] + ] + }, + { + "id": 397, + "bus": 4649, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2370.7364735997967, 611.6872995896233] + ] + }, + { + "id": 37, + "bus": 4650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2352.8077035546526, 677.3837094509474], + [0.0, 0.0] + ] + }, + { + "id": 453, + "bus": 4650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2415.2770473947844, 401.2350483987869], + [0.0, 0.0] + ] + }, + { + "id": 613, + "bus": 4650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2379.790767843293, 575.45519462724] + ] + }, + { + "id": 272, + "bus": 4651, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2335.0277583056313, 736.3410539130776], + [0.0, 0.0] + ] + }, + { + "id": 311, + "bus": 4651, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2330.451123622475, 750.6999001880773] + ] + }, + { + "id": 475, + "bus": 4651, + "phases": "abcn", + "powers": [ + [2343.326838192559, 709.4872156297865], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 505, + "bus": 4651, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2335.586590355571, 734.5665787979206] + ] + }, + { + "id": 297, + "bus": 5116, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2387.2259449864127, 543.7877042738037], + [0.0, 0.0] + ] + }, + { + "id": 160, + "bus": 5117, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2428.0224027319127, 315.0555372749299] + ] + }, + { + "id": 626, + "bus": 5117, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2388.7701174270765, 536.9637844613695], + [0.0, 0.0] + ] + }, + { + "id": 248, + "bus": 5118, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2393.9227515653306, 513.5042738610064], + [0.0, 0.0] + ] + }, + { + "id": 308, + "bus": 5119, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2365.2622938707896, 632.5243559964584], + [0.0, 0.0] + ] + }, + { + "id": 349, + "bus": 5119, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2444.6997255242063, 134.149289068244] + ] + }, + { + "id": 406, + "bus": 5119, + "phases": "abcn", + "powers": [ + [2343.0700472538338, 710.3348037352259], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 656, + "bus": 5119, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2334.9871816690747, 736.4697150438408] + ] + }, + { + "id": 341, + "bus": 5120, + "phases": "abcn", + "powers": [ + [2364.9094913870285, 633.8421548644344], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 559, + "bus": 5120, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2408.7582928342895, 438.6755822218561], + [0.0, 0.0] + ] + }, + { + "id": 452, + "bus": 5121, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2427.2504360718935, 320.94875030828103], + [0.0, 0.0] + ] + }, + { + "id": 193, + "bus": 5122, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2366.4648310562848, 628.0103367854663], + [0.0, 0.0] + ] + }, + { + "id": 327, + "bus": 5122, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2445.9591511889084, 108.7961876670207], + [0.0, 0.0] + ] + }, + { + "id": 332, + "bus": 5122, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2440.3283431794234, 198.3692446192546], + [0.0, 0.0] + ] + }, + { + "id": 276, + "bus": 5123, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2398.9358822552094, 489.55021454807263] + ] + }, + { + "id": 500, + "bus": 5123, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2340.058097243503, 720.1950300167025], + [0.0, 0.0] + ] + }, + { + "id": 592, + "bus": 5123, + "phases": "abcn", + "powers": [ + [2407.2902921011605, 446.66120190940495], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 199, + "bus": 5124, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2417.468732338021, 387.81143343595016] + ] + }, + { + "id": 566, + "bus": 5124, + "phases": "abcn", + "powers": [ + [2425.961611925137, 330.54959870076203], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 195, + "bus": 5125, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2436.7280143100807, 238.55683602046759], + [0.0, 0.0] + ] + }, + { + "id": 212, + "bus": 5125, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2428.1675603800973, 313.934831538985], + [0.0, 0.0] + ] + }, + { + "id": 433, + "bus": 5125, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2339.8715228072024, 720.8009687088021] + ] + }, + { + "id": 76, + "bus": 5126, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2383.131338417469, 561.4604203220449], + [0.0, 0.0] + ] + }, + { + "id": 81, + "bus": 5126, + "phases": "abcn", + "powers": [ + [2360.057886441528, 651.6744220704013], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 373, + "bus": 5127, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2356.575446350795, 664.1573197610595] + ] + }, + { + "id": 617, + "bus": 5127, + "phases": "abcn", + "powers": [ + [2378.6731469266756, 580.057617677408], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 123, + "bus": 64, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2327.1424558517583, 760.8947167038891] + ] + }, + { + "id": 621, + "bus": 64, + "phases": "abcn", + "powers": [ + [2410.3989367271024, 429.5692558371683], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 468, + "bus": 146, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2445.2616046850058, 123.48467268837554] + ] + }, + { + "id": 451, + "bus": 147, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2434.6778094764672, 258.64404841116095], + [0.0, 0.0] + ] + }, + { + "id": 145, + "bus": 199, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2415.1463717318206, 402.02087364497123], + [0.0, 0.0] + ] + }, + { + "id": 358, + "bus": 199, + "phases": "abcn", + "powers": [ + [2419.0423075494455, 377.87179574757647], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 149, + "bus": 306, + "phases": "abcn", + "powers": [ + [2389.6067683348474, 533.2281617318537], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 532, + "bus": 307, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2390.114586892514, 530.9473055391385], + [0.0, 0.0] + ] + }, + { + "id": 629, + "bus": 307, + "phases": "abcn", + "powers": [ + [2341.411640143196, 715.7823070861647], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 269, + "bus": 330, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2348.528295932709, 692.0748680157736], + [0.0, 0.0] + ] + }, + { + "id": 347, + "bus": 330, + "phases": "abcn", + "powers": [ + [2390.345044550188, 529.9088107684225], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 387, + "bus": 330, + "phases": "abcn", + "powers": [ + [2396.9094776483444, 499.3773479996726], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 182, + "bus": 331, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2425.7308851158255, 332.23854793030597] + ] + }, + { + "id": 305, + "bus": 331, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2348.1764000287894, 693.2678948887493], + [0.0, 0.0] + ] + }, + { + "id": 442, + "bus": 345, + "phases": "abcn", + "powers": [ + [2436.0459314236778, 245.42412214326365], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 644, + "bus": 345, + "phases": "abcn", + "powers": [ + [2425.1808217163475, 336.2302212991374], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 9, + "bus": 398, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2360.014496730302, 651.8315387877931] + ] + }, + { + "id": 561, + "bus": 398, + "phases": "abcn", + "powers": [ + [2391.3317484143886, 525.4381493201905], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 240, + "bus": 441, + "phases": "abcn", + "powers": [ + [2417.8311672443087, 385.54536236047153], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 436, + "bus": 455, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2353.080574900763, 676.4352058847452] + ] + }, + { + "id": 89, + "bus": 461, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2377.742804332129, 583.8595175060752], + [0.0, 0.0] + ] + }, + { + "id": 210, + "bus": 461, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2367.2751408409013, 624.9489477488021], + [0.0, 0.0] + ] + }, + { + "id": 256, + "bus": 461, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2363.4951449586324, 639.0958296629832], + [0.0, 0.0] + ] + }, + { + "id": 420, + "bus": 461, + "phases": "abcn", + "powers": [ + [2407.094108051835, 447.71724862661415], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 447, + "bus": 461, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2400.0743712351486, 483.93779794086095] + ] + }, + { + "id": 478, + "bus": 461, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2345.2285691668762, 703.1754675037587], + [0.0, 0.0] + ] + }, + { + "id": 348, + "bus": 511, + "phases": "abcn", + "powers": [ + [2414.399465617055, 406.48247214821464], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 105, + "bus": 512, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2439.688084854805, 206.09422202754436], + [0.0, 0.0] + ] + }, + { + "id": 606, + "bus": 512, + "phases": "abcn", + "powers": [ + [2361.8816126954684, 645.0333536699463], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 15, + "bus": 570, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2341.239780998254, 716.3442382031784] + ] + }, + { + "id": 137, + "bus": 570, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2363.319825942631, 639.7438393936571], + [0.0, 0.0] + ] + }, + { + "id": 234, + "bus": 570, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2344.6877070424634, 704.9768337893089] + ] + }, + { + "id": 315, + "bus": 588, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2332.594305436974, 744.0138345344428], + [0.0, 0.0] + ] + }, + { + "id": 368, + "bus": 588, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2357.0503232615397, 662.4700395854255] + ] + }, + { + "id": 522, + "bus": 588, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2330.562538912095, 750.3539377888629], + [0.0, 0.0] + ] + }, + { + "id": 180, + "bus": 621, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2390.979272162262, 527.039751656422] + ] + }, + { + "id": 405, + "bus": 621, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2362.9524844925186, 641.0993181764252] + ] + }, + { + "id": 163, + "bus": 650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2380.087409059438, 574.2270500180002], + [0.0, 0.0] + ] + }, + { + "id": 194, + "bus": 650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2333.5812005581674, 740.9126535139934], + [0.0, 0.0] + ] + }, + { + "id": 370, + "bus": 650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2408.9110671283534, 437.83587153427925], + [0.0, 0.0] + ] + }, + { + "id": 658, + "bus": 650, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2389.2933347803073, 534.6308447050571] + ] + }, + { + "id": 42, + "bus": 651, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2356.7365368119326, 663.5854698464557] + ] + }, + { + "id": 296, + "bus": 651, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2363.1852047422058, 640.2409451317396] + ] + }, + { + "id": 213, + "bus": 741, + "phases": "abcn", + "powers": [ + [2417.6534124924433, 386.65844979683027], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 581, + "bus": 741, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2401.2889459359503, 477.87464659830675], + [0.0, 0.0] + ] + }, + { + "id": 596, + "bus": 741, + "phases": "abcn", + "powers": [ + [2403.7768078051567, 465.19870807397484], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 580, + "bus": 750, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2427.70231612444, 317.5125887577884] + ] + }, + { + "id": 74, + "bus": 751, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2349.2684703422356, 689.5581440252134], + [0.0, 0.0] + ] + }, + { + "id": 342, + "bus": 751, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2437.7797993053523, 227.55753082330713] + ] + }, + { + "id": 185, + "bus": 762, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2357.6886408887854, 660.1947079155032], + [0.0, 0.0] + ] + }, + { + "id": 271, + "bus": 837, + "phases": "abcn", + "powers": [ + [2426.601177816892, 325.8212754767834], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 440, + "bus": 873, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2378.1426407083177, 582.228786801644], + [0.0, 0.0] + ] + }, + { + "id": 604, + "bus": 873, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2348.272970307303, 692.940716555003] + ] + }, + { + "id": 655, + "bus": 873, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2376.24778025842, 589.9146264948653] + ] + }, + { + "id": 86, + "bus": 921, + "phases": "abcn", + "powers": [ + [2431.808234077445, 284.36155226890713], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 393, + "bus": 921, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2417.351660928488, 388.54050901022634], + [0.0, 0.0] + ] + }, + { + "id": 260, + "bus": 922, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2414.661585679533, 404.9224695904741], + [0.0, 0.0] + ] + }, + { + "id": 337, + "bus": 922, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2366.6556287964486, 627.2909328387669], + [0.0, 0.0] + ] + }, + { + "id": 375, + "bus": 922, + "phases": "abcn", + "powers": [ + [2354.9971582005733, 669.7321588537234], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 202, + "bus": 940, + "phases": "abcn", + "powers": [ + [2373.562164999157, 600.629193945947], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 484, + "bus": 940, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2380.0732558936807, 574.2857096561762] + ] + }, + { + "id": 551, + "bus": 940, + "phases": "abcn", + "powers": [ + [2353.691847879517, 674.3051719816101], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 201, + "bus": 1020, + "phases": "abcn", + "powers": [ + [2359.371136985767, 654.1564168409055], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 355, + "bus": 1020, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2330.3534296261473, 751.0031110223825] + ] + }, + { + "id": 488, + "bus": 1020, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2407.6283220871933, 444.8355228837411] + ] + }, + { + "id": 54, + "bus": 1022, + "phases": "abcn", + "powers": [ + [2339.6534236012303, 721.5085842640304], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 232, + "bus": 1022, + "phases": "abcn", + "powers": [ + [2379.030150899772, 578.5916702178259], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 336, + "bus": 1022, + "phases": "abcn", + "powers": [ + [2380.6245333666448, 571.9961633337148], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 413, + "bus": 1022, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2375.919791316975, 591.2342386600641] + ] + }, + { + "id": 250, + "bus": 1118, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2423.0286549483517, 351.4042074802555], + [0.0, 0.0] + ] + }, + { + "id": 267, + "bus": 1118, + "phases": "abcn", + "powers": [ + [2432.7960737535077, 275.7826014547713], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 307, + "bus": 1118, + "phases": "abcn", + "powers": [ + [2383.496847760633, 559.9067390653295], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 642, + "bus": 1118, + "phases": "abcn", + "powers": [ + [2340.9718377847043, 717.2193767840831], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 298, + "bus": 1119, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2335.8063034036013, 733.8676261531415], + [0.0, 0.0] + ] + }, + { + "id": 651, + "bus": 1119, + "phases": "abcn", + "powers": [ + [2370.1392500426014, 613.9973250293034], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 367, + "bus": 1409, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2343.479012936086, 708.9844114391749] + ] + }, + { + "id": 615, + "bus": 1409, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2386.8649580781284, 545.3700135085708] + ] + }, + { + "id": 317, + "bus": 1410, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2380.0728603612797, 574.2873489006353] + ] + }, + { + "id": 588, + "bus": 1410, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2391.581805454376, 524.298815138115] + ] + }, + { + "id": 668, + "bus": 1412, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2346.6029201254564, 698.5753466837521] + ] + }, + { + "id": 183, + "bus": 1413, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2427.636048800704, 318.0188584014307], + [0.0, 0.0] + ] + }, + { + "id": 49, + "bus": 1583, + "phases": "abcn", + "powers": [ + [2432.526609581787, 278.14937248209134], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 155, + "bus": 1583, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2407.598983835952, 444.9942839719805], + [0.0, 0.0] + ] + }, + { + "id": 333, + "bus": 1583, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2426.4094487823054, 327.2460337354661], + [0.0, 0.0] + ] + }, + { + "id": 595, + "bus": 1583, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2328.448005047076, 756.8901290992872] + ] + }, + { + "id": 96, + "bus": 1584, + "phases": "abcn", + "powers": [ + [2430.179102158646, 297.9636071184551], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 141, + "bus": 1584, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2409.1445484128344, 436.54933809177106], + [0.0, 0.0] + ] + }, + { + "id": 330, + "bus": 1584, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2433.60483654448, 268.55219098521314] + ] + }, + { + "id": 147, + "bus": 1585, + "phases": "abcn", + "powers": [ + [2373.1138952324663, 602.3978917544737], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 572, + "bus": 1833, + "phases": "abcn", + "powers": [ + [2427.6945098037895, 317.5722702066126], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 166, + "bus": 1834, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2403.4426121365204, 466.9222525239327] + ] + }, + { + "id": 65, + "bus": 1835, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2340.771900084168, 717.8716399970104], + [0.0, 0.0] + ] + }, + { + "id": 570, + "bus": 1835, + "phases": "abcn", + "powers": [ + [2360.8557967063775, 648.7778409390528], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 316, + "bus": 1836, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2402.180842811124, 473.37086746744615], + [0.0, 0.0] + ] + }, + { + "id": 616, + "bus": 1836, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2424.034352882518, 344.39836785483817], + [0.0, 0.0] + ] + }, + { + "id": 638, + "bus": 1836, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2437.7935515965996, 227.41015705038822], + [0.0, 0.0] + ] + }, + { + "id": 664, + "bus": 1836, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2429.5169581282253, 303.31523190077274], + [0.0, 0.0] + ] + }, + { + "id": 187, + "bus": 1837, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2402.684543170336, 470.8075676388379], + [0.0, 0.0] + ] + }, + { + "id": 261, + "bus": 1839, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2360.6030860941314, 649.6967366845142] + ] + }, + { + "id": 554, + "bus": 1850, + "phases": "abcn", + "powers": [ + [2406.99133731833, 448.2694299304406], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 53, + "bus": 1900, + "phases": "abcn", + "powers": [ + [2399.280826711208, 487.8568379264831], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 95, + "bus": 1900, + "phases": "abcn", + "powers": [ + [2332.9218364564613, 742.9861941653137], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 254, + "bus": 1900, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2378.048401850343, 582.613575359065], + [0.0, 0.0] + ] + }, + { + "id": 477, + "bus": 1900, + "phases": "abcn", + "powers": [ + [2372.0119995182736, 606.7222213475998], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 264, + "bus": 2082, + "phases": "abcn", + "powers": [ + [2359.5395872020813, 653.5485568508866], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 142, + "bus": 2083, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2440.939059951256, 190.7073290147105], + [0.0, 0.0] + ] + }, + { + "id": 150, + "bus": 2182, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2414.030516119502, 408.6678932574173] + ] + }, + { + "id": 237, + "bus": 2182, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2382.86802809095, 562.576875135827], + [0.0, 0.0] + ] + }, + { + "id": 409, + "bus": 2182, + "phases": "abcn", + "powers": [ + [2373.5362890641027, 600.7314410212371], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 62, + "bus": 2183, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2410.411524283582, 429.4986185502165] + ] + }, + { + "id": 84, + "bus": 2183, + "phases": "abcn", + "powers": [ + [2444.5821376912013, 136.27527955121343], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 111, + "bus": 2243, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2362.99251160361, 640.9517687321767] + ] + }, + { + "id": 338, + "bus": 2243, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2381.701479645899, 567.4952348594471], + [0.0, 0.0] + ] + }, + { + "id": 609, + "bus": 2243, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2356.9690892504677, 662.7589999792264], + [0.0, 0.0] + ] + }, + { + "id": 4, + "bus": 2244, + "phases": "abcn", + "powers": [ + [2398.246133529897, 492.91810957251585], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 125, + "bus": 2244, + "phases": "abcn", + "powers": [ + [2428.1288888651025, 314.2337963911075], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 200, + "bus": 2244, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2435.8677608173057, 247.18622847264498] + ] + }, + { + "id": 184, + "bus": 2318, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2435.793912342715, 247.91288052421723], + [0.0, 0.0] + ] + }, + { + "id": 60, + "bus": 2319, + "phases": "abcn", + "powers": [ + [2358.4066374661134, 657.6252063990742], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 83, + "bus": 2319, + "phases": "abcn", + "powers": [ + [2332.1516686586506, 745.4001436197316], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 255, + "bus": 2319, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2369.0269524955397, 618.2750828598386], + [0.0, 0.0] + ] + }, + { + "id": 323, + "bus": 2415, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2337.36926800349, 728.8742585168397], + [0.0, 0.0] + ] + }, + { + "id": 450, + "bus": 2415, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2431.9113011847962, 283.47875212318127] + ] + }, + { + "id": 653, + "bus": 2415, + "phases": "abcn", + "powers": [ + [2400.8727346570845, 479.9613439808012], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 666, + "bus": 2415, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2341.2819092854465, 716.2065351477454], + [0.0, 0.0] + ] + }, + { + "id": 43, + "bus": 2416, + "phases": "abcn", + "powers": [ + [2409.2382345889246, 436.0320042502448], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 113, + "bus": 2416, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2440.0232319663633, 202.08762258007516], + [0.0, 0.0] + ] + }, + { + "id": 157, + "bus": 2416, + "phases": "abcn", + "powers": [ + [2349.4435512067585, 688.9613773127057], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 425, + "bus": 2416, + "phases": "abcn", + "powers": [ + [2397.74306185438, 495.35945440137436], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 90, + "bus": 2493, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2413.905437831261, 409.40605386866446] + ] + }, + { + "id": 246, + "bus": 2493, + "phases": "abcn", + "powers": [ + [2389.2036311096454, 535.0315774121476], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 466, + "bus": 2493, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2340.0228333672794, 720.3095994469418], + [0.0, 0.0] + ] + }, + { + "id": 178, + "bus": 2571, + "phases": "abcn", + "powers": [ + [2438.2743528020674, 222.19576999417544], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 470, + "bus": 2571, + "phases": "abcn", + "powers": [ + [2400.511176977735, 481.7664049522489], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 130, + "bus": 2572, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2445.174738759432, 125.19295774278942], + [0.0, 0.0] + ] + }, + { + "id": 181, + "bus": 2572, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2364.801962344578, 634.2432172494069] + ] + }, + { + "id": 7, + "bus": 2573, + "phases": "abcn", + "powers": [ + [2413.613020461002, 411.12646131909554], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 35, + "bus": 2573, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2358.123235261657, 658.6407116590494] + ] + }, + { + "id": 403, + "bus": 2573, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2438.003304462658, 225.15032126293772], + [0.0, 0.0] + ] + }, + { + "id": 107, + "bus": 2574, + "phases": "abcn", + "powers": [ + [2334.9271974207513, 736.659868922232], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 219, + "bus": 2574, + "phases": "abcn", + "powers": [ + [2382.887641040005, 562.4937954452879], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 515, + "bus": 2574, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2380.913180428599, 570.7934889231112] + ] + }, + { + "id": 364, + "bus": 2734, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2422.978047687491, 351.75298173598634] + ] + }, + { + "id": 379, + "bus": 2734, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2421.2387376237702, 363.53233028947324] + ] + }, + { + "id": 516, + "bus": 2734, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2403.7312101504854, 465.4342586060108] + ] + }, + { + "id": 480, + "bus": 2735, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2336.359047666823, 732.1059896770556] + ] + }, + { + "id": 99, + "bus": 2841, + "phases": "abcn", + "powers": [ + [2396.8293241491124, 499.76191394958516], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 241, + "bus": 2841, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2407.757585615009, 444.1353269545538] + ] + }, + { + "id": 295, + "bus": 2841, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2379.7193749851326, 575.7503591453618], + [0.0, 0.0] + ] + }, + { + "id": 73, + "bus": 2842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2383.822559268258, 558.518384352187] + ] + }, + { + "id": 376, + "bus": 2842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2396.326534225409, 502.16722424196837], + [0.0, 0.0] + ] + }, + { + "id": 527, + "bus": 2842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2349.002766372781, 690.4627312959524] + ] + }, + { + "id": 564, + "bus": 2842, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2382.477047508263, 564.230358835783], + [0.0, 0.0] + ] + }, + { + "id": 268, + "bus": 2843, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2383.4217498956227, 560.2263309236109], + [0.0, 0.0] + ] + }, + { + "id": 499, + "bus": 2843, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2412.814769631595, 415.785602424226], + [0.0, 0.0] + ] + }, + { + "id": 652, + "bus": 2843, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2383.178000975234, 561.2623231638929], + [0.0, 0.0] + ] + }, + { + "id": 197, + "bus": 2907, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2384.3500262570215, 556.2622870766864], + [0.0, 0.0] + ] + }, + { + "id": 302, + "bus": 2907, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2442.3528924158218, 171.6540959130125] + ] + }, + { + "id": 148, + "bus": 2908, + "phases": "abcn", + "powers": [ + [2357.141545736729, 662.1453866769054], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 162, + "bus": 3107, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2406.107030630317, 452.9919832480526] + ] + }, + { + "id": 253, + "bus": 3108, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2383.894720600355, 558.2103016152607], + [0.0, 0.0] + ] + }, + { + "id": 600, + "bus": 3108, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2418.5904880452545, 380.75297880996607] + ] + }, + { + "id": 669, + "bus": 3108, + "phases": "abcn", + "powers": [ + [2346.9168904330836, 697.5198127190012], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 126, + "bus": 3161, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2344.0881772892344, 706.9677480822436] + ] + }, + { + "id": 36, + "bus": 3162, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2435.86917306638, 247.1723112335915], + [0.0, 0.0] + ] + }, + { + "id": 196, + "bus": 3162, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2328.3497823145003, 757.1922285203831] + ] + }, + { + "id": 306, + "bus": 3162, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2403.668335862373, 465.7588548897952], + [0.0, 0.0] + ] + }, + { + "id": 445, + "bus": 3162, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2413.139649120035, 413.8958970326718] + ] + }, + { + "id": 335, + "bus": 3259, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2448.243205985302, 25.651200409580643] + ] + }, + { + "id": 459, + "bus": 3259, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2394.7193520210726, 509.77642628059715] + ] + }, + { + "id": 67, + "bus": 3260, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2354.1290896836517, 672.7770870361636] + ] + }, + { + "id": 346, + "bus": 3261, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2432.426439541392, 279.0240060561653], + [0.0, 0.0] + ] + }, + { + "id": 238, + "bus": 3482, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2365.4148678280717, 631.9535448065379], + [0.0, 0.0] + ] + }, + { + "id": 286, + "bus": 3483, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2361.614337742736, 646.0112224285131], + [0.0, 0.0] + ] + }, + { + "id": 245, + "bus": 3484, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2433.700456720035, 267.6842668076244] + ] + }, + { + "id": 427, + "bus": 3484, + "phases": "abcn", + "powers": [ + [2359.902377899678, 652.2373391021782], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 490, + "bus": 3485, + "phases": "abcn", + "powers": [ + [2326.899746503968, 761.6366256000391], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 512, + "bus": 3516, + "phases": "abcn", + "powers": [ + [2419.023406387009, 377.99277650166346], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 14, + "bus": 3517, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2424.766440533589, 339.20567300343396], + [0.0, 0.0] + ] + }, + { + "id": 300, + "bus": 3517, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2329.125053197982, 754.8041244595457], + [0.0, 0.0] + ] + }, + { + "id": 528, + "bus": 3517, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2387.335525155523, 543.3064237297838], + [0.0, 0.0] + ] + }, + { + "id": 567, + "bus": 3517, + "phases": "abcn", + "powers": [ + [2432.830618532339, 275.4776964968323], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 61, + "bus": 3561, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2444.0149280215614, 146.0952132802628], + [0.0, 0.0] + ] + }, + { + "id": 221, + "bus": 3561, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2413.8991887514285, 409.4428974604868] + ] + }, + { + "id": 25, + "bus": 3562, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2346.909303540475, 697.5453395233943] + ] + }, + { + "id": 584, + "bus": 3562, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2377.773075210447, 583.7362268524183] + ] + }, + { + "id": 281, + "bus": 3633, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2338.1067650535506, 726.5050137104802] + ] + }, + { + "id": 533, + "bus": 3633, + "phases": "abcn", + "powers": [ + [2370.506682380404, 612.57721841862], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 641, + "bus": 3634, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2410.9150342277076, 426.66318972985596], + [0.0, 0.0] + ] + }, + { + "id": 437, + "bus": 3961, + "phases": "abcn", + "powers": [ + [2414.986974579041, 402.97728515291533], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 591, + "bus": 3961, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2355.408306520565, 668.2847367025287], + [0.0, 0.0] + ] + }, + { + "id": 277, + "bus": 4001, + "phases": "abcn", + "powers": [ + [2420.91823568577, 365.6606020064821], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 482, + "bus": 4001, + "phases": "abcn", + "powers": [ + [2408.465196137003, 440.28193096286606], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 502, + "bus": 4001, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2427.814381688719, 316.65455594553845], + [0.0, 0.0] + ] + }, + { + "id": 555, + "bus": 4001, + "phases": "abcn", + "powers": [ + [2399.072941901099, 488.8781025712351], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 383, + "bus": 4018, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2408.929867353597, 437.7324227281154], + [0.0, 0.0] + ] + }, + { + "id": 205, + "bus": 4019, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2329.259904879242, 754.3878811709448] + ] + }, + { + "id": 469, + "bus": 4019, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2408.5885944503602, 439.60637213225516] + ] + }, + { + "id": 587, + "bus": 4019, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2333.647483088375, 740.7038574294975], + [0.0, 0.0] + ] + }, + { + "id": 153, + "bus": 4080, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2407.1698532891446, 447.3098223285084], + [0.0, 0.0] + ] + }, + { + "id": 517, + "bus": 4080, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2431.7588357094505, 284.7836805097204], + [0.0, 0.0] + ] + }, + { + "id": 670, + "bus": 4080, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2436.380640378068, 242.07881965714665] + ] + }, + { + "id": 290, + "bus": 4081, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2406.8999890218724, 448.75964901287057] + ] + }, + { + "id": 17, + "bus": 4082, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2434.3547125055384, 261.66756283063245] + ] + }, + { + "id": 226, + "bus": 4082, + "phases": "abcn", + "powers": [ + [2338.433345651941, 725.4531464393232], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 385, + "bus": 4082, + "phases": "abcn", + "powers": [ + [2436.5523708525902, 240.3441778538946], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 514, + "bus": 4082, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2382.7553166468742, 563.0540655449518], + [0.0, 0.0] + ] + }, + { + "id": 518, + "bus": 4082, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2344.438737928651, 705.8043523775968], + [0.0, 0.0] + ] + }, + { + "id": 676, + "bus": 4082, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2361.4199815848574, 646.7213080666329] + ] + }, + { + "id": 172, + "bus": 4083, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2349.761245795569, 687.8770729519192] + ] + }, + { + "id": 273, + "bus": 4083, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2332.521464847021, 744.242162043748] + ] + }, + { + "id": 321, + "bus": 4083, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2423.809793306462, 345.9752384309193] + ] + }, + { + "id": 69, + "bus": 4084, + "phases": "abcn", + "powers": [ + [2353.98549860815, 673.2793269351022], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 536, + "bus": 4084, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2366.9261000332963, 626.2696038582864] + ] + }, + { + "id": 589, + "bus": 4084, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2396.355367219827, 502.02961439777056] + ] + }, + { + "id": 476, + "bus": 4085, + "phases": "abcn", + "powers": [ + [2337.191574769202, 729.4438446950545], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 508, + "bus": 4085, + "phases": "abcn", + "powers": [ + [2390.9147494456192, 527.3323815384719], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 22, + "bus": 4086, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2345.8706343126178, 701.0304892123878], + [0.0, 0.0] + ] + }, + { + "id": 401, + "bus": 4127, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2339.222310446218, 722.9050850881464], + [0.0, 0.0] + ] + }, + { + "id": 1, + "bus": 4128, + "phases": "abcn", + "powers": [ + [2329.0204906836007, 755.1267004361349], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 675, + "bus": 4128, + "phases": "abcn", + "powers": [ + [2386.9279631140084, 545.0941924475585], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 421, + "bus": 4238, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2399.060641062127, 488.9384626333057] + ] + }, + { + "id": 673, + "bus": 4238, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2358.35758163738, 657.8011073790722] + ] + }, + { + "id": 439, + "bus": 4239, + "phases": "abcn", + "powers": [ + [2333.4048802685015, 741.4677636113286], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 545, + "bus": 4239, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2425.5078717649385, 333.86276183779677], + [0.0, 0.0] + ] + }, + { + "id": 78, + "bus": 4444, + "phases": "abcn", + "powers": [ + [2333.3788376819944, 741.5497148495641], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 386, + "bus": 4444, + "phases": "abcn", + "powers": [ + [2363.77791942193, 638.0491575019705], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 418, + "bus": 4444, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2333.3711761074164, 741.5738225198729], + [0.0, 0.0] + ] + }, + { + "id": 510, + "bus": 4444, + "phases": "abcn", + "powers": [ + [2354.882469708817, 670.1353099141597], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 531, + "bus": 4444, + "phases": "abcn", + "powers": [ + [2330.7504372782532, 749.7700840010059], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 325, + "bus": 4445, + "phases": "abcn", + "powers": [ + [2386.9692727001434, 544.9132691731716], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 610, + "bus": 4445, + "phases": "abcn", + "powers": [ + [2360.984077184039, 648.3108567801996], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 64, + "bus": 4459, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2379.5904232520707, 576.2830878159413], + [0.0, 0.0] + ] + }, + { + "id": 578, + "bus": 4459, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2422.838632612125, 352.7119788975892], + [0.0, 0.0] + ] + }, + { + "id": 236, + "bus": 4460, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2401.3580020449035, 477.5275130822856], + [0.0, 0.0] + ] + }, + { + "id": 344, + "bus": 4460, + "phases": "abcn", + "powers": [ + [2386.596280115285, 546.5445777569557], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 112, + "bus": 4679, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2326.916398073199, 761.5857509917666] + ] + }, + { + "id": 449, + "bus": 4686, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2433.406512808746, 270.3433430947068] + ] + }, + { + "id": 513, + "bus": 4686, + "phases": "abcn", + "powers": [ + [2347.6447325997347, 695.0661761532966], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 542, + "bus": 4686, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2407.016545759767, 448.1340515675693] + ] + }, + { + "id": 101, + "bus": 4687, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2395.153148494188, 507.7343547506141] + ] + }, + { + "id": 471, + "bus": 4687, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2358.6993527843524, 656.5745524388838] + ] + }, + { + "id": 539, + "bus": 4687, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2432.8646193967916, 275.1772581863344] + ] + }, + { + "id": 599, + "bus": 4687, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2338.649116522823, 724.7572624835589] + ] + }, + { + "id": 378, + "bus": 4711, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2359.560282529193, 653.4738348598199], + [0.0, 0.0] + ] + }, + { + "id": 384, + "bus": 4711, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2428.5869921945264, 310.6734637512321] + ] + }, + { + "id": 438, + "bus": 4711, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2362.8839488338217, 641.3518722816118] + ] + }, + { + "id": 283, + "bus": 4712, + "phases": "abcn", + "powers": [ + [2345.1854553843846, 703.3192444325559], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 158, + "bus": 4720, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2408.8752056897297, 438.03313019554435], + [0.0, 0.0] + ] + }, + { + "id": 461, + "bus": 4720, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2432.229569846803, 280.73492710825997], + [0.0, 0.0] + ] + }, + { + "id": 203, + "bus": 4770, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2423.666390747604, 346.9783942785563] + ] + }, + { + "id": 496, + "bus": 4770, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2334.782103565117, 737.119602647829], + [0.0, 0.0] + ] + }, + { + "id": 151, + "bus": 4776, + "phases": "abcn", + "powers": [ + [2370.546286368503, 612.4239413348765], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 460, + "bus": 4776, + "phases": "abcn", + "powers": [ + [2376.2494344137745, 589.9079633161949], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 546, + "bus": 4776, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2427.4389303100893, 319.5199827094614] + ] + }, + { + "id": 548, + "bus": 4776, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2388.207292585683, 539.461497584588], + [0.0, 0.0] + ] + }, + { + "id": 303, + "bus": 4886, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2396.502211979392, 501.3281636947251], + [0.0, 0.0] + ] + }, + { + "id": 400, + "bus": 4886, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2397.519893225855, 496.43845673147547], + [0.0, 0.0] + ] + }, + { + "id": 627, + "bus": 5003, + "phases": "abcn", + "powers": [ + [2442.598111933934, 168.12865107537374], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 547, + "bus": 5006, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2337.3991092927427, 728.7785559503906] + ] + }, + { + "id": 603, + "bus": 5006, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2446.0294873458324, 107.203203171955], + [0.0, 0.0] + ] + }, + { + "id": 678, + "bus": 5006, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2362.3702231986263, 643.2415629296024], + [0.0, 0.0] + ] + }, + { + "id": 417, + "bus": 5163, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2392.611602511826, 519.5791559150889], + [0.0, 0.0] + ] + }, + { + "id": 456, + "bus": 5163, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2334.1770863943093, 739.0332259698592], + [0.0, 0.0] + ] + }, + { + "id": 259, + "bus": 5197, + "phases": "abcn", + "powers": [ + [2349.406933274152, 689.0862367069802], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 252, + "bus": 5198, + "phases": "abcn", + "powers": [ + [2363.4441010336245, 639.2845696753576], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 557, + "bus": 5198, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2425.000927330475, 337.52523191900934] + ] + }, + { + "id": 310, + "bus": 5213, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2361.242001497051, 647.3708288931804], + [0.0, 0.0] + ] + }, + { + "id": 360, + "bus": 5213, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2436.554863053378, 240.3189111713415], + [0.0, 0.0] + ] + }, + { + "id": 173, + "bus": 5338, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2386.479800926056, 547.0529585950286], + [0.0, 0.0] + ] + }, + { + "id": 177, + "bus": 5338, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2382.8283782000926, 562.7447909842974] + ] + }, + { + "id": 411, + "bus": 5338, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2377.2677294003274, 585.7908521711967] + ] + }, + { + "id": 320, + "bus": 5339, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2340.8235470783147, 717.7032124627434], + [0.0, 0.0] + ] + }, + { + "id": 377, + "bus": 5409, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2328.6445230418053, 756.285306642307], + [0.0, 0.0] + ] + }, + { + "id": 648, + "bus": 5409, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2347.270728332068, 696.3281608918943] + ] + }, + { + "id": 8, + "bus": 5410, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2377.3158482888166, 585.5955406340356] + ] + }, + { + "id": 24, + "bus": 5410, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [2405.290467515438, 457.3079341264571] + ] + }, + { + "id": 135, + "bus": 5410, + "phases": "abcn", + "powers": [ + [2372.7890309373824, 603.6762330909518], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 288, + "bus": 5410, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2334.6724485143636, 737.4668384975622], + [0.0, 0.0] + ] + }, + { + "id": 359, + "bus": 5411, + "phases": "abcn", + "powers": [ + [2380.2733330205333, 573.4558743678248], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 495, + "bus": 5411, + "phases": "abcn", + "powers": [ + [2387.200257764256, 543.9004587844308], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 640, + "bus": 5411, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [2352.2261730238474, 679.4003316728873], + [0.0, 0.0] + ] + }, + { + "id": 679, + "bus": 1276000, + "phases": "abcn", + "powers": [ + [30243.243418351154, 14016.32400629604], + [30243.243418351154, 14016.32400629604], + [30243.243418351154, 14016.32400629604] + ] + }, + { + "id": 680, + "bus": 1315000, + "phases": "abcn", + "powers": [ + [30199.71010978223, 14109.876696705329], + [30199.71010978223, 14109.876696705329], + [30199.71010978223, 14109.876696705329] + ] + } + ], + "sources": [ + { + "id": 505000, + "bus": 505000, + "phases": "abcn", + "voltages": [ + [12008.885599144214, 0.0], + [-6004.442799572109, -10400.000000186876], + [-6004.442799572109, 10400.000000186876] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_PU", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.20000000000000004] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.0001410575101461, 0.0, 0.0], + [0.0, 0.0001410575101461, 0.0], + [0.0, 0.0, 0.0001410575101461] + ] + ] + }, + { + "id": "S_AL_150_S3", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.20000000000000004] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [6.44026493985908e-5, 0.0, 0.0], + [0.0, 6.44026493985908e-5, 0.0], + [0.0, 0.0, 6.44026493985908e-5] + ] + ] + }, + { + "id": "S_AL_150_bt", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0, 0.0], + [0.0, 0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.0, 0.2] + ], + [ + [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333], + [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [6.53451271946559e-5, 3.267256359732205e-5, 3.267256359732205e-5, 3.267256359733384e-5], + [3.267256359732205e-5, 6.53451271946559e-5, 3.267256359732205e-5, 3.267256359733384e-5], + [3.267256359732205e-5, 3.267256359732205e-5, 6.53451271946559e-5, 3.267256359733384e-5], + [3.267256359733384e-5, 3.267256359733384e-5, 3.267256359733384e-5, 6.534512719466767e-5] + ] + ] + }, + { + "id": "S_AL_240_S3", + "z_line": [ + [ + [0.125, 0.0, 0.0], + [0.0, 0.125, 0.0], + [0.0, 0.0, 0.125] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [7.85398163397448e-5, 0.0, 0.0], + [0.0, 7.85398163397448e-5, 0.0], + [0.0, 0.0, 7.85398163397448e-5] + ] + ] + }, + { + "id": "S_AL_240_SO", + "z_line": [ + [ + [0.125, 0.0, 0.0], + [0.0, 0.125, 0.0], + [0.0, 0.0, 0.125] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.0001156106096521, 0.0, 0.0], + [0.0, 0.0001156106096521, 0.0], + [0.0, 0.0, 0.0001156106096521] + ] + ] + }, + { + "id": "S_AL_240_bt", + "z_line": [ + [ + [0.125, 0.0, 0.0, 0.0], + [0.0, 0.125, 0.0, 0.0], + [0.0, 0.0, 0.125, 0.0], + [0.0, 0.0, 0.0, 0.125] + ], + [ + [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333], + [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [8.570264758990977e-5, 4.2851323794945114e-5, 4.2851323794945114e-5, 4.285132379496466e-5], + [4.2851323794945114e-5, 8.570264758990977e-5, 4.2851323794945114e-5, 4.285132379496466e-5], + [4.2851323794945114e-5, 4.2851323794945114e-5, 8.570264758990977e-5, 4.285132379496466e-5], + [4.285132379496466e-5, 4.285132379496466e-5, 4.285132379496466e-5, 8.570264758992933e-5] + ] + ] + }, + { + "id": "S_AL_25_bt", + "z_line": [ + [ + [1.2, 0.0, 0.0, 0.0], + [0.0, 1.2, 0.0, 0.0], + [0.0, 0.0, 1.2, 0.0], + [0.0, 0.0, 0.0, 1.2] + ], + [ + [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333], + [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [3.707079331235956e-5, 1.853539665617978e-5, 1.853539665617978e-5, 1.853539665617978e-5], + [1.853539665617978e-5, 3.707079331235956e-5, 1.853539665617978e-5, 1.853539665617978e-5], + [1.853539665617978e-5, 1.853539665617978e-5, 3.707079331235956e-5, 1.853539665617978e-5], + [1.853539665617978e-5, 1.853539665617978e-5, 1.853539665617978e-5, 3.707079331235956e-5] + ] + ] + }, + { + "id": "S_AL_35_bt", + "z_line": [ + [ + [0.8571428571428571, 0.0, 0.0, 0.0], + [0.0, 0.8571428571428571, 0.0, 0.0], + [0.0, 0.0, 0.8571428571428571, 0.0], + [0.0, 0.0, 0.0, 0.8571428571428571] + ], + [ + [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333], + [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [3.933274002294421e-5, 1.9666370011472106e-5, 1.9666370011472106e-5, 1.9666370011472102e-5], + [1.9666370011472106e-5, 3.933274002294421e-5, 1.9666370011472106e-5, 1.9666370011472102e-5], + [1.9666370011472106e-5, 1.9666370011472106e-5, 3.933274002294421e-5, 1.9666370011472102e-5], + [1.9666370011472102e-5, 1.9666370011472102e-5, 1.9666370011472102e-5, 3.933274002294421e-5] + ] + ] + }, + { + "id": "S_AL_95_bt", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.31578947368421] + ], + [ + [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333], + [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [5.290442028645071e-5, 2.6452210143224647e-5, 2.6452210143224647e-5, 2.6452210143226063e-5], + [2.6452210143224647e-5, 5.290442028645071e-5, 2.6452210143224647e-5, 2.6452210143226063e-5], + [2.6452210143224647e-5, 2.6452210143224647e-5, 5.290442028645071e-5, 2.6452210143226063e-5], + [2.6452210143226063e-5, 2.6452210143226063e-5, 2.6452210143226063e-5, 5.2904420286452125e-5] + ] + ] + }, + { + "id": "T_AL_70_bt", + "z_line": [ + [ + [0.42857142857142855, 0.0, 0.0, 0.0], + [0.0, 0.42857142857142855, 0.0, 0.0], + [0.0, 0.0, 0.42857142857142855, 0.0], + [0.0, 0.0, 0.0, 0.4285714285714285] + ], + [ + [0.06666666666666664, 0.03333333333333333, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.06666666666666664, 0.03333333333333333, 0.0333333333333333], + [0.03333333333333333, 0.03333333333333333, 0.06666666666666664, 0.0333333333333333], + [0.0333333333333333, 0.0333333333333333, 0.0333333333333333, 0.0666666666666666] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [4.39822971502571e-5, 2.199114857512855e-5, 2.199114857512855e-5, 2.199114857512855e-5], + [2.199114857512855e-5, 4.39822971502571e-5, 2.199114857512855e-5, 2.199114857512855e-5], + [2.199114857512855e-5, 2.199114857512855e-5, 4.39822971502571e-5, 2.199114857512855e-5], + [2.199114857512855e-5, 2.199114857512855e-5, 2.199114857512855e-5, 4.39822971502571e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "100kVA", + "sn": 100000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.025, + "p0": 210.0, + "psc": 2150.0, + "vsc": 0.04, + "type": "dyn11" + }, + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + }, + { + "id": "400kVA", + "sn": 400000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.019, + "p0": 930.0, + "psc": 4600.0, + "vsc": 0.04, + "type": "dyn11" + }, + { + "id": "630kVA", + "sn": 630000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018000000000000002, + "p0": 1300.0, + "psc": 6500.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json b/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json index 114cacb6..056c7f2a 100644 --- a/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json +++ b/roseau/load_flow/tests/data/benchmark/MOUC20_N055_109/network.json @@ -1,6618 +1,5970 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 0, - "phase": "n" - }, - { - "id": 54, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 0, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85846575091946, 45.70847617823726] - } - }, - { - "id": 54, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85846575091946, 45.70847617823726] - } - }, - { - "id": 141, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85870560116178, 45.70860760344203] - } - }, - { - "id": 142, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85869801153841, 45.70900292606039] - } - }, - { - "id": 186, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858653382246263, 45.70875532583823] - } - }, - { - "id": 187, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858739171164092, 45.70880757501374] - } - }, - { - "id": 414, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858691784300813, 45.70839008547719] - } - }, - { - "id": 426, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859386124804403, 45.70806573046651] - } - }, - { - "id": 427, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859704050364739, 45.70805047840309] - } - }, - { - "id": 479, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858652333258119, 45.70837026980359] - } - }, - { - "id": 511, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858763809394666, 45.70844787378506] - } - }, - { - "id": 535, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858723373804454, 45.70941641027449] - } - }, - { - "id": 540, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858651358015089, 45.70812455944064] - } - }, - { - "id": 662, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859703873051338, 45.70810268927151] - } - }, - { - "id": 665, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857131615330457, 45.70818392334662] - } - }, - { - "id": 666, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857097901025856, 45.70823328729713] - } - }, - { - "id": 680, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858614083339599, 45.70834862687379] - } - }, - { - "id": 773, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858895913447741, 45.70974381024688] - } - }, - { - "id": 853, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859810591784496, 45.70807812776008] - } - }, - { - "id": 854, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859913312051285, 45.70807902143925] - } - }, - { - "id": 855, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859951832358216, 45.70807936104072] - } - }, - { - "id": 856, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859972615464178, 45.70807954158136] - } - }, - { - "id": 878, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857275781799144, 45.70723556005225] - } - }, - { - "id": 879, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857256151263146, 45.70711038978346] - } - }, - { - "id": 880, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857262364210815, 45.70699351390524] - } - }, - { - "id": 881, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857267515697749, 45.70689639246044] - } - }, - { - "id": 882, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857267614293992, 45.70689461701293] - } - }, - { - "id": 883, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857267759513011, 45.70689189539422] - } - }, - { - "id": 1003, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858151406473321, 45.70725098354557] - } - }, - { - "id": 1004, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85812572934119, 45.707250534644] - } - }, - { - "id": 1005, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858114041508144, 45.70725032932825] - } - }, - { - "id": 1006, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857597397234586, 45.70724123069877] - } - }, - { - "id": 1007, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857535241965201, 45.70724013433262] - } - }, - { - "id": 1058, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858881739788789, 45.70785294412009] - } - }, - { - "id": 1059, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858882368754885, 45.70784395579707] - } - }, - { - "id": 1060, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858897218734911, 45.70763017681548] - } - }, - { - "id": 1061, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858902974214498, 45.707547425535] - } - }, - { - "id": 1062, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858919214046995, 45.70731378569783] - } - }, - { - "id": 1063, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858922785113299, 45.70726244366002] - } - }, - { - "id": 1093, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858781571296007, 45.70726034441319] - } - }, - { - "id": 1094, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858768727955327, 45.70726015614733] - } - }, - { - "id": 1095, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858537648453671, 45.7072567198413] - } - }, - { - "id": 1096, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858511961775738, 45.70725634325208] - } - }, - { - "id": 1097, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858460613677841, 45.70725558048714] - } - }, - { - "id": 1098, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858157821930228, 45.70725108235426] - } - }, - { - "id": 1099, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858152499451649, 45.70725100398066] - } - }, - { - "id": 1106, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859703269885658, 45.70811167702172] - } - }, - { - "id": 1107, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859691230963773, 45.70829140447697] - } - }, - { - "id": 1108, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859691101355493, 45.70829334264744] - } - }, - { - "id": 1109, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859690024623929, 45.70830937997797] - } - }, - { - "id": 1110, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859689421453726, 45.70831836772848] - } - }, - { - "id": 1111, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859668770979119, 45.70862644778789] - } - }, - { - "id": 1163, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858738932211071, 45.70911092029043] - } - }, - { - "id": 1164, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858757916934997, 45.70943452705954] - } - }, - { - "id": 1165, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858773792484836, 45.70970511476557] - } - }, - { - "id": 1166, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858774062588907, 45.70970960928479] - } - }, - { - "id": 1290, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858739171732017, 45.70881207559292] - } - }, - { - "id": 1291, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858739150677472, 45.70883237373603] - } - }, - { - "id": 1292, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85873914807851, 45.70883456108218] - } - }, - { - "id": 1293, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858739125404754, 45.70886155614262] - } - }, - { - "id": 1294, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85873905168792, 45.70895924765031] - } - }, - { - "id": 1295, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85873893164317, 45.70910641971108] - } - }, - { - "id": 1495, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858691729537287, 45.70820627355009] - } - }, - { - "id": 1496, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858691694044068, 45.70807954669539] - } - }, - { - "id": 1623, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857860255450155, 45.70813154291512] - } - }, - { - "id": 1624, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85782192849138, 45.70813430365612] - } - }, - { - "id": 1625, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857821121561098, 45.70813435779852] - } - }, - { - "id": 1626, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857540908874141, 45.70815449967574] - } - }, - { - "id": 1627, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857477034557761, 45.70815909463102] - } - }, - { - "id": 1628, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857336518230978, 45.70816919244123] - } - }, - { - "id": 1629, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857310970894318, 45.70817102672679] - } - }, - { - "id": 1944, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85766416853888, 45.70721602985164] - } - }, - { - "id": 1982, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858491381680595, 45.70847728520197] - } - }, - { - "id": 2055, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857200315625728, 45.70822020250381] - } - }, - { - "id": 2056, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857275018775843, 45.70846340082636] - } - }, - { - "id": 2057, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857278744071173, 45.70875669252492] - } - }, - { - "id": 2058, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857278792378547, 45.7087602739085] - } - }, - { - "id": 2059, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857278808693088, 45.70876119166208] - } - }, - { - "id": 2144, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857882752543429, 45.70823005021285] - } - }, - { - "id": 2145, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857876335254144, 45.70823019445908] - } - }, - { - "id": 2305, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858609965119976, 45.70825870764124] - } - }, - { - "id": 2306, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858368880856789, 45.70826862857308] - } - }, - { - "id": 2428, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858231152717311, 45.70810758836546] - } - }, - { - "id": 2429, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858129245824944, 45.70811379479478] - } - }, - { - "id": 2578, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859000718079856, 45.70806629701848] - } - }, - { - "id": 2579, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859000143989006, 45.70798532627871] - } - }, - { - "id": 2580, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858999648085297, 45.70791335496535] - } - }, - { - "id": 2581, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858881598777165, 45.70785743888134] - } - }, - { - "id": 2582, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858881674325446, 45.70785488084649] - } - }, - { - "id": 2610, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858639795155034, 45.70854534569091] - } - }, - { - "id": 2611, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858535320177401, 45.70859704818644] - } - }, - { - "id": 2612, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858534241242276, 45.70859705444225] - } - }, - { - "id": 2694, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858867184443032, 45.71016931222483] - } - }, - { - "id": 2695, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858859064573131, 45.71015332867633] - } - }, - { - "id": 2696, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858857002020719, 45.71014925251106] - } - }, - { - "id": 2697, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858863334716782, 45.70975820661533] - } - }, - { - "id": 2698, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858868334217182, 45.70975599692036] - } - }, - { - "id": 2899, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.857975831490713, 45.70812391332192] - } - }, - { - "id": 2921, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858763993714154, 45.70836690399566] - } - }, - { - "id": 2922, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858994304107692, 45.70806651326404] - } - }, - { - "id": 3066, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858511570902601, 45.70850236763883] - } - }, - { - "id": 3067, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858515038657315, 45.70850262271592] - } - }, - { - "id": 3218, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859793914502443, 45.70805175138868] - } - }, - { - "id": 3219, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859806757619531, 45.708051930545] - } - }, - { - "id": 3220, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859935139105061, 45.70805375915022] - } - }, - { - "id": 3221, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85997402865019, 45.70805430646571] - } - }, - { - "id": 3535, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858735739719023, 45.70957811755016] - } - }, - { - "id": 3536, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.858742606561232, 45.70966801100467] - } - }, - { - "id": 3834, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859116288759923, 45.70806612834648] - } - }, - { - "id": 3835, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.859373111064799, 45.70806575312553] - } - } - ], - "branches": [ - { - "id": "transfo", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 0, - "bus2": 54, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line1484", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 54, - "bus2": 1982, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85846575091946, 45.70847617823726], - [4.858484970678613, 45.70847700628548], - [4.858491381680595, 45.70847728520197] - ] - }, - "length": 0.0005001805797426, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line205", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 54, - "bus2": 479, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85846575091946, 45.70847617823726], - [4.858471417041118, 45.70846327816842], - [4.858492511489998, 45.70841526865618], - [4.858652333258119, 45.70837026980359] - ] - }, - "length": 0.0189957245757942, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line326", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 54, - "bus2": 680, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85846575091946, 45.70847617823726], - [4.858462801847775, 45.7084628417802], - [4.858447926655387, 45.70839556833542], - [4.858614083339599, 45.70834862687379] - ] - }, - "length": 0.0215171544221145, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2076", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 54, - "bus2": 2610, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85846575091946, 45.70847617823726], - [4.858464659141226, 45.70848965055031], - [4.85846163967549, 45.70852667729195], - [4.858639622598972, 45.70854157807495], - [4.858639795155034, 45.70854534569091] - ] - }, - "length": 0.0184990001621715, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line169", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1982, - "bus2": 414, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858491381680595, 45.70847728520197], - [4.858479104158953, 45.70846645377902], - [4.858514241119253, 45.70844088353304], - [4.858691784300813, 45.70839008547719] - ] - }, - "length": 0.0188786040178695, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line223", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1982, - "bus2": 511, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858491381680595, 45.70847728520197], - [4.858484836774053, 45.70847436294846], - [4.858763809394666, 45.70844787378506] - ] - }, - "length": 0.0219219562567218, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1485", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1982, - "bus2": 186, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858491381680595, 45.70847728520197], - [4.858741235721783, 45.70848798657143], - [4.858739614398045, 45.70873983113913], - [4.858653382246263, 45.70875532583823] - ] - }, - "length": 0.0544160543418695, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2507", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1982, - "bus2": 3066, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858491381680595, 45.70847728520197], - [4.858480412869868, 45.70848493078657], - [4.858509340626727, 45.70850220175434], - [4.858511570902601, 45.70850236763883] - ] - }, - "length": 0.0031341964682167, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2508", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3066, - "bus2": 3067, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858511570902601, 45.70850236763883], - [4.858515038657315, 45.70850262271592] - ] - }, - "length": 0.0002715150308807, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2509", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3067, - "bus2": 141, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858515038657315, 45.70850262271592], - [4.858705291981614, 45.70851669844131], - [4.85870560116178, 45.70860760344203] - ] - }, - "length": 0.0250009436901644, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2077", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2610, - "bus2": 2611, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858639795155034, 45.70854534569091], - [4.858642134753842, 45.70859642880821], - [4.858535320177401, 45.70859704818644] - ] - }, - "length": 0.0139984096271449, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line240", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 479, - "bus2": 540, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858652333258119, 45.70837026980359], - [4.858651358015089, 45.70812455944064] - ] - }, - "length": 0.0273097357634461, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line1067", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 414, - "bus2": 1495, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858691784300813, 45.70839008547719], - [4.858691729537287, 45.70820627355009] - ] - }, - "length": 0.0204298908896905, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1785", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 680, - "bus2": 2305, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858614083339599, 45.70834862687379], - [4.858609965119976, 45.70825870764124] - ] - }, - "length": 0.0099992723625301, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2378", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 511, - "bus2": 2921, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858763809394666, 45.70844787378506], - [4.858763993714154, 45.70836690399566] - ] - }, - "length": 0.0089994489936721, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line26", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 141, - "bus2": 142, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85870560116178, 45.70860760344203], - [4.85869801153841, 45.70900292606039] - ] - }, - "length": 0.0439423554981783, - "params_id": "S_CU_25", - "ground": "ground" - }, - { - "id": "line2379", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2921, - "bus2": 2922, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858763993714154, 45.70836690399566], - [4.858764686176953, 45.70807430496647], - [4.858994304107692, 45.70806651326404] - ] - }, - "length": 0.050422376736405, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line1786", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2305, - "bus2": 2306, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858609965119976, 45.70825870764124], - [4.858609594480862, 45.70825061491045], - [4.858368880856789, 45.70826862857308] - ] - }, - "length": 0.0197507861351198, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2078", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2611, - "bus2": 2612, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858535320177401, 45.70859704818644], - [4.858534241242276, 45.70859705444225] - ] - }, - "length": 8.401840908629157e-05, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line1068", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1495, - "bus2": 1496, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858691729537287, 45.70820627355009], - [4.858691694044068, 45.70807954669539] - ] - }, - "length": 0.014085134613226, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1904", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1496, - "bus2": 2428, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858691694044068, 45.70807954669539], - [4.858231152717311, 45.70810758836546] - ] - }, - "length": 0.0359973644170521, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line49", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 186, - "bus2": 187, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858653382246263, 45.70875532583823], - [4.858736830996066, 45.70877555641476], - [4.858739171164092, 45.70880757501374] - ] - }, - "length": 0.0104394739583985, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line383", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 186, - "bus2": 773, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858653382246263, 45.70875532583823], - [4.858777291977871, 45.70875317881072], - [4.858792773914155, 45.70919133238354], - [4.858806761666566, 45.70958732202981], - [4.858856354113938, 45.7096203934093], - [4.858891454451695, 45.70964646367737], - [4.858895913447741, 45.70974381024688] - ] - }, - "length": 0.1225312422779096, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line887", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 187, - "bus2": 1290, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858739171164092, 45.70880757501374], - [4.858739171732017, 45.70881207559292] - ] - }, - "length": 0.0005002197054336, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line888", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1290, - "bus2": 1291, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858739171732017, 45.70881207559292], - [4.858739150677472, 45.70883237373603] - ] - }, - "length": 0.0022560504862093, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line889", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1291, - "bus2": 1292, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858739150677472, 45.70883237373603], - [4.85873914807851, 45.70883456108218] - ] - }, - "length": 0.000243114049454, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line890", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1292, - "bus2": 1293, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85873914807851, 45.70883456108218], - [4.858739125404754, 45.70886155614262] - ] - }, - "length": 0.0030003835161266, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line891", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1293, - "bus2": 1294, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858739125404754, 45.70886155614262], - [4.85873905168792, 45.70895924765031] - ] - }, - "length": 0.0108579857937378, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line237", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 142, - "bus2": 535, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85869801153841, 45.70900292606039], - [4.858723373804454, 45.70941641027449] - ] - }, - "length": 0.045999380754809, - "params_id": "S_CU_25", - "ground": "ground" - }, - { - "id": "line2380", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2922, - "bus2": 2578, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858994304107692, 45.70806651326404], - [4.859000718079856, 45.70806629701848] - ] - }, - "length": 0.0005000318906638, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line892", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1294, - "bus2": 1295, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85873905168792, 45.70895924765031], - [4.85873893164317, 45.70910641971108] - ] - }, - "length": 0.0163575345977811, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line2046", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2578, - "bus2": 2579, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859000718079856, 45.70806629701848], - [4.859000143989006, 45.70798532627871] - ] - }, - "length": 0.0089996536049888, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line3260", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2578, - "bus2": 3834, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859000718079856, 45.70806629701848], - [4.859116288759923, 45.70806612834648] - ] - }, - "length": 0.0089994707921524, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1905", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2428, - "bus2": 2429, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858231152717311, 45.70810758836546], - [4.858129245824944, 45.70811379479478] - ] - }, - "length": 0.0079653762628655, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line3261", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3834, - "bus2": 3835, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859116288759923, 45.70806612834648], - [4.859373111064799, 45.70806575312553] - ] - }, - "length": 0.0199987129260412, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2047", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2579, - "bus2": 2580, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859000143989006, 45.70798532627871], - [4.858999648085297, 45.70791335496535] - ] - }, - "length": 0.0079993889005269, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2358", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2429, - "bus2": 2899, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858129245824944, 45.70811379479478], - [4.857975831490713, 45.70812391332192] - ] - }, - "length": 0.0119991328428249, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line893", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1295, - "bus2": 1163, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85873893164317, 45.70910641971108], - [4.858738932211071, 45.70911092029043] - ] - }, - "length": 0.0005002197530754, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line751", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1163, - "bus2": 1164, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858738932211071, 45.70911092029043], - [4.858757916934997, 45.70943452705954] - ] - }, - "length": 0.0359978479701025, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line2048", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2580, - "bus2": 2581, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858999648085297, 45.70791335496535], - [4.858999556689571, 45.70790070135651], - [4.858880154686606, 45.70790248627098], - [4.858881598777165, 45.70785743888134] - ] - }, - "length": 0.015714432025861, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2359", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2899, - "bus2": 1623, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857975831490713, 45.70812391332192], - [4.857860255450155, 45.70813154291512] - ] - }, - "length": 0.0090397209912012, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line3262", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3835, - "bus2": 426, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859373111064799, 45.70806575312553], - [4.859386124804403, 45.70806573046651] - ] - }, - "length": 0.0010133788079987, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line176", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 426, - "bus2": 427, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859386124804403, 45.70806573046651], - [4.859704050364739, 45.70805047840309] - ] - }, - "length": 0.024814734423431, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2049", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2581, - "bus2": 2582, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858881598777165, 45.70785743888134], - [4.858881674325446, 45.70785488084649] - ] - }, - "length": 0.0002843752030909, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2050", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2582, - "bus2": 1058, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858881674325446, 45.70785488084649], - [4.858881739788789, 45.70785294412009] - ] - }, - "length": 0.0002153189890175, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line640", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1058, - "bus2": 1059, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858881739788789, 45.70785294412009], - [4.858882368754885, 45.70784395579707] - ] - }, - "length": 0.0010002125153599, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line641", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1059, - "bus2": 1060, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858882368754885, 45.70784395579707], - [4.858897218734911, 45.70763017681548] - ] - }, - "length": 0.0237887171241015, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line2967", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 535, - "bus2": 3535, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858723373804454, 45.70941641027449], - [4.858735739719023, 45.70957811755016] - ] - }, - "length": 0.0179988343639828, - "params_id": "S_CU_25", - "ground": "ground" - }, - { - "id": "line1179", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1623, - "bus2": 1624, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857860255450155, 45.70813154291512], - [4.85782192849138, 45.70813430365612] - ] - }, - "length": 0.0030002365069316, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1635", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1623, - "bus2": 2144, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857860255450155, 45.70813154291512], - [4.857913824052103, 45.70815104152228], - [4.857917405904961, 45.70822927127691], - [4.857882752543429, 45.70823005021285] - ] - }, - "length": 0.0160999345263066, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1180", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1624, - "bus2": 1625, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85782192849138, 45.70813430365612], - [4.857821121561098, 45.70813435779852] - ] - }, - "length": 6.312281936731819e-05, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1181", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1625, - "bus2": 1626, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857821121561098, 45.70813435779852], - [4.857540908874141, 45.70815449967574] - ] - }, - "length": 0.0219345812676839, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1636", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2144, - "bus2": 2145, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857882752543429, 45.70823005021285], - [4.857876335254144, 45.70823019445908] - ] - }, - "length": 0.0004999678872504, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line752", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1164, - "bus2": 1165, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858757916934997, 45.70943452705954], - [4.858773792484836, 45.70970511476557] - ] - }, - "length": 0.0301000403657492, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line2968", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3535, - "bus2": 3536, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858735739719023, 45.70957811755016], - [4.858742606561232, 45.70966801100467] - ] - }, - "length": 0.0100055636677337, - "params_id": "S_CU_25", - "ground": "ground" - }, - { - "id": "line315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 427, - "bus2": 662, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859704050364739, 45.70805047840309], - [4.859703873051338, 45.70810268927151] - ] - }, - "length": 0.0058030254958827, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2653", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 427, - "bus2": 3218, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859704050364739, 45.70805047840309], - [4.859793914502443, 45.70805175138868] - ] - }, - "length": 0.0069991232756766, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line642", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1060, - "bus2": 1061, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858897218734911, 45.70763017681548], - [4.858902974214498, 45.707547425535] - ] - }, - "length": 0.0092083543694753, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line446", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 662, - "bus2": 853, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859703873051338, 45.70810268927151], - [4.859770824881562, 45.70807778014717], - [4.859810591784496, 45.70807812776008] - ] - }, - "length": 0.0089998882895087, - "params_id": "T_AL_25", - "ground": "ground" - }, - { - "id": "line691", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 662, - "bus2": 1106, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859703873051338, 45.70810268927151], - [4.859703269885658, 45.70811167702172] - ] - }, - "length": 0.001000052589444, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line1182", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1626, - "bus2": 1627, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857540908874141, 45.70815449967574], - [4.857477034557761, 45.70815909463102] - ] - }, - "length": 0.0050000148965564, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line692", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1106, - "bus2": 1107, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859703269885658, 45.70811167702172], - [4.859691230963773, 45.70829140447697] - ] - }, - "length": 0.0199979043405383, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line2654", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3218, - "bus2": 3219, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859793914502443, 45.70805175138868], - [4.859806757619531, 45.708051930545] - ] - }, - "length": 0.0010002878216915, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2655", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3219, - "bus2": 3220, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859806757619531, 45.708051930545], - [4.859935139105061, 45.70805375915022] - ] - }, - "length": 0.0099990926583539, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1183", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1627, - "bus2": 1628, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857477034557761, 45.70815909463102], - [4.857336518230978, 45.70816919244123] - ] - }, - "length": 0.0109993501457698, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line643", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1061, - "bus2": 1062, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858902974214498, 45.707547425535], - [4.858919214046995, 45.70731378569783] - ] - }, - "length": 0.0259988143444644, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line447", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 853, - "bus2": 854, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859810591784496, 45.70807812776008], - [4.859913312051285, 45.70807902143925] - ] - }, - "length": 0.0079994087043107, - "params_id": "T_AL_25", - "ground": "ground" - }, - { - "id": "line2656", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3220, - "bus2": 3221, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859935139105061, 45.70805375915022], - [4.85997402865019, 45.70805430646571] - ] - }, - "length": 0.0030289278084544, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1184", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1628, - "bus2": 1629, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857336518230978, 45.70816919244123], - [4.857310970894318, 45.70817102672679] - ] - }, - "length": 0.0019997784351482, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line448", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 854, - "bus2": 855, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859913312051285, 45.70807902143925], - [4.859951832358216, 45.70807936104072] - ] - }, - "length": 0.0029998005526106, - "params_id": "T_AL_25", - "ground": "ground" - }, - { - "id": "line1185", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1629, - "bus2": 665, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857310970894318, 45.70817102672679], - [4.857131615330457, 45.70818392334662] - ] - }, - "length": 0.0140396960419226, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line449", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 855, - "bus2": 856, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859951832358216, 45.70807936104072], - [4.859972615464178, 45.70807954158136] - ] - }, - "length": 0.0016184977160301, - "params_id": "T_AL_25", - "ground": "ground" - }, - { - "id": "line693", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1107, - "bus2": 1108, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859691230963773, 45.70829140447697], - [4.859691101355493, 45.70829334264744] - ] - }, - "length": 0.0002156554459493, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line694", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1108, - "bus2": 1109, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859691101355493, 45.70829334264744], - [4.859690024623929, 45.70830937997797] - ] - }, - "length": 0.0017844498815044, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line753", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1165, - "bus2": 1166, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858773792484836, 45.70970511476557], - [4.858774062588907, 45.70970960928479] - ] - }, - "length": 0.0004999888077918, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line695", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1109, - "bus2": 1110, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859690024623929, 45.70830937997797], - [4.859689421453726, 45.70831836772848] - ] - }, - "length": 0.0010000526676574, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line696", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1110, - "bus2": 1111, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.859689421453726, 45.70831836772848], - [4.859668770979119, 45.70862644778789] - ] - }, - "length": 0.0342794868178623, - "params_id": "A_CU_14", - "ground": "ground" - }, - { - "id": "line644", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1062, - "bus2": 1063, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858919214046995, 45.70731378569783], - [4.858922785113299, 45.70726244366002] - ] - }, - "length": 0.0057132131731552, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line317", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 665, - "bus2": 666, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857131615330457, 45.70818392334662], - [4.857097901025856, 45.70823328729713] - ] - }, - "length": 0.0060823444883348, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2159", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2698, - "bus2": 2697, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858863334716782, 45.70975820661533], - [4.858868334217182, 45.70975599692036] - ] - }, - "length": 0.0004602945698527, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2158", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2697, - "bus2": 2696, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858857002020719, 45.71014925251106], - [4.858834575884895, 45.71010508389108], - [4.858812307407221, 45.70978076782136], - [4.858863334716782, 45.70975820661533] - ] - }, - "length": 0.0459969488636987, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2157", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2696, - "bus2": 2695, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858859064573131, 45.71015332867633], - [4.858857002020719, 45.71014925251106] - ] - }, - "length": 0.0004806727477676, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line678", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1063, - "bus2": 1093, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858922785113299, 45.70726244366002], - [4.858781571296007, 45.70726034441319] - ] - }, - "length": 0.0109989068607356, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line1551", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 666, - "bus2": 2055, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857097901025856, 45.70823328729713], - [4.857129156762444, 45.70824248624743], - [4.857165471572625, 45.70822186761867], - [4.857200315625728, 45.70822020250381] - ] - }, - "length": 0.0089993081940269, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1552", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2055, - "bus2": 2056, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857200315625728, 45.70822020250381], - [4.857271875104469, 45.70821677618032], - [4.857275018775843, 45.70846340082636] - ] - }, - "length": 0.0329976382636671, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line679", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1093, - "bus2": 1094, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858781571296007, 45.70726034441319], - [4.858768727955327, 45.70726015614733] - ] - }, - "length": 0.0010003400099169, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line680", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1094, - "bus2": 1095, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858768727955327, 45.70726015614733], - [4.858537648453671, 45.7072567198413] - ] - }, - "length": 0.017998397595807, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line681", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1095, - "bus2": 1096, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858537648453671, 45.7072567198413], - [4.858511961775738, 45.70725634325208] - ] - }, - "length": 0.0020006800193537, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line682", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1096, - "bus2": 1097, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858511961775738, 45.70725634325208], - [4.858460613677841, 45.70725558048714] - ] - }, - "length": 0.003999416095814, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line683", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1097, - "bus2": 1098, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858460613677841, 45.70725558048714], - [4.858157821930228, 45.70725108235426] - ] - }, - "length": 0.0235839363651171, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line1553", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2056, - "bus2": 2057, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857275018775843, 45.70846340082636], - [4.857278744071173, 45.70875669252492] - ] - }, - "length": 0.0325993798943446, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2156", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2695, - "bus2": 2694, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858867184443032, 45.71016931222483], - [4.858859064573131, 45.71015332867633] - ] - }, - "length": 0.0018856622450659, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line2160", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 773, - "bus2": 2698, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858868334217182, 45.70975599692036], - [4.858895913447741, 45.70974381024688] - ] - }, - "length": 0.0025389970649123, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line684", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1098, - "bus2": 1099, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858157821930228, 45.70725108235426], - [4.858152499451649, 45.70725100398066] - ] - }, - "length": 0.0004145572289478, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line685", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1099, - "bus2": 1003, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858152499451649, 45.70725100398066], - [4.858151406473321, 45.70725098354557] - ] - }, - "length": 8.514140420113163e-05, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line584", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1003, - "bus2": 1004, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858151406473321, 45.70725098354557], - [4.85812572934119, 45.707250534644] - ] - }, - "length": 0.0020001213984857, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line585", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1004, - "bus2": 1005, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85812572934119, 45.707250534644], - [4.858114041508144, 45.70725032932825] - ] - }, - "length": 0.0009104270337889, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line586", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1005, - "bus2": 1006, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.858114041508144, 45.70725032932825], - [4.857597397234586, 45.70724123069877] - ] - }, - "length": 0.0402442179264523, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line1554", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2057, - "bus2": 2058, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857278744071173, 45.70875669252492], - [4.857278792378547, 45.7087602739085] - ] - }, - "length": 0.0003980729009457, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1555", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2058, - "bus2": 2059, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857278792378547, 45.7087602739085], - [4.857278808693088, 45.70876119166208] - ] - }, - "length": 0.0001020122088556, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line588", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1007, - "bus2": 878, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857535241965201, 45.70724013433262], - [4.857275781799144, 45.70723556005225] - ] - }, - "length": 0.0202107728374538, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line587", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1006, - "bus2": 1007, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857597397234586, 45.70724123069877], - [4.857535241965201, 45.70724013433262] - ] - }, - "length": 0.0048416155701097, - "params_id": "T_AL_150", - "ground": "ground" - }, - { - "id": "line468", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 878, - "bus2": 879, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857275781799144, 45.70723556005225], - [4.857256025201153, 45.70711268791645], - [4.857256151263146, 45.70711038978346] - ] - }, - "length": 0.0139986957482644, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line469", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 879, - "bus2": 880, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857256151263146, 45.70711038978346], - [4.857262364210815, 45.70699351390524] - ] - }, - "length": 0.0129992453778308, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line470", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 880, - "bus2": 881, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857262364210815, 45.70699351390524], - [4.857267515697749, 45.70689639246044] - ] - }, - "length": 0.0108020718458042, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line471", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 881, - "bus2": 882, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857267515697749, 45.70689639246044], - [4.857267614293992, 45.70689461701293] - ] - }, - "length": 0.0001974824702347, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line472", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 882, - "bus2": 883, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857267614293992, 45.70689461701293], - [4.857267759513011, 45.70689189539422] - ] - }, - "length": 0.0003027072235622, - "params_id": "T_AL_70", - "ground": "ground" - }, - { - "id": "line1455", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1944, - "bus2": 1006, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.857597397234586, 45.70724123069877], - [4.857598359433462, 45.70721425954639], - [4.85766416853888, 45.70721602985164] - ] - }, - "length": 0.005128387383998, - "params_id": "S_AL_95", - "ground": "ground" - } - ], - "loads": [ - { - "id": 10, - "bus": 141, - "phases": "abcn", - "powers": [ - [1649.6309210175623, 289.90110941572357], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 92, - "bus": 141, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1613.3744424881445, 449.83078723425234], - [0.0, 0.0] - ] - }, - { - "id": 187, - "bus": 141, - "phases": "abcn", - "powers": [ - [1656.3540960721095, 248.6281103231552], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 210, - "bus": 141, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1616.172346317852, 439.67235052385007], - [0.0, 0.0] - ] - }, - { - "id": 131, - "bus": 142, - "phases": "abcn", - "powers": [ - [1597.466210719081, 503.4148730704519], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 209, - "bus": 186, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1623.0200815085877, 413.6793974052557] - ] - }, - { - "id": 231, - "bus": 186, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1603.9262132948445, 482.43707478113595] - ] - }, - { - "id": 142, - "bus": 187, - "phases": "abcn", - "powers": [ - [1652.8488490414247, 270.95296831766905], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 230, - "bus": 187, - "phases": "abcn", - "powers": [ - [1607.860438506812, 469.1584371003045], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 5, - "bus": 414, - "phases": "abcn", - "powers": [ - [1599.0114311088391, 498.4849767053975], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 31, - "bus": 414, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1624.7606281318162, 406.7895402913211], - [0.0, 0.0] - ] - }, - { - "id": 73, - "bus": 414, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1597.098860143901, 504.57909166430034], - [0.0, 0.0] - ] - }, - { - "id": 146, - "bus": 414, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1609.792701829586, 462.48490348758475], - [0.0, 0.0] - ] - }, - { - "id": 15, - "bus": 426, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1629.6396498692925, 386.7808686990708] - ] - }, - { - "id": 105, - "bus": 426, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1598.0306174530028, 501.6203489697093] - ] - }, - { - "id": 182, - "bus": 426, - "phases": "abcn", - "powers": [ - [1673.565108144437, 67.11674619062352], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 99, - "bus": 427, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1631.0937767105743, 380.6020499074502] - ] - }, - { - "id": 97, - "bus": 479, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1652.7795669620286, 271.37526020351805] - ] - }, - { - "id": 98, - "bus": 479, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1617.427872330716, 435.0309260563573] - ] - }, - { - "id": 207, - "bus": 479, - "phases": "abcn", - "powers": [ - [1660.9157783929766, 216.06389310333773], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 19, - "bus": 511, - "phases": "abcn", - "powers": [ - [1646.5427148327403, 306.9558877900004], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 32, - "bus": 511, - "phases": "abcn", - "powers": [ - [1667.635933840843, 155.93338635615305], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 61, - "bus": 511, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1655.3000768485942, 255.55133418308813] - ] - }, - { - "id": 102, - "bus": 511, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1596.856292375536, 505.346228162806] - ] - }, - { - "id": 115, - "bus": 511, - "phases": "abcn", - "powers": [ - [1622.1111126465375, 417.22939379474434], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 86, - "bus": 535, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1658.833117376904, 231.51137663480102], - [0.0, 0.0] - ] - }, - { - "id": 113, - "bus": 535, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1609.0155932118976, 465.181308329004] - ] - }, - { - "id": 60, - "bus": 540, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1631.86439847811, 377.28426126383084] - ] - }, - { - "id": 178, - "bus": 540, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1634.3316710095662, 366.44892952879115], - [0.0, 0.0] - ] - }, - { - "id": 203, - "bus": 540, - "phases": "abcn", - "powers": [ - [1603.7962663959704, 482.86888977450593], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 220, - "bus": 540, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1627.0592737029801, 397.49584736805645] - ] - }, - { - "id": 226, - "bus": 540, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1592.7881379997257, 518.0258451709577], - [0.0, 0.0] - ] - }, - { - "id": 40, - "bus": 662, - "phases": "abcn", - "powers": [ - [1663.278385248608, 197.0528913325079], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 255, - "bus": 662, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1664.9975362517018, 181.95612958480237], - [0.0, 0.0] - ] - }, - { - "id": 278, - "bus": 665, - "phases": "abcn", - "powers": [ - [1615.9741885813264, 440.4001029253305], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 52, - "bus": 666, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1616.158288717553, 439.72402098051083] - ] - }, - { - "id": 83, - "bus": 666, - "phases": "abcn", - "powers": [ - [1607.2096847153755, 471.38292096216423], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 122, - "bus": 666, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1637.4948758755331, 352.04454306108863] - ] - }, - { - "id": 138, - "bus": 666, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1656.4961146642518, 247.6801383235168], - [0.0, 0.0] - ] - }, - { - "id": 237, - "bus": 666, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1593.315327640675, 516.4020676982298] - ] - }, - { - "id": 46, - "bus": 680, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1665.261943144325, 179.52016469718814] - ] - }, - { - "id": 57, - "bus": 680, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1664.7538948936872, 184.1719258030843], - [0.0, 0.0] - ] - }, - { - "id": 154, - "bus": 680, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1606.1191291213963, 475.0854364091214], - [0.0, 0.0] - ] - }, - { - "id": 16, - "bus": 773, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1597.7640380935597, 502.4688123582196], - [0.0, 0.0] - ] - }, - { - "id": 191, - "bus": 773, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1602.331427244946, 487.70772608283755], - [0.0, 0.0] - ] - }, - { - "id": 62, - "bus": 853, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1630.9676443164044, 381.1421939522266] - ] - }, - { - "id": 232, - "bus": 853, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1647.2290534213055, 303.2511737528281], - [0.0, 0.0] - ] - }, - { - "id": 36, - "bus": 854, - "phases": "abcn", - "powers": [ - [1653.5543640378867, 266.61356677592045], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 121, - "bus": 854, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1600.8315085460297, 492.608678429401], - [0.0, 0.0] - ] - }, - { - "id": 134, - "bus": 855, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1601.8378657993806, 489.3263537854917], - [0.0, 0.0] - ] - }, - { - "id": 41, - "bus": 856, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1604.5626504309857, 480.31607266424925] - ] - }, - { - "id": 54, - "bus": 856, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1655.0217377912397, 257.3477729769253], - [0.0, 0.0] - ] - }, - { - "id": 96, - "bus": 856, - "phases": "abcn", - "powers": [ - [1616.0128256010053, 440.2583063506845], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 23, - "bus": 878, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1620.9172039814193, 421.8438652567747], - [0.0, 0.0] - ] - }, - { - "id": 49, - "bus": 878, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1591.4366552355445, 522.1630025101559], - [0.0, 0.0] - ] - }, - { - "id": 116, - "bus": 878, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1660.9872790865918, 215.51354372808868], - [0.0, 0.0] - ] - }, - { - "id": 250, - "bus": 880, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1634.8588270330379, 364.0898851793023] - ] - }, - { - "id": 85, - "bus": 881, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1629.9079025741526, 385.6488790908703], - [0.0, 0.0] - ] - }, - { - "id": 78, - "bus": 882, - "phases": "abcn", - "powers": [ - [1599.2823959657937, 497.61495834794636], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 240, - "bus": 883, - "phases": "abcn", - "powers": [ - [1640.750417663451, 336.54553295940525], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 137, - "bus": 1003, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1612.0618722471097, 454.51220980834097] - ] - }, - { - "id": 173, - "bus": 1003, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1656.9686559283643, 244.49887952436086], - [0.0, 0.0] - ] - }, - { - "id": 75, - "bus": 1004, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1602.2453990876709, 487.9902764606162] - ] - }, - { - "id": 205, - "bus": 1004, - "phases": "abcn", - "powers": [ - [1625.908202106315, 402.1782529440506], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 259, - "bus": 1004, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1657.9797599185965, 237.5456682787351], - [0.0, 0.0] - ] - }, - { - "id": 29, - "bus": 1005, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1618.32210067962, 431.6924915603932] - ] - }, - { - "id": 39, - "bus": 1005, - "phases": "abcn", - "powers": [ - [1633.835418823479, 368.65519529178727], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 69, - "bus": 1005, - "phases": "abcn", - "powers": [ - [1619.4780256615602, 427.33564468348874], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 71, - "bus": 1005, - "phases": "abcn", - "powers": [ - [1597.110227435846, 504.54311038556307], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 181, - "bus": 1005, - "phases": "abcn", - "powers": [ - [1603.5051087020518, 483.83488421582325], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 188, - "bus": 1005, - "phases": "abcn", - "powers": [ - [1658.5054723637472, 233.84701613923147], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 213, - "bus": 1005, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1609.5404533796768, 463.36201587102755], - [0.0, 0.0] - ] - }, - { - "id": 267, - "bus": 1005, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1649.0989494031269, 292.91207536600695], - [0.0, 0.0] - ] - }, - { - "id": 6, - "bus": 1006, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1641.581245893379, 332.46930978491736] - ] - }, - { - "id": 21, - "bus": 1006, - "phases": "abcn", - "powers": [ - [1622.9987428245165, 413.7631080796804], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 59, - "bus": 1007, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1670.4676479906368, 121.91253354084823] - ] - }, - { - "id": 74, - "bus": 1007, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1647.1887662720164, 303.4699278099737], - [0.0, 0.0] - ] - }, - { - "id": 103, - "bus": 1007, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1601.2048413436364, 491.3938185156775], - [0.0, 0.0] - ] - }, - { - "id": 140, - "bus": 1007, - "phases": "abcn", - "powers": [ - [1672.9177561269962, 81.67625146108232], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 200, - "bus": 1007, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1628.0022334825608, 393.6160014449516], - [0.0, 0.0] - ] - }, - { - "id": 27, - "bus": 1058, - "phases": "abcn", - "powers": [ - [1629.8770962362053, 385.7790559145918], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 186, - "bus": 1058, - "phases": "abcn", - "powers": [ - [1646.1067936545764, 309.2850670529829], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 256, - "bus": 1058, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1638.8872292039748, 345.5046725730875], - [0.0, 0.0] - ] - }, - { - "id": 126, - "bus": 1059, - "phases": "abcn", - "powers": [ - [1598.8944576993117, 498.860042452933], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 234, - "bus": 1059, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1605.2164635655508, 478.12648317764706], - [0.0, 0.0] - ] - }, - { - "id": 114, - "bus": 1060, - "phases": "abcn", - "powers": [ - [1669.3211661893297, 136.71749313827573], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 129, - "bus": 1060, - "phases": "abcn", - "powers": [ - [1653.2396421991018, 268.5582139483058], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 155, - "bus": 1060, - "phases": "abcn", - "powers": [ - [1600.2431022067087, 494.51677692224706], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 28, - "bus": 1061, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1648.795355407865, 294.6161991526779] - ] - }, - { - "id": 123, - "bus": 1061, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1641.8166627546996, 331.3048063622674], - [0.0, 0.0] - ] - }, - { - "id": 2, - "bus": 1062, - "phases": "abcn", - "powers": [ - [1609.8577738238253, 462.25834430188064], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 150, - "bus": 1062, - "phases": "abcn", - "powers": [ - [1672.1375050755914, 96.33791017712122], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 151, - "bus": 1062, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1644.8860961382336, 315.71278014809536], - [0.0, 0.0] - ] - }, - { - "id": 199, - "bus": 1062, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1631.747703598017, 377.7886454359314] - ] - }, - { - "id": 17, - "bus": 1093, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1642.9631326666329, 325.571764002903] - ] - }, - { - "id": 168, - "bus": 1093, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1601.8246574373372, 489.36959002728764] - ] - }, - { - "id": 110, - "bus": 1094, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1617.6432981752396, 434.22918912303794], - [0.0, 0.0] - ] - }, - { - "id": 166, - "bus": 1094, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1617.0660793279756, 436.3738350366206] - ] - }, - { - "id": 135, - "bus": 1095, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1666.4505465393213, 168.1291311953869], - [0.0, 0.0] - ] - }, - { - "id": 238, - "bus": 1095, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1647.8896751156265, 299.64053041107945] - ] - }, - { - "id": 268, - "bus": 1095, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1639.8675492877805, 340.82143361386056] - ] - }, - { - "id": 272, - "bus": 1095, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1610.4714026341921, 460.1159529022831], - [0.0, 0.0] - ] - }, - { - "id": 107, - "bus": 1096, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1608.2706673639102, 467.7502424527016], - [0.0, 0.0] - ] - }, - { - "id": 157, - "bus": 1096, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1641.9321500268745, 330.73198140766993], - [0.0, 0.0] - ] - }, - { - "id": 223, - "bus": 1097, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1654.914452060731, 258.0367903579807], - [0.0, 0.0] - ] - }, - { - "id": 254, - "bus": 1097, - "phases": "abcn", - "powers": [ - [1660.7348754708923, 217.449999338694], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 128, - "bus": 1098, - "phases": "abcn", - "powers": [ - [1644.5202654503466, 317.6128544955946], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 143, - "bus": 1098, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1658.3484731945027, 234.9578052995472], - [0.0, 0.0] - ] - }, - { - "id": 202, - "bus": 1098, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1665.9518707818845, 173.00055796458477], - [0.0, 0.0] - ] - }, - { - "id": 206, - "bus": 1098, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1630.1839474831527, 384.48033263869763] - ] - }, - { - "id": 11, - "bus": 1099, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1604.1855860684668, 481.5739136081686], - [0.0, 0.0] - ] - }, - { - "id": 48, - "bus": 1099, - "phases": "abcn", - "powers": [ - [1615.744195361459, 441.2431574239642], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 215, - "bus": 1099, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1648.0399646727146, 298.81282378652253] - ] - }, - { - "id": 260, - "bus": 1099, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1664.887728770792, 182.95813566538203], - [0.0, 0.0] - ] - }, - { - "id": 14, - "bus": 1106, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1613.3173120524814, 450.03564242121354] - ] - }, - { - "id": 228, - "bus": 1106, - "phases": "abcn", - "powers": [ - [1645.6115295296893, 311.90947836940535], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 271, - "bus": 1107, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1629.1640074070413, 388.77945648805644] - ] - }, - { - "id": 18, - "bus": 1108, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1607.2681824779456, 471.1834233202177] - ] - }, - { - "id": 163, - "bus": 1108, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1597.0248677310617, 504.81323345005836], - [0.0, 0.0] - ] - }, - { - "id": 248, - "bus": 1108, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1665.8302875301836, 174.1673963887154] - ] - }, - { - "id": 279, - "bus": 1108, - "phases": "abcn", - "powers": [ - [1616.4784308668634, 438.5456776208398], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 13, - "bus": 1110, - "phases": "abcn", - "powers": [ - [1621.2277893370012, 420.64864661517436], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 222, - "bus": 1110, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1608.8904750559184, 465.61386157637037], - [0.0, 0.0] - ] - }, - { - "id": 224, - "bus": 1110, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1654.1423280550448, 262.9410339873837], - [0.0, 0.0] - ] - }, - { - "id": 239, - "bus": 1110, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1670.0088191215686, 128.04441758195404], - [0.0, 0.0] - ] - }, - { - "id": 43, - "bus": 1111, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1641.0678606761926, 334.99418722327493], - [0.0, 0.0] - ] - }, - { - "id": 204, - "bus": 1111, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1603.9616310163979, 482.31930818176306] - ] - }, - { - "id": 208, - "bus": 1111, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1670.3933312359595, 122.92659508890925] - ] - }, - { - "id": 211, - "bus": 1111, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1636.2384357068568, 357.83880495733865], - [0.0, 0.0] - ] - }, - { - "id": 109, - "bus": 1163, - "phases": "abcn", - "powers": [ - [1647.4159213600706, 302.2343641399299], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 82, - "bus": 1164, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1619.5799475808362, 426.9492033155392] - ] - }, - { - "id": 91, - "bus": 1164, - "phases": "abcn", - "powers": [ - [1604.9524958478376, 479.01181080377887], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 152, - "bus": 1164, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1673.3317650228937, 72.70235885502635] - ] - }, - { - "id": 216, - "bus": 1164, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1604.9866313425448, 478.89742328543446] - ] - }, - { - "id": 139, - "bus": 1165, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1653.930266610641, 264.27164434909093] - ] - }, - { - "id": 167, - "bus": 1165, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1624.864104098938, 406.3760229497721], - [0.0, 0.0] - ] - }, - { - "id": 169, - "bus": 1166, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1669.916118876741, 129.24776490663368] - ] - }, - { - "id": 247, - "bus": 1166, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1600.0032821240038, 495.29216227408034], - [0.0, 0.0] - ] - }, - { - "id": 38, - "bus": 1290, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1624.612877428693, 407.3792180641775] - ] - }, - { - "id": 127, - "bus": 1290, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1594.8569433313073, 511.62110895235463], - [0.0, 0.0] - ] - }, - { - "id": 245, - "bus": 1290, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1622.1985251714511, 416.88940229908326] - ] - }, - { - "id": 270, - "bus": 1290, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1637.2574432471677, 353.1471270582071] - ] - }, - { - "id": 79, - "bus": 1291, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1626.6376864762021, 399.2175669394656], - [0.0, 0.0] - ] - }, - { - "id": 156, - "bus": 1291, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1652.177259290862, 275.01842247357615], - [0.0, 0.0] - ] - }, - { - "id": 214, - "bus": 1291, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1593.5955731829927, 515.5365922505279], - [0.0, 0.0] - ] - }, - { - "id": 175, - "bus": 1292, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1647.7456283279093, 300.4316447113745], - [0.0, 0.0] - ] - }, - { - "id": 9, - "bus": 1293, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1614.4620999921485, 445.9113774133377] - ] - }, - { - "id": 22, - "bus": 1294, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1661.0178857292512, 215.27752345576147] - ] - }, - { - "id": 249, - "bus": 1294, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1603.9771978443657, 482.2675373825765] - ] - }, - { - "id": 44, - "bus": 1295, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1612.2196806931006, 453.9521230301219] - ] - }, - { - "id": 80, - "bus": 1295, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1595.7014687802139, 508.9809931130892] - ] - }, - { - "id": 192, - "bus": 1295, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1635.6447903692324, 360.5425752330898] - ] - }, - { - "id": 217, - "bus": 1295, - "phases": "abcn", - "powers": [ - [1673.2959462535111, 73.52213999391373], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 221, - "bus": 1295, - "phases": "abcn", - "powers": [ - [1595.3759873170673, 510.00028226444226], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 269, - "bus": 1495, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1635.6272076029422, 360.6223323183412] - ] - }, - { - "id": 90, - "bus": 1623, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1609.0652532107129, 465.00950498636337], - [0.0, 0.0] - ] - }, - { - "id": 258, - "bus": 1624, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1606.3931478942275, 474.15807829899177], - [0.0, 0.0] - ] - }, - { - "id": 51, - "bus": 1625, - "phases": "abcn", - "powers": [ - [1633.6809402406095, 369.3391589207354], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 246, - "bus": 1625, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1619.7414566330963, 426.33606753571036] - ] - }, - { - "id": 101, - "bus": 1626, - "phases": "abcn", - "powers": [ - [1662.460998465826, 203.8338965867251], - [0.0, 0.0], - [0.0, 0.0] - ] + "id": 0, + "phase": "n" }, { - "id": 158, - "bus": 1626, - "phases": "abcn", - "powers": [ - [1623.4232663086004, 412.09431836126197], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 176, - "bus": 1626, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1657.6366580649167, 239.92819479396871], - [0.0, 0.0] - ] - }, - { - "id": 68, - "bus": 1627, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1601.2984338224446, 491.0887441751281], - [0.0, 0.0] - ] - }, - { - "id": 262, - "bus": 1627, - "phases": "abcn", - "powers": [ - [1598.3345765453375, 500.6509864539918], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 100, - "bus": 1628, - "phases": "abcn", - "powers": [ - [1595.9282845174218, 508.2693572260652], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 37, - "bus": 1629, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1653.7239344417742, 265.5597436964729], - [0.0, 0.0] - ] - }, - { - "id": 84, - "bus": 1629, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1602.9045138767722, 485.82090137332204], - [0.0, 0.0] - ] - }, - { - "id": 153, - "bus": 1629, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1669.8217770024623, 130.46095916425557], - [0.0, 0.0] - ] - }, - { - "id": 218, - "bus": 1629, - "phases": "abcn", - "powers": [ - [1667.1161034922575, 161.39617806661656], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 252, - "bus": 1629, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1630.0959701585673, 384.8531627653819], - [0.0, 0.0] - ] - }, - { - "id": 4, - "bus": 1944, - "phases": "abcn", - "powers": [ - [1640.6159768938057, 337.20030423844725], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 55, - "bus": 1944, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1668.0845895933892, 151.058368780987] - ] - }, - { - "id": 65, - "bus": 1944, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1648.9381979355112, 293.8156704583797] - ] - }, - { - "id": 88, - "bus": 1944, - "phases": "abcn", - "powers": [ - [1672.3139697184884, 93.22454345347676], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 227, - "bus": 1944, - "phases": "abcn", - "powers": [ - [1674.902675315834, 5.084981571270136], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 45, - "bus": 1982, - "phases": "abcn", - "powers": [ - [1648.1355622962135, 298.2850936809659], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 63, - "bus": 1982, - "phases": "abcn", - "powers": [ - [1613.3621796960017, 449.87476695663264], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 87, - "bus": 1982, - "phases": "abcn", - "powers": [ - [1595.4014204994583, 509.92071568630087], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 130, - "bus": 1982, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1626.9817378565717, 397.81308864707773] - ] - }, - { - "id": 172, - "bus": 1982, - "phases": "abcn", - "powers": [ - [1616.6130401062906, 438.04920656932467], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 196, - "bus": 1982, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1666.3020334481905, 169.5946996345801], - [0.0, 0.0] - ] - }, - { - "id": 7, - "bus": 2055, - "phases": "abcn", - "powers": [ - [1651.1283091610464, 281.24746310802834], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 95, - "bus": 2055, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1651.3283489329701, 280.07054973350745] - ] - }, - { - "id": 190, - "bus": 2055, - "phases": "abcn", - "powers": [ - [1667.9988777338758, 152.0018838575649], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 193, - "bus": 2055, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1617.7371569038633, 433.87938414993147] - ] - }, - { - "id": 33, - "bus": 2056, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1617.5177372217076, 434.6966742349028] - ] - }, - { - "id": 104, - "bus": 2056, - "phases": "abcn", - "powers": [ - [1639.646751894824, 341.8820817452578], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 233, - "bus": 2056, - "phases": "abcn", - "powers": [ - [1630.1093871790822, 384.7963287875228], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 244, - "bus": 2056, - "phases": "abcn", - "powers": [ - [1620.2416343241287, 424.43123732872743], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 76, - "bus": 2057, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1630.7489553038533, 382.076790178505] - ] - }, - { - "id": 159, - "bus": 2057, - "phases": "abcn", - "powers": [ - [1612.4967432112114, 452.9669766671243], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 70, - "bus": 2059, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1610.4359524269498, 460.24001558797664] - ] - }, - { - "id": 219, - "bus": 2059, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1646.6881337579819, 306.1748176424268] - ] - }, - { - "id": 277, - "bus": 2059, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1641.1434252762363, 334.62379845178447] - ] - }, - { - "id": 56, - "bus": 2144, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1632.0834135057216, 376.33570143852904], - [0.0, 0.0] - ] - }, - { - "id": 243, - "bus": 2144, - "phases": "abcn", - "powers": [ - [1657.8453366159997, 238.48200912920169], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 64, - "bus": 2145, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1671.925947307757, 99.94226101493652], - [0.0, 0.0] - ] - }, - { - "id": 174, - "bus": 2145, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1618.1518037734559, 432.3303930588613] - ] - }, - { - "id": 235, - "bus": 2145, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1651.3240740005224, 280.0957540628483] - ] - }, - { - "id": 171, - "bus": 2305, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1616.3680782051056, 438.9522349609946] - ] - }, - { - "id": 183, - "bus": 2305, - "phases": "abcn", - "powers": [ - [1629.3039382587842, 388.19261403604077], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 112, - "bus": 2306, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1674.5834892621301, 33.09027513315446] - ] - }, - { - "id": 72, - "bus": 2428, - "phases": "abcn", - "powers": [ - [1610.3377232213174, 460.58359283424505], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 184, - "bus": 2428, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1607.4479545033093, 470.5697635641767] - ] - }, - { - "id": 1, - "bus": 2429, - "phases": "abcn", - "powers": [ - [1593.2594132465147, 516.5745550441775], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 26, - "bus": 2429, - "phases": "abcn", - "powers": [ - [1635.896696153402, 359.397869125712], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 53, - "bus": 2429, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1642.163401398756, 329.5818440451275] - ] - }, - { - "id": 125, - "bus": 2429, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1633.4906187901772, 370.17999289832244], - [0.0, 0.0] - ] - }, - { - "id": 179, - "bus": 2429, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1619.2353892030467, 428.25411051171073] - ] - }, - { - "id": 35, - "bus": 2578, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1603.129730145802, 485.0772074014263], - [0.0, 0.0] - ] - }, - { - "id": 265, - "bus": 2578, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1632.2689623444844, 375.53010982420335] - ] - }, - { - "id": 34, - "bus": 2579, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1624.2972737214423, 408.6357735181884], - [0.0, 0.0] - ] - }, - { - "id": 81, - "bus": 2579, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1599.406930320665, 497.2145412796632] - ] - }, - { - "id": 251, - "bus": 2579, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1642.7447747400045, 326.6717525010854], - [0.0, 0.0] - ] - }, - { - "id": 106, - "bus": 2580, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1638.500097045223, 347.335948039522] - ] - }, - { - "id": 120, - "bus": 2580, - "phases": "abcn", - "powers": [ - [1669.7960557052215, 130.78975941947022], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 149, - "bus": 2580, - "phases": "abcn", - "powers": [ - [1624.5346150149323, 407.69119862464964], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 165, - "bus": 2580, - "phases": "abcn", - "powers": [ - [1651.4410693739103, 279.4051237949543], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 24, - "bus": 2581, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1649.939181447882, 288.1415040233038], - [0.0, 0.0] - ] - }, - { - "id": 67, - "bus": 2581, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1622.4371686078744, 415.9596888370101] - ] - }, - { - "id": 119, - "bus": 2581, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1616.2365037460663, 439.43644907587026] - ] - }, - { - "id": 164, - "bus": 2581, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1643.351348220064, 323.6065127914087], - [0.0, 0.0] - ] - }, - { - "id": 257, - "bus": 2581, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1619.3365843145589, 427.8713071919821], - [0.0, 0.0] - ] - }, - { - "id": 170, - "bus": 2582, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1666.7707941793612, 164.92406885721527] - ] - }, - { - "id": 25, - "bus": 2610, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1597.144514825458, 504.43456223842435] - ] - }, - { - "id": 42, - "bus": 2610, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1641.1114587923032, 334.78053802202584], - [0.0, 0.0] - ] - }, - { - "id": 132, - "bus": 2611, - "phases": "abcn", - "powers": [ - [1636.8556168719965, 355.0049553630403], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 275, - "bus": 2611, - "phases": "abcn", - "powers": [ - [1607.205572883123, 471.3969402861565], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 8, - "bus": 2612, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1626.29777998842, 400.5999995287756] - ] - }, - { - "id": 94, - "bus": 2612, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1674.5270650179114, 35.832071391671136] - ] - }, - { - "id": 185, - "bus": 2612, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1632.5667475051214, 374.23340812688986], - [0.0, 0.0] - ] - }, - { - "id": 189, - "bus": 2612, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1630.0688460683778, 384.96803230271706] - ] - }, - { - "id": 242, - "bus": 2612, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1662.3731237681352, 204.54932459211506], - [0.0, 0.0] - ] - }, - { - "id": 261, - "bus": 2612, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1637.7098830370646, 351.04297147278453], - [0.0, 0.0] - ] - }, - { - "id": 117, - "bus": 2694, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1642.3901469397376, 328.4500480331599], - [0.0, 0.0] - ] - }, - { - "id": 160, - "bus": 2694, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1591.30651152537, 522.5594848384969], - [0.0, 0.0] - ] - }, - { - "id": 66, - "bus": 2695, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1624.5786920768455, 407.515523713642], - [0.0, 0.0] - ] - }, - { - "id": 108, - "bus": 2695, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1611.1537537020404, 457.72088738612683], - [0.0, 0.0] - ] - }, - { - "id": 124, - "bus": 2695, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1608.2152372850571, 467.940786191892], - [0.0, 0.0] - ] - }, - { - "id": 201, - "bus": 2695, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1610.8026611122293, 458.9549169270104], - [0.0, 0.0] - ] - }, - { - "id": 50, - "bus": 2696, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1613.222527493904, 450.37529417575564] - ] - }, - { - "id": 195, - "bus": 2696, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1626.90250101793, 398.137012847741] - ] - }, - { - "id": 263, - "bus": 2696, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1632.0810802567094, 376.3458200721922], - [0.0, 0.0] - ] - }, - { - "id": 273, - "bus": 2696, - "phases": "abcn", - "powers": [ - [1617.5906011172037, 434.42545504954154], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 3, - "bus": 2698, - "phases": "abcn", - "powers": [ - [1647.8354248159008, 299.9387296424358], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 144, - "bus": 2698, - "phases": "abcn", - "powers": [ - [1613.508657364426, 449.3491308857352], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 162, - "bus": 2698, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1647.3270071902402, 302.7186155481101] - ] - }, - { - "id": 212, - "bus": 2698, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1658.1502502295439, 236.3526527911612] - ] - }, - { - "id": 276, - "bus": 2698, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1614.320479512987, 446.42381012069416], - [0.0, 0.0] - ] - }, - { - "id": 197, - "bus": 2899, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1628.856200279835, 390.06705529646507], - [0.0, 0.0] - ] - }, - { - "id": 274, - "bus": 2899, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1670.7966100307979, 117.31801535702975] - ] - }, - { - "id": 47, - "bus": 2921, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1655.5315748693233, 254.04730549331973], - [0.0, 0.0] - ] - }, - { - "id": 89, - "bus": 2921, - "phases": "abcn", - "powers": [ - [1605.0926849435857, 478.5418493280491], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 111, - "bus": 2921, - "phases": "abcn", - "powers": [ - [1591.945002330109, 520.6111201020465], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 194, - "bus": 2921, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1642.4717617251922, 328.0416753296169], - [0.0, 0.0] - ] - }, - { - "id": 198, - "bus": 2921, - "phases": "abcn", - "powers": [ - [1661.4996285821737, 211.52733402332848], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 12, - "bus": 2922, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1599.7245272791622, 496.1917629699018], - [0.0, 0.0] - ] - }, - { - "id": 264, - "bus": 2922, - "phases": "abcn", - "powers": [ - [1649.0003126027527, 293.466859890077], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 20, - "bus": 3066, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1673.6727628323965, 64.37632927319429], - [0.0, 0.0] - ] - }, - { - "id": 30, - "bus": 3066, - "phases": "abcn", - "powers": [ - [1610.3466243779258, 460.5524705962807], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 229, - "bus": 3067, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1594.5363132030109, 512.6195223503178] - ] - }, - { - "id": 236, - "bus": 3067, - "phases": "abcn", - "powers": [ - [1671.9559170678906, 99.43963092945995], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 77, - "bus": 3218, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1658.7891302968374, 231.8263359214834], - [0.0, 0.0] - ] - }, - { - "id": 93, - "bus": 3218, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1615.0532194779382, 443.76562177760565], - [0.0, 0.0] - ] - }, - { - "id": 145, - "bus": 3218, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1600.2173989638175, 494.59994426929813] - ] - }, - { - "id": 136, - "bus": 3219, - "phases": "abcn", - "powers": [ - [1666.4457854209356, 168.1763154267534], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 177, - "bus": 3219, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1605.3757687174464, 477.59132114453934] - ] - }, - { - "id": 266, - "bus": 3219, - "phases": "abcn", - "powers": [ - [1598.9576757552327, 498.65737732549644], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 118, - "bus": 3221, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1635.461287751441, 361.3740514814481] - ] - }, - { - "id": 141, - "bus": 3221, - "phases": "abcn", - "powers": [ - [1664.9795326951921, 182.12079651653724], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 161, - "bus": 3221, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1648.6860832890966, 295.22707800365555] - ] - }, - { - "id": 147, - "bus": 3535, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1620.447201029315, 423.64572167552564], - [0.0, 0.0] - ] - }, - { - "id": 180, - "bus": 3535, - "phases": "abcn", - "powers": [ - [1647.5084976436135, 301.72931413735984], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 148, - "bus": 3536, - "phases": "abcn", - "powers": [ - [1609.8337228690455, 462.3420957811514], - [0.0, 0.0], - [0.0, 0.0] - ] - }, - { - "id": 253, - "bus": 3536, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1640.7819694423779, 336.3916728614282] - ] - }, - { - "id": 58, - "bus": 3834, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1611.2179327277734, 457.4949202714263], - [0.0, 0.0] - ] - }, - { - "id": 133, - "bus": 3834, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1639.947440935606, 340.4368073321034], - [0.0, 0.0] - ] - }, - { - "id": 225, - "bus": 3834, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [1612.2914850899472, 453.6970309845221], - [0.0, 0.0] - ] - }, - { - "id": 241, - "bus": 3834, - "phases": "abcn", - "powers": [ - [0.0, 0.0], - [0.0, 0.0], - [1611.502422137097, 456.4918096351652] - ] - } - ], - "sources": [ - { - "id": 0, - "bus": 0, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_CU_14", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.2857142857142856, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.2857142857142856, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.2857142857142856, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 1.2857142857142856 - ] - ], - [ - [ - 0.5249999999999999, - 0.17499999999999993, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.5249999999999999, - 0.17499999999999993, - 0.1749999999999999 - ], - [ - 0.17499999999999993, - 0.17499999999999993, - 0.5249999999999999, - 0.1749999999999999 - ], - [ - 0.1749999999999999, - 0.1749999999999999, - 0.1749999999999999, - 0.5249999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 1.3089969389957474e-06, - -2.6179938779914946e-07, - -2.6179938779914946e-07, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - 1.3089969389957474e-06, - -2.6179938779914946e-07, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - -2.6179938779914946e-07, - 1.3089969389957474e-06, - -2.6179938779914946e-07 - ], - [ - -2.6179938779914946e-07, - -2.6179938779914946e-07, - -2.6179938779914946e-07, - 1.3089969389957474e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.2 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 7.84141526336012e-05, - -1.96035381584003e-05, - -1.96035381584003e-05, - -1.96035381584003e-05 - ], - [ - -1.96035381584003e-05, - 7.84141526336012e-05, - -1.96035381584003e-05, - -1.96035381584003e-05 - ], - [ - -1.96035381584003e-05, - -1.96035381584003e-05, - 7.84141526336012e-05, - -1.96035381584003e-05 - ], - [ - -1.96035381584003e-05, - -1.96035381584003e-05, - -1.96035381584003e-05, - 7.84141526336012e-05 - ] - ] - ] - }, - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00010284317710785252, - -2.5710794276947463e-05, - -2.5710794276947463e-05, - -2.57107942769788e-05 - ], - [ - -2.5710794276947463e-05, - 0.00010284317710785252, - -2.5710794276947463e-05, - -2.57107942769788e-05 - ], - [ - -2.5710794276947463e-05, - -2.5710794276947463e-05, - 0.00010284317710785252, - -2.57107942769788e-05 - ], - [ - -2.57107942769788e-05, - -2.57107942769788e-05, - -2.57107942769788e-05, - 0.0001028431771079 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.31578947368421 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05, - -1.587132608593564e-05 - ], - [ - -1.587132608593564e-05, - -1.587132608593564e-05, - -1.587132608593564e-05, - 6.348530434374256e-05 - ] - ] - ] - }, - { - "id": "S_CU_25", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.7200000000000001, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.7200000000000001, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.7200000000000001, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.7200000000000001 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.4484951974831474e-05, - -1.1121237993707868e-05, - -1.1121237993707868e-05, - -1.1121237993707868e-05 - ], - [ - -1.1121237993707868e-05, - 4.4484951974831474e-05, - -1.1121237993707868e-05, - -1.1121237993707868e-05 - ], - [ - -1.1121237993707868e-05, - -1.1121237993707868e-05, - 4.4484951974831474e-05, - -1.1121237993707868e-05 - ], - [ - -1.1121237993707868e-05, - -1.1121237993707868e-05, - -1.1121237993707868e-05, - 4.4484951974831474e-05 - ] - ] - ] - }, - { - "id": "T_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.2 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 6.283185307179584e-05, - -1.570796326794896e-05, - -1.570796326794896e-05, - -1.570796326794896e-05 - ], - [ - -1.570796326794896e-05, - 6.283185307179584e-05, - -1.570796326794896e-05, - -1.570796326794896e-05 - ], - [ - -1.570796326794896e-05, - -1.570796326794896e-05, - 6.283185307179584e-05, - -1.570796326794896e-05 - ], - [ - -1.570796326794896e-05, - -1.570796326794896e-05, - -1.570796326794896e-05, - 6.283185307179584e-05 - ] - ] - ] - }, - { - "id": "T_AL_25", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.2, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.2, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.2, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 1.2 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.7123889803846906e-05, - -1.1780972450961726e-05, - -1.1780972450961726e-05, - -1.1780972450961725e-05 - ], - [ - -1.1780972450961726e-05, - 4.7123889803846906e-05, - -1.1780972450961726e-05, - -1.1780972450961725e-05 - ], - [ - -1.1780972450961726e-05, - -1.1780972450961726e-05, - 4.7123889803846906e-05, - -1.1780972450961725e-05 - ], - [ - -1.1780972450961725e-05, - -1.1780972450961725e-05, - -1.1780972450961725e-05, - 4.71238898038469e-05 - ] - ] - ] - }, - { - "id": "T_AL_70", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.42857142857142855, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.42857142857142855, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.42857142857142855, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4285714285714285 - ] - ], - [ - [ - 0.20000000000000004, - 0.10000000000000002, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.20000000000000004, - 0.10000000000000002, - 0.1 - ], - [ - 0.10000000000000002, - 0.10000000000000002, - 0.20000000000000004, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.2 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 0.0, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 5.2778756580308516e-05, - -1.3194689145077129e-05, - -1.3194689145077129e-05, - -1.319468914507713e-05 - ], - [ - -1.3194689145077129e-05, - 5.2778756580308516e-05, - -1.3194689145077129e-05, - -1.319468914507713e-05 - ], - [ - -1.3194689145077129e-05, - -1.3194689145077129e-05, - 5.2778756580308516e-05, - -1.319468914507713e-05 - ], - [ - -1.319468914507713e-05, - -1.319468914507713e-05, - -1.319468914507713e-05, - 5.277875658030852e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 54, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 0, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85846575091946, 45.70847617823726] + } + }, + { + "id": 54, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85846575091946, 45.70847617823726] + } + }, + { + "id": 141, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85870560116178, 45.70860760344203] + } + }, + { + "id": 142, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85869801153841, 45.70900292606039] + } + }, + { + "id": 186, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858653382246263, 45.70875532583823] + } + }, + { + "id": 187, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858739171164092, 45.70880757501374] + } + }, + { + "id": 414, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858691784300813, 45.70839008547719] + } + }, + { + "id": 426, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859386124804403, 45.70806573046651] + } + }, + { + "id": 427, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859704050364739, 45.70805047840309] + } + }, + { + "id": 479, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858652333258119, 45.70837026980359] + } + }, + { + "id": 511, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858763809394666, 45.70844787378506] + } + }, + { + "id": 535, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858723373804454, 45.70941641027449] + } + }, + { + "id": 540, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858651358015089, 45.70812455944064] + } + }, + { + "id": 662, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859703873051338, 45.70810268927151] + } + }, + { + "id": 665, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857131615330457, 45.70818392334662] + } + }, + { + "id": 666, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857097901025856, 45.70823328729713] + } + }, + { + "id": 680, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858614083339599, 45.70834862687379] + } + }, + { + "id": 773, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858895913447741, 45.70974381024688] + } + }, + { + "id": 853, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859810591784496, 45.70807812776008] + } + }, + { + "id": 854, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859913312051285, 45.70807902143925] + } + }, + { + "id": 855, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859951832358216, 45.70807936104072] + } + }, + { + "id": 856, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859972615464178, 45.70807954158136] + } + }, + { + "id": 878, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857275781799144, 45.70723556005225] + } + }, + { + "id": 879, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857256151263146, 45.70711038978346] + } + }, + { + "id": 880, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857262364210815, 45.70699351390524] + } + }, + { + "id": 881, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857267515697749, 45.70689639246044] + } + }, + { + "id": 882, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857267614293992, 45.70689461701293] + } + }, + { + "id": 883, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857267759513011, 45.70689189539422] + } + }, + { + "id": 1003, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858151406473321, 45.70725098354557] + } + }, + { + "id": 1004, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85812572934119, 45.707250534644] + } + }, + { + "id": 1005, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858114041508144, 45.70725032932825] + } + }, + { + "id": 1006, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857597397234586, 45.70724123069877] + } + }, + { + "id": 1007, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857535241965201, 45.70724013433262] + } + }, + { + "id": 1058, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858881739788789, 45.70785294412009] + } + }, + { + "id": 1059, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858882368754885, 45.70784395579707] + } + }, + { + "id": 1060, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858897218734911, 45.70763017681548] + } + }, + { + "id": 1061, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858902974214498, 45.707547425535] + } + }, + { + "id": 1062, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858919214046995, 45.70731378569783] + } + }, + { + "id": 1063, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858922785113299, 45.70726244366002] + } + }, + { + "id": 1093, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858781571296007, 45.70726034441319] + } + }, + { + "id": 1094, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858768727955327, 45.70726015614733] + } + }, + { + "id": 1095, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858537648453671, 45.7072567198413] + } + }, + { + "id": 1096, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858511961775738, 45.70725634325208] + } + }, + { + "id": 1097, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858460613677841, 45.70725558048714] + } + }, + { + "id": 1098, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858157821930228, 45.70725108235426] + } + }, + { + "id": 1099, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858152499451649, 45.70725100398066] + } + }, + { + "id": 1106, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859703269885658, 45.70811167702172] + } + }, + { + "id": 1107, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859691230963773, 45.70829140447697] + } + }, + { + "id": 1108, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859691101355493, 45.70829334264744] + } + }, + { + "id": 1109, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859690024623929, 45.70830937997797] + } + }, + { + "id": 1110, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859689421453726, 45.70831836772848] + } + }, + { + "id": 1111, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859668770979119, 45.70862644778789] + } + }, + { + "id": 1163, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858738932211071, 45.70911092029043] + } + }, + { + "id": 1164, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858757916934997, 45.70943452705954] + } + }, + { + "id": 1165, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858773792484836, 45.70970511476557] + } + }, + { + "id": 1166, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858774062588907, 45.70970960928479] + } + }, + { + "id": 1290, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858739171732017, 45.70881207559292] + } + }, + { + "id": 1291, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858739150677472, 45.70883237373603] + } + }, + { + "id": 1292, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85873914807851, 45.70883456108218] + } + }, + { + "id": 1293, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858739125404754, 45.70886155614262] + } + }, + { + "id": 1294, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85873905168792, 45.70895924765031] + } + }, + { + "id": 1295, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85873893164317, 45.70910641971108] + } + }, + { + "id": 1495, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858691729537287, 45.70820627355009] + } + }, + { + "id": 1496, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858691694044068, 45.70807954669539] + } + }, + { + "id": 1623, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857860255450155, 45.70813154291512] + } + }, + { + "id": 1624, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85782192849138, 45.70813430365612] + } + }, + { + "id": 1625, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857821121561098, 45.70813435779852] + } + }, + { + "id": 1626, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857540908874141, 45.70815449967574] + } + }, + { + "id": 1627, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857477034557761, 45.70815909463102] + } + }, + { + "id": 1628, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857336518230978, 45.70816919244123] + } + }, + { + "id": 1629, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857310970894318, 45.70817102672679] + } + }, + { + "id": 1944, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85766416853888, 45.70721602985164] + } + }, + { + "id": 1982, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858491381680595, 45.70847728520197] + } + }, + { + "id": 2055, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857200315625728, 45.70822020250381] + } + }, + { + "id": 2056, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857275018775843, 45.70846340082636] + } + }, + { + "id": 2057, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857278744071173, 45.70875669252492] + } + }, + { + "id": 2058, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857278792378547, 45.7087602739085] + } + }, + { + "id": 2059, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857278808693088, 45.70876119166208] + } + }, + { + "id": 2144, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857882752543429, 45.70823005021285] + } + }, + { + "id": 2145, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857876335254144, 45.70823019445908] + } + }, + { + "id": 2305, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858609965119976, 45.70825870764124] + } + }, + { + "id": 2306, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858368880856789, 45.70826862857308] + } + }, + { + "id": 2428, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858231152717311, 45.70810758836546] + } + }, + { + "id": 2429, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858129245824944, 45.70811379479478] + } + }, + { + "id": 2578, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859000718079856, 45.70806629701848] + } + }, + { + "id": 2579, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859000143989006, 45.70798532627871] + } + }, + { + "id": 2580, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858999648085297, 45.70791335496535] + } + }, + { + "id": 2581, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858881598777165, 45.70785743888134] + } + }, + { + "id": 2582, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858881674325446, 45.70785488084649] + } + }, + { + "id": 2610, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858639795155034, 45.70854534569091] + } + }, + { + "id": 2611, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858535320177401, 45.70859704818644] + } + }, + { + "id": 2612, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858534241242276, 45.70859705444225] + } + }, + { + "id": 2694, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858867184443032, 45.71016931222483] + } + }, + { + "id": 2695, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858859064573131, 45.71015332867633] + } + }, + { + "id": 2696, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858857002020719, 45.71014925251106] + } + }, + { + "id": 2697, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858863334716782, 45.70975820661533] + } + }, + { + "id": 2698, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858868334217182, 45.70975599692036] + } + }, + { + "id": 2899, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.857975831490713, 45.70812391332192] + } + }, + { + "id": 2921, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858763993714154, 45.70836690399566] + } + }, + { + "id": 2922, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858994304107692, 45.70806651326404] + } + }, + { + "id": 3066, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858511570902601, 45.70850236763883] + } + }, + { + "id": 3067, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858515038657315, 45.70850262271592] + } + }, + { + "id": 3218, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859793914502443, 45.70805175138868] + } + }, + { + "id": 3219, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859806757619531, 45.708051930545] + } + }, + { + "id": 3220, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859935139105061, 45.70805375915022] + } + }, + { + "id": 3221, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85997402865019, 45.70805430646571] + } + }, + { + "id": 3535, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858735739719023, 45.70957811755016] + } + }, + { + "id": 3536, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.858742606561232, 45.70966801100467] + } + }, + { + "id": 3834, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859116288759923, 45.70806612834648] + } + }, + { + "id": 3835, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.859373111064799, 45.70806575312553] + } + } + ], + "branches": [ + { + "id": "transfo", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 0, + "bus2": 54, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line1484", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 54, + "bus2": 1982, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85846575091946, 45.70847617823726], + [4.858484970678613, 45.70847700628548], + [4.858491381680595, 45.70847728520197] + ] + }, + "length": 0.0005001805797426, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line205", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 54, + "bus2": 479, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85846575091946, 45.70847617823726], + [4.858471417041118, 45.70846327816842], + [4.858492511489998, 45.70841526865618], + [4.858652333258119, 45.70837026980359] + ] + }, + "length": 0.0189957245757942, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line326", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 54, + "bus2": 680, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85846575091946, 45.70847617823726], + [4.858462801847775, 45.7084628417802], + [4.858447926655387, 45.70839556833542], + [4.858614083339599, 45.70834862687379] + ] + }, + "length": 0.0215171544221145, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2076", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 54, + "bus2": 2610, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85846575091946, 45.70847617823726], + [4.858464659141226, 45.70848965055031], + [4.85846163967549, 45.70852667729195], + [4.858639622598972, 45.70854157807495], + [4.858639795155034, 45.70854534569091] + ] + }, + "length": 0.0184990001621715, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line169", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1982, + "bus2": 414, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858491381680595, 45.70847728520197], + [4.858479104158953, 45.70846645377902], + [4.858514241119253, 45.70844088353304], + [4.858691784300813, 45.70839008547719] + ] + }, + "length": 0.0188786040178695, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line223", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1982, + "bus2": 511, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858491381680595, 45.70847728520197], + [4.858484836774053, 45.70847436294846], + [4.858763809394666, 45.70844787378506] + ] + }, + "length": 0.0219219562567218, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1485", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1982, + "bus2": 186, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858491381680595, 45.70847728520197], + [4.858741235721783, 45.70848798657143], + [4.858739614398045, 45.70873983113913], + [4.858653382246263, 45.70875532583823] + ] + }, + "length": 0.0544160543418695, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2507", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1982, + "bus2": 3066, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858491381680595, 45.70847728520197], + [4.858480412869868, 45.70848493078657], + [4.858509340626727, 45.70850220175434], + [4.858511570902601, 45.70850236763883] + ] + }, + "length": 0.0031341964682167, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2508", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3066, + "bus2": 3067, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858511570902601, 45.70850236763883], + [4.858515038657315, 45.70850262271592] + ] + }, + "length": 0.0002715150308807, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2509", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3067, + "bus2": 141, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858515038657315, 45.70850262271592], + [4.858705291981614, 45.70851669844131], + [4.85870560116178, 45.70860760344203] + ] + }, + "length": 0.0250009436901644, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2077", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2610, + "bus2": 2611, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858639795155034, 45.70854534569091], + [4.858642134753842, 45.70859642880821], + [4.858535320177401, 45.70859704818644] + ] + }, + "length": 0.0139984096271449, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line240", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 479, + "bus2": 540, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858652333258119, 45.70837026980359], + [4.858651358015089, 45.70812455944064] + ] + }, + "length": 0.0273097357634461, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line1067", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 414, + "bus2": 1495, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858691784300813, 45.70839008547719], + [4.858691729537287, 45.70820627355009] + ] + }, + "length": 0.0204298908896905, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1785", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 680, + "bus2": 2305, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858614083339599, 45.70834862687379], + [4.858609965119976, 45.70825870764124] + ] + }, + "length": 0.0099992723625301, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2378", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 511, + "bus2": 2921, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858763809394666, 45.70844787378506], + [4.858763993714154, 45.70836690399566] + ] + }, + "length": 0.0089994489936721, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line26", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 141, + "bus2": 142, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85870560116178, 45.70860760344203], + [4.85869801153841, 45.70900292606039] + ] + }, + "length": 0.0439423554981783, + "params_id": "S_CU_25", + "ground": "ground" + }, + { + "id": "line2379", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2921, + "bus2": 2922, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858763993714154, 45.70836690399566], + [4.858764686176953, 45.70807430496647], + [4.858994304107692, 45.70806651326404] + ] + }, + "length": 0.050422376736405, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line1786", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2305, + "bus2": 2306, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858609965119976, 45.70825870764124], + [4.858609594480862, 45.70825061491045], + [4.858368880856789, 45.70826862857308] + ] + }, + "length": 0.0197507861351198, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2078", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2611, + "bus2": 2612, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858535320177401, 45.70859704818644], + [4.858534241242276, 45.70859705444225] + ] + }, + "length": 8.401840908629157e-5, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line1068", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1495, + "bus2": 1496, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858691729537287, 45.70820627355009], + [4.858691694044068, 45.70807954669539] + ] + }, + "length": 0.014085134613226, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1904", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1496, + "bus2": 2428, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858691694044068, 45.70807954669539], + [4.858231152717311, 45.70810758836546] + ] + }, + "length": 0.0359973644170521, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line49", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 186, + "bus2": 187, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858653382246263, 45.70875532583823], + [4.858736830996066, 45.70877555641476], + [4.858739171164092, 45.70880757501374] + ] + }, + "length": 0.0104394739583985, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line383", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 186, + "bus2": 773, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858653382246263, 45.70875532583823], + [4.858777291977871, 45.70875317881072], + [4.858792773914155, 45.70919133238354], + [4.858806761666566, 45.70958732202981], + [4.858856354113938, 45.7096203934093], + [4.858891454451695, 45.70964646367737], + [4.858895913447741, 45.70974381024688] + ] + }, + "length": 0.1225312422779096, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line887", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 187, + "bus2": 1290, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858739171164092, 45.70880757501374], + [4.858739171732017, 45.70881207559292] + ] + }, + "length": 0.0005002197054336, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line888", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1290, + "bus2": 1291, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858739171732017, 45.70881207559292], + [4.858739150677472, 45.70883237373603] + ] + }, + "length": 0.0022560504862093, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line889", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1291, + "bus2": 1292, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858739150677472, 45.70883237373603], + [4.85873914807851, 45.70883456108218] + ] + }, + "length": 0.000243114049454, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line890", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1292, + "bus2": 1293, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85873914807851, 45.70883456108218], + [4.858739125404754, 45.70886155614262] + ] + }, + "length": 0.0030003835161266, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line891", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1293, + "bus2": 1294, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858739125404754, 45.70886155614262], + [4.85873905168792, 45.70895924765031] + ] + }, + "length": 0.0108579857937378, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line237", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 142, + "bus2": 535, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85869801153841, 45.70900292606039], + [4.858723373804454, 45.70941641027449] + ] + }, + "length": 0.045999380754809, + "params_id": "S_CU_25", + "ground": "ground" + }, + { + "id": "line2380", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2922, + "bus2": 2578, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858994304107692, 45.70806651326404], + [4.859000718079856, 45.70806629701848] + ] + }, + "length": 0.0005000318906638, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line892", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1294, + "bus2": 1295, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85873905168792, 45.70895924765031], + [4.85873893164317, 45.70910641971108] + ] + }, + "length": 0.0163575345977811, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line2046", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2578, + "bus2": 2579, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859000718079856, 45.70806629701848], + [4.859000143989006, 45.70798532627871] + ] + }, + "length": 0.0089996536049888, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line3260", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2578, + "bus2": 3834, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859000718079856, 45.70806629701848], + [4.859116288759923, 45.70806612834648] + ] + }, + "length": 0.0089994707921524, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1905", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2428, + "bus2": 2429, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858231152717311, 45.70810758836546], + [4.858129245824944, 45.70811379479478] + ] + }, + "length": 0.0079653762628655, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line3261", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3834, + "bus2": 3835, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859116288759923, 45.70806612834648], + [4.859373111064799, 45.70806575312553] + ] + }, + "length": 0.0199987129260412, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2047", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2579, + "bus2": 2580, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859000143989006, 45.70798532627871], + [4.858999648085297, 45.70791335496535] + ] + }, + "length": 0.0079993889005269, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2358", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2429, + "bus2": 2899, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858129245824944, 45.70811379479478], + [4.857975831490713, 45.70812391332192] + ] + }, + "length": 0.0119991328428249, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line893", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1295, + "bus2": 1163, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85873893164317, 45.70910641971108], + [4.858738932211071, 45.70911092029043] + ] + }, + "length": 0.0005002197530754, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line751", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1163, + "bus2": 1164, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858738932211071, 45.70911092029043], + [4.858757916934997, 45.70943452705954] + ] + }, + "length": 0.0359978479701025, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line2048", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2580, + "bus2": 2581, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858999648085297, 45.70791335496535], + [4.858999556689571, 45.70790070135651], + [4.858880154686606, 45.70790248627098], + [4.858881598777165, 45.70785743888134] + ] + }, + "length": 0.015714432025861, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2359", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2899, + "bus2": 1623, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857975831490713, 45.70812391332192], + [4.857860255450155, 45.70813154291512] + ] + }, + "length": 0.0090397209912012, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line3262", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3835, + "bus2": 426, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859373111064799, 45.70806575312553], + [4.859386124804403, 45.70806573046651] + ] + }, + "length": 0.0010133788079987, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line176", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 426, + "bus2": 427, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859386124804403, 45.70806573046651], + [4.859704050364739, 45.70805047840309] + ] + }, + "length": 0.024814734423431, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2049", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2581, + "bus2": 2582, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858881598777165, 45.70785743888134], + [4.858881674325446, 45.70785488084649] + ] + }, + "length": 0.0002843752030909, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2050", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2582, + "bus2": 1058, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858881674325446, 45.70785488084649], + [4.858881739788789, 45.70785294412009] + ] + }, + "length": 0.0002153189890175, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line640", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1058, + "bus2": 1059, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858881739788789, 45.70785294412009], + [4.858882368754885, 45.70784395579707] + ] + }, + "length": 0.0010002125153599, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line641", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1059, + "bus2": 1060, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858882368754885, 45.70784395579707], + [4.858897218734911, 45.70763017681548] + ] + }, + "length": 0.0237887171241015, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line2967", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 535, + "bus2": 3535, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858723373804454, 45.70941641027449], + [4.858735739719023, 45.70957811755016] + ] + }, + "length": 0.0179988343639828, + "params_id": "S_CU_25", + "ground": "ground" + }, + { + "id": "line1179", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1623, + "bus2": 1624, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857860255450155, 45.70813154291512], + [4.85782192849138, 45.70813430365612] + ] + }, + "length": 0.0030002365069316, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1635", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1623, + "bus2": 2144, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857860255450155, 45.70813154291512], + [4.857913824052103, 45.70815104152228], + [4.857917405904961, 45.70822927127691], + [4.857882752543429, 45.70823005021285] + ] + }, + "length": 0.0160999345263066, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1180", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1624, + "bus2": 1625, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85782192849138, 45.70813430365612], + [4.857821121561098, 45.70813435779852] + ] + }, + "length": 6.312281936731819e-5, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1181", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1625, + "bus2": 1626, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857821121561098, 45.70813435779852], + [4.857540908874141, 45.70815449967574] + ] + }, + "length": 0.0219345812676839, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1636", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2144, + "bus2": 2145, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857882752543429, 45.70823005021285], + [4.857876335254144, 45.70823019445908] + ] + }, + "length": 0.0004999678872504, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line752", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1164, + "bus2": 1165, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858757916934997, 45.70943452705954], + [4.858773792484836, 45.70970511476557] + ] + }, + "length": 0.0301000403657492, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line2968", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3535, + "bus2": 3536, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858735739719023, 45.70957811755016], + [4.858742606561232, 45.70966801100467] + ] + }, + "length": 0.0100055636677337, + "params_id": "S_CU_25", + "ground": "ground" + }, + { + "id": "line315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 427, + "bus2": 662, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859704050364739, 45.70805047840309], + [4.859703873051338, 45.70810268927151] + ] + }, + "length": 0.0058030254958827, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2653", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 427, + "bus2": 3218, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859704050364739, 45.70805047840309], + [4.859793914502443, 45.70805175138868] + ] + }, + "length": 0.0069991232756766, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line642", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1060, + "bus2": 1061, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858897218734911, 45.70763017681548], + [4.858902974214498, 45.707547425535] + ] + }, + "length": 0.0092083543694753, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line446", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 662, + "bus2": 853, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859703873051338, 45.70810268927151], + [4.859770824881562, 45.70807778014717], + [4.859810591784496, 45.70807812776008] + ] + }, + "length": 0.0089998882895087, + "params_id": "T_AL_25", + "ground": "ground" + }, + { + "id": "line691", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 662, + "bus2": 1106, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859703873051338, 45.70810268927151], + [4.859703269885658, 45.70811167702172] + ] + }, + "length": 0.001000052589444, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line1182", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1626, + "bus2": 1627, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857540908874141, 45.70815449967574], + [4.857477034557761, 45.70815909463102] + ] + }, + "length": 0.0050000148965564, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line692", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1106, + "bus2": 1107, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859703269885658, 45.70811167702172], + [4.859691230963773, 45.70829140447697] + ] + }, + "length": 0.0199979043405383, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line2654", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3218, + "bus2": 3219, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859793914502443, 45.70805175138868], + [4.859806757619531, 45.708051930545] + ] + }, + "length": 0.0010002878216915, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2655", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3219, + "bus2": 3220, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859806757619531, 45.708051930545], + [4.859935139105061, 45.70805375915022] + ] + }, + "length": 0.0099990926583539, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1183", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1627, + "bus2": 1628, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857477034557761, 45.70815909463102], + [4.857336518230978, 45.70816919244123] + ] + }, + "length": 0.0109993501457698, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line643", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1061, + "bus2": 1062, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858902974214498, 45.707547425535], + [4.858919214046995, 45.70731378569783] + ] + }, + "length": 0.0259988143444644, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line447", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 853, + "bus2": 854, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859810591784496, 45.70807812776008], + [4.859913312051285, 45.70807902143925] + ] + }, + "length": 0.0079994087043107, + "params_id": "T_AL_25", + "ground": "ground" + }, + { + "id": "line2656", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3220, + "bus2": 3221, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859935139105061, 45.70805375915022], + [4.85997402865019, 45.70805430646571] + ] + }, + "length": 0.0030289278084544, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1184", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1628, + "bus2": 1629, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857336518230978, 45.70816919244123], + [4.857310970894318, 45.70817102672679] + ] + }, + "length": 0.0019997784351482, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line448", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 854, + "bus2": 855, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859913312051285, 45.70807902143925], + [4.859951832358216, 45.70807936104072] + ] + }, + "length": 0.0029998005526106, + "params_id": "T_AL_25", + "ground": "ground" + }, + { + "id": "line1185", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1629, + "bus2": 665, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857310970894318, 45.70817102672679], + [4.857131615330457, 45.70818392334662] + ] + }, + "length": 0.0140396960419226, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line449", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 855, + "bus2": 856, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859951832358216, 45.70807936104072], + [4.859972615464178, 45.70807954158136] + ] + }, + "length": 0.0016184977160301, + "params_id": "T_AL_25", + "ground": "ground" + }, + { + "id": "line693", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1107, + "bus2": 1108, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859691230963773, 45.70829140447697], + [4.859691101355493, 45.70829334264744] + ] + }, + "length": 0.0002156554459493, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line694", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1108, + "bus2": 1109, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859691101355493, 45.70829334264744], + [4.859690024623929, 45.70830937997797] + ] + }, + "length": 0.0017844498815044, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line753", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1165, + "bus2": 1166, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858773792484836, 45.70970511476557], + [4.858774062588907, 45.70970960928479] + ] + }, + "length": 0.0004999888077918, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line695", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1109, + "bus2": 1110, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859690024623929, 45.70830937997797], + [4.859689421453726, 45.70831836772848] + ] + }, + "length": 0.0010000526676574, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line696", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1110, + "bus2": 1111, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.859689421453726, 45.70831836772848], + [4.859668770979119, 45.70862644778789] + ] + }, + "length": 0.0342794868178623, + "params_id": "A_CU_14", + "ground": "ground" + }, + { + "id": "line644", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1062, + "bus2": 1063, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858919214046995, 45.70731378569783], + [4.858922785113299, 45.70726244366002] + ] + }, + "length": 0.0057132131731552, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line317", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 665, + "bus2": 666, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857131615330457, 45.70818392334662], + [4.857097901025856, 45.70823328729713] + ] + }, + "length": 0.0060823444883348, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2159", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2698, + "bus2": 2697, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858863334716782, 45.70975820661533], + [4.858868334217182, 45.70975599692036] + ] + }, + "length": 0.0004602945698527, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2158", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2697, + "bus2": 2696, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858857002020719, 45.71014925251106], + [4.858834575884895, 45.71010508389108], + [4.858812307407221, 45.70978076782136], + [4.858863334716782, 45.70975820661533] + ] + }, + "length": 0.0459969488636987, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2157", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2696, + "bus2": 2695, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858859064573131, 45.71015332867633], + [4.858857002020719, 45.71014925251106] + ] + }, + "length": 0.0004806727477676, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line678", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1063, + "bus2": 1093, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858922785113299, 45.70726244366002], + [4.858781571296007, 45.70726034441319] + ] + }, + "length": 0.0109989068607356, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line1551", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 666, + "bus2": 2055, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857097901025856, 45.70823328729713], + [4.857129156762444, 45.70824248624743], + [4.857165471572625, 45.70822186761867], + [4.857200315625728, 45.70822020250381] + ] + }, + "length": 0.0089993081940269, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1552", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2055, + "bus2": 2056, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857200315625728, 45.70822020250381], + [4.857271875104469, 45.70821677618032], + [4.857275018775843, 45.70846340082636] + ] + }, + "length": 0.0329976382636671, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line679", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1093, + "bus2": 1094, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858781571296007, 45.70726034441319], + [4.858768727955327, 45.70726015614733] + ] + }, + "length": 0.0010003400099169, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line680", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1094, + "bus2": 1095, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858768727955327, 45.70726015614733], + [4.858537648453671, 45.7072567198413] + ] + }, + "length": 0.017998397595807, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line681", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1095, + "bus2": 1096, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858537648453671, 45.7072567198413], + [4.858511961775738, 45.70725634325208] + ] + }, + "length": 0.0020006800193537, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line682", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1096, + "bus2": 1097, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858511961775738, 45.70725634325208], + [4.858460613677841, 45.70725558048714] + ] + }, + "length": 0.003999416095814, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line683", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1097, + "bus2": 1098, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858460613677841, 45.70725558048714], + [4.858157821930228, 45.70725108235426] + ] + }, + "length": 0.0235839363651171, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line1553", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2056, + "bus2": 2057, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857275018775843, 45.70846340082636], + [4.857278744071173, 45.70875669252492] + ] + }, + "length": 0.0325993798943446, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2156", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2695, + "bus2": 2694, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858867184443032, 45.71016931222483], + [4.858859064573131, 45.71015332867633] + ] + }, + "length": 0.0018856622450659, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line2160", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 773, + "bus2": 2698, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858868334217182, 45.70975599692036], + [4.858895913447741, 45.70974381024688] + ] + }, + "length": 0.0025389970649123, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line684", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1098, + "bus2": 1099, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858157821930228, 45.70725108235426], + [4.858152499451649, 45.70725100398066] + ] + }, + "length": 0.0004145572289478, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line685", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1099, + "bus2": 1003, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858152499451649, 45.70725100398066], + [4.858151406473321, 45.70725098354557] + ] + }, + "length": 8.514140420113163e-5, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line584", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1003, + "bus2": 1004, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858151406473321, 45.70725098354557], + [4.85812572934119, 45.707250534644] + ] + }, + "length": 0.0020001213984857, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line585", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1004, + "bus2": 1005, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85812572934119, 45.707250534644], + [4.858114041508144, 45.70725032932825] + ] + }, + "length": 0.0009104270337889, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line586", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1005, + "bus2": 1006, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.858114041508144, 45.70725032932825], + [4.857597397234586, 45.70724123069877] + ] + }, + "length": 0.0402442179264523, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line1554", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2057, + "bus2": 2058, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857278744071173, 45.70875669252492], + [4.857278792378547, 45.7087602739085] + ] + }, + "length": 0.0003980729009457, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1555", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2058, + "bus2": 2059, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857278792378547, 45.7087602739085], + [4.857278808693088, 45.70876119166208] + ] + }, + "length": 0.0001020122088556, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line588", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1007, + "bus2": 878, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857535241965201, 45.70724013433262], + [4.857275781799144, 45.70723556005225] + ] + }, + "length": 0.0202107728374538, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line587", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1006, + "bus2": 1007, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857597397234586, 45.70724123069877], + [4.857535241965201, 45.70724013433262] + ] + }, + "length": 0.0048416155701097, + "params_id": "T_AL_150", + "ground": "ground" + }, + { + "id": "line468", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 878, + "bus2": 879, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857275781799144, 45.70723556005225], + [4.857256025201153, 45.70711268791645], + [4.857256151263146, 45.70711038978346] + ] + }, + "length": 0.0139986957482644, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line469", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 879, + "bus2": 880, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857256151263146, 45.70711038978346], + [4.857262364210815, 45.70699351390524] + ] + }, + "length": 0.0129992453778308, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line470", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 880, + "bus2": 881, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857262364210815, 45.70699351390524], + [4.857267515697749, 45.70689639246044] + ] + }, + "length": 0.0108020718458042, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line471", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 881, + "bus2": 882, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857267515697749, 45.70689639246044], + [4.857267614293992, 45.70689461701293] + ] + }, + "length": 0.0001974824702347, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line472", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 882, + "bus2": 883, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857267614293992, 45.70689461701293], + [4.857267759513011, 45.70689189539422] + ] + }, + "length": 0.0003027072235622, + "params_id": "T_AL_70", + "ground": "ground" + }, + { + "id": "line1455", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1944, + "bus2": 1006, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.857597397234586, 45.70724123069877], + [4.857598359433462, 45.70721425954639], + [4.85766416853888, 45.70721602985164] + ] + }, + "length": 0.005128387383998, + "params_id": "S_AL_95", + "ground": "ground" + } + ], + "loads": [ + { + "id": 10, + "bus": 141, + "phases": "abcn", + "powers": [ + [1649.6309210175623, 289.90110941572357], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 92, + "bus": 141, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1613.3744424881445, 449.83078723425234], + [0.0, 0.0] + ] + }, + { + "id": 187, + "bus": 141, + "phases": "abcn", + "powers": [ + [1656.3540960721095, 248.6281103231552], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 210, + "bus": 141, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1616.172346317852, 439.67235052385007], + [0.0, 0.0] + ] + }, + { + "id": 131, + "bus": 142, + "phases": "abcn", + "powers": [ + [1597.466210719081, 503.4148730704519], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 209, + "bus": 186, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1623.0200815085877, 413.6793974052557] + ] + }, + { + "id": 231, + "bus": 186, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1603.9262132948445, 482.43707478113595] + ] + }, + { + "id": 142, + "bus": 187, + "phases": "abcn", + "powers": [ + [1652.8488490414247, 270.95296831766905], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 230, + "bus": 187, + "phases": "abcn", + "powers": [ + [1607.860438506812, 469.1584371003045], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 5, + "bus": 414, + "phases": "abcn", + "powers": [ + [1599.0114311088391, 498.4849767053975], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 31, + "bus": 414, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1624.7606281318162, 406.7895402913211], + [0.0, 0.0] + ] + }, + { + "id": 73, + "bus": 414, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1597.098860143901, 504.57909166430034], + [0.0, 0.0] + ] + }, + { + "id": 146, + "bus": 414, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1609.792701829586, 462.48490348758475], + [0.0, 0.0] + ] + }, + { + "id": 15, + "bus": 426, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1629.6396498692925, 386.7808686990708] + ] + }, + { + "id": 105, + "bus": 426, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1598.0306174530028, 501.6203489697093] + ] + }, + { + "id": 182, + "bus": 426, + "phases": "abcn", + "powers": [ + [1673.565108144437, 67.11674619062352], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 99, + "bus": 427, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1631.0937767105743, 380.6020499074502] + ] + }, + { + "id": 97, + "bus": 479, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1652.7795669620286, 271.37526020351805] + ] + }, + { + "id": 98, + "bus": 479, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1617.427872330716, 435.0309260563573] + ] + }, + { + "id": 207, + "bus": 479, + "phases": "abcn", + "powers": [ + [1660.9157783929766, 216.06389310333773], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 19, + "bus": 511, + "phases": "abcn", + "powers": [ + [1646.5427148327403, 306.9558877900004], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 32, + "bus": 511, + "phases": "abcn", + "powers": [ + [1667.635933840843, 155.93338635615305], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 61, + "bus": 511, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1655.3000768485942, 255.55133418308813] + ] + }, + { + "id": 102, + "bus": 511, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1596.856292375536, 505.346228162806] + ] + }, + { + "id": 115, + "bus": 511, + "phases": "abcn", + "powers": [ + [1622.1111126465375, 417.22939379474434], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 86, + "bus": 535, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1658.833117376904, 231.51137663480102], + [0.0, 0.0] + ] + }, + { + "id": 113, + "bus": 535, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1609.0155932118976, 465.181308329004] + ] + }, + { + "id": 60, + "bus": 540, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1631.86439847811, 377.28426126383084] + ] + }, + { + "id": 178, + "bus": 540, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1634.3316710095662, 366.44892952879115], + [0.0, 0.0] + ] + }, + { + "id": 203, + "bus": 540, + "phases": "abcn", + "powers": [ + [1603.7962663959704, 482.86888977450593], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 220, + "bus": 540, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1627.0592737029801, 397.49584736805645] + ] + }, + { + "id": 226, + "bus": 540, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1592.7881379997257, 518.0258451709577], + [0.0, 0.0] + ] + }, + { + "id": 40, + "bus": 662, + "phases": "abcn", + "powers": [ + [1663.278385248608, 197.0528913325079], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 255, + "bus": 662, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1664.9975362517018, 181.95612958480237], + [0.0, 0.0] + ] + }, + { + "id": 278, + "bus": 665, + "phases": "abcn", + "powers": [ + [1615.9741885813264, 440.4001029253305], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 52, + "bus": 666, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1616.158288717553, 439.72402098051083] + ] + }, + { + "id": 83, + "bus": 666, + "phases": "abcn", + "powers": [ + [1607.2096847153755, 471.38292096216423], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 122, + "bus": 666, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1637.4948758755331, 352.04454306108863] + ] + }, + { + "id": 138, + "bus": 666, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1656.4961146642518, 247.6801383235168], + [0.0, 0.0] + ] + }, + { + "id": 237, + "bus": 666, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1593.315327640675, 516.4020676982298] + ] + }, + { + "id": 46, + "bus": 680, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1665.261943144325, 179.52016469718814] + ] + }, + { + "id": 57, + "bus": 680, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1664.7538948936872, 184.1719258030843], + [0.0, 0.0] + ] + }, + { + "id": 154, + "bus": 680, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1606.1191291213963, 475.0854364091214], + [0.0, 0.0] + ] + }, + { + "id": 16, + "bus": 773, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1597.7640380935597, 502.4688123582196], + [0.0, 0.0] + ] + }, + { + "id": 191, + "bus": 773, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1602.331427244946, 487.70772608283755], + [0.0, 0.0] + ] + }, + { + "id": 62, + "bus": 853, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1630.9676443164044, 381.1421939522266] + ] + }, + { + "id": 232, + "bus": 853, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1647.2290534213055, 303.2511737528281], + [0.0, 0.0] + ] + }, + { + "id": 36, + "bus": 854, + "phases": "abcn", + "powers": [ + [1653.5543640378867, 266.61356677592045], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 121, + "bus": 854, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1600.8315085460297, 492.608678429401], + [0.0, 0.0] + ] + }, + { + "id": 134, + "bus": 855, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1601.8378657993806, 489.3263537854917], + [0.0, 0.0] + ] + }, + { + "id": 41, + "bus": 856, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1604.5626504309857, 480.31607266424925] + ] + }, + { + "id": 54, + "bus": 856, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1655.0217377912397, 257.3477729769253], + [0.0, 0.0] + ] + }, + { + "id": 96, + "bus": 856, + "phases": "abcn", + "powers": [ + [1616.0128256010053, 440.2583063506845], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 23, + "bus": 878, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1620.9172039814193, 421.8438652567747], + [0.0, 0.0] + ] + }, + { + "id": 49, + "bus": 878, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1591.4366552355445, 522.1630025101559], + [0.0, 0.0] + ] + }, + { + "id": 116, + "bus": 878, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1660.9872790865918, 215.51354372808868], + [0.0, 0.0] + ] + }, + { + "id": 250, + "bus": 880, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1634.8588270330379, 364.0898851793023] + ] + }, + { + "id": 85, + "bus": 881, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1629.9079025741526, 385.6488790908703], + [0.0, 0.0] + ] + }, + { + "id": 78, + "bus": 882, + "phases": "abcn", + "powers": [ + [1599.2823959657937, 497.61495834794636], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 240, + "bus": 883, + "phases": "abcn", + "powers": [ + [1640.750417663451, 336.54553295940525], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 137, + "bus": 1003, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1612.0618722471097, 454.51220980834097] + ] + }, + { + "id": 173, + "bus": 1003, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1656.9686559283643, 244.49887952436086], + [0.0, 0.0] + ] + }, + { + "id": 75, + "bus": 1004, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1602.2453990876709, 487.9902764606162] + ] + }, + { + "id": 205, + "bus": 1004, + "phases": "abcn", + "powers": [ + [1625.908202106315, 402.1782529440506], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 259, + "bus": 1004, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1657.9797599185965, 237.5456682787351], + [0.0, 0.0] + ] + }, + { + "id": 29, + "bus": 1005, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1618.32210067962, 431.6924915603932] + ] + }, + { + "id": 39, + "bus": 1005, + "phases": "abcn", + "powers": [ + [1633.835418823479, 368.65519529178727], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 69, + "bus": 1005, + "phases": "abcn", + "powers": [ + [1619.4780256615602, 427.33564468348874], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 71, + "bus": 1005, + "phases": "abcn", + "powers": [ + [1597.110227435846, 504.54311038556307], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 181, + "bus": 1005, + "phases": "abcn", + "powers": [ + [1603.5051087020518, 483.83488421582325], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 188, + "bus": 1005, + "phases": "abcn", + "powers": [ + [1658.5054723637472, 233.84701613923147], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 213, + "bus": 1005, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1609.5404533796768, 463.36201587102755], + [0.0, 0.0] + ] + }, + { + "id": 267, + "bus": 1005, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1649.0989494031269, 292.91207536600695], + [0.0, 0.0] + ] + }, + { + "id": 6, + "bus": 1006, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1641.581245893379, 332.46930978491736] + ] + }, + { + "id": 21, + "bus": 1006, + "phases": "abcn", + "powers": [ + [1622.9987428245165, 413.7631080796804], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 59, + "bus": 1007, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1670.4676479906368, 121.91253354084823] + ] + }, + { + "id": 74, + "bus": 1007, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1647.1887662720164, 303.4699278099737], + [0.0, 0.0] + ] + }, + { + "id": 103, + "bus": 1007, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1601.2048413436364, 491.3938185156775], + [0.0, 0.0] + ] + }, + { + "id": 140, + "bus": 1007, + "phases": "abcn", + "powers": [ + [1672.9177561269962, 81.67625146108232], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 200, + "bus": 1007, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1628.0022334825608, 393.6160014449516], + [0.0, 0.0] + ] + }, + { + "id": 27, + "bus": 1058, + "phases": "abcn", + "powers": [ + [1629.8770962362053, 385.7790559145918], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 186, + "bus": 1058, + "phases": "abcn", + "powers": [ + [1646.1067936545764, 309.2850670529829], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 256, + "bus": 1058, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1638.8872292039748, 345.5046725730875], + [0.0, 0.0] + ] + }, + { + "id": 126, + "bus": 1059, + "phases": "abcn", + "powers": [ + [1598.8944576993117, 498.860042452933], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 234, + "bus": 1059, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1605.2164635655508, 478.12648317764706], + [0.0, 0.0] + ] + }, + { + "id": 114, + "bus": 1060, + "phases": "abcn", + "powers": [ + [1669.3211661893297, 136.71749313827573], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 129, + "bus": 1060, + "phases": "abcn", + "powers": [ + [1653.2396421991018, 268.5582139483058], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 155, + "bus": 1060, + "phases": "abcn", + "powers": [ + [1600.2431022067087, 494.51677692224706], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 28, + "bus": 1061, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1648.795355407865, 294.6161991526779] + ] + }, + { + "id": 123, + "bus": 1061, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1641.8166627546996, 331.3048063622674], + [0.0, 0.0] + ] + }, + { + "id": 2, + "bus": 1062, + "phases": "abcn", + "powers": [ + [1609.8577738238253, 462.25834430188064], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 150, + "bus": 1062, + "phases": "abcn", + "powers": [ + [1672.1375050755914, 96.33791017712122], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 151, + "bus": 1062, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1644.8860961382336, 315.71278014809536], + [0.0, 0.0] + ] + }, + { + "id": 199, + "bus": 1062, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1631.747703598017, 377.7886454359314] + ] + }, + { + "id": 17, + "bus": 1093, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1642.9631326666329, 325.571764002903] + ] + }, + { + "id": 168, + "bus": 1093, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1601.8246574373372, 489.36959002728764] + ] + }, + { + "id": 110, + "bus": 1094, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1617.6432981752396, 434.22918912303794], + [0.0, 0.0] + ] + }, + { + "id": 166, + "bus": 1094, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1617.0660793279756, 436.3738350366206] + ] + }, + { + "id": 135, + "bus": 1095, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1666.4505465393213, 168.1291311953869], + [0.0, 0.0] + ] + }, + { + "id": 238, + "bus": 1095, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1647.8896751156265, 299.64053041107945] + ] + }, + { + "id": 268, + "bus": 1095, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1639.8675492877805, 340.82143361386056] + ] + }, + { + "id": 272, + "bus": 1095, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1610.4714026341921, 460.1159529022831], + [0.0, 0.0] + ] + }, + { + "id": 107, + "bus": 1096, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1608.2706673639102, 467.7502424527016], + [0.0, 0.0] + ] + }, + { + "id": 157, + "bus": 1096, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1641.9321500268745, 330.73198140766993], + [0.0, 0.0] + ] + }, + { + "id": 223, + "bus": 1097, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1654.914452060731, 258.0367903579807], + [0.0, 0.0] + ] + }, + { + "id": 254, + "bus": 1097, + "phases": "abcn", + "powers": [ + [1660.7348754708923, 217.449999338694], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 128, + "bus": 1098, + "phases": "abcn", + "powers": [ + [1644.5202654503466, 317.6128544955946], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 143, + "bus": 1098, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1658.3484731945027, 234.9578052995472], + [0.0, 0.0] + ] + }, + { + "id": 202, + "bus": 1098, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1665.9518707818845, 173.00055796458477], + [0.0, 0.0] + ] + }, + { + "id": 206, + "bus": 1098, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1630.1839474831527, 384.48033263869763] + ] + }, + { + "id": 11, + "bus": 1099, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1604.1855860684668, 481.5739136081686], + [0.0, 0.0] + ] + }, + { + "id": 48, + "bus": 1099, + "phases": "abcn", + "powers": [ + [1615.744195361459, 441.2431574239642], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 215, + "bus": 1099, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1648.0399646727146, 298.81282378652253] + ] + }, + { + "id": 260, + "bus": 1099, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1664.887728770792, 182.95813566538203], + [0.0, 0.0] + ] + }, + { + "id": 14, + "bus": 1106, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1613.3173120524814, 450.03564242121354] + ] + }, + { + "id": 228, + "bus": 1106, + "phases": "abcn", + "powers": [ + [1645.6115295296893, 311.90947836940535], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 271, + "bus": 1107, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1629.1640074070413, 388.77945648805644] + ] + }, + { + "id": 18, + "bus": 1108, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1607.2681824779456, 471.1834233202177] + ] + }, + { + "id": 163, + "bus": 1108, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1597.0248677310617, 504.81323345005836], + [0.0, 0.0] + ] + }, + { + "id": 248, + "bus": 1108, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1665.8302875301836, 174.1673963887154] + ] + }, + { + "id": 279, + "bus": 1108, + "phases": "abcn", + "powers": [ + [1616.4784308668634, 438.5456776208398], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 13, + "bus": 1110, + "phases": "abcn", + "powers": [ + [1621.2277893370012, 420.64864661517436], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 222, + "bus": 1110, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1608.8904750559184, 465.61386157637037], + [0.0, 0.0] + ] + }, + { + "id": 224, + "bus": 1110, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1654.1423280550448, 262.9410339873837], + [0.0, 0.0] + ] + }, + { + "id": 239, + "bus": 1110, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1670.0088191215686, 128.04441758195404], + [0.0, 0.0] + ] + }, + { + "id": 43, + "bus": 1111, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1641.0678606761926, 334.99418722327493], + [0.0, 0.0] + ] + }, + { + "id": 204, + "bus": 1111, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1603.9616310163979, 482.31930818176306] + ] + }, + { + "id": 208, + "bus": 1111, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1670.3933312359595, 122.92659508890925] + ] + }, + { + "id": 211, + "bus": 1111, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1636.2384357068568, 357.83880495733865], + [0.0, 0.0] + ] + }, + { + "id": 109, + "bus": 1163, + "phases": "abcn", + "powers": [ + [1647.4159213600706, 302.2343641399299], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 82, + "bus": 1164, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1619.5799475808362, 426.9492033155392] + ] + }, + { + "id": 91, + "bus": 1164, + "phases": "abcn", + "powers": [ + [1604.9524958478376, 479.01181080377887], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 152, + "bus": 1164, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1673.3317650228937, 72.70235885502635] + ] + }, + { + "id": 216, + "bus": 1164, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1604.9866313425448, 478.89742328543446] + ] + }, + { + "id": 139, + "bus": 1165, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1653.930266610641, 264.27164434909093] + ] + }, + { + "id": 167, + "bus": 1165, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1624.864104098938, 406.3760229497721], + [0.0, 0.0] + ] + }, + { + "id": 169, + "bus": 1166, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1669.916118876741, 129.24776490663368] + ] + }, + { + "id": 247, + "bus": 1166, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1600.0032821240038, 495.29216227408034], + [0.0, 0.0] + ] + }, + { + "id": 38, + "bus": 1290, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1624.612877428693, 407.3792180641775] + ] + }, + { + "id": 127, + "bus": 1290, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1594.8569433313073, 511.62110895235463], + [0.0, 0.0] + ] + }, + { + "id": 245, + "bus": 1290, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1622.1985251714511, 416.88940229908326] + ] + }, + { + "id": 270, + "bus": 1290, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1637.2574432471677, 353.1471270582071] + ] + }, + { + "id": 79, + "bus": 1291, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1626.6376864762021, 399.2175669394656], + [0.0, 0.0] + ] + }, + { + "id": 156, + "bus": 1291, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1652.177259290862, 275.01842247357615], + [0.0, 0.0] + ] + }, + { + "id": 214, + "bus": 1291, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1593.5955731829927, 515.5365922505279], + [0.0, 0.0] + ] + }, + { + "id": 175, + "bus": 1292, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1647.7456283279093, 300.4316447113745], + [0.0, 0.0] + ] + }, + { + "id": 9, + "bus": 1293, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1614.4620999921485, 445.9113774133377] + ] + }, + { + "id": 22, + "bus": 1294, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1661.0178857292512, 215.27752345576147] + ] + }, + { + "id": 249, + "bus": 1294, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1603.9771978443657, 482.2675373825765] + ] + }, + { + "id": 44, + "bus": 1295, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1612.2196806931006, 453.9521230301219] + ] + }, + { + "id": 80, + "bus": 1295, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1595.7014687802139, 508.9809931130892] + ] + }, + { + "id": 192, + "bus": 1295, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1635.6447903692324, 360.5425752330898] + ] + }, + { + "id": 217, + "bus": 1295, + "phases": "abcn", + "powers": [ + [1673.2959462535111, 73.52213999391373], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 221, + "bus": 1295, + "phases": "abcn", + "powers": [ + [1595.3759873170673, 510.00028226444226], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 269, + "bus": 1495, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1635.6272076029422, 360.6223323183412] + ] + }, + { + "id": 90, + "bus": 1623, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1609.0652532107129, 465.00950498636337], + [0.0, 0.0] + ] + }, + { + "id": 258, + "bus": 1624, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1606.3931478942275, 474.15807829899177], + [0.0, 0.0] + ] + }, + { + "id": 51, + "bus": 1625, + "phases": "abcn", + "powers": [ + [1633.6809402406095, 369.3391589207354], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 246, + "bus": 1625, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1619.7414566330963, 426.33606753571036] + ] + }, + { + "id": 101, + "bus": 1626, + "phases": "abcn", + "powers": [ + [1662.460998465826, 203.8338965867251], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 158, + "bus": 1626, + "phases": "abcn", + "powers": [ + [1623.4232663086004, 412.09431836126197], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 176, + "bus": 1626, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1657.6366580649167, 239.92819479396871], + [0.0, 0.0] + ] + }, + { + "id": 68, + "bus": 1627, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1601.2984338224446, 491.0887441751281], + [0.0, 0.0] + ] + }, + { + "id": 262, + "bus": 1627, + "phases": "abcn", + "powers": [ + [1598.3345765453375, 500.6509864539918], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 100, + "bus": 1628, + "phases": "abcn", + "powers": [ + [1595.9282845174218, 508.2693572260652], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 37, + "bus": 1629, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1653.7239344417742, 265.5597436964729], + [0.0, 0.0] + ] + }, + { + "id": 84, + "bus": 1629, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1602.9045138767722, 485.82090137332204], + [0.0, 0.0] + ] + }, + { + "id": 153, + "bus": 1629, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1669.8217770024623, 130.46095916425557], + [0.0, 0.0] + ] + }, + { + "id": 218, + "bus": 1629, + "phases": "abcn", + "powers": [ + [1667.1161034922575, 161.39617806661656], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 252, + "bus": 1629, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1630.0959701585673, 384.8531627653819], + [0.0, 0.0] + ] + }, + { + "id": 4, + "bus": 1944, + "phases": "abcn", + "powers": [ + [1640.6159768938057, 337.20030423844725], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 55, + "bus": 1944, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1668.0845895933892, 151.058368780987] + ] + }, + { + "id": 65, + "bus": 1944, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1648.9381979355112, 293.8156704583797] + ] + }, + { + "id": 88, + "bus": 1944, + "phases": "abcn", + "powers": [ + [1672.3139697184884, 93.22454345347676], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 227, + "bus": 1944, + "phases": "abcn", + "powers": [ + [1674.902675315834, 5.084981571270136], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 45, + "bus": 1982, + "phases": "abcn", + "powers": [ + [1648.1355622962135, 298.2850936809659], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 63, + "bus": 1982, + "phases": "abcn", + "powers": [ + [1613.3621796960017, 449.87476695663264], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 87, + "bus": 1982, + "phases": "abcn", + "powers": [ + [1595.4014204994583, 509.92071568630087], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 130, + "bus": 1982, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1626.9817378565717, 397.81308864707773] + ] + }, + { + "id": 172, + "bus": 1982, + "phases": "abcn", + "powers": [ + [1616.6130401062906, 438.04920656932467], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 196, + "bus": 1982, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1666.3020334481905, 169.5946996345801], + [0.0, 0.0] + ] + }, + { + "id": 7, + "bus": 2055, + "phases": "abcn", + "powers": [ + [1651.1283091610464, 281.24746310802834], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 95, + "bus": 2055, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1651.3283489329701, 280.07054973350745] + ] + }, + { + "id": 190, + "bus": 2055, + "phases": "abcn", + "powers": [ + [1667.9988777338758, 152.0018838575649], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 193, + "bus": 2055, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1617.7371569038633, 433.87938414993147] + ] + }, + { + "id": 33, + "bus": 2056, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1617.5177372217076, 434.6966742349028] + ] + }, + { + "id": 104, + "bus": 2056, + "phases": "abcn", + "powers": [ + [1639.646751894824, 341.8820817452578], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 233, + "bus": 2056, + "phases": "abcn", + "powers": [ + [1630.1093871790822, 384.7963287875228], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 244, + "bus": 2056, + "phases": "abcn", + "powers": [ + [1620.2416343241287, 424.43123732872743], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 76, + "bus": 2057, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1630.7489553038533, 382.076790178505] + ] + }, + { + "id": 159, + "bus": 2057, + "phases": "abcn", + "powers": [ + [1612.4967432112114, 452.9669766671243], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 70, + "bus": 2059, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1610.4359524269498, 460.24001558797664] + ] + }, + { + "id": 219, + "bus": 2059, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1646.6881337579819, 306.1748176424268] + ] + }, + { + "id": 277, + "bus": 2059, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1641.1434252762363, 334.62379845178447] + ] + }, + { + "id": 56, + "bus": 2144, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1632.0834135057216, 376.33570143852904], + [0.0, 0.0] + ] + }, + { + "id": 243, + "bus": 2144, + "phases": "abcn", + "powers": [ + [1657.8453366159997, 238.48200912920169], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 64, + "bus": 2145, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1671.925947307757, 99.94226101493652], + [0.0, 0.0] + ] + }, + { + "id": 174, + "bus": 2145, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1618.1518037734559, 432.3303930588613] + ] + }, + { + "id": 235, + "bus": 2145, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1651.3240740005224, 280.0957540628483] + ] + }, + { + "id": 171, + "bus": 2305, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1616.3680782051056, 438.9522349609946] + ] + }, + { + "id": 183, + "bus": 2305, + "phases": "abcn", + "powers": [ + [1629.3039382587842, 388.19261403604077], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 112, + "bus": 2306, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1674.5834892621301, 33.09027513315446] + ] + }, + { + "id": 72, + "bus": 2428, + "phases": "abcn", + "powers": [ + [1610.3377232213174, 460.58359283424505], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 184, + "bus": 2428, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1607.4479545033093, 470.5697635641767] + ] + }, + { + "id": 1, + "bus": 2429, + "phases": "abcn", + "powers": [ + [1593.2594132465147, 516.5745550441775], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 26, + "bus": 2429, + "phases": "abcn", + "powers": [ + [1635.896696153402, 359.397869125712], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 53, + "bus": 2429, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1642.163401398756, 329.5818440451275] + ] + }, + { + "id": 125, + "bus": 2429, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1633.4906187901772, 370.17999289832244], + [0.0, 0.0] + ] + }, + { + "id": 179, + "bus": 2429, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1619.2353892030467, 428.25411051171073] + ] + }, + { + "id": 35, + "bus": 2578, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1603.129730145802, 485.0772074014263], + [0.0, 0.0] + ] + }, + { + "id": 265, + "bus": 2578, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1632.2689623444844, 375.53010982420335] + ] + }, + { + "id": 34, + "bus": 2579, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1624.2972737214423, 408.6357735181884], + [0.0, 0.0] + ] + }, + { + "id": 81, + "bus": 2579, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1599.406930320665, 497.2145412796632] + ] + }, + { + "id": 251, + "bus": 2579, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1642.7447747400045, 326.6717525010854], + [0.0, 0.0] + ] + }, + { + "id": 106, + "bus": 2580, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1638.500097045223, 347.335948039522] + ] + }, + { + "id": 120, + "bus": 2580, + "phases": "abcn", + "powers": [ + [1669.7960557052215, 130.78975941947022], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 149, + "bus": 2580, + "phases": "abcn", + "powers": [ + [1624.5346150149323, 407.69119862464964], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 165, + "bus": 2580, + "phases": "abcn", + "powers": [ + [1651.4410693739103, 279.4051237949543], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 24, + "bus": 2581, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1649.939181447882, 288.1415040233038], + [0.0, 0.0] + ] + }, + { + "id": 67, + "bus": 2581, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1622.4371686078744, 415.9596888370101] + ] + }, + { + "id": 119, + "bus": 2581, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1616.2365037460663, 439.43644907587026] + ] + }, + { + "id": 164, + "bus": 2581, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1643.351348220064, 323.6065127914087], + [0.0, 0.0] + ] + }, + { + "id": 257, + "bus": 2581, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1619.3365843145589, 427.8713071919821], + [0.0, 0.0] + ] + }, + { + "id": 170, + "bus": 2582, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1666.7707941793612, 164.92406885721527] + ] + }, + { + "id": 25, + "bus": 2610, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1597.144514825458, 504.43456223842435] + ] + }, + { + "id": 42, + "bus": 2610, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1641.1114587923032, 334.78053802202584], + [0.0, 0.0] + ] + }, + { + "id": 132, + "bus": 2611, + "phases": "abcn", + "powers": [ + [1636.8556168719965, 355.0049553630403], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 275, + "bus": 2611, + "phases": "abcn", + "powers": [ + [1607.205572883123, 471.3969402861565], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 8, + "bus": 2612, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1626.29777998842, 400.5999995287756] + ] + }, + { + "id": 94, + "bus": 2612, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1674.5270650179114, 35.832071391671136] + ] + }, + { + "id": 185, + "bus": 2612, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1632.5667475051214, 374.23340812688986], + [0.0, 0.0] + ] + }, + { + "id": 189, + "bus": 2612, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1630.0688460683778, 384.96803230271706] + ] + }, + { + "id": 242, + "bus": 2612, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1662.3731237681352, 204.54932459211506], + [0.0, 0.0] + ] + }, + { + "id": 261, + "bus": 2612, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1637.7098830370646, 351.04297147278453], + [0.0, 0.0] + ] + }, + { + "id": 117, + "bus": 2694, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1642.3901469397376, 328.4500480331599], + [0.0, 0.0] + ] + }, + { + "id": 160, + "bus": 2694, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1591.30651152537, 522.5594848384969], + [0.0, 0.0] + ] + }, + { + "id": 66, + "bus": 2695, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1624.5786920768455, 407.515523713642], + [0.0, 0.0] + ] + }, + { + "id": 108, + "bus": 2695, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1611.1537537020404, 457.72088738612683], + [0.0, 0.0] + ] + }, + { + "id": 124, + "bus": 2695, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1608.2152372850571, 467.940786191892], + [0.0, 0.0] + ] + }, + { + "id": 201, + "bus": 2695, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1610.8026611122293, 458.9549169270104], + [0.0, 0.0] + ] + }, + { + "id": 50, + "bus": 2696, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1613.222527493904, 450.37529417575564] + ] + }, + { + "id": 195, + "bus": 2696, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1626.90250101793, 398.137012847741] + ] + }, + { + "id": 263, + "bus": 2696, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1632.0810802567094, 376.3458200721922], + [0.0, 0.0] + ] + }, + { + "id": 273, + "bus": 2696, + "phases": "abcn", + "powers": [ + [1617.5906011172037, 434.42545504954154], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 3, + "bus": 2698, + "phases": "abcn", + "powers": [ + [1647.8354248159008, 299.9387296424358], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 144, + "bus": 2698, + "phases": "abcn", + "powers": [ + [1613.508657364426, 449.3491308857352], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 162, + "bus": 2698, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1647.3270071902402, 302.7186155481101] + ] + }, + { + "id": 212, + "bus": 2698, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1658.1502502295439, 236.3526527911612] + ] + }, + { + "id": 276, + "bus": 2698, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1614.320479512987, 446.42381012069416], + [0.0, 0.0] + ] + }, + { + "id": 197, + "bus": 2899, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1628.856200279835, 390.06705529646507], + [0.0, 0.0] + ] + }, + { + "id": 274, + "bus": 2899, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1670.7966100307979, 117.31801535702975] + ] + }, + { + "id": 47, + "bus": 2921, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1655.5315748693233, 254.04730549331973], + [0.0, 0.0] + ] + }, + { + "id": 89, + "bus": 2921, + "phases": "abcn", + "powers": [ + [1605.0926849435857, 478.5418493280491], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 111, + "bus": 2921, + "phases": "abcn", + "powers": [ + [1591.945002330109, 520.6111201020465], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 194, + "bus": 2921, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1642.4717617251922, 328.0416753296169], + [0.0, 0.0] + ] + }, + { + "id": 198, + "bus": 2921, + "phases": "abcn", + "powers": [ + [1661.4996285821737, 211.52733402332848], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 12, + "bus": 2922, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1599.7245272791622, 496.1917629699018], + [0.0, 0.0] + ] + }, + { + "id": 264, + "bus": 2922, + "phases": "abcn", + "powers": [ + [1649.0003126027527, 293.466859890077], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 20, + "bus": 3066, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1673.6727628323965, 64.37632927319429], + [0.0, 0.0] + ] + }, + { + "id": 30, + "bus": 3066, + "phases": "abcn", + "powers": [ + [1610.3466243779258, 460.5524705962807], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 229, + "bus": 3067, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1594.5363132030109, 512.6195223503178] + ] + }, + { + "id": 236, + "bus": 3067, + "phases": "abcn", + "powers": [ + [1671.9559170678906, 99.43963092945995], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 77, + "bus": 3218, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1658.7891302968374, 231.8263359214834], + [0.0, 0.0] + ] + }, + { + "id": 93, + "bus": 3218, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1615.0532194779382, 443.76562177760565], + [0.0, 0.0] + ] + }, + { + "id": 145, + "bus": 3218, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1600.2173989638175, 494.59994426929813] + ] + }, + { + "id": 136, + "bus": 3219, + "phases": "abcn", + "powers": [ + [1666.4457854209356, 168.1763154267534], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 177, + "bus": 3219, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1605.3757687174464, 477.59132114453934] + ] + }, + { + "id": 266, + "bus": 3219, + "phases": "abcn", + "powers": [ + [1598.9576757552327, 498.65737732549644], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 118, + "bus": 3221, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1635.461287751441, 361.3740514814481] + ] + }, + { + "id": 141, + "bus": 3221, + "phases": "abcn", + "powers": [ + [1664.9795326951921, 182.12079651653724], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 161, + "bus": 3221, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1648.6860832890966, 295.22707800365555] + ] + }, + { + "id": 147, + "bus": 3535, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1620.447201029315, 423.64572167552564], + [0.0, 0.0] + ] + }, + { + "id": 180, + "bus": 3535, + "phases": "abcn", + "powers": [ + [1647.5084976436135, 301.72931413735984], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 148, + "bus": 3536, + "phases": "abcn", + "powers": [ + [1609.8337228690455, 462.3420957811514], + [0.0, 0.0], + [0.0, 0.0] + ] + }, + { + "id": 253, + "bus": 3536, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1640.7819694423779, 336.3916728614282] + ] + }, + { + "id": 58, + "bus": 3834, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1611.2179327277734, 457.4949202714263], + [0.0, 0.0] + ] + }, + { + "id": 133, + "bus": 3834, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1639.947440935606, 340.4368073321034], + [0.0, 0.0] + ] + }, + { + "id": 225, + "bus": 3834, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [1612.2914850899472, 453.6970309845221], + [0.0, 0.0] + ] + }, + { + "id": 241, + "bus": 3834, + "phases": "abcn", + "powers": [ + [0.0, 0.0], + [0.0, 0.0], + [1611.502422137097, 456.4918096351652] + ] + } + ], + "sources": [ + { + "id": 0, + "bus": 0, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_CU_14", + "z_line": [ + [ + [1.2857142857142856, 0.0, 0.0, 0.0], + [0.0, 1.2857142857142856, 0.0, 0.0], + [0.0, 0.0, 1.2857142857142856, 0.0], + [0.0, 0.0, 0.0, 1.2857142857142856] + ], + [ + [0.5249999999999999, 0.17499999999999993, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.5249999999999999, 0.17499999999999993, 0.1749999999999999], + [0.17499999999999993, 0.17499999999999993, 0.5249999999999999, 0.1749999999999999], + [0.1749999999999999, 0.1749999999999999, 0.1749999999999999, 0.5249999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7], + [-2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7, -2.6179938779914946e-7], + [-2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6, -2.6179938779914946e-7], + [-2.6179938779914946e-7, -2.6179938779914946e-7, -2.6179938779914946e-7, 1.3089969389957474e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0, 0.0], + [0.0, 0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.0, 0.2] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5], + [-1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5, -1.96035381584003e-5], + [-1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5, -1.96035381584003e-5], + [-1.96035381584003e-5, -1.96035381584003e-5, -1.96035381584003e-5, 7.84141526336012e-5] + ] + ] + }, + { + "id": "S_AL_240", + "z_line": [ + [ + [0.125, 0.0, 0.0, 0.0], + [0.0, 0.125, 0.0, 0.0], + [0.0, 0.0, 0.125, 0.0], + [0.0, 0.0, 0.0, 0.125] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00010284317710785252, -2.5710794276947463e-5, -2.5710794276947463e-5, -2.57107942769788e-5], + [-2.5710794276947463e-5, 0.00010284317710785252, -2.5710794276947463e-5, -2.57107942769788e-5], + [-2.5710794276947463e-5, -2.5710794276947463e-5, 0.00010284317710785252, -2.57107942769788e-5], + [-2.57107942769788e-5, -2.57107942769788e-5, -2.57107942769788e-5, 0.0001028431771079] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.31578947368421] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5, -1.587132608593564e-5], + [-1.587132608593564e-5, -1.587132608593564e-5, -1.587132608593564e-5, 6.348530434374256e-5] + ] + ] + }, + { + "id": "S_CU_25", + "z_line": [ + [ + [0.7200000000000001, 0.0, 0.0, 0.0], + [0.0, 0.7200000000000001, 0.0, 0.0], + [0.0, 0.0, 0.7200000000000001, 0.0], + [0.0, 0.0, 0.0, 0.7200000000000001] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.4484951974831474e-5, -1.1121237993707868e-5, -1.1121237993707868e-5, -1.1121237993707868e-5], + [-1.1121237993707868e-5, 4.4484951974831474e-5, -1.1121237993707868e-5, -1.1121237993707868e-5], + [-1.1121237993707868e-5, -1.1121237993707868e-5, 4.4484951974831474e-5, -1.1121237993707868e-5], + [-1.1121237993707868e-5, -1.1121237993707868e-5, -1.1121237993707868e-5, 4.4484951974831474e-5] + ] + ] + }, + { + "id": "T_AL_150", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0, 0.0], + [0.0, 0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.0, 0.2] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [6.283185307179584e-5, -1.570796326794896e-5, -1.570796326794896e-5, -1.570796326794896e-5], + [-1.570796326794896e-5, 6.283185307179584e-5, -1.570796326794896e-5, -1.570796326794896e-5], + [-1.570796326794896e-5, -1.570796326794896e-5, 6.283185307179584e-5, -1.570796326794896e-5], + [-1.570796326794896e-5, -1.570796326794896e-5, -1.570796326794896e-5, 6.283185307179584e-5] + ] + ] + }, + { + "id": "T_AL_25", + "z_line": [ + [ + [1.2, 0.0, 0.0, 0.0], + [0.0, 1.2, 0.0, 0.0], + [0.0, 0.0, 1.2, 0.0], + [0.0, 0.0, 0.0, 1.2] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.7123889803846906e-5, -1.1780972450961726e-5, -1.1780972450961726e-5, -1.1780972450961725e-5], + [-1.1780972450961726e-5, 4.7123889803846906e-5, -1.1780972450961726e-5, -1.1780972450961725e-5], + [-1.1780972450961726e-5, -1.1780972450961726e-5, 4.7123889803846906e-5, -1.1780972450961725e-5], + [-1.1780972450961725e-5, -1.1780972450961725e-5, -1.1780972450961725e-5, 4.71238898038469e-5] + ] + ] + }, + { + "id": "T_AL_70", + "z_line": [ + [ + [0.42857142857142855, 0.0, 0.0, 0.0], + [0.0, 0.42857142857142855, 0.0, 0.0], + [0.0, 0.0, 0.42857142857142855, 0.0], + [0.0, 0.0, 0.0, 0.4285714285714285] + ], + [ + [0.20000000000000004, 0.10000000000000002, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.20000000000000004, 0.10000000000000002, 0.1], + [0.10000000000000002, 0.10000000000000002, 0.20000000000000004, 0.1], + [0.1, 0.1, 0.1, 0.2] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [0.0, 0.0, 0.0, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [5.2778756580308516e-5, -1.3194689145077129e-5, -1.3194689145077129e-5, -1.319468914507713e-5], + [-1.3194689145077129e-5, 5.2778756580308516e-5, -1.3194689145077129e-5, -1.319468914507713e-5], + [-1.3194689145077129e-5, -1.3194689145077129e-5, 5.2778756580308516e-5, -1.319468914507713e-5], + [-1.319468914507713e-5, -1.319468914507713e-5, -1.319468914507713e-5, 5.277875658030852e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json b/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json index e232eb10..5a746e77 100644 --- a/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json +++ b/roseau/load_flow/tests/data/dgs/Exemple_exhaustif.json @@ -1,70 +1,555 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "bus1", + "bus2", + "dline", + "nlnum", + "Unom", + "GPScoords:SIZEROW", + "GPScoords:SIZECOL" + ], "Values": [ ["2", "C", "LV Line", "9", "59", "47", "49", 1, 1, 0.4, "0", "0"], ["3", "C", "Line", "9", "60", "54", "58", 10, 1, 20, "0", "0"] ] }, "ElmLodLV": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:i", "c:ss:i", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "fold_id", + "bus1", + "phtech", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "c:sr:i", + "c:ss:i", + "c:st:i", + "m:P:bus1:A", + "m:Q:bus1:A", + "m:P:bus1:B", + "m:Q:bus1:B", + "m:P:bus1:C", + "m:Q:bus1:C", + "m:P:bus1:N", + "m:Q:bus1:N", + "m:ur:bus1:A", + "m:ur:bus1:B", + "m:ur:bus1:C", + "m:ur:bus1:N", + "m:ui:bus1:A", + "m:ui:bus1:B", + "m:ui:bus1:C", + "m:ui:bus1:N", + "m:I:bus1:A", + "m:I:bus1:B", + "m:I:bus1:C", + "m:I:bus1:N", + "m:phii:bus1:A", + "m:phii:bus1:B", + "m:phii:bus1:C", + "m:phii:bus1:N" + ], "Values": [ - ["4", "C", "LV Load", null, null, "50", 3, 10, 5, null, 1, 0, 0, null, 0, 10, -5, null, 0, 0, 0, null, 1, null, null, null, 0.005, -0.00866025403784, 0.005, -0.00866025403784, 0.005, -0.00866025403784, 0.005, -0.00866025403784, 0.84554997186925, 0.84554997186925, 0.84554997186925, 0.84554997186925, 0.53389817975015, 0.53389817975015, 0.53389817975015, 0.53389817975015, 0.01443374192743, 0.01443374192743, 0.01443374192743, 0.01443374192743, 92.2691829316895, 92.2691829316895, 92.2691829316895, 92.2691829316895], - ["5", "C", "Low-Voltage Load", null, null, "48", 2, 10, 8, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, null, null, null, 0.008, 0.00599999962250, 0.008, 0.00599999962250, 0.008, 0.00599999962250, null, null, 0.85629522140861, 0.85629522140861, 0.85629522140861, null, 0.50289892669302, 0.50289892669302, 0.50289892669302, null, 0.01453476892251, 0.01453476892251, 0.01453476892251, null, -6.44434176657393, -6.44434176657393, -6.44434176657393, null] + [ + "4", + "C", + "LV Load", + null, + null, + "50", + 3, + 10, + 5, + null, + 1, + 0, + 0, + null, + 0, + 10, + -5, + null, + 0, + 0, + 0, + null, + 1, + null, + null, + null, + 0.005, + -0.00866025403784, + 0.005, + -0.00866025403784, + 0.005, + -0.00866025403784, + 0.005, + -0.00866025403784, + 0.84554997186925, + 0.84554997186925, + 0.84554997186925, + 0.84554997186925, + 0.53389817975015, + 0.53389817975015, + 0.53389817975015, + 0.53389817975015, + 0.01443374192743, + 0.01443374192743, + 0.01443374192743, + 0.01443374192743, + 92.2691829316895, + 92.2691829316895, + 92.2691829316895, + 92.2691829316895 + ], + [ + "5", + "C", + "Low-Voltage Load", + null, + null, + "48", + 2, + 10, + 8, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + null, + null, + null, + 0.008, + 0.0059999996225, + 0.008, + 0.0059999996225, + 0.008, + 0.0059999996225, + null, + null, + 0.85629522140861, + 0.85629522140861, + 0.85629522140861, + null, + 0.50289892669302, + 0.50289892669302, + 0.50289892669302, + null, + 0.01453476892251, + 0.01453476892251, + 0.01453476892251, + null, + -6.44434176657393, + -6.44434176657393, + -6.44434176657393, + null + ] ] }, "ElmLodmv": { - "Attributes": ["FID", "OP", "loc_name", "bus1", "phtech", "fold_id", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "sgini", "pgini", "cosgini", "pfg_recap", "sginir", "pginir", "cosginir", "pfg_recapr", "sginis", "pginis", "cosginis", "pfg_recaps", "sginit", "pginit", "cosginit", "pfg_recapt", "n:ur:bus1", "n:ui:bus1", "n:u:bus1", "n:Ul:bus1", "n:Pload:bus1", "n:Qload:bus1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "bus1", + "phtech", + "fold_id", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "sgini", + "pgini", + "cosgini", + "pfg_recap", + "sginir", + "pginir", + "cosginir", + "pfg_recapr", + "sginis", + "pginis", + "cosginis", + "pfg_recaps", + "sginit", + "pginit", + "cosginit", + "pfg_recapt", + "n:ur:bus1", + "n:ui:bus1", + "n:u:bus1", + "n:Ul:bus1", + "n:Pload:bus1", + "n:Qload:bus1" + ], "Values": [ - ["6", "C", "MV Load Balanced", "52", null, "9", 1, 0.9, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.5, 0.5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.99963211559994, 0.00016044663370, 0.99963212847624, 19.9926425695248, 1.179999982843, 0.29598600973486], - ["7", "C", "MV Load Unbalanced", "53", null, "9", 0.313006, 0.28, null, 1, 0.2, 0.18, null, 0, 0.3, 0.03, null, 1, 0.1, 0.07, null, 0, 0.336716, 0.22, null, 1, 0.1, 0.1, null, 0, 0.1, 0.09, null, 0, 0.3, 0.03, null, 1, 0.99963211559994, 0.00016044663370, 0.99963212847624, 19.9926425695248, 1.179999982843, 0.29598600973486], - ["8", "C", "MV Load", "57", null, "9", 1, 0.9, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 1, 0, 1, 20, 0.89999997615814, 0.43588995933532] + [ + "6", + "C", + "MV Load Balanced", + "52", + null, + "9", + 1, + 0.9, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.5, + 0.5, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.99963211559994, + 0.0001604466337, + 0.99963212847624, + 19.9926425695248, + 1.179999982843, + 0.29598600973486 + ], + [ + "7", + "C", + "MV Load Unbalanced", + "53", + null, + "9", + 0.313006, + 0.28, + null, + 1, + 0.2, + 0.18, + null, + 0, + 0.3, + 0.03, + null, + 1, + 0.1, + 0.07, + null, + 0, + 0.336716, + 0.22, + null, + 1, + 0.1, + 0.1, + null, + 0, + 0.1, + 0.09, + null, + 0, + 0.3, + 0.03, + null, + 1, + 0.99963211559994, + 0.0001604466337, + 0.99963212847624, + 19.9926425695248, + 1.179999982843, + 0.29598600973486 + ], + [ + "8", + "C", + "MV Load", + "57", + null, + "9", + 1, + 0.9, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 1, + 0, + 1, + 20, + 0.89999997615814, + 0.43588995933532 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["9", "C", "Exemple exhaustif", null, 50] - ] + "Values": [["9", "C", "Exemple exhaustif", null, 50]] }, "ElmPvsys": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "bus1", "mode_pgi", "phtech", "sgn", "cosn", "Inom", "pgini", "qgini", "cosgini", "pf_recap", "usetp", "phiini", "av_mode", "usp_min", "usp_max", "ddroop", "Qfu_min", "Qfu_max", "q_min", "q_max"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "bus1", + "mode_pgi", + "phtech", + "sgn", + "cosn", + "Inom", + "pgini", + "qgini", + "cosgini", + "pf_recap", + "usetp", + "phiini", + "av_mode", + "usp_min", + "usp_max", + "ddroop", + "Qfu_min", + "Qfu_max", + "q_min", + "q_max" + ], "Values": [ - ["10", "C", "PV System", null, "51", null, 0, 18, 1, 0.025980, 20, 34.64102, 0.5, 0, 1, 0, "constv", 0.9, 1.1, 1, -9999, 9999, -1, 1] + [ + "10", + "C", + "PV System", + null, + "51", + null, + 0, + 18, + 1, + 0.02598, + 20, + 34.64102, + 0.5, + 0, + 1, + 0, + "constv", + 0.9, + 1.1, + 1, + -9999, + 9999, + -1, + 1 + ] ] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:phiuln:A", "m:phiuln:B", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:phiuln:A", + "m:phiuln:B", + "m:phiuln:C" + ], "Values": [ - ["11", "C", "Bus LV 1", "9", null, 0, 1, 0.4, 0, 0, 0, 0.85629522140861, 0.50289892669302, 0.85629522140861, 0.50289892669302, 0.85629522140861, 0.50289892669302, null, null, null], - ["12", "C", "Bus LV 2", "9", null, 0, 1, 0.4, 0, 0, 0, 0.84554997186925, 0.53389817975015, 0.84554997186925, 0.53389817975015, 0.84554997186925, 0.53389817975015, null, null, null], - ["13", "C", "Bus MV", "9", null, 0, 0, 20, 0, 0, 0, 0.99963211559994, 0.00016044663370, 0.99963211559994, 0.00016044663370, 0.99963211559994, 0.00016044663370, null, null, null], + [ + "11", + "C", + "Bus LV 1", + "9", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.85629522140861, + 0.50289892669302, + 0.85629522140861, + 0.50289892669302, + 0.85629522140861, + 0.50289892669302, + null, + null, + null + ], + [ + "12", + "C", + "Bus LV 2", + "9", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.84554997186925, + 0.53389817975015, + 0.84554997186925, + 0.53389817975015, + 0.84554997186925, + 0.53389817975015, + null, + null, + null + ], + [ + "13", + "C", + "Bus MV", + "9", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.99963211559994, + 0.0001604466337, + 0.99963211559994, + 0.0001604466337, + 0.99963211559994, + 0.0001604466337, + null, + null, + null + ], ["14", "C", "Terminal", "9", null, 0, 0, 20, 0, 0, 0, 1, 0, 1, 0, 1, 0, null, null, null] ] }, "ElmTr2": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"], - "Values": [ - ["15", "C", "MV/LV Transformer", "9", "61", "56", "46", 0] - ] + "Values": [["15", "C", "MV/LV Transformer", "9", "61", "56", "46", 0]] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["16", "C", "External Grid", "9", "55", null, 0, 0, 0, 0, "PV", 0, 1, 0] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["16", "C", "External Grid", "9", "55", null, 0, 0, 0, 0, "PV", 0, 1, 0]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["17", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["17", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -86,7 +571,20 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rY:SIZEROW", + "rY:0", + "rY:1" + ], "Values": [ ["32", "C", "GCO_1", "21", 1, 0, "2", 96.25, 96.25, "2", 43.75, 65.625], ["33", "C", "GCO_1", "22", 1, 0, "2", 240.625, 240.625, "2", 91.875, 109.375], @@ -104,10 +602,18 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], - "Values": [ - ["45", "C", "Exemple exhaustif", null, "0", 1, null, "0", "0"] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], + "Values": [["45", "C", "Exemple exhaustif", null, "0", 1, null, "0", "0"]] }, "StaCubic": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "cterm", "obj_bus", "obj_id", "chr_name", "nphase"], @@ -128,16 +634,183 @@ ] }, "TypLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "uline", + "sline", + "InomAir", + "mlei", + "cohl_", + "systp", + "nlnph", + "nneutral", + "frnom", + "rline", + "xline", + "lline", + "rline0", + "xline0", + "lline0", + "rnline", + "xnline", + "lnline", + "rpnline", + "xpnline", + "lpnline", + "bline", + "cline", + "tline", + "gline", + "bline0", + "cline0", + "gline0", + "bnline", + "cnline", + "bpnline", + "cpnline" + ], "Values": [ - ["59", "C", "Ligne BT", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["60", "C", "Ligne HTA", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + [ + "59", + "C", + "Ligne BT", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.2, + 0.1, + 0.318309, + 0.2, + 0.1, + 0.318309, + 0.2, + 0.1, + 0.318309, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "60", + "C", + "Ligne HTA", + null, + 20, + 1, + 1, + "Cu", + 0, + 0, + 3, + 0, + 50, + 0.2, + 0.1, + 0.318309, + 0.2, + 0.1, + 0.318309, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] }, "TypTr2": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "frnom", + "strn", + "nt2ph", + "tr2cn_h", + "tr2cn_l", + "nt2ag", + "utrn_h", + "utrn_l", + "uktr", + "pcutr", + "uk0tr", + "ur0tr", + "pfe", + "curmg", + "zx0hl_n", + "rtox0_n", + "tapchtype", + "tap_side", + "dutap", + "phitr", + "nntap0", + "ntpmn", + "ntpmx" + ], "Values": [ - ["61", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0] + [ + "61", + "C", + "Transformer 100 kVA Dyn11", + null, + 50, + 0.1, + 3, + "D", + "YN", + 11, + 20, + 0.4, + 4, + 2.15, + 4, + 2.15, + 0.21, + 2.5, + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/LV_Line.json b/roseau/load_flow/tests/data/dgs/LV_Line.json index d3ce3e8d..a377ab4a 100644 --- a/roseau/load_flow/tests/data/dgs/LV_Line.json +++ b/roseau/load_flow/tests/data/dgs/LV_Line.json @@ -1,12 +1,23 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "bus1", + "bus2", + "dline", + "nlnum", + "Unom", + "GPScoords:SIZEROW", + "GPScoords:SIZECOL" + ], "Values": [ ["2", "C", "Line Z diagonal", "10", "35", "31", "22", 1, 1, 0.4, "0", "0"], ["3", "C", "Line Z full", "10", "36", "32", "24", 1, 1, 0.4, "0", "0"], @@ -15,41 +26,464 @@ ] }, "ElmLodLV": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "fold_id", + "bus1", + "phtech", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "c:sr:r", + "c:sr:i", + "c:ss:r", + "c:ss:i", + "c:st:r", + "c:st:i", + "m:P:bus1:A", + "m:Q:bus1:A", + "m:P:bus1:B", + "m:Q:bus1:B", + "m:P:bus1:C", + "m:Q:bus1:C", + "m:P:bus1:N", + "m:Q:bus1:N", + "m:ur:bus1:A", + "m:ur:bus1:B", + "m:ur:bus1:C", + "m:ur:bus1:N", + "m:ui:bus1:A", + "m:ui:bus1:B", + "m:ui:bus1:C", + "m:ui:bus1:N", + "m:I:bus1:A", + "m:I:bus1:B", + "m:I:bus1:C", + "m:I:bus1:N", + "m:phii:bus1:A", + "m:phii:bus1:B", + "m:phii:bus1:C", + "m:phii:bus1:N" + ], "Values": [ - ["6", "C", "Load Z diagonal - unbalanced", null, null, "23", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, -1.511381e-09, 0.008, 0.006, 0.005, 0.008660, 0.02324882725793, 0.00483147507757, 0.00624012010726, 0.00542540413934, 0.00684097641295, 0.00731426810005, -0.00332992628635, -0.00291089589363, 0.84986899434786, -0.48705782258293, -0.44834869486582, 0.17063895758965, -0.12609471319312, -0.80505034668571, 0.80920249545298, 0.12353414497497, 0.11967475429183, 0.03805340645916, 0.04687627451728, 0.09091146829323, -20.1792541417952, -162.179031839304, 72.0741735316207, 174.743945904441], - ["7", "C", "Load Z full - unbalanced", null, null, "25", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, 2.741065e-14, 0.008, 0.006, 0.005, 0.008660, 0.02377857737142, 0.00222855274754, 0.00650247379715, 0.00587350087257, 0.00612798178310, 0.00744747555247, -0.00340903295167, -0.00088927612461, 0.90246850530253, -0.47410163959640, -0.49745908446248, 0.15223300504694, -0.02835080697117, -0.84277681585006, 0.82777276299092, 0.06580770763747, 0.11453527489030, 0.03923818418417, 0.04324313264636, 0.09198499004374, -7.15351945046479, -161.450414536849, 70.4526827620966, -171.242297256495], - ["8", "C", "Load ZY diagonal - unbalanced", null, null, "27", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, -1.509101e-09, 0.008, 0.006, 0.005, 0.008660, 0.02324881091923, 0.00483123824610, 0.00624015672780, 0.00542543069327, 0.00684091884141, 0.00731430750127, -0.00332988899332, -0.00291072501489, 0.84989090453945, -0.48707847111124, -0.44835059224706, 0.17064030456846, -0.12610488878792, -0.80506320194249, 0.80922668601200, 0.12353025235790, 0.11967120404921, 0.03805273673203, 0.04687510638017, 0.09090909372307, -20.1791594454903, -162.179674771802, 72.0731556989139, 174.744222203308], - ["9", "C", "Load ZY full - unbalanced", null, null, "29", 3, 36.10987, 33, null, 0, 20, 20, null, 0, 10, 8, null, 0, 10, 5, null, 0, 0.02, 2.740632e-14, 0.008, 0.006, 0.005, 0.008660, 0.02377862006528, 0.00222845107548, 0.00650247265257, 0.00587352781677, 0.00612795480156, 0.00744746390735, -0.00340904751941, -0.00088918975163, 0.90247690807059, -0.47411980030740, -0.49744719293233, 0.15223624252527, -0.02836639719981, -0.84277523650655, 0.82778926859464, 0.06580233739574, 0.11453430577307, 0.03923795579811, 0.04324265625346, 0.09198432248025, -7.15423910428928, -161.451534024413, 70.451493840927, -171.243025018104] + [ + "6", + "C", + "Load Z diagonal - unbalanced", + null, + null, + "23", + 3, + 36.10987, + 33, + null, + 0, + 20, + 20, + null, + 0, + 10, + 8, + null, + 0, + 10, + 5, + null, + 0, + 0.02, + -1.511381e-9, + 0.008, + 0.006, + 0.005, + 0.00866, + 0.02324882725793, + 0.00483147507757, + 0.00624012010726, + 0.00542540413934, + 0.00684097641295, + 0.00731426810005, + -0.00332992628635, + -0.00291089589363, + 0.84986899434786, + -0.48705782258293, + -0.44834869486582, + 0.17063895758965, + -0.12609471319312, + -0.80505034668571, + 0.80920249545298, + 0.12353414497497, + 0.11967475429183, + 0.03805340645916, + 0.04687627451728, + 0.09091146829323, + -20.1792541417952, + -162.179031839304, + 72.0741735316207, + 174.743945904441 + ], + [ + "7", + "C", + "Load Z full - unbalanced", + null, + null, + "25", + 3, + 36.10987, + 33, + null, + 0, + 20, + 20, + null, + 0, + 10, + 8, + null, + 0, + 10, + 5, + null, + 0, + 0.02, + 2.741065e-14, + 0.008, + 0.006, + 0.005, + 0.00866, + 0.02377857737142, + 0.00222855274754, + 0.00650247379715, + 0.00587350087257, + 0.0061279817831, + 0.00744747555247, + -0.00340903295167, + -0.00088927612461, + 0.90246850530253, + -0.4741016395964, + -0.49745908446248, + 0.15223300504694, + -0.02835080697117, + -0.84277681585006, + 0.82777276299092, + 0.06580770763747, + 0.1145352748903, + 0.03923818418417, + 0.04324313264636, + 0.09198499004374, + -7.15351945046479, + -161.450414536849, + 70.4526827620966, + -171.242297256495 + ], + [ + "8", + "C", + "Load ZY diagonal - unbalanced", + null, + null, + "27", + 3, + 36.10987, + 33, + null, + 0, + 20, + 20, + null, + 0, + 10, + 8, + null, + 0, + 10, + 5, + null, + 0, + 0.02, + -1.509101e-9, + 0.008, + 0.006, + 0.005, + 0.00866, + 0.02324881091923, + 0.0048312382461, + 0.0062401567278, + 0.00542543069327, + 0.00684091884141, + 0.00731430750127, + -0.00332988899332, + -0.00291072501489, + 0.84989090453945, + -0.48707847111124, + -0.44835059224706, + 0.17064030456846, + -0.12610488878792, + -0.80506320194249, + 0.809226686012, + 0.1235302523579, + 0.11967120404921, + 0.03805273673203, + 0.04687510638017, + 0.09090909372307, + -20.1791594454903, + -162.179674771802, + 72.0731556989139, + 174.744222203308 + ], + [ + "9", + "C", + "Load ZY full - unbalanced", + null, + null, + "29", + 3, + 36.10987, + 33, + null, + 0, + 20, + 20, + null, + 0, + 10, + 8, + null, + 0, + 10, + 5, + null, + 0, + 0.02, + 2.740632e-14, + 0.008, + 0.006, + 0.005, + 0.00866, + 0.02377862006528, + 0.00222845107548, + 0.00650247265257, + 0.00587352781677, + 0.00612795480156, + 0.00744746390735, + -0.00340904751941, + -0.00088918975163, + 0.90247690807059, + -0.4741198003074, + -0.49744719293233, + 0.15223624252527, + -0.02836639719981, + -0.84277523650655, + 0.82778926859464, + 0.06580233739574, + 0.11453430577307, + 0.03923795579811, + 0.04324265625346, + 0.09198432248025, + -7.15423910428928, + -161.451534024413, + 70.451493840927, + -171.243025018104 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["10", "C", "LV Line", null, 50] - ] + "Values": [["10", "C", "LV Line", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:uln:A", + "m:phiuln:A", + "m:uln:B", + "m:phiuln:B", + "m:uln:C", + "m:phiuln:C" + ], "Values": [ - ["11", "C", "Bus Z diagonal - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.84986899434786, -0.12609471319312, -0.48705782258293, -0.80505034668571, -0.44834869486582, 0.80920249545298, 0.72364909290682, -20.1792584715848, 1.13790782262981, -125.309135680196, 0.92373524385485, 132.074170434883], - ["12", "C", "Bus Z full - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.90246850530253, -0.02835080697117, -0.47410163959640, -0.84277681585006, -0.49745908446248, 0.82777276299092, 0.75612110915981, -7.15351945038626, 1.10354923922841, -124.580519076648, 1.00134437470379, 130.452681292249], - ["13", "C", "Bus ZY diagonal - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.84989090453945, -0.12610488878792, -0.48707847111124, -0.80506320194249, -0.44835059224706, 0.80922668601200, 0.72367056127484, -20.1791637687481, 1.13792784975637, -125.309778613709, 0.92375826354433, 132.07315260447], - ["14", "C", "Bus ZY full - unbalanced", "10", null, 1, 1, 0.4, 0, 0, 0, 0.90247690807058, -0.02836639719981, -0.47411980030740, -0.84277523650655, -0.49744719293233, 0.82778926859464, 0.75612750698093, -7.15423910421077, 1.10355566247979, -124.581638564211, 1.00135540624991, 130.451492371079], - ["15", "C", "Bus source", "10", null, 0, 1, 0.4, 0, 0, 0, 0.99999871822799, -1.69702167489433e-05, -0.49999357664694, -0.86603128495699, -0.50000703260344, 0.86602065092383, 0.99999871837199, -0.00097232304333, 1.00000188160446, -119.999512793516, 0.99999940023954, 120.000485114687] + [ + "11", + "C", + "Bus Z diagonal - unbalanced", + "10", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.84986899434786, + -0.12609471319312, + -0.48705782258293, + -0.80505034668571, + -0.44834869486582, + 0.80920249545298, + 0.72364909290682, + -20.1792584715848, + 1.13790782262981, + -125.309135680196, + 0.92373524385485, + 132.074170434883 + ], + [ + "12", + "C", + "Bus Z full - unbalanced", + "10", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.90246850530253, + -0.02835080697117, + -0.4741016395964, + -0.84277681585006, + -0.49745908446248, + 0.82777276299092, + 0.75612110915981, + -7.15351945038626, + 1.10354923922841, + -124.580519076648, + 1.00134437470379, + 130.452681292249 + ], + [ + "13", + "C", + "Bus ZY diagonal - unbalanced", + "10", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.84989090453945, + -0.12610488878792, + -0.48707847111124, + -0.80506320194249, + -0.44835059224706, + 0.809226686012, + 0.72367056127484, + -20.1791637687481, + 1.13792784975637, + -125.309778613709, + 0.92375826354433, + 132.07315260447 + ], + [ + "14", + "C", + "Bus ZY full - unbalanced", + "10", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.90247690807058, + -0.02836639719981, + -0.4741198003074, + -0.84277523650655, + -0.49744719293233, + 0.82778926859464, + 0.75612750698093, + -7.15423910421077, + 1.10355566247979, + -124.581638564211, + 1.00135540624991, + 130.451492371079 + ], + [ + "15", + "C", + "Bus source", + "10", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.99999871822799, + -1.69702167489433e-5, + -0.49999357664694, + -0.86603128495699, + -0.50000703260344, + 0.86602065092383, + 0.99999871837199, + -0.00097232304333, + 1.00000188160446, + -119.999512793516, + 0.99999940023954, + 120.000485114687 + ] ] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["16", "C", "LV source", "10", "30", null, 0, 0, 0, 0, "SL", 0, 1, 1] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["16", "C", "LV source", "10", "30", null, 0, 0, 0, 0, "SL", 0, 1, 1]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["17", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["17", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -59,7 +493,17 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["20", "C", "MV Line", null, "0", 1, null, "0", "0"], ["21", "C", "MV network", null, "0", 1, null, "0", "0"] @@ -84,12 +528,197 @@ ] }, "TypLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "uline", + "sline", + "InomAir", + "mlei", + "cohl_", + "systp", + "nlnph", + "nneutral", + "frnom", + "rline", + "xline", + "lline", + "rline0", + "xline0", + "lline0", + "rnline", + "xnline", + "lnline", + "rpnline", + "xpnline", + "lpnline", + "bline", + "cline", + "tline", + "gline", + "bline0", + "cline0", + "gline0", + "bnline", + "cnline", + "bpnline", + "cpnline" + ], "Values": [ - ["35", "C", "Z diagonal 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0.4029, 0.3522, 1.121087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["36", "C", "Z full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["37", "C", "ZY diagonal 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0.4029, 0.3522, 1.121087, 0, 0, 0, 135.4058, 0.431010, 0.002731, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0], - ["38", "C", "ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0] + [ + "35", + "C", + "Z diagonal 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.3283, + 1.045011, + 0.188, + 0.3283, + 1.045011, + 0.4029, + 0.3522, + 1.121087, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "36", + "C", + "Z full 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.0812, + 0.258467, + 0.188, + 0.8224, + 2.61778, + 0.4029, + 0.3522, + 1.121087, + 0, + 0.2471, + 0.786543, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "37", + "C", + "ZY diagonal 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.3283, + 1.045011, + 0.188, + 0.3283, + 1.045011, + 0.4029, + 0.3522, + 1.121087, + 0, + 0, + 0, + 135.4058, + 0.43101, + 0.002731, + 0.3699, + 135.4058, + 0.43101, + 0.3699, + 116.5693, + 0.371051, + 0, + 0 + ], + [ + "38", + "C", + "ZY full 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.0812, + 0.258467, + 0.188, + 0.8224, + 2.61778, + 0.4029, + 0.3522, + 1.121087, + 0, + 0.2471, + 0.786543, + 199.5807, + 0.635285, + 0.001853, + 0.3699, + 135.4058, + 0.43101, + 0.3699, + 116.5693, + 0.371051, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/LV_network.json b/roseau/load_flow/tests/data/dgs/LV_network.json index 2893de8b..4ec4f76e 100644 --- a/roseau/load_flow/tests/data/dgs/LV_network.json +++ b/roseau/load_flow/tests/data/dgs/LV_network.json @@ -1,20 +1,31 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "bus1", + "bus2", + "dline", + "nlnum", + "Unom", + "GPScoords:SIZEROW", + "GPScoords:SIZECOL" + ], "Values": [ ["2", "C", "Line(0)", "72", "521", "455", "409", 0.183941, 1, 0.4, "0", "0"], ["3", "C", "Line(10)", "72", "520", "499", "415", 0.143065, 1, 0.4, "0", "0"], ["4", "C", "Line(11)", "72", "521", "502", "421", 0.153284, 1, 0.4, "0", "0"], ["5", "C", "Line(12)", "72", "520", "506", "458", 0.163503, 1, 0.4, "0", "0"], - ["6", "C", "Line(13)", "72", "521", "465", "491", 0.091970, 1, 0.4, "0", "0"], + ["6", "C", "Line(13)", "72", "521", "465", "491", 0.09197, 1, 0.4, "0", "0"], ["7", "C", "Line(14)", "72", "520", "509", "516", 0.173722, 1, 0.4, "0", "0"], - ["8", "C", "Line(15)", "72", "521", "471", "517", 0.091970, 1, 0.4, "0", "0"], + ["8", "C", "Line(15)", "72", "521", "471", "517", 0.09197, 1, 0.4, "0", "0"], ["9", "C", "Line(16)", "72", "520", "481", "518", 0.143065, 1, 0.4, "0", "0"], ["10", "C", "Line(17)", "72", "521", "425", "419", 0.122627, 1, 0.4, "0", "0"], ["11", "C", "Line(18)", "72", "520", "513", "519", 0.183941, 1, 0.4, "0", "0"], @@ -23,15 +34,15 @@ ["14", "C", "Line(21)", "72", "521", "437", "414", 0.112408, 1, 0.4, "0", "0"], ["15", "C", "Line(22)", "72", "520", "440", "399", 0.081751, 1, 0.4, "0", "0"], ["16", "C", "Line(23)", "72", "521", "444", "401", 0.112408, 1, 0.4, "0", "0"], - ["17", "C", "Line(24)", "72", "520", "448", "402", 0.091970, 1, 0.4, "0", "0"], + ["17", "C", "Line(24)", "72", "520", "448", "402", 0.09197, 1, 0.4, "0", "0"], ["18", "C", "Line(25)", "72", "521", "477", "403", 0.081751, 1, 0.4, "0", "0"], ["19", "C", "Line(26)", "72", "520", "484", "404", 0.163503, 1, 0.4, "0", "0"], ["20", "C", "Line(27)", "72", "521", "452", "405", 0.204379, 1, 0.4, "0", "0"], ["21", "C", "Line(28)", "72", "520", "487", "406", 0.153284, 1, 0.4, "0", "0"], ["22", "C", "Line(29)", "72", "521", "423", "392", 0.051094, 1, 0.4, "0", "0"], - ["23", "C", "Line(30)", "72", "520", "393", "428", 0.091970, 1, 0.4, "0", "0"], - ["24", "C", "Line(31)", "72", "521", "427", "413", 0.091970, 1, 0.4, "0", "0"], - ["25", "C", "Line(32)", "72", "520", "429", "394", 0.091970, 1, 0.4, "0", "0"], + ["23", "C", "Line(30)", "72", "520", "393", "428", 0.09197, 1, 0.4, "0", "0"], + ["24", "C", "Line(31)", "72", "521", "427", "413", 0.09197, 1, 0.4, "0", "0"], + ["25", "C", "Line(32)", "72", "520", "429", "394", 0.09197, 1, 0.4, "0", "0"], ["26", "C", "Line(33)", "72", "521", "395", "431", 0.071532, 1, 0.4, "0", "0"], ["27", "C", "Line(34)", "72", "520", "396", "469", 0.112408, 1, 0.4, "0", "0"], ["28", "C", "Line(35)", "72", "521", "430", "407", 0.081751, 1, 0.4, "0", "0"], @@ -48,12 +59,12 @@ ["39", "C", "Line(45)", "72", "520", "508", "510", 0.071532, 1, 0.4, "0", "0"], ["40", "C", "Line(46)", "72", "521", "511", "472", 0.132846, 1, 0.4, "0", "0"], ["41", "C", "Line(47)", "72", "520", "512", "482", 0.071532, 1, 0.4, "0", "0"], - ["42", "C", "Line(48)", "72", "521", "420", "514", 0.194160, 1, 0.4, "0", "0"], + ["42", "C", "Line(48)", "72", "521", "420", "514", 0.19416, 1, 0.4, "0", "0"], ["43", "C", "Line(49)", "72", "520", "515", "434", 0.102189, 1, 0.4, "0", "0"], ["44", "C", "Line(5)", "72", "521", "492", "410", 0.112408, 1, 0.4, "0", "0"], ["45", "C", "Line(50)", "72", "520", "435", "475", 0.183941, 1, 0.4, "0", "0"], ["46", "C", "Line(51)", "72", "521", "436", "438", 0.061313, 1, 0.4, "0", "0"], - ["47", "C", "Line(52)", "72", "520", "439", "441", 0.194160, 1, 0.4, "0", "0"], + ["47", "C", "Line(52)", "72", "520", "439", "441", 0.19416, 1, 0.4, "0", "0"], ["48", "C", "Line(53)", "72", "521", "442", "445", 0.061313, 1, 0.4, "0", "0"], ["49", "C", "Line(54)", "72", "520", "446", "449", 0.153284, 1, 0.4, "0", "0"], ["50", "C", "Line(55)", "72", "521", "450", "478", 0.051094, 1, 0.4, "0", "0"], @@ -61,109 +72,2320 @@ ["52", "C", "Line(57)", "72", "521", "451", "453", 0.102189, 1, 0.4, "0", "0"], ["53", "C", "Line(58)", "72", "520", "454", "488", 0.173722, 1, 0.4, "0", "0"], ["54", "C", "Line(6)", "72", "521", "495", "411", 0.163503, 1, 0.4, "0", "0"], - ["55", "C", "Line(7)", "72", "520", "462", "412", 0.194160, 1, 0.4, "0", "0"], + ["55", "C", "Line(7)", "72", "520", "462", "412", 0.19416, 1, 0.4, "0", "0"], ["56", "C", "Line(8)", "72", "521", "459", "408", 0.173722, 1, 0.4, "0", "0"], ["57", "C", "Line(9)", "72", "520", "424", "416", 0.081751, 1, 0.4, "0", "0"] ] }, "ElmLodLV": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "fold_id", + "bus1", + "phtech", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "c:sr:r", + "c:sr:i", + "c:ss:r", + "c:ss:i", + "c:st:r", + "c:st:i", + "m:P:bus1:A", + "m:Q:bus1:A", + "m:P:bus1:B", + "m:Q:bus1:B", + "m:P:bus1:C", + "m:Q:bus1:C", + "m:P:bus1:N", + "m:Q:bus1:N", + "m:ur:bus1:A", + "m:ur:bus1:B", + "m:ur:bus1:C", + "m:ur:bus1:N", + "m:ui:bus1:A", + "m:ui:bus1:B", + "m:ui:bus1:C", + "m:ui:bus1:N", + "m:I:bus1:A", + "m:I:bus1:B", + "m:I:bus1:C", + "m:I:bus1:N", + "m:phii:bus1:A", + "m:phii:bus1:B", + "m:phii:bus1:C", + "m:phii:bus1:N" + ], "Values": [ - ["58", "C", "Low-Voltage Load(1)", null, null, "461", 3, 17, 13.6000003814697, null, 0, 5, 4, null, 0, 10, 8, null, 0, 2, 1.60000002384186, null, 0, 0.004, 0.003, 0.008, 0.006, 0.0016, 0.0012, 0.00401589747067, 0.00271449347196, 0.00854937827558, 0.00634866395469, 0.00148988903716, 0.00124351652763, -0.00045516476286, -0.00010667473913, 0.99222206306548, -0.44409924005425, -0.47398967487535, -0.03085841035119, -0.01631931852092, -0.84891724687403, 0.83429009706148, -0.04974731641954, 0.02115091339087, 0.04812914377066, 0.00875762168029, 0.03457968813815, -34.9984864113676, -154.212817841814, 79.7528117638401, 44.9984745965493], - ["59", "C", "Low-Voltage Load(10)", null, null, "443", 3, 6, 3, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 3, null, 0, 0, -0, -0, 0, 0.003, 0.005196, 0, 0, 0, 0, 0.00324420082420, 0.00527633881551, -0.00024420082439, -8.01866052915209e-05, 0.95469192428326, -0.50139467520404, -0.49113697678145, 0.00666992745475, 0.01208878493189, -0.84226199407470, 0.82927596618559, 0.03943481846378, 0, 0, 0.02782775176978, 0.02782775176978, 0, 0, 62.2216759797301, -117.778324020263], - ["60", "C", "Low-Voltage Load(11)", null, null, "418", 3, 9.925281, 8.10000038146973, null, 0, 5, 4, null, 0, 2, 1.39999997615814, null, 0, 3, 2.69999980926514, null, 0, 0.004, 0.003, 0.0014, 0.001428, 0.0027, 0.001307, 0.00397124833980, 0.00300119740450, 0.00140670378329, 0.00141899343131, 0.00271205857104, 0.00132029406499, 9.98909128450498e-06, -4.52954325597433e-06, 0.99408262834892, -0.50237904407708, -0.49823774547825, -0.00443266095824, -0.00108488479732, -0.86713079944944, 0.85887093185241, 0.00365754986412, 0.02168258232513, 0.00863343288850, 0.01315429540556, 0.00826422450965, -37.1420189324257, -165.335386635246, 94.1604443575332, 164.864586566968], - ["61", "C", "Low-Voltage Load(12)", null, null, "426", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00480000019073, 0.00359999990463, 0, 0, 0, 0, 5.39117943178107e-21, 4.25604104712596e-22, 0.99999759792981, -0.49999873071990, -0.49999982780086, -7.61382466490777e-19, -8.82135154296959e-08, -0.86602634485305, 0.86602806862597, 4.82369605821715e-19, 0.02598082454710, 0, 0, 0.02598082454710, -36.8699008787331, 0, 0, 143.13009912126], - ["62", "C", "Low-Voltage Load(13)", null, null, "480", 3, 5, 4.5, null, 0, 0, 0, null, 0, 5, 4.5, null, 0, 0, 0, null, 0, 0, -0, 0.0045, 0.002179, 0, 0, 0, 0, 0.00435134528161, 0.00207328589605, 0, 0, 0.00014865471851, 0.00010616390068, 0.94664315176139, -0.49511802384280, -0.48247597832997, 0.01294722785072, 0.01702910924561, -0.83541179702292, 0.82733325309672, 0.03445101494895, 0, 0.02149226624219, 0, 0.02149226624219, 0, -146.13007506129, 0, 33.8699249387025], - ["63", "C", "Low-Voltage Load(2)", null, null, "464", 3, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 0, 0, 0.0056, 0.005713, 0, 0, 0, -0, 0.00606696101812, 0.00604530838002, 0, 0, -0.00046696111638, -0.00033216550671, 0.99409925048167, -0.44217350658995, -0.47416970398350, -0.03851984504409, -0.01670675180690, -0.84807354692459, 0.83506241117502, -0.05110100660813, 0, 0.03877587011955, 0, 0.03877587011955, 0, -162.434471303073, 0, 17.5655286969195], - ["64", "C", "Low-Voltage Load(3)", null, null, "467", 3, 13.74773, 13.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 10, 10, null, 0, 0.0015, 0.002598, 0.002, 2.027169e-15, 0.01, 2.37235e-14, 0.00139485069782, 0.00254079247828, 0.00199331279833, -7.98976519233205e-05, 0.01038478384688, 0.00020611705591, -0.00027294734303, -6.89357771413562e-05, 0.97988259468373, -0.50909238475909, -0.48322427534924, -0.03400740194812, -0.00336771010540, -0.86907900126429, 0.83325765902928, 0.02195836056370, 0.01280842072680, 0.00857638672999, 0.04669289595787, 0.03011346121882, -61.4308990595115, -118.065730919998, 118.973323437868, -47.0243184115529], - ["65", "C", "Low-Voltage Load(4)", null, null, "473", 3, 6, 6, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0, -0, -0, 0, 0.006, 2.056052e-14, 0, -0, 0, 0, 0.00625602986855, 0.00012856320987, -0.00025602986855, -0.00012856320985, 0.97762466253366, -0.51116674261515, -0.48389565428438, -0.03633029261193, -0.00618398983484, -0.87194415391841, 0.82893555978195, 0.02472683573178, 0, 0, 0.02822884739722, 0.02822884739722, 0, 0, 119.097200164723, -60.9027998352697], - ["66", "C", "Low-Voltage Load(5)", null, null, "476", 3, 5, 4.5, null, 0, 0, 0, null, 0, 5, 4.5, null, 0, 0, 0, null, 0, 0, -0, 0.0045, 0.002179, 0, 0, 0, 0, 0.00447911125522, 0.00209999002570, 0, 0, 2.08887447968066e-05, 7.9459770993649e-05, 0.97918093624554, -0.48992984819742, -0.48685879278254, -0.00566292714917, 7.76219912849786e-05, -0.85301294244419, 0.83591782063003, 0.01532450743511, 0, 0.02177594215985, 0, 0.02177594215985, 0, -144.990098793267, 0, 35.0099012067261], - ["67", "C", "Low-Voltage Load(6)", null, null, "479", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00472951760901, 0.00382571252808, 0, 0, 0, 0, 7.04825808344433e-05, -0.00022571262340, 0.94664315176139, -0.49511802384280, -0.48247597832997, 0.01294722785072, 0.01702910924561, -0.83541179702292, 0.82733325309672, 0.03445101494895, 0.02782087819485, 0, 0, 0.02782087819485, -37.9388582420395, 0, 0, 142.061141757953], - ["68", "C", "Low-Voltage Load(7)", null, null, "483", 3, 5.196152, 4.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 1, 1, null, 0, 0.0015, 0.002598, 0.002, 4.235906e-15, 0.001, 2.781846e-15, 0.00140838792358, 0.00254188832646, 0.00199806616385, -7.1625877980423e-05, 0.00103331527521, 2.00280108676171e-05, 6.02306373447746e-05, 0.00010778564577, 0.97832173010964, -0.50978802941921, -0.48499527068464, -0.03139013560135, -0.00568036307171, -0.87142613623169, 0.83076229546152, 0.01799282985834, 0.01286189855582, 0.00857522068321, 0.00465214757388, 0.01477704500669, -61.3430807512423, -118.274780203477, 119.165805382075, 89.3751257133931], - ["69", "C", "Low-Voltage Load(8)", null, null, "486", 3, 7, 6.29999971389771, null, 0, 0, 0, null, 0, 0, 0, null, 0, 7, 6.29999971389771, null, 0, 0, -0, -0, 0, 0.0063, 0.003051, 0, 0, 0, 0, 0.00663001629760, 0.00296379062985, -0.00033001658396, 8.74390856414929e-05, 0.94922466861202, -0.50324207162358, -0.49063905572920, 0.00642540841204, 0.01228416507318, -0.84156794993458, 0.82503595028204, 0.04466550274347, 0, 0, 0.03276037140882, 0.03276037140882, 0, 0, 96.6535534916036, -83.3464465083891], - ["70", "C", "Low-Voltage Load(9)", null, null, "489", 3, 11.69615, 11.3999996185303, null, 0, 6, 5.39999961853027, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0.0054, 0.002615, -0, 0, 0.006, 1.67062e-13, 0.00536224667050, 0.00291095180461, 0, 0, 0.00618155416795, -0.00023529710419, -0.00014380122132, -6.03149439740281e-05, 0.93873967246797, -0.49797831571010, -0.47927567780975, 0.01570684685222, 0.01948869431380, -0.83407255672331, 0.82553313381368, 0.04308737396836, 0.02813797443590, 0, 0.02806101885728, 0.01472345541682, -27.3064687918902, 0, 122.317828988623, -132.783331040929], - ["71", "C", "Low-Voltage Load", null, null, "457", 3, 40, 36, null, 0, 20, 18, null, 0, 10, 9, null, 0, 10, 9, null, 0, 0.018, 0.008717, 0.009, 0.004358, 0.009, 0.004358, 0.01853246557716, 0.00829261068185, 0.00903624321757, 0.00470730021277, 0.00870471914721, 0.00422481557023, -0.00027342794367, 0.00021087190903, 0.97451790320422, -0.45932948762864, -0.47521676709091, 0.01519090070994, 0.00663811333026, -0.83312954416839, 0.85231315758314, -0.02896492464771, 0.09021216157966, 0.04637454617996, 0.04293465548550, 0.04571470147363, -23.7165210736341, -146.385884377234, 93.2528308703884, 155.315116825548] + [ + "58", + "C", + "Low-Voltage Load(1)", + null, + null, + "461", + 3, + 17, + 13.6000003814697, + null, + 0, + 5, + 4, + null, + 0, + 10, + 8, + null, + 0, + 2, + 1.60000002384186, + null, + 0, + 0.004, + 0.003, + 0.008, + 0.006, + 0.0016, + 0.0012, + 0.00401589747067, + 0.00271449347196, + 0.00854937827558, + 0.00634866395469, + 0.00148988903716, + 0.00124351652763, + -0.00045516476286, + -0.00010667473913, + 0.99222206306548, + -0.44409924005425, + -0.47398967487535, + -0.03085841035119, + -0.01631931852092, + -0.84891724687403, + 0.83429009706148, + -0.04974731641954, + 0.02115091339087, + 0.04812914377066, + 0.00875762168029, + 0.03457968813815, + -34.9984864113676, + -154.212817841814, + 79.7528117638401, + 44.9984745965493 + ], + [ + "59", + "C", + "Low-Voltage Load(10)", + null, + null, + "443", + 3, + 6, + 3, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 6, + 3, + null, + 0, + 0, + -0, + -0, + 0, + 0.003, + 0.005196, + 0, + 0, + 0, + 0, + 0.0032442008242, + 0.00527633881551, + -0.00024420082439, + -8.01866052915209e-5, + 0.95469192428326, + -0.50139467520404, + -0.49113697678145, + 0.00666992745475, + 0.01208878493189, + -0.8422619940747, + 0.82927596618559, + 0.03943481846378, + 0, + 0, + 0.02782775176978, + 0.02782775176978, + 0, + 0, + 62.2216759797301, + -117.778324020263 + ], + [ + "60", + "C", + "Low-Voltage Load(11)", + null, + null, + "418", + 3, + 9.925281, + 8.10000038146973, + null, + 0, + 5, + 4, + null, + 0, + 2, + 1.39999997615814, + null, + 0, + 3, + 2.69999980926514, + null, + 0, + 0.004, + 0.003, + 0.0014, + 0.001428, + 0.0027, + 0.001307, + 0.0039712483398, + 0.0030011974045, + 0.00140670378329, + 0.00141899343131, + 0.00271205857104, + 0.00132029406499, + 9.98909128450498e-6, + -4.52954325597433e-6, + 0.99408262834892, + -0.50237904407708, + -0.49823774547825, + -0.00443266095824, + -0.00108488479732, + -0.86713079944944, + 0.85887093185241, + 0.00365754986412, + 0.02168258232513, + 0.0086334328885, + 0.01315429540556, + 0.00826422450965, + -37.1420189324257, + -165.335386635246, + 94.1604443575332, + 164.864586566968 + ], + [ + "61", + "C", + "Low-Voltage Load(12)", + null, + null, + "426", + 3, + 6, + 4.80000019073486, + null, + 0, + 6, + 4.80000019073486, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.0048, + 0.0036, + -0, + 0, + 0, + 0, + 0.00480000019073, + 0.00359999990463, + 0, + 0, + 0, + 0, + 5.39117943178107e-21, + 4.25604104712596e-22, + 0.99999759792981, + -0.4999987307199, + -0.49999982780086, + -7.61382466490777e-19, + -8.82135154296959e-8, + -0.86602634485305, + 0.86602806862597, + 4.82369605821715e-19, + 0.0259808245471, + 0, + 0, + 0.0259808245471, + -36.8699008787331, + 0, + 0, + 143.13009912126 + ], + [ + "62", + "C", + "Low-Voltage Load(13)", + null, + null, + "480", + 3, + 5, + 4.5, + null, + 0, + 0, + 0, + null, + 0, + 5, + 4.5, + null, + 0, + 0, + 0, + null, + 0, + 0, + -0, + 0.0045, + 0.002179, + 0, + 0, + 0, + 0, + 0.00435134528161, + 0.00207328589605, + 0, + 0, + 0.00014865471851, + 0.00010616390068, + 0.94664315176139, + -0.4951180238428, + -0.48247597832997, + 0.01294722785072, + 0.01702910924561, + -0.83541179702292, + 0.82733325309672, + 0.03445101494895, + 0, + 0.02149226624219, + 0, + 0.02149226624219, + 0, + -146.13007506129, + 0, + 33.8699249387025 + ], + [ + "63", + "C", + "Low-Voltage Load(2)", + null, + null, + "464", + 3, + 8, + 5.59999990463257, + null, + 0, + 0, + 0, + null, + 0, + 8, + 5.59999990463257, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + 0.0056, + 0.005713, + 0, + 0, + 0, + -0, + 0.00606696101812, + 0.00604530838002, + 0, + 0, + -0.00046696111638, + -0.00033216550671, + 0.99409925048167, + -0.44217350658995, + -0.4741697039835, + -0.03851984504409, + -0.0167067518069, + -0.84807354692459, + 0.83506241117502, + -0.05110100660813, + 0, + 0.03877587011955, + 0, + 0.03877587011955, + 0, + -162.434471303073, + 0, + 17.5655286969195 + ], + [ + "64", + "C", + "Low-Voltage Load(3)", + null, + null, + "467", + 3, + 13.74773, + 13.5, + null, + 0, + 3, + 1.5, + null, + 0, + 2, + 2, + null, + 0, + 10, + 10, + null, + 0, + 0.0015, + 0.002598, + 0.002, + 2.027169e-15, + 0.01, + 2.37235e-14, + 0.00139485069782, + 0.00254079247828, + 0.00199331279833, + -7.98976519233205e-5, + 0.01038478384688, + 0.00020611705591, + -0.00027294734303, + -6.89357771413562e-5, + 0.97988259468373, + -0.50909238475909, + -0.48322427534924, + -0.03400740194812, + -0.0033677101054, + -0.86907900126429, + 0.83325765902928, + 0.0219583605637, + 0.0128084207268, + 0.00857638672999, + 0.04669289595787, + 0.03011346121882, + -61.4308990595115, + -118.065730919998, + 118.973323437868, + -47.0243184115529 + ], + [ + "65", + "C", + "Low-Voltage Load(4)", + null, + null, + "473", + 3, + 6, + 6, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 6, + 6, + null, + 0, + 0, + -0, + -0, + 0, + 0.006, + 2.056052e-14, + 0, + -0, + 0, + 0, + 0.00625602986855, + 0.00012856320987, + -0.00025602986855, + -0.00012856320985, + 0.97762466253366, + -0.51116674261515, + -0.48389565428438, + -0.03633029261193, + -0.00618398983484, + -0.87194415391841, + 0.82893555978195, + 0.02472683573178, + 0, + 0, + 0.02822884739722, + 0.02822884739722, + 0, + 0, + 119.097200164723, + -60.9027998352697 + ], + [ + "66", + "C", + "Low-Voltage Load(5)", + null, + null, + "476", + 3, + 5, + 4.5, + null, + 0, + 0, + 0, + null, + 0, + 5, + 4.5, + null, + 0, + 0, + 0, + null, + 0, + 0, + -0, + 0.0045, + 0.002179, + 0, + 0, + 0, + 0, + 0.00447911125522, + 0.0020999900257, + 0, + 0, + 2.08887447968066e-5, + 7.9459770993649e-5, + 0.97918093624554, + -0.48992984819742, + -0.48685879278254, + -0.00566292714917, + 7.76219912849786e-5, + -0.85301294244419, + 0.83591782063003, + 0.01532450743511, + 0, + 0.02177594215985, + 0, + 0.02177594215985, + 0, + -144.990098793267, + 0, + 35.0099012067261 + ], + [ + "67", + "C", + "Low-Voltage Load(6)", + null, + null, + "479", + 3, + 6, + 4.80000019073486, + null, + 0, + 6, + 4.80000019073486, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.0048, + 0.0036, + -0, + 0, + 0, + 0, + 0.00472951760901, + 0.00382571252808, + 0, + 0, + 0, + 0, + 7.04825808344433e-5, + -0.0002257126234, + 0.94664315176139, + -0.4951180238428, + -0.48247597832997, + 0.01294722785072, + 0.01702910924561, + -0.83541179702292, + 0.82733325309672, + 0.03445101494895, + 0.02782087819485, + 0, + 0, + 0.02782087819485, + -37.9388582420395, + 0, + 0, + 142.061141757953 + ], + [ + "68", + "C", + "Low-Voltage Load(7)", + null, + null, + "483", + 3, + 5.196152, + 4.5, + null, + 0, + 3, + 1.5, + null, + 0, + 2, + 2, + null, + 0, + 1, + 1, + null, + 0, + 0.0015, + 0.002598, + 0.002, + 4.235906e-15, + 0.001, + 2.781846e-15, + 0.00140838792358, + 0.00254188832646, + 0.00199806616385, + -7.1625877980423e-5, + 0.00103331527521, + 2.00280108676171e-5, + 6.02306373447746e-5, + 0.00010778564577, + 0.97832173010964, + -0.50978802941921, + -0.48499527068464, + -0.03139013560135, + -0.00568036307171, + -0.87142613623169, + 0.83076229546152, + 0.01799282985834, + 0.01286189855582, + 0.00857522068321, + 0.00465214757388, + 0.01477704500669, + -61.3430807512423, + -118.274780203477, + 119.165805382075, + 89.3751257133931 + ], + [ + "69", + "C", + "Low-Voltage Load(8)", + null, + null, + "486", + 3, + 7, + 6.29999971389771, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 7, + 6.29999971389771, + null, + 0, + 0, + -0, + -0, + 0, + 0.0063, + 0.003051, + 0, + 0, + 0, + 0, + 0.0066300162976, + 0.00296379062985, + -0.00033001658396, + 8.74390856414929e-5, + 0.94922466861202, + -0.50324207162358, + -0.4906390557292, + 0.00642540841204, + 0.01228416507318, + -0.84156794993458, + 0.82503595028204, + 0.04466550274347, + 0, + 0, + 0.03276037140882, + 0.03276037140882, + 0, + 0, + 96.6535534916036, + -83.3464465083891 + ], + [ + "70", + "C", + "Low-Voltage Load(9)", + null, + null, + "489", + 3, + 11.69615, + 11.3999996185303, + null, + 0, + 6, + 5.39999961853027, + null, + 0, + 0, + 0, + null, + 0, + 6, + 6, + null, + 0, + 0.0054, + 0.002615, + -0, + 0, + 0.006, + 1.67062e-13, + 0.0053622466705, + 0.00291095180461, + 0, + 0, + 0.00618155416795, + -0.00023529710419, + -0.00014380122132, + -6.03149439740281e-5, + 0.93873967246797, + -0.4979783157101, + -0.47927567780975, + 0.01570684685222, + 0.0194886943138, + -0.83407255672331, + 0.82553313381368, + 0.04308737396836, + 0.0281379744359, + 0, + 0.02806101885728, + 0.01472345541682, + -27.3064687918902, + 0, + 122.317828988623, + -132.783331040929 + ], + [ + "71", + "C", + "Low-Voltage Load", + null, + null, + "457", + 3, + 40, + 36, + null, + 0, + 20, + 18, + null, + 0, + 10, + 9, + null, + 0, + 10, + 9, + null, + 0, + 0.018, + 0.008717, + 0.009, + 0.004358, + 0.009, + 0.004358, + 0.01853246557716, + 0.00829261068185, + 0.00903624321757, + 0.00470730021277, + 0.00870471914721, + 0.00422481557023, + -0.00027342794367, + 0.00021087190903, + 0.97451790320422, + -0.45932948762864, + -0.47521676709091, + 0.01519090070994, + 0.00663811333026, + -0.83312954416839, + 0.85231315758314, + -0.02896492464771, + 0.09021216157966, + 0.04637454617996, + 0.0429346554855, + 0.04571470147363, + -23.7165210736341, + -146.385884377234, + 93.2528308703884, + 155.315116825548 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["72", "C", "LV network", null, 50] - ] + "Values": [["72", "C", "LV network", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:uln:A", + "m:phiuln:A", + "m:uln:B", + "m:phiuln:B", + "m:uln:C", + "m:phiuln:C" + ], "Values": [ - ["73", "C", "Bus(0)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99497334575815, 0.00021554972599, -0.49610219899793, -0.86146433420968, -0.49903605045913, 0.86390450345023, 0.99547695536684, 0.32246400830799, 0.98919257538569, -120.068114083016, 1.00210681718844, 119.834742999313], - ["74", "C", "Bus(1)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98980396637557, -0.00292801089093, -0.46909372677591, -0.85032096895691, -0.48326874884683, 0.85171203312259, 0.99413493684726, 1.2209164804074, 0.94807072376230, -119.370660053427, 0.99832992697452, 118.6831195265], - ["75", "C", "Bus(10)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97632699150388, 0.00415213307556, -0.49472377243507, -0.85185223215947, -0.48971285867756, 0.83999185956988, 0.97702350778330, -0.94265215320271, 1.0023540511135, -119.537884475194, 0.95461131327449, 120.824225894772], - ["76", "C", "Bus(11)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97918098141820, 7.74853371280218e-05, -0.48992999950765, -0.85301290433259, -0.48685869560203, 0.83591793996366, 0.98496191860935, -0.88696363845950, 0.99424568420224, -119.148171505664, 0.95127437797405, 120.387348896851], - ["77", "C", "Bus(12)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95469193530796, 0.01208875775715, -0.50139470696474, -0.84226198218865, -0.49113695364313, 0.82927599470095, 0.94841632467580, -1.65226095028512, 1.01760450705447, -119.952055667118, 0.93362774903880, 122.22167321956], - ["78", "C", "Bus(13)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99283331852904, -0.01101525731862, -0.45786870052207, -0.85303892327162, -0.47805397201474, 0.84229662634362, 1.00812013599261, 1.25402577610438, 0.93189498363248, -118.371453219155, 0.99028171760068, 117.875535367437], - ["79", "C", "Bus(14)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95170244107321, 0.01257306885580, -0.50076449356158, -0.84127892211260, -0.48898485150911, 0.82687527847871, 0.94476373760060, -1.7392791627902, 1.01836072023121, -119.93233440631, 0.92929124402224, 122.284673192076], - ["80", "C", "Bus(15)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94786280511817, 0.01671194886623, -0.49564513272862, -0.83623065391725, -0.48247628833454, 0.82733308026738, 0.93617572128863, -1.2385949760653, 1.00997489867354, -120.168067648218, 0.93226708466445, 122.025790286059], - ["81", "C", "Bus(16)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94664320186892, 0.01702899480497, -0.49511815731239, -0.83541177495262, -0.48247590172424, 0.82733336147769, 0.93385849663838, -1.06896960160527, 1.00736871055582, -120.28814621737, 0.93493662392520, 121.998714113528], - ["82", "C", "Bus(17)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94922471441113, 0.01228406006974, -0.50324219911869, -0.84156790215211, -0.49063896552841, 0.82503606760633, 0.94335520804359, -1.96711217299901, 1.02233593839907, -119.902954404146, 0.92523035280449, 122.495483738855], - ["83", "C", "Bus(18)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94531973741401, 0.01688574366506, -0.49564746303645, -0.83623011735217, -0.48037514176081, 0.82590127922693, 0.93240382891693, -1.37992947610575, 1.01268683888029, -120.162830677195, 0.92859127277850, 122.10796698454], - ["84", "C", "Bus(19)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.93873971633006, 0.01948860271766, -0.49797842339625, -0.83407251565246, -0.47927559465615, 0.82553323483762, 0.92333446655154, -1.46453745675079, 1.01650483203851, -120.354234667847, 0.92586670082086, 122.317822919772], - ["85", "C", "Bus(2)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98408243246721, -0.00289304678445, -0.46749135595383, -0.84785410219272, -0.48204782923330, 0.84927845081593, 0.98263436308284, 1.29734345225956, 0.94709956251971, -119.696004222831, 0.99931028116356, 118.952323249849], - ["86", "C", "Bus(20)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99222231678140, -0.01631991778088, -0.44409980544008, -0.84891723172818, -0.47398929206799, 0.83429053524586, 1.02362669072275, 1.87137639669121, 0.89968936361366, -117.342954530294, 0.98888216153313, 116.622674626103], - ["87", "C", "Bus(21)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97451819822318, 0.00663749725590, -0.45933011495374, -0.83312947514535, -0.47521632628385, 0.85231369280611, 0.95998769694760, 2.125378718688, 0.93372951098580, -120.54398463923, 1.00853918652922, 119.094730321971], - ["88", "C", "Bus(22)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99189574339061, -0.01082417130786, -0.45511630022299, -0.85023900091785, -0.47796254077692, 0.84191104364662, 1.01193323665197, 1.52353934816319, 0.92183367877443, -118.187540992371, 0.99186182271644, 117.519015233637], - ["89", "C", "Bus(23)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409876602587, -0.01670522202400, -0.44695204206885, -0.85221576840550, -0.47417032125295, 0.83506307417551, 1.02210616246396, 1.54430877146045, 0.91029275318392, -117.428316705266, 0.98619774617608, 116.922417964786], - ["90", "C", "Bus(24)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409928390866, -0.01670696347727, -0.44217371295109, -0.84807354541920, -0.47416960333226, 0.83506252072183, 1.03319181219276, 1.90767890812874, 0.89336533177994, -116.86148339317, 0.98745961063787, 116.179341242148], - ["91", "C", "Bus(25)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.9923887975434, -0.00135659271554, -0.48259833769608, -0.85589260446417, -0.49115215948991, 0.85780856133592, 0.99477550916126, 0.77136659700779, 0.96861385472079, -119.726810155805, 1.00016800414947, 119.259997924428], - ["92", "C", "Bus(26)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97333743773726, 0.00463618611675, -0.49409419633951, -0.85086897669327, -0.48767726713363, 0.83608310312845, 0.97271127940233, -1.20161750317455, 1.00606507940149, -119.468865905389, 0.94680985935665, 121.061737410985], - ["93", "C", "Bus(27)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98363448273998, -0.00629777583592, -0.50935040369519, -0.87225375701575, -0.49567598067595, 0.84285366872351, 1.00087919643083, -1.05785483430701, 1.01220541966688, -119.100321921117, 0.95868541228554, 119.948886502853], - ["94", "C", "Bus(28)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99408262834892, -0.00108488479732, -0.50237904407708, -0.86713079944944, -0.49823774547825, 0.85887093185241, 0.99852655130782, -0.27212347224417, 1.00310664924593, -119.762389501434, 0.98753905757172, 120.002382059369], - ["95", "C", "Bus(29)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99401971238506, 0.00096529779150, -0.49750018086989, -0.86204358878462, -0.49592683320417, 0.85821235265890, 0.99434192157189, -0.28720092728600, 1.00030514788372, -119.804280761075, 0.98589465293133, 120.179321258561], - ["96", "C", "Bus(3)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98125347543452, -0.00444027906815, -0.50918693521261, -0.87024043204082, -0.48824806910439, 0.83713594468506, 1.00847294108365, -1.24653335141051, 1.01024900674307, -118.510130293915, 0.94051747888706, 119.369496591144], - ["97", "C", "Bus(30)", "72", null, 0, 1, 0.4, 0, 0, 0, 0.99999759792981, -8.82135154296959e-08, -0.49999873071990, -0.86602634485305, -0.49999982780086, 0.86602806862597, 0.99999759792982, -5.05427427088269e-06, 1.00000018035051, -119.99991005921, 1.000002221722, 119.999915113645], - ["98", "C", "Bus(31)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99238872902866, -0.00135643307134, -0.48259817114966, -0.85589262252578, -0.49115226541266, 0.85780842699537, 0.99477544205240, 0.77137572907196, 0.96861378992484, -119.726801049048, 1.00016793732106, 119.260007072059], - ["99", "C", "Bus(32)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98408237700642, -0.00289292052298, -0.46749122826077, -0.84785411407340, -0.48204791450843, 0.84927834738124, 0.98263431049068, 1.29735065968804, 0.94709951290591, -119.69599703587, 0.99931022850483, 118.95233050227], - ["100", "C", "Bus(33)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97632691095689, 0.00415232310135, -0.49472356265852, -0.85185226040885, -0.48971298199983, 0.83999169199534, 0.97702342753887, -0.94264090497047, 1.00235396788499, -119.537873160687, 0.95461123342636, 120.824237131303], - ["101", "C", "Bus(34)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97333734006340, 0.00463641485291, -0.49409394304432, -0.85086901104267, -0.48767741576021, 0.83608290077556, 0.97271118278838, -1.20160390952952, 1.00606497828678, -119.468852203094, 0.94680976309192, 121.061751001123], - ["102", "C", "Bus(35)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95469192428326, 0.01208878493189, -0.50139467520404, -0.84226199407470, -0.49113697678145, 0.82927596618559, 0.94841631787978, -1.65225909528683, 1.01760449572285, -119.952053638334, 0.93362773766621, 122.221674966728], - ["103", "C", "Bus(36)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.95170234858219, 0.01257328772492, -0.50076423698065, -0.84127896293551, -0.48898499291741, 0.82687507281704, 0.94476364447989, -1.73926556739926, 1.01836061751847, -119.932320672172, 0.92929114915390, 122.28468674704], - ["104", "C", "Bus(37)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94786279027645, 0.01671198321288, -0.49564509347506, -0.83623066829264, -0.48247631817455, 0.82733304482077, 0.93617571284942, -1.23859265328301, 1.00997488447695, -120.168065066558, 0.93226706980975, 122.025792496499], - ["105", "C", "Bus(38)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94531942077989, 0.01688645495991, -0.49564662779498, -0.83623025255608, -0.48037561709187, 0.82590060024219, 0.93240352328462, -1.37988466295889, 1.0126864999869, -120.162785288312, 0.92859095634196, 122.108011773759], - ["106", "C", "Bus(39)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97451790320422, 0.00663811333026, -0.45932948762864, -0.83312954416839, -0.47521676709091, 0.85231315758314, 0.95998743430731, 2.12541504166052, 0.93372926174445, -120.543948256048, 1.00853891291232, 119.094766981373], - ["107", "C", "Bus(4)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97911896867433, -0.00546539961140, -0.51035078466560, -0.87124247613633, -0.48723880647912, 0.83350397426291, 1.00914435151189, -1.38214663831429, 1.01158551027595, -118.366809498717, 0.93430813023573, 119.319201137979], - ["108", "C", "Bus(40)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99222206306548, -0.01631931852092, -0.44409924005425, -0.84891724687403, -0.47398967487535, 0.83429009706148, 1.02362643876075, 1.87140905272302, 0.89968914691482, -117.342922361953, 0.98888192724561, 116.622707353217], - ["109", "C", "Bus(41)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409925048167, -0.01670675180690, -0.44217350658995, -0.84807354692459, -0.47416970398350, 0.83506241117502, 1.03319173496878, 1.90769024365455, 0.89336527159826, -116.861474147156, 0.98745957011468, 116.179352174711], - ["110", "C", "Bus(42)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97988259468373, -0.00336771010540, -0.50909238475909, -0.86907900126429, -0.48322427534924, 0.83325765902928, 1.01420625867014, -1.43090007400217, 1.00977884760273, -118.06573091994, 0.92736311714398, 118.973323438004], - ["111", "C", "Bus(43)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99283327987219, -0.01101509600299, -0.45786854521353, -0.85303893455004, -0.47805406501405, 0.84229653011377, 1.0081200809582, 1.25403430747461, 0.93189494004440, -118.371445187122, 0.99028167420387, 117.875544068685], - ["112", "C", "Bus(44)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762466253366, -0.00618398983484, -0.51116674261515, -0.87194415391841, -0.48389565428438, 0.82893555978195, 1.01442601021539, -1.74614413822902, 1.01463713608952, -117.903673029106, 0.92036211613004, 119.097200164919], - ["113", "C", "Bus(45)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97918093624554, 7.76219912849786e-05, -0.48992984819742, -0.85301294244419, -0.48685879278254, 0.83591782063003, 0.98496187884708, -0.8869552184354, 0.99424563246938, -119.148162679174, 0.95127432781656, 120.3873569192], - ["114", "C", "Bus(46)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94664315176139, 0.01702910924561, -0.49511802384280, -0.83541179702292, -0.48247597832997, 0.82733325309672, 0.93385844812034, -1.06896241214565, 1.00736865726012, -120.2881389473, 0.93493657367362, 121.998721300051], - ["115", "C", "Bus(47)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97832173010964, -0.00568036307171, -0.50978802941921, -0.87142613623169, -0.48499527068464, 0.83076229546152, 1.00998934242945, -1.34308176573782, 1.0099161559506, -118.274780203356, 0.93078022260403, 119.165805382234], - ["116", "C", "Bus(48)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.94922466861202, 0.01228416507318, -0.50324207162358, -0.84156794993458, -0.49063905572920, 0.82503595028204, 0.94335518022796, -1.96710481308216, 1.02233589042523, -119.902946275072, 0.92523030479096, 122.495490628399], - ["117", "C", "Bus(49)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.93873967246797, 0.01948869431380, -0.49797831571010, -0.83407255672331, -0.47927567780975, 0.82553313381368, 0.92333444365822, -1.46453108273148, 1.0165047910599, -120.354227444841, 0.92586665714921, 122.317828990219], - ["118", "C", "Bus(5)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97988265467635, -0.00336786915994, -0.50909256254615, -0.86907898113367, -0.48322418016955, 0.83325778919231, 1.01420632595629, -1.43090925389363, 1.00977891644704, -118.065740062581, 0.92736317891811, 118.973314375898], - ["119", "C", "Bus(50)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99189563773213, -0.01082392496863, -0.45511606079190, -0.85023901442394, -0.47796270156324, 0.84191085465382, 1.01193313340475, 1.52355300739898, 0.92183358644104, -118.187527463665, 0.99186172420025, 117.519028929767], - ["120", "C", "Bus(51)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.99409854029526, -0.01670469091951, -0.44695153988736, -0.85221578348598, -0.47417066170518, 0.83506268504329, 1.02210594002838, 1.54433765991876, 0.91029255956307, -117.428288163954, 0.98619753856542, 116.922446958732], - ["121", "C", "Bus(52)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98363445650615, -0.00629768149610, -0.50935029498507, -0.87225378363380, -0.49567604366463, 0.84285358778090, 1.00087916459338, -1.05784902355725, 1.01220538510609, -119.100316208759, 0.95868538215948, 119.94889214175], - ["122", "C", "Bus(53)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98125330678511, -0.00443983583225, -0.50918644157589, -0.87024048517953, -0.48824833407450, 0.83713558051328, 1.00847275303165, -1.24650790342386, 1.01024881479423, -118.510104967749, 0.94051730373751, 119.369521790391], - ["123", "C", "Bus(54)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97911893926732, -0.00546528018363, -0.51035063764409, -0.87124251380658, -0.48723888257229, 0.83350386679099, 1.00914431235661, -1.38213879829989, 1.0115854594016, -118.366802003353, 0.93430809398431, 119.319208188982], - ["124", "C", "Bus(55)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762484169999, -0.00618293149519, -0.51116537767890, -0.87194398317613, -0.48653236761552, 0.83096152264790, 1.00961771107555, -1.47696222833199, 1.01252479836991, -118.266705452338, 0.92996203114442, 119.283598382598], - ["125", "C", "Bus(56)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98455423419364, 0.00249497166000, -0.49354290233990, -0.85573771029933, -0.48947867309762, 0.84583646953353, 0.98543845194993, -0.74858225166698, 1.00081135572619, -119.494718238799, 0.96357770322512, 120.474187355581], - ["126", "C", "Bus(6)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762487399805, -0.00618306559651, -0.51116554467847, -0.87194394023073, -0.48653228302678, 0.83096164432064, 1.00961775538812, -1.4769710901982, 1.01252485624127, -118.26671390861, 0.92996207180512, 119.283590439241], - ["127", "C", "Bus(7)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97762472112788, -0.00618414979405, -0.51116692179610, -0.87194413472501, -0.48389556063664, 0.82893568868653, 1.01442607757625, -1.74615332128154, 1.01463720528153, -117.903682167774, 0.92036217736403, 119.097191102104], - ["128", "C", "Bus(8)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.97832175182686, -0.00568045475658, -0.50978814246664, -0.87142610743863, -0.48499521296222, 0.83076237704947, 1.00998937230594, -1.34308777964823, 1.00991619466743, -118.274785939318, 0.93078024986009, 119.165799977308], - ["129", "C", "Bus(9)", "72", null, 1, 1, 0.4, 0, 0, 0, 0.98455428815460, 0.00249481763883, -0.49354307015205, -0.85573766738745, -0.48947856027923, 0.84583660426393, 0.98543849655028, -0.74859165020491, 1.0008114137797, -119.494728151275, 0.96357776088538, 120.474178346264] + [ + "73", + "C", + "Bus(0)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99497334575815, + 0.00021554972599, + -0.49610219899793, + -0.86146433420968, + -0.49903605045913, + 0.86390450345023, + 0.99547695536684, + 0.32246400830799, + 0.98919257538569, + -120.068114083016, + 1.00210681718844, + 119.834742999313 + ], + [ + "74", + "C", + "Bus(1)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98980396637557, + -0.00292801089093, + -0.46909372677591, + -0.85032096895691, + -0.48326874884683, + 0.85171203312259, + 0.99413493684726, + 1.2209164804074, + 0.9480707237623, + -119.370660053427, + 0.99832992697452, + 118.6831195265 + ], + [ + "75", + "C", + "Bus(10)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97632699150388, + 0.00415213307556, + -0.49472377243507, + -0.85185223215947, + -0.48971285867756, + 0.83999185956988, + 0.9770235077833, + -0.94265215320271, + 1.0023540511135, + -119.537884475194, + 0.95461131327449, + 120.824225894772 + ], + [ + "76", + "C", + "Bus(11)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.9791809814182, + 7.74853371280218e-5, + -0.48992999950765, + -0.85301290433259, + -0.48685869560203, + 0.83591793996366, + 0.98496191860935, + -0.8869636384595, + 0.99424568420224, + -119.148171505664, + 0.95127437797405, + 120.387348896851 + ], + [ + "77", + "C", + "Bus(12)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.95469193530796, + 0.01208875775715, + -0.50139470696474, + -0.84226198218865, + -0.49113695364313, + 0.82927599470095, + 0.9484163246758, + -1.65226095028512, + 1.01760450705447, + -119.952055667118, + 0.9336277490388, + 122.22167321956 + ], + [ + "78", + "C", + "Bus(13)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99283331852904, + -0.01101525731862, + -0.45786870052207, + -0.85303892327162, + -0.47805397201474, + 0.84229662634362, + 1.00812013599261, + 1.25402577610438, + 0.93189498363248, + -118.371453219155, + 0.99028171760068, + 117.875535367437 + ], + [ + "79", + "C", + "Bus(14)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.95170244107321, + 0.0125730688558, + -0.50076449356158, + -0.8412789221126, + -0.48898485150911, + 0.82687527847871, + 0.9447637376006, + -1.7392791627902, + 1.01836072023121, + -119.93233440631, + 0.92929124402224, + 122.284673192076 + ], + [ + "80", + "C", + "Bus(15)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94786280511817, + 0.01671194886623, + -0.49564513272862, + -0.83623065391725, + -0.48247628833454, + 0.82733308026738, + 0.93617572128863, + -1.2385949760653, + 1.00997489867354, + -120.168067648218, + 0.93226708466445, + 122.025790286059 + ], + [ + "81", + "C", + "Bus(16)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94664320186892, + 0.01702899480497, + -0.49511815731239, + -0.83541177495262, + -0.48247590172424, + 0.82733336147769, + 0.93385849663838, + -1.06896960160527, + 1.00736871055582, + -120.28814621737, + 0.9349366239252, + 121.998714113528 + ], + [ + "82", + "C", + "Bus(17)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94922471441113, + 0.01228406006974, + -0.50324219911869, + -0.84156790215211, + -0.49063896552841, + 0.82503606760633, + 0.94335520804359, + -1.96711217299901, + 1.02233593839907, + -119.902954404146, + 0.92523035280449, + 122.495483738855 + ], + [ + "83", + "C", + "Bus(18)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94531973741401, + 0.01688574366506, + -0.49564746303645, + -0.83623011735217, + -0.48037514176081, + 0.82590127922693, + 0.93240382891693, + -1.37992947610575, + 1.01268683888029, + -120.162830677195, + 0.9285912727785, + 122.10796698454 + ], + [ + "84", + "C", + "Bus(19)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.93873971633006, + 0.01948860271766, + -0.49797842339625, + -0.83407251565246, + -0.47927559465615, + 0.82553323483762, + 0.92333446655154, + -1.46453745675079, + 1.01650483203851, + -120.354234667847, + 0.92586670082086, + 122.317822919772 + ], + [ + "85", + "C", + "Bus(2)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98408243246721, + -0.00289304678445, + -0.46749135595383, + -0.84785410219272, + -0.4820478292333, + 0.84927845081593, + 0.98263436308284, + 1.29734345225956, + 0.94709956251971, + -119.696004222831, + 0.99931028116356, + 118.952323249849 + ], + [ + "86", + "C", + "Bus(20)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.9922223167814, + -0.01631991778088, + -0.44409980544008, + -0.84891723172818, + -0.47398929206799, + 0.83429053524586, + 1.02362669072275, + 1.87137639669121, + 0.89968936361366, + -117.342954530294, + 0.98888216153313, + 116.622674626103 + ], + [ + "87", + "C", + "Bus(21)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97451819822318, + 0.0066374972559, + -0.45933011495374, + -0.83312947514535, + -0.47521632628385, + 0.85231369280611, + 0.9599876969476, + 2.125378718688, + 0.9337295109858, + -120.54398463923, + 1.00853918652922, + 119.094730321971 + ], + [ + "88", + "C", + "Bus(22)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99189574339061, + -0.01082417130786, + -0.45511630022299, + -0.85023900091785, + -0.47796254077692, + 0.84191104364662, + 1.01193323665197, + 1.52353934816319, + 0.92183367877443, + -118.187540992371, + 0.99186182271644, + 117.519015233637 + ], + [ + "89", + "C", + "Bus(23)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99409876602587, + -0.016705222024, + -0.44695204206885, + -0.8522157684055, + -0.47417032125295, + 0.83506307417551, + 1.02210616246396, + 1.54430877146045, + 0.91029275318392, + -117.428316705266, + 0.98619774617608, + 116.922417964786 + ], + [ + "90", + "C", + "Bus(24)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99409928390866, + -0.01670696347727, + -0.44217371295109, + -0.8480735454192, + -0.47416960333226, + 0.83506252072183, + 1.03319181219276, + 1.90767890812874, + 0.89336533177994, + -116.86148339317, + 0.98745961063787, + 116.179341242148 + ], + [ + "91", + "C", + "Bus(25)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.9923887975434, + -0.00135659271554, + -0.48259833769608, + -0.85589260446417, + -0.49115215948991, + 0.85780856133592, + 0.99477550916126, + 0.77136659700779, + 0.96861385472079, + -119.726810155805, + 1.00016800414947, + 119.259997924428 + ], + [ + "92", + "C", + "Bus(26)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97333743773726, + 0.00463618611675, + -0.49409419633951, + -0.85086897669327, + -0.48767726713363, + 0.83608310312845, + 0.97271127940233, + -1.20161750317455, + 1.00606507940149, + -119.468865905389, + 0.94680985935665, + 121.061737410985 + ], + [ + "93", + "C", + "Bus(27)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98363448273998, + -0.00629777583592, + -0.50935040369519, + -0.87225375701575, + -0.49567598067595, + 0.84285366872351, + 1.00087919643083, + -1.05785483430701, + 1.01220541966688, + -119.100321921117, + 0.95868541228554, + 119.948886502853 + ], + [ + "94", + "C", + "Bus(28)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99408262834892, + -0.00108488479732, + -0.50237904407708, + -0.86713079944944, + -0.49823774547825, + 0.85887093185241, + 0.99852655130782, + -0.27212347224417, + 1.00310664924593, + -119.762389501434, + 0.98753905757172, + 120.002382059369 + ], + [ + "95", + "C", + "Bus(29)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99401971238506, + 0.0009652977915, + -0.49750018086989, + -0.86204358878462, + -0.49592683320417, + 0.8582123526589, + 0.99434192157189, + -0.287200927286, + 1.00030514788372, + -119.804280761075, + 0.98589465293133, + 120.179321258561 + ], + [ + "96", + "C", + "Bus(3)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98125347543452, + -0.00444027906815, + -0.50918693521261, + -0.87024043204082, + -0.48824806910439, + 0.83713594468506, + 1.00847294108365, + -1.24653335141051, + 1.01024900674307, + -118.510130293915, + 0.94051747888706, + 119.369496591144 + ], + [ + "97", + "C", + "Bus(30)", + "72", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.99999759792981, + -8.82135154296959e-8, + -0.4999987307199, + -0.86602634485305, + -0.49999982780086, + 0.86602806862597, + 0.99999759792982, + -5.05427427088269e-6, + 1.00000018035051, + -119.99991005921, + 1.000002221722, + 119.999915113645 + ], + [ + "98", + "C", + "Bus(31)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99238872902866, + -0.00135643307134, + -0.48259817114966, + -0.85589262252578, + -0.49115226541266, + 0.85780842699537, + 0.9947754420524, + 0.77137572907196, + 0.96861378992484, + -119.726801049048, + 1.00016793732106, + 119.260007072059 + ], + [ + "99", + "C", + "Bus(32)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98408237700642, + -0.00289292052298, + -0.46749122826077, + -0.8478541140734, + -0.48204791450843, + 0.84927834738124, + 0.98263431049068, + 1.29735065968804, + 0.94709951290591, + -119.69599703587, + 0.99931022850483, + 118.95233050227 + ], + [ + "100", + "C", + "Bus(33)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97632691095689, + 0.00415232310135, + -0.49472356265852, + -0.85185226040885, + -0.48971298199983, + 0.83999169199534, + 0.97702342753887, + -0.94264090497047, + 1.00235396788499, + -119.537873160687, + 0.95461123342636, + 120.824237131303 + ], + [ + "101", + "C", + "Bus(34)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.9733373400634, + 0.00463641485291, + -0.49409394304432, + -0.85086901104267, + -0.48767741576021, + 0.83608290077556, + 0.97271118278838, + -1.20160390952952, + 1.00606497828678, + -119.468852203094, + 0.94680976309192, + 121.061751001123 + ], + [ + "102", + "C", + "Bus(35)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.95469192428326, + 0.01208878493189, + -0.50139467520404, + -0.8422619940747, + -0.49113697678145, + 0.82927596618559, + 0.94841631787978, + -1.65225909528683, + 1.01760449572285, + -119.952053638334, + 0.93362773766621, + 122.221674966728 + ], + [ + "103", + "C", + "Bus(36)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.95170234858219, + 0.01257328772492, + -0.50076423698065, + -0.84127896293551, + -0.48898499291741, + 0.82687507281704, + 0.94476364447989, + -1.73926556739926, + 1.01836061751847, + -119.932320672172, + 0.9292911491539, + 122.28468674704 + ], + [ + "104", + "C", + "Bus(37)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94786279027645, + 0.01671198321288, + -0.49564509347506, + -0.83623066829264, + -0.48247631817455, + 0.82733304482077, + 0.93617571284942, + -1.23859265328301, + 1.00997488447695, + -120.168065066558, + 0.93226706980975, + 122.025792496499 + ], + [ + "105", + "C", + "Bus(38)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94531942077989, + 0.01688645495991, + -0.49564662779498, + -0.83623025255608, + -0.48037561709187, + 0.82590060024219, + 0.93240352328462, + -1.37988466295889, + 1.0126864999869, + -120.162785288312, + 0.92859095634196, + 122.108011773759 + ], + [ + "106", + "C", + "Bus(39)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97451790320422, + 0.00663811333026, + -0.45932948762864, + -0.83312954416839, + -0.47521676709091, + 0.85231315758314, + 0.95998743430731, + 2.12541504166052, + 0.93372926174445, + -120.543948256048, + 1.00853891291232, + 119.094766981373 + ], + [ + "107", + "C", + "Bus(4)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97911896867433, + -0.0054653996114, + -0.5103507846656, + -0.87124247613633, + -0.48723880647912, + 0.83350397426291, + 1.00914435151189, + -1.38214663831429, + 1.01158551027595, + -118.366809498717, + 0.93430813023573, + 119.319201137979 + ], + [ + "108", + "C", + "Bus(40)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99222206306548, + -0.01631931852092, + -0.44409924005425, + -0.84891724687403, + -0.47398967487535, + 0.83429009706148, + 1.02362643876075, + 1.87140905272302, + 0.89968914691482, + -117.342922361953, + 0.98888192724561, + 116.622707353217 + ], + [ + "109", + "C", + "Bus(41)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99409925048167, + -0.0167067518069, + -0.44217350658995, + -0.84807354692459, + -0.4741697039835, + 0.83506241117502, + 1.03319173496878, + 1.90769024365455, + 0.89336527159826, + -116.861474147156, + 0.98745957011468, + 116.179352174711 + ], + [ + "110", + "C", + "Bus(42)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97988259468373, + -0.0033677101054, + -0.50909238475909, + -0.86907900126429, + -0.48322427534924, + 0.83325765902928, + 1.01420625867014, + -1.43090007400217, + 1.00977884760273, + -118.06573091994, + 0.92736311714398, + 118.973323438004 + ], + [ + "111", + "C", + "Bus(43)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99283327987219, + -0.01101509600299, + -0.45786854521353, + -0.85303893455004, + -0.47805406501405, + 0.84229653011377, + 1.0081200809582, + 1.25403430747461, + 0.9318949400444, + -118.371445187122, + 0.99028167420387, + 117.875544068685 + ], + [ + "112", + "C", + "Bus(44)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97762466253366, + -0.00618398983484, + -0.51116674261515, + -0.87194415391841, + -0.48389565428438, + 0.82893555978195, + 1.01442601021539, + -1.74614413822902, + 1.01463713608952, + -117.903673029106, + 0.92036211613004, + 119.097200164919 + ], + [ + "113", + "C", + "Bus(45)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97918093624554, + 7.76219912849786e-5, + -0.48992984819742, + -0.85301294244419, + -0.48685879278254, + 0.83591782063003, + 0.98496187884708, + -0.8869552184354, + 0.99424563246938, + -119.148162679174, + 0.95127432781656, + 120.3873569192 + ], + [ + "114", + "C", + "Bus(46)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94664315176139, + 0.01702910924561, + -0.4951180238428, + -0.83541179702292, + -0.48247597832997, + 0.82733325309672, + 0.93385844812034, + -1.06896241214565, + 1.00736865726012, + -120.2881389473, + 0.93493657367362, + 121.998721300051 + ], + [ + "115", + "C", + "Bus(47)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97832173010964, + -0.00568036307171, + -0.50978802941921, + -0.87142613623169, + -0.48499527068464, + 0.83076229546152, + 1.00998934242945, + -1.34308176573782, + 1.0099161559506, + -118.274780203356, + 0.93078022260403, + 119.165805382234 + ], + [ + "116", + "C", + "Bus(48)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.94922466861202, + 0.01228416507318, + -0.50324207162358, + -0.84156794993458, + -0.4906390557292, + 0.82503595028204, + 0.94335518022796, + -1.96710481308216, + 1.02233589042523, + -119.902946275072, + 0.92523030479096, + 122.495490628399 + ], + [ + "117", + "C", + "Bus(49)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.93873967246797, + 0.0194886943138, + -0.4979783157101, + -0.83407255672331, + -0.47927567780975, + 0.82553313381368, + 0.92333444365822, + -1.46453108273148, + 1.0165047910599, + -120.354227444841, + 0.92586665714921, + 122.317828990219 + ], + [ + "118", + "C", + "Bus(5)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97988265467635, + -0.00336786915994, + -0.50909256254615, + -0.86907898113367, + -0.48322418016955, + 0.83325778919231, + 1.01420632595629, + -1.43090925389363, + 1.00977891644704, + -118.065740062581, + 0.92736317891811, + 118.973314375898 + ], + [ + "119", + "C", + "Bus(50)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99189563773213, + -0.01082392496863, + -0.4551160607919, + -0.85023901442394, + -0.47796270156324, + 0.84191085465382, + 1.01193313340475, + 1.52355300739898, + 0.92183358644104, + -118.187527463665, + 0.99186172420025, + 117.519028929767 + ], + [ + "120", + "C", + "Bus(51)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.99409854029526, + -0.01670469091951, + -0.44695153988736, + -0.85221578348598, + -0.47417066170518, + 0.83506268504329, + 1.02210594002838, + 1.54433765991876, + 0.91029255956307, + -117.428288163954, + 0.98619753856542, + 116.922446958732 + ], + [ + "121", + "C", + "Bus(52)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98363445650615, + -0.0062976814961, + -0.50935029498507, + -0.8722537836338, + -0.49567604366463, + 0.8428535877809, + 1.00087916459338, + -1.05784902355725, + 1.01220538510609, + -119.100316208759, + 0.95868538215948, + 119.94889214175 + ], + [ + "122", + "C", + "Bus(53)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98125330678511, + -0.00443983583225, + -0.50918644157589, + -0.87024048517953, + -0.4882483340745, + 0.83713558051328, + 1.00847275303165, + -1.24650790342386, + 1.01024881479423, + -118.510104967749, + 0.94051730373751, + 119.369521790391 + ], + [ + "123", + "C", + "Bus(54)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97911893926732, + -0.00546528018363, + -0.51035063764409, + -0.87124251380658, + -0.48723888257229, + 0.83350386679099, + 1.00914431235661, + -1.38213879829989, + 1.0115854594016, + -118.366802003353, + 0.93430809398431, + 119.319208188982 + ], + [ + "124", + "C", + "Bus(55)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97762484169999, + -0.00618293149519, + -0.5111653776789, + -0.87194398317613, + -0.48653236761552, + 0.8309615226479, + 1.00961771107555, + -1.47696222833199, + 1.01252479836991, + -118.266705452338, + 0.92996203114442, + 119.283598382598 + ], + [ + "125", + "C", + "Bus(56)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.98455423419364, + 0.00249497166, + -0.4935429023399, + -0.85573771029933, + -0.48947867309762, + 0.84583646953353, + 0.98543845194993, + -0.74858225166698, + 1.00081135572619, + -119.494718238799, + 0.96357770322512, + 120.474187355581 + ], + [ + "126", + "C", + "Bus(6)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97762487399805, + -0.00618306559651, + -0.51116554467847, + -0.87194394023073, + -0.48653228302678, + 0.83096164432064, + 1.00961775538812, + -1.4769710901982, + 1.01252485624127, + -118.26671390861, + 0.92996207180512, + 119.283590439241 + ], + [ + "127", + "C", + "Bus(7)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97762472112788, + -0.00618414979405, + -0.5111669217961, + -0.87194413472501, + -0.48389556063664, + 0.82893568868653, + 1.01442607757625, + -1.74615332128154, + 1.01463720528153, + -117.903682167774, + 0.92036217736403, + 119.097191102104 + ], + [ + "128", + "C", + "Bus(8)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.97832175182686, + -0.00568045475658, + -0.50978814246664, + -0.87142610743863, + -0.48499521296222, + 0.83076237704947, + 1.00998937230594, + -1.34308777964823, + 1.00991619466743, + -118.274785939318, + 0.93078024986009, + 119.165799977308 + ], + [ + "129", + "C", + "Bus(9)", + "72", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.9845542881546, + 0.00249481763883, + -0.49354307015205, + -0.85573766738745, + -0.48947856027923, + 0.84583660426393, + 0.98543849655028, + -0.74859165020491, + 1.0008114137797, + -119.494728151275, + 0.96357776088538, + 120.474178346264 + ] ] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["130", "C", "LV source", "72", "422", null, 0, 0, 0, 0, "SL", 0, 1, 1] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["130", "C", "LV source", "72", "422", null, 0, 0, 0, 0, "SL", 0, 1, 1]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["131", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["131", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -301,7 +2523,26 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rX:2", "rX:3", "rX:4", "rY:SIZEROW", "rY:0", "rY:1", "rY:2", "rY:3", "rY:4"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rX:2", + "rX:3", + "rX:4", + "rY:SIZEROW", + "rY:0", + "rY:1", + "rY:2", + "rY:3", + "rY:4" + ], "Values": [ ["262", "C", "GCO_1", "133", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 105, 105, null, null, null], ["263", "C", "GCO_2", "133", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 105, 105, null, null, null], @@ -317,22 +2558,250 @@ ["273", "C", "GCO_2", "143", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 105, 105, null, null, null], ["274", "C", "GCO_1", "145", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 61.25, 61.25, null, null, null], ["275", "C", "GCO_2", "145", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 61.25, 61.25, null, null, null], - ["276", "C", "GCO_1", "147", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 126.875, 126.875, null, null, null], - ["277", "C", "GCO_2", "147", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 126.875, 126.875, null, null, null], - ["278", "C", "GCO_1", "149", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null], - ["279", "C", "GCO_2", "149", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null], + [ + "276", + "C", + "GCO_1", + "147", + 1, + 0, + "2", + 131.25, + 131.25, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "277", + "C", + "GCO_2", + "147", + 1, + 0, + "2", + 131.25, + 131.25, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "278", + "C", + "GCO_1", + "149", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "279", + "C", + "GCO_2", + "149", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], ["280", "C", "GCO_1", "151", 1, 0, "2", 175, 175, null, null, null, "2", 144.375, 144.375, null, null, null], ["281", "C", "GCO_2", "151", 1, 0, "2", 175, 175, null, null, null, "2", 144.375, 144.375, null, null, null], - ["282", "C", "GCO_1", "152", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 144.375, 144.375, null, null, null], - ["283", "C", "GCO_2", "152", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 144.375, 144.375, null, null, null], - ["284", "C", "GCO_1", "154", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 144.375, 144.375, null, null, null], - ["285", "C", "GCO_2", "154", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 144.375, 144.375, null, null, null], - ["286", "C", "GCO_1", "156", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 126.875, 126.875, null, null, null], - ["287", "C", "GCO_2", "156", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 126.875, 126.875, null, null, null], + [ + "282", + "C", + "GCO_1", + "152", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 144.375, + 144.375, + null, + null, + null + ], + [ + "283", + "C", + "GCO_2", + "152", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 144.375, + 144.375, + null, + null, + null + ], + [ + "284", + "C", + "GCO_1", + "154", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 144.375, + 144.375, + null, + null, + null + ], + [ + "285", + "C", + "GCO_2", + "154", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 144.375, + 144.375, + null, + null, + null + ], + [ + "286", + "C", + "GCO_1", + "156", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "287", + "C", + "GCO_2", + "156", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], ["288", "C", "GCO_1", "158", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 105, 105, null, null, null], ["289", "C", "GCO_2", "158", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 105, 105, null, null, null], - ["290", "C", "GCO_1", "160", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 83.125, 83.125, null, null, null], - ["291", "C", "GCO_2", "160", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 83.125, 83.125, null, null, null], + [ + "290", + "C", + "GCO_1", + "160", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 83.125, + 83.125, + null, + null, + null + ], + [ + "291", + "C", + "GCO_2", + "160", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 83.125, + 83.125, + null, + null, + null + ], ["292", "C", "GCO_1", "162", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 70, 70, null, null, null], ["293", "C", "GCO_2", "162", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 70, 70, null, null, null], ["294", "C", "GCO_1", "164", 1, 0, "2", 65.625, 65.625, null, null, null, "2", 48.125, 48.125, null, null, null], @@ -341,16 +2810,168 @@ ["297", "C", "GCO_2", "166", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 26.25, 26.25, null, null, null], ["298", "C", "GCO_1", "168", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 83.125, 83.125, null, null, null], ["299", "C", "GCO_2", "168", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 83.125, 83.125, null, null, null], - ["300", "C", "GCO_1", "170", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 39.375, 39.375, null, null, null], - ["301", "C", "GCO_2", "170", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 39.375, 39.375, null, null, null], + [ + "300", + "C", + "GCO_1", + "170", + 1, + 0, + "2", + 109.375, + 109.375, + null, + null, + null, + "2", + 39.375, + 39.375, + null, + null, + null + ], + [ + "301", + "C", + "GCO_2", + "170", + 1, + 0, + "2", + 109.375, + 109.375, + null, + null, + null, + "2", + 39.375, + 39.375, + null, + null, + null + ], ["302", "C", "GCO_1", "172", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 105, 105, null, null, null], ["303", "C", "GCO_2", "172", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 105, 105, null, null, null], - ["304", "C", "GCO_1", "174", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 83.125, 83.125, null, null, null], - ["305", "C", "GCO_2", "174", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 83.125, 83.125, null, null, null], - ["306", "C", "GCO_1", "176", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 39.375, 39.375, null, null, null], - ["307", "C", "GCO_2", "176", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 39.375, 39.375, null, null, null], - ["308", "C", "GCO_1", "178", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 126.875, 126.875, null, null, null], - ["309", "C", "GCO_2", "178", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 126.875, 126.875, null, null, null], + [ + "304", + "C", + "GCO_1", + "174", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 83.125, + 83.125, + null, + null, + null + ], + [ + "305", + "C", + "GCO_2", + "174", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 83.125, + 83.125, + null, + null, + null + ], + [ + "306", + "C", + "GCO_1", + "176", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 39.375, + 39.375, + null, + null, + null + ], + [ + "307", + "C", + "GCO_2", + "176", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 39.375, + 39.375, + null, + null, + null + ], + [ + "308", + "C", + "GCO_1", + "178", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "309", + "C", + "GCO_2", + "178", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], ["310", "C", "GCO_1", "180", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 61.25, 61.25, null, null, null], ["311", "C", "GCO_2", "180", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 61.25, 61.25, null, null, null], ["312", "C", "GCO_1", "182", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 105, 105, null, null, null], @@ -358,25 +2979,253 @@ ["314", "C", "GCO_1", "184", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 13.125, 26.25, null, null, null], ["315", "C", "GCO_1", "185", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 70, 83.125, null, null, null], ["316", "C", "GCO_1", "186", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 26.25, 39.375, null, null, null], - ["317", "C", "GCO_1", "187", 1, 0, "2", 170.625, 196.875, null, null, null, "2", 74.375, 83.125, null, null, null], + [ + "317", + "C", + "GCO_1", + "187", + 1, + 0, + "2", + 170.625, + 196.875, + null, + null, + null, + "2", + 74.375, + 83.125, + null, + null, + null + ], ["318", "C", "GCO_1", "188", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 91.875, 105, null, null, null], ["319", "C", "GCO_1", "189", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 70, 83.125, null, null, null], ["320", "C", "GCO_1", "190", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 26.25, 39.375, null, null, null], - ["321", "C", "GCO_1", "191", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 113.75, 126.875, null, null, null], - ["322", "C", "GCO_1", "192", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 172.8125, 183.75, null, null, null], - ["323", "C", "GCO_2", "192", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 172.8125, 161.875, null, null, null], + [ + "321", + "C", + "GCO_1", + "191", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 113.75, + 126.875, + null, + null, + null + ], + [ + "322", + "C", + "GCO_1", + "192", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 172.8125, + 183.75, + null, + null, + null + ], + [ + "323", + "C", + "GCO_2", + "192", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 172.8125, + 161.875, + null, + null, + null + ], ["324", "C", "GCO_1", "193", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 48.125, 61.25, null, null, null], - ["325", "C", "GCO_1", "194", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 157.5, 144.375, null, null, null], + [ + "325", + "C", + "GCO_1", + "194", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 157.5, + 144.375, + null, + null, + null + ], ["326", "C", "GCO_1", "195", 1, 0, "2", 100.625, 87.5, null, null, null, "2", 144.375, 144.375, null, null, null], - ["327", "C", "GCO_1", "196", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 170.625, 183.75, null, null, null], + [ + "327", + "C", + "GCO_1", + "196", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 170.625, + 183.75, + null, + null, + null + ], ["328", "C", "GCO_1", "198", 1, 0, "2", 70, 70, null, null, null, "2", 188.125, 183.75, null, null, null], - ["329", "C", "GCO_1", "199", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 153.125, 161.875, null, null, null], - ["330", "C", "GCO_2", "199", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 153.125, 144.375, null, null, null], - ["331", "C", "GCO_1", "200", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 135.625, 144.375, null, null, null], - ["332", "C", "GCO_2", "200", 1, 0, "2", 39.375, 39.375, null, null, null, "2", 135.625, 126.875, null, null, null], - ["333", "C", "GCO_1", "201", 1, 0, "4", 30.625, 30.625, 39.375, 39.375, null, "4", 111.5625, 118.125, 118.125, 126.875, null], + [ + "329", + "C", + "GCO_1", + "199", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 153.125, + 161.875, + null, + null, + null + ], + [ + "330", + "C", + "GCO_2", + "199", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 153.125, + 144.375, + null, + null, + null + ], + [ + "331", + "C", + "GCO_1", + "200", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 135.625, + 144.375, + null, + null, + null + ], + [ + "332", + "C", + "GCO_2", + "200", + 1, + 0, + "2", + 39.375, + 39.375, + null, + null, + null, + "2", + 135.625, + 126.875, + null, + null, + null + ], + [ + "333", + "C", + "GCO_1", + "201", + 1, + 0, + "4", + 30.625, + 30.625, + 39.375, + 39.375, + null, + "4", + 111.5625, + 118.125, + 118.125, + 126.875, + null + ], ["334", "C", "GCO_2", "201", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 111.5625, 105, null, null, null], - ["335", "C", "GCO_1", "202", 1, 0, "4", 48.125, 48.125, 39.375, 39.375, null, "4", 111.5625, 118.125, 118.125, 126.875, null], + [ + "335", + "C", + "GCO_1", + "202", + 1, + 0, + "4", + 48.125, + 48.125, + 39.375, + 39.375, + null, + "4", + 111.5625, + 118.125, + 118.125, + 126.875, + null + ], ["336", "C", "GCO_2", "202", 1, 0, "2", 48.125, 48.125, null, null, null, "2", 111.5625, 105, null, null, null], ["337", "C", "GCO_1", "204", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 87.5, 105, null, null, null], ["338", "C", "GCO_2", "204", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 87.5, 70, null, null, null], @@ -400,40 +3249,468 @@ ["356", "C", "GCO_2", "241", 1, 0, "2", 87.5, 87.5, null, null, null, "2", 94.0625, 83.125, null, null, null], ["357", "C", "GCO_1", "242", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 83.125, 105, null, null, null], ["358", "C", "GCO_2", "242", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 83.125, 61.25, null, null, null], - ["359", "C", "GCO_1", "243", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 50.3125, 61.25, null, null, null], - ["360", "C", "GCO_2", "243", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 50.3125, 39.375, null, null, null], + [ + "359", + "C", + "GCO_1", + "243", + 1, + 0, + "2", + 109.375, + 109.375, + null, + null, + null, + "2", + 50.3125, + 61.25, + null, + null, + null + ], + [ + "360", + "C", + "GCO_2", + "243", + 1, + 0, + "2", + 109.375, + 109.375, + null, + null, + null, + "2", + 50.3125, + 39.375, + null, + null, + null + ], ["361", "C", "GCO_1", "244", 1, 0, "2", 120.3125, 109.375, null, null, null, "2", 61.25, 61.25, null, null, null], - ["362", "C", "GCO_2", "244", 1, 0, "4", 120.3125, 131.25, 131.25, 153.125, null, "4", 61.25, 61.25, 39.375, 39.375, null], - ["363", "C", "GCO_1", "246", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 164.0625, 183.75, null, null, null], - ["364", "C", "GCO_2", "246", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 164.0625, 144.375, null, null, null], - ["365", "C", "GCO_1", "247", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 135.625, 144.375, null, null, null], - ["366", "C", "GCO_2", "247", 1, 0, "2", 131.25, 131.25, null, null, null, "2", 135.625, 126.875, null, null, null], - ["367", "C", "GCO_1", "248", 1, 0, "2", 142.1875, 131.25, null, null, null, "2", 126.875, 126.875, null, null, null], - ["368", "C", "GCO_2", "248", 1, 0, "2", 142.1875, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null], - ["369", "C", "GCO_1", "249", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 115.9375, 126.875, null, null, null], + [ + "362", + "C", + "GCO_2", + "244", + 1, + 0, + "4", + 120.3125, + 131.25, + 131.25, + 153.125, + null, + "4", + 61.25, + 61.25, + 39.375, + 39.375, + null + ], + [ + "363", + "C", + "GCO_1", + "246", + 1, + 0, + "2", + 131.25, + 131.25, + null, + null, + null, + "2", + 164.0625, + 183.75, + null, + null, + null + ], + [ + "364", + "C", + "GCO_2", + "246", + 1, + 0, + "2", + 131.25, + 131.25, + null, + null, + null, + "2", + 164.0625, + 144.375, + null, + null, + null + ], + [ + "365", + "C", + "GCO_1", + "247", + 1, + 0, + "2", + 131.25, + 131.25, + null, + null, + null, + "2", + 135.625, + 144.375, + null, + null, + null + ], + [ + "366", + "C", + "GCO_2", + "247", + 1, + 0, + "2", + 131.25, + 131.25, + null, + null, + null, + "2", + 135.625, + 126.875, + null, + null, + null + ], + [ + "367", + "C", + "GCO_1", + "248", + 1, + 0, + "2", + 142.1875, + 131.25, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "368", + "C", + "GCO_2", + "248", + 1, + 0, + "2", + 142.1875, + 153.125, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "369", + "C", + "GCO_1", + "249", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 115.9375, + 126.875, + null, + null, + null + ], ["370", "C", "GCO_2", "249", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 115.9375, 105, null, null, null], - ["371", "C", "GCO_1", "250", 1, 0, "2", 159.6875, 153.125, null, null, null, "2", 126.875, 126.875, null, null, null], - ["372", "C", "GCO_2", "250", 1, 0, "5", 159.6875, 166.25, 166.25, 175, 175, "5", 126.875, 126.875, 135.625, 135.625, 144.375], + [ + "371", + "C", + "GCO_1", + "250", + 1, + 0, + "2", + 159.6875, + 153.125, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "372", + "C", + "GCO_2", + "250", + 1, + 0, + "5", + 159.6875, + 166.25, + 166.25, + 175, + 175, + "5", + 126.875, + 126.875, + 135.625, + 135.625, + 144.375 + ], ["373", "C", "GCO_1", "251", 1, 0, "2", 185.9375, 175, null, null, null, "2", 144.375, 144.375, null, null, null], - ["374", "C", "GCO_2", "251", 1, 0, "2", 185.9375, 196.875, null, null, null, "2", 144.375, 144.375, null, null, null], - ["375", "C", "GCO_1", "252", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 135.625, 144.375, null, null, null], - ["376", "C", "GCO_2", "252", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 135.625, 126.875, null, null, null], - ["377", "C", "GCO_1", "253", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 115.9375, 126.875, null, null, null], + [ + "374", + "C", + "GCO_2", + "251", + 1, + 0, + "2", + 185.9375, + 196.875, + null, + null, + null, + "2", + 144.375, + 144.375, + null, + null, + null + ], + [ + "375", + "C", + "GCO_1", + "252", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 135.625, + 144.375, + null, + null, + null + ], + [ + "376", + "C", + "GCO_2", + "252", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 135.625, + 126.875, + null, + null, + null + ], + [ + "377", + "C", + "GCO_1", + "253", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 115.9375, + 126.875, + null, + null, + null + ], ["378", "C", "GCO_2", "253", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 115.9375, 105, null, null, null], ["379", "C", "GCO_1", "254", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 94.0625, 105, null, null, null], - ["380", "C", "GCO_2", "254", 1, 0, "2", 196.875, 196.875, null, null, null, "2", 94.0625, 83.125, null, null, null], - ["381", "C", "GCO_1", "255", 1, 0, "2", 218.75, 196.875, null, null, null, "2", 126.875, 126.875, null, null, null], - ["382", "C", "GCO_2", "255", 1, 0, "2", 218.75, 240.625, null, null, null, "2", 126.875, 126.875, null, null, null], + [ + "380", + "C", + "GCO_2", + "254", + 1, + 0, + "2", + 196.875, + 196.875, + null, + null, + null, + "2", + 94.0625, + 83.125, + null, + null, + null + ], + [ + "381", + "C", + "GCO_1", + "255", + 1, + 0, + "2", + 218.75, + 196.875, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], + [ + "382", + "C", + "GCO_2", + "255", + 1, + 0, + "2", + 218.75, + 240.625, + null, + null, + null, + "2", + 126.875, + 126.875, + null, + null, + null + ], ["383", "C", "GCO_1", "256", 1, 0, "2", 207.8125, 196.875, null, null, null, "2", 105, 105, null, null, null], - ["384", "C", "GCO_2", "256", 1, 0, "4", 207.8125, 218.75, 218.75, 240.625, null, "4", 105, 105, 83.125, 83.125, null], - ["385", "C", "GCO_1", "257", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 72.1875, 83.125, null, null, null], - ["386", "C", "GCO_2", "257", 1, 0, "2", 240.625, 240.625, null, null, null, "2", 72.1875, 61.25, null, null, null], + [ + "384", + "C", + "GCO_2", + "256", + 1, + 0, + "4", + 207.8125, + 218.75, + 218.75, + 240.625, + null, + "4", + 105, + 105, + 83.125, + 83.125, + null + ], + [ + "385", + "C", + "GCO_1", + "257", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 72.1875, + 83.125, + null, + null, + null + ], + [ + "386", + "C", + "GCO_2", + "257", + 1, + 0, + "2", + 240.625, + 240.625, + null, + null, + null, + "2", + 72.1875, + 61.25, + null, + null, + null + ], ["387", "C", "GCO_1", "258", 1, 0, "2", 30.625, 30.625, null, null, null, "2", 56.875, 70, null, null, null], ["388", "C", "GCO_1", "259", 1, 0, "2", 65.625, 65.625, null, null, null, "2", 35, 48.125, null, null, null] ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["389", "C", "LV network", null, "0", 1, null, "0", "0"], ["390", "C", "MV Line", null, "0", 1, null, "0", "0"], @@ -574,10 +3851,121 @@ ] }, "TypLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "uline", + "sline", + "InomAir", + "mlei", + "cohl_", + "systp", + "nlnph", + "nneutral", + "frnom", + "rline", + "xline", + "lline", + "rline0", + "xline0", + "lline0", + "rnline", + "xnline", + "lnline", + "rpnline", + "xpnline", + "lpnline", + "bline", + "cline", + "tline", + "gline", + "bline0", + "cline0", + "gline0", + "bnline", + "cnline", + "bpnline", + "cpnline" + ], "Values": [ - ["520", "C", "Overhead ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0734, 0.233639, 0.188, 0.0812, 0.258467, 0.4029, 0.3522, 1.121087, 0, 0.2894, 0.921188, 50.7512, 0.161546, 0.038950, 1.9768, 44.9735, 0.143155, 1.9768, 107.0929, 0.340887, 0, 0], - ["521", "C", "ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0] + [ + "520", + "C", + "Overhead ZY full 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.0734, + 0.233639, + 0.188, + 0.0812, + 0.258467, + 0.4029, + 0.3522, + 1.121087, + 0, + 0.2894, + 0.921188, + 50.7512, + 0.161546, + 0.03895, + 1.9768, + 44.9735, + 0.143155, + 1.9768, + 107.0929, + 0.340887, + 0, + 0 + ], + [ + "521", + "C", + "ZY full 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.0812, + 0.258467, + 0.188, + 0.8224, + 2.61778, + 0.4029, + 0.3522, + 1.121087, + 0, + 0.2471, + 0.786543, + 199.5807, + 0.635285, + 0.001853, + 0.3699, + 135.4058, + 0.43101, + 0.3699, + 116.5693, + 0.371051, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json index 5d4ac642..78a4b926 100644 --- a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json +++ b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer.json @@ -1,46 +1,216 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLodLV": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:i", "c:ss:i", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "fold_id", + "bus1", + "phtech", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "c:sr:i", + "c:ss:i", + "c:st:i", + "m:P:bus1:A", + "m:Q:bus1:A", + "m:P:bus1:B", + "m:Q:bus1:B", + "m:P:bus1:C", + "m:Q:bus1:C", + "m:P:bus1:N", + "m:Q:bus1:N", + "m:ur:bus1:A", + "m:ur:bus1:B", + "m:ur:bus1:C", + "m:ur:bus1:N", + "m:ui:bus1:A", + "m:ui:bus1:B", + "m:ui:bus1:C", + "m:ui:bus1:N", + "m:I:bus1:A", + "m:I:bus1:B", + "m:I:bus1:C", + "m:I:bus1:N", + "m:phii:bus1:A", + "m:phii:bus1:B", + "m:phii:bus1:C", + "m:phii:bus1:N" + ], "Values": [ - ["2", "C", "Low-Voltage Load", null, null, "24", 3, 50, 50, null, 0, 30, 30, null, 0, 10, 10, null, 0, 10, 10, null, 0, null, null, null, 0.05, -3.46944695195361e-18, 0.05, -3.46944695195361e-18, 0.05, -3.46944695195361e-18, 0.05, -3.46944695195361e-18, 0.864794245554, 0.864794245554, 0.864794245554, 0.864794245554, 0.47981484535057, 0.47981484535057, 0.47981484535057, 0.47981484535057, 0.07297257389810, 0.07297257389810, 0.07297257389810, 0.07297257389810, 29.0228809876008, 29.0228809876008, 29.0228809876008, 29.0228809876008] + [ + "2", + "C", + "Low-Voltage Load", + null, + null, + "24", + 3, + 50, + 50, + null, + 0, + 30, + 30, + null, + 0, + 10, + 10, + null, + 0, + 10, + 10, + null, + 0, + null, + null, + null, + 0.05, + -3.46944695195361e-18, + 0.05, + -3.46944695195361e-18, + 0.05, + -3.46944695195361e-18, + 0.05, + -3.46944695195361e-18, + 0.864794245554, + 0.864794245554, + 0.864794245554, + 0.864794245554, + 0.47981484535057, + 0.47981484535057, + 0.47981484535057, + 0.47981484535057, + 0.0729725738981, + 0.0729725738981, + 0.0729725738981, + 0.0729725738981, + 29.0228809876008, + 29.0228809876008, + 29.0228809876008, + 29.0228809876008 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["3", "C", "MV/LV transformer", null, 50] - ] + "Values": [["3", "C", "MV/LV transformer", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:phiuln:A", "m:phiuln:B", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:phiuln:A", + "m:phiuln:B", + "m:phiuln:C" + ], "Values": [ - ["4", "C", "Terminal(1)", "3", null, 0, 1, 0.4, 0, 0, 0, 0.864794245554, 0.47981484535057, 0.864794245554, 0.47981484535057, 0.864794245554, 0.47981484535057, null, null, null], - ["5", "C", "Terminal", "3", null, 0, 0, 20, 0, 0, 0, 1, -6.67567952816065e-20, 1, -6.67567952816065e-20, 1, -6.67567952816065e-20, null, null, null] + [ + "4", + "C", + "Terminal(1)", + "3", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.864794245554, + 0.47981484535057, + 0.864794245554, + 0.47981484535057, + 0.864794245554, + 0.47981484535057, + null, + null, + null + ], + [ + "5", + "C", + "Terminal", + "3", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 1, + -6.67567952816065e-20, + 1, + -6.67567952816065e-20, + 1, + -6.67567952816065e-20, + null, + null, + null + ] ] }, "ElmTr2": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"], - "Values": [ - ["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0] - ] + "Values": [["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0]] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["8", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["8", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -55,7 +225,20 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rY:SIZEROW", + "rY:0", + "rY:1" + ], "Values": [ ["16", "C", "GCO_1", "13", 1, 0, "2", 56.875, 56.875, "2", 262.5, 240.625], ["17", "C", "GCO_1", "14", 1, 0, "2", 83.125, 83.125, "2", 140, 153.125], @@ -64,7 +247,17 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["20", "C", "MV Line", null, "0", 1, null, "0", "0"], ["21", "C", "MV network", null, "0", 1, null, "0", "0"], @@ -81,9 +274,65 @@ ] }, "TypTr2": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "frnom", + "strn", + "nt2ph", + "tr2cn_h", + "tr2cn_l", + "nt2ag", + "utrn_h", + "utrn_l", + "uktr", + "pcutr", + "uk0tr", + "ur0tr", + "pfe", + "curmg", + "zx0hl_n", + "rtox0_n", + "tapchtype", + "tap_side", + "dutap", + "phitr", + "nntap0", + "ntpmn", + "ntpmx" + ], "Values": [ - ["27", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0] + [ + "27", + "C", + "Transformer 100 kVA Dyn11", + null, + 50, + 0.1, + 3, + "D", + "YN", + 11, + 20, + 0.4, + 4, + 2.15, + 4, + 2.15, + 0.21, + 2.5, + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json index 4ffed8ac..4501e0ee 100644 --- a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json +++ b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_LV_grid.json @@ -1,20 +1,31 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "bus1", + "bus2", + "dline", + "nlnum", + "Unom", + "GPScoords:SIZEROW", + "GPScoords:SIZECOL" + ], "Values": [ ["2", "C", "Line(0)", "71", "524", "453", "412", 0.183941, 1, 0.4, "0", "0"], ["3", "C", "Line(10)", "71", "523", "495", "418", 0.143065, 1, 0.4, "0", "0"], ["4", "C", "Line(11)", "71", "524", "498", "424", 0.153284, 1, 0.4, "0", "0"], ["5", "C", "Line(12)", "71", "523", "502", "456", 0.163503, 1, 0.4, "0", "0"], - ["6", "C", "Line(13)", "71", "524", "463", "487", 0.091970, 1, 0.4, "0", "0"], + ["6", "C", "Line(13)", "71", "524", "463", "487", 0.09197, 1, 0.4, "0", "0"], ["7", "C", "Line(14)", "71", "523", "505", "512", 0.173722, 1, 0.4, "0", "0"], - ["8", "C", "Line(15)", "71", "524", "469", "513", 0.091970, 1, 0.4, "0", "0"], + ["8", "C", "Line(15)", "71", "524", "469", "513", 0.09197, 1, 0.4, "0", "0"], ["9", "C", "Line(16)", "71", "523", "478", "514", 0.143065, 1, 0.4, "0", "0"], ["10", "C", "Line(17)", "71", "524", "518", "422", 0.122627, 1, 0.4, "0", "0"], ["11", "C", "Line(18)", "71", "523", "509", "515", 0.183941, 1, 0.4, "0", "0"], @@ -23,14 +34,14 @@ ["14", "C", "Line(21)", "71", "524", "435", "417", 0.112408, 1, 0.4, "0", "0"], ["15", "C", "Line(22)", "71", "523", "438", "402", 0.081751, 1, 0.4, "0", "0"], ["16", "C", "Line(23)", "71", "524", "442", "404", 0.112408, 1, 0.4, "0", "0"], - ["17", "C", "Line(24)", "71", "523", "446", "405", 0.091970, 1, 0.4, "0", "0"], + ["17", "C", "Line(24)", "71", "523", "446", "405", 0.09197, 1, 0.4, "0", "0"], ["18", "C", "Line(25)", "71", "524", "475", "406", 0.081751, 1, 0.4, "0", "0"], ["19", "C", "Line(26)", "71", "523", "481", "407", 0.163503, 1, 0.4, "0", "0"], ["20", "C", "Line(27)", "71", "524", "450", "408", 0.204379, 1, 0.4, "0", "0"], ["21", "C", "Line(28)", "71", "523", "484", "409", 0.153284, 1, 0.4, "0", "0"], - ["22", "C", "Line(30)", "71", "523", "396", "426", 0.091970, 1, 0.4, "0", "0"], - ["23", "C", "Line(31)", "71", "524", "425", "416", 0.091970, 1, 0.4, "0", "0"], - ["24", "C", "Line(32)", "71", "523", "427", "397", 0.091970, 1, 0.4, "0", "0"], + ["22", "C", "Line(30)", "71", "523", "396", "426", 0.09197, 1, 0.4, "0", "0"], + ["23", "C", "Line(31)", "71", "524", "425", "416", 0.09197, 1, 0.4, "0", "0"], + ["24", "C", "Line(32)", "71", "523", "427", "397", 0.09197, 1, 0.4, "0", "0"], ["25", "C", "Line(33)", "71", "524", "398", "429", 0.071532, 1, 0.4, "0", "0"], ["26", "C", "Line(34)", "71", "523", "399", "467", 0.112408, 1, 0.4, "0", "0"], ["27", "C", "Line(35)", "71", "524", "428", "410", 0.081751, 1, 0.4, "0", "0"], @@ -47,12 +58,12 @@ ["38", "C", "Line(45)", "71", "523", "504", "506", 0.071532, 1, 0.4, "0", "0"], ["39", "C", "Line(46)", "71", "524", "507", "470", 0.132846, 1, 0.4, "0", "0"], ["40", "C", "Line(47)", "71", "523", "508", "479", 0.071532, 1, 0.4, "0", "0"], - ["41", "C", "Line(48)", "71", "524", "423", "510", 0.194160, 1, 0.4, "0", "0"], + ["41", "C", "Line(48)", "71", "524", "423", "510", 0.19416, 1, 0.4, "0", "0"], ["42", "C", "Line(49)", "71", "523", "511", "432", 0.102189, 1, 0.4, "0", "0"], ["43", "C", "Line(5)", "71", "524", "488", "413", 0.112408, 1, 0.4, "0", "0"], ["44", "C", "Line(50)", "71", "523", "433", "473", 0.183941, 1, 0.4, "0", "0"], ["45", "C", "Line(51)", "71", "524", "434", "436", 0.061313, 1, 0.4, "0", "0"], - ["46", "C", "Line(52)", "71", "523", "437", "439", 0.194160, 1, 0.4, "0", "0"], + ["46", "C", "Line(52)", "71", "523", "437", "439", 0.19416, 1, 0.4, "0", "0"], ["47", "C", "Line(53)", "71", "524", "440", "443", 0.061313, 1, 0.4, "0", "0"], ["48", "C", "Line(54)", "71", "523", "444", "447", 0.153284, 1, 0.4, "0", "0"], ["49", "C", "Line(55)", "71", "524", "448", "476", 0.051094, 1, 0.4, "0", "0"], @@ -61,115 +72,2294 @@ ["52", "C", "Line(58)", "71", "523", "452", "485", 0.173722, 1, 0.4, "0", "0"], ["53", "C", "Line(59)", "71", "524", "520", "395", 0.051094, 1, 0.4, "0", "0"], ["54", "C", "Line(6)", "71", "524", "491", "414", 0.163503, 1, 0.4, "0", "0"], - ["55", "C", "Line(7)", "71", "523", "460", "415", 0.194160, 1, 0.4, "0", "0"], + ["55", "C", "Line(7)", "71", "523", "460", "415", 0.19416, 1, 0.4, "0", "0"], ["56", "C", "Line(8)", "71", "524", "457", "411", 0.173722, 1, 0.4, "0", "0"], ["57", "C", "Line(9)", "71", "523", "519", "419", 0.081751, 1, 0.4, "0", "0"] ] }, "ElmLodLV": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "fold_id", + "bus1", + "phtech", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "c:sr:r", + "c:sr:i", + "c:ss:r", + "c:ss:i", + "c:st:r", + "c:st:i", + "m:P:bus1:A", + "m:Q:bus1:A", + "m:P:bus1:B", + "m:Q:bus1:B", + "m:P:bus1:C", + "m:Q:bus1:C", + "m:P:bus1:N", + "m:Q:bus1:N", + "m:ur:bus1:A", + "m:ur:bus1:B", + "m:ur:bus1:C", + "m:ur:bus1:N", + "m:ui:bus1:A", + "m:ui:bus1:B", + "m:ui:bus1:C", + "m:ui:bus1:N", + "m:I:bus1:A", + "m:I:bus1:B", + "m:I:bus1:C", + "m:I:bus1:N", + "m:phii:bus1:A", + "m:phii:bus1:B", + "m:phii:bus1:C", + "m:phii:bus1:N" + ], "Values": [ - ["58", "C", "Low-Voltage Load(1)", null, null, "459", 3, 17, 13.6000003814697, null, 0, 5, 4, null, 0, 10, 8, null, 0, 2, 1.60000002384186, null, 0, 0.004, 0.003, 0.008, 0.006, 0.0016, 0.0012, 0.00402634380871, 0.00267795417173, 0.00860854126987, 0.00640585349192, 0.00147534826508, 0.00124204483748, -0.00051023368809, -0.00012585333443, 0.82357617839502, 0.02065695098978, -0.76214453770094, -0.00178394036191, 0.42509922350128, -0.90828268374193, 0.49340377899830, -0.06190554882071, 0.02259208660980, 0.05114275059612, 0.00919786774376, 0.03674387298668, -6.32711231458867, -125.351109009569, 106.98856585999, 74.4934613593475], - ["59", "C", "Low-Voltage Load(10)", null, null, "441", 3, 6, 3, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 3, null, 0, 0, 0, -0, 0, 0.003, 0.005196, 0, 0, 0, 0, 0.00343708677692, 0.00519924529924, -0.00043708681194, -3.09309129497711e-06, 0.76558723905433, -0.04364059025534, -0.78170461918559, -0.00230106967498, 0.43679868213079, -0.94096569326957, 0.48523283755517, 0.06448333438730, 0, 0, 0.02933292561379, 0.02933292561379, 0, 0, 91.6382636963027, -88.3617363036901], - ["60", "C", "Low-Voltage Load(11)", null, null, "421", 3, 9.925281, 8.10000038146973, null, 0, 5, 4, null, 0, 2, 1.39999997615814, null, 0, 3, 2.69999980926514, null, 0, 0.004, 0.003, 0.0014, 0.001428, 0.0027, 0.001307, 0.00396809278151, 0.00300248026879, 0.00140686797591, 0.00141787068334, 0.00271353196356, 0.00132117266424, 1.15070297660765e-05, -5.56832176097651e-06, 0.81767474633782, -0.02445129058522, -0.79716358678646, -0.00581139890212, 0.43975622457147, -0.95570715233390, 0.50323960602153, 0.00137232374812, 0.02320778335033, 0.00904691006270, 0.01386269415549, 0.00927014317708, -8.84123317405202, -136.688737252611, 121.77561939168, -167.463998704183], - ["61", "C", "Low-Voltage Load(12)", null, null, "517", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00480000016754, 0.00359999985669, 0, 0, 0, 0, -1.34607862648697e-21, -2.69604644255836e-21, 0.82279368860597, -0.02266298393744, -0.80227587867552, 2.69751179841199e-19, 0.44360159197186, -0.95358934747421, 0.50898833951770, 3.84230905334417e-19, 0.02779411593668, 0, 0, 0.02779411593668, -8.53898036542068, 0, 0, 171.461019634572], - ["62", "C", "Low-Voltage Load(13)", null, null, "471", 3, 6, 6, null, 0, 0, 0, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0, 0, 0, -0, 0.006, 9.747919e-12, 0, 0, 0, 0, 0.00628733737500, 0.00013992742969, -0.00028733747247, -0.00013992741994, 0.80444967124278, -0.03059444170348, -0.76909853711356, -0.04575060860300, 0.42702772283161, -0.96445602411502, 0.48232469936131, 0.00594428911382, 0, 0, 0.02999658922821, 0.02999658922821, 0, 0, 146.632013179806, -33.3679868201863], - ["63", "C", "Low-Voltage Load(2)", null, null, "462", 3, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 8, 5.59999990463257, null, 0, 0, 0, null, 0, 0, 0, 0.0056, 0.005713, 0, 0, 0, 0, 0.00611796127843, 0.00609595263819, 0, 0, -0.00051796170029, -0.00038280981285, 0.82553396008294, 0.02201114854769, -0.76268385526606, -0.00828655479598, 0.42569815781937, -0.90650113817532, 0.49403843693684, -0.06711260874863, 0, 0.04124248718705, 0, 0.04124248718705, 0, -133.505806591306, 0, 46.494193408687], - ["64", "C", "Low-Voltage Load(3)", null, null, "465", 3, 13.74773, 13.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 10, 10, null, 0, 0.0015, 0.002598, 0.002, -4.455597e-12, 0.01, 6.245085e-13, 0.00138065110391, 0.00253662236875, 0.00198961839198, -8.73255082002046e-05, 0.01043124449675, 0.00022401545844, -0.00030151415182, -7.5236253845363e-05, 0.80524277000662, -0.03000006296912, -0.77054915249085, -0.04221060121185, 0.43071503675549, -0.96081253614973, 0.48664912371671, 0.00447748473871, 0.01369416127492, 0.00897094233133, 0.04957330549428, 0.03170103260948, -33.2993020573034, -89.2752695014207, 146.494810834169, -20.065794312098], - ["65", "C", "Low-Voltage Load(4)", null, null, "486", 3, 11.69615, 11.3999996185303, null, 0, 6, 5.39999961853027, null, 0, 0, 0, null, 0, 6, 6, null, 0, 0.005399, 0.002615, -0, 0, 0.006, 1.931918e-11, 0.00547161713644, 0.00320082596691, 0, 0, 0.00619579581864, -0.00050884057071, -0.00026741415549, -7.66456226016393e-05, 0.74257058213117, -0.04818121496506, -0.77200959309647, 0.00940315435565, 0.43866890162354, -0.93272924532061, 0.49125499982478, 0.07969923720588, 0.03182631624956, 0, 0.02941772100839, 0.01500972326595, 0.24511558264472, 0, 152.225046126354, -112.722059018998], - ["66", "C", "Low-Voltage Load(5)", null, null, "474", 3, 5, 4.5, null, 0, 0, 0, null, 0, 5, 4.5, null, 0, 0, 0, null, 0, 0, 0, 0.0045, 0.002179, 0, 0, 0, 0, 0.00438910801124, 0.00208792591642, 0, 0, 0.00011089200340, 9.15238603230447e-05, 0.79939008867286, -0.02299110560037, -0.77715365407525, -0.00613622912906, 0.43484794046272, -0.94341248396424, 0.49001382723945, 0.02723403630957, 0, 0.02230201370366, 0, 0.02230201370366, 0, -116.836753433633, 0, 63.1632465663598], - ["67", "C", "Low-Voltage Load(6)", null, null, "477", 3, 6, 4.80000019073486, null, 0, 6, 4.80000019073486, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.0048, 0.0036, -0, 0, 0, 0, 0.00478103125742, 0.00413314843518, 0, 0, 0, 0, 1.89682948647312e-05, -0.00053314867782, 0.75130445601835, -0.04519257905743, -0.77611838543090, 0.01079800099813, 0.44003296080634, -0.93397963567086, 0.49070942516554, 0.07269991405069, 0.03143050911216, 0, 0, 0.03143050911216, -10.4858884785927, 0, 0, 169.5141115214], - ["68", "C", "Low-Voltage Load(7)", null, null, "480", 3, 5.196152, 4.5, null, 0, 3, 1.5, null, 0, 2, 2, null, 0, 1, 1, null, 0, 0.0015, 0.002598, 0.002, -4.934897e-12, 0.001, 1.514344e-12, 0.00139603607238, 0.00253788886597, 0.00199507281215, -7.81637396862459e-05, 0.00103725695565, 2.16548550325227e-05, 7.16341406730101e-05, 0.00011669607962, 0.80483303978942, -0.02957645566969, -0.77105094551605, -0.03774703924052, 0.42786863718826, -0.96327142659988, 0.48353785386891, 0.00205885983421, 0.01376007616659, 0.00897096448299, 0.00493605884267, 0.01568435486354, -33.1896002545223, -89.5150582975027, 146.711553170092, 118.421747963015], - ["69", "C", "Low-Voltage Load(8)", null, null, "483", 3, 7, 6.29999971389771, null, 0, 0, 0, null, 0, 0, 0, null, 0, 7, 6.29999971389771, null, 0, 0, 0, -0, 0, 0.0063, 0.003051, 0, 0, 0, 0, 0.00677978926689, 0.00274105779044, -0.00047978959148, 0.00031017195716, 0.76021401870065, -0.04576557095749, -0.77904704386040, -0.00421909877281, 0.43416708730840, -0.94252315156521, 0.48161124730874, 0.07142927079480, 0, 0, 0.03457373730546, 0.03457373730546, 0, 0, 126.262007469615, -53.7379925303781], - ["70", "C", "Low-Voltage Load(9)", null, null, "455", 3, 40, 36, null, 0, 20, 18, null, 0, 10, 9, null, 0, 10, 9, null, 0, 0.018, 0.008717, 0.009, 0.004358, 0.009, 0.004358, 0.01866167346503, 0.00824057892441, 0.00902019602621, 0.00476936394924, 0.00866810971980, 0.00417965321242, -0.00034997963512, 0.00024600210827, 0.79495405446104, -0.00163831743315, -0.77279069624025, 0.03117626345243, 0.43770118814662, -0.90104234981109, 0.50991118531475, -0.01857621680627, 0.09734029733274, 0.04903458847273, 0.04500641994787, 0.05104236385932, 5.01196789779712, -117.971503784015, 120.839159336903, -175.684843797874] + [ + "58", + "C", + "Low-Voltage Load(1)", + null, + null, + "459", + 3, + 17, + 13.6000003814697, + null, + 0, + 5, + 4, + null, + 0, + 10, + 8, + null, + 0, + 2, + 1.60000002384186, + null, + 0, + 0.004, + 0.003, + 0.008, + 0.006, + 0.0016, + 0.0012, + 0.00402634380871, + 0.00267795417173, + 0.00860854126987, + 0.00640585349192, + 0.00147534826508, + 0.00124204483748, + -0.00051023368809, + -0.00012585333443, + 0.82357617839502, + 0.02065695098978, + -0.76214453770094, + -0.00178394036191, + 0.42509922350128, + -0.90828268374193, + 0.4934037789983, + -0.06190554882071, + 0.0225920866098, + 0.05114275059612, + 0.00919786774376, + 0.03674387298668, + -6.32711231458867, + -125.351109009569, + 106.98856585999, + 74.4934613593475 + ], + [ + "59", + "C", + "Low-Voltage Load(10)", + null, + null, + "441", + 3, + 6, + 3, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 6, + 3, + null, + 0, + 0, + 0, + -0, + 0, + 0.003, + 0.005196, + 0, + 0, + 0, + 0, + 0.00343708677692, + 0.00519924529924, + -0.00043708681194, + -3.09309129497711e-6, + 0.76558723905433, + -0.04364059025534, + -0.78170461918559, + -0.00230106967498, + 0.43679868213079, + -0.94096569326957, + 0.48523283755517, + 0.0644833343873, + 0, + 0, + 0.02933292561379, + 0.02933292561379, + 0, + 0, + 91.6382636963027, + -88.3617363036901 + ], + [ + "60", + "C", + "Low-Voltage Load(11)", + null, + null, + "421", + 3, + 9.925281, + 8.10000038146973, + null, + 0, + 5, + 4, + null, + 0, + 2, + 1.39999997615814, + null, + 0, + 3, + 2.69999980926514, + null, + 0, + 0.004, + 0.003, + 0.0014, + 0.001428, + 0.0027, + 0.001307, + 0.00396809278151, + 0.00300248026879, + 0.00140686797591, + 0.00141787068334, + 0.00271353196356, + 0.00132117266424, + 1.15070297660765e-5, + -5.56832176097651e-6, + 0.81767474633782, + -0.02445129058522, + -0.79716358678646, + -0.00581139890212, + 0.43975622457147, + -0.9557071523339, + 0.50323960602153, + 0.00137232374812, + 0.02320778335033, + 0.0090469100627, + 0.01386269415549, + 0.00927014317708, + -8.84123317405202, + -136.688737252611, + 121.77561939168, + -167.463998704183 + ], + [ + "61", + "C", + "Low-Voltage Load(12)", + null, + null, + "517", + 3, + 6, + 4.80000019073486, + null, + 0, + 6, + 4.80000019073486, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.0048, + 0.0036, + -0, + 0, + 0, + 0, + 0.00480000016754, + 0.00359999985669, + 0, + 0, + 0, + 0, + -1.34607862648697e-21, + -2.69604644255836e-21, + 0.82279368860597, + -0.02266298393744, + -0.80227587867552, + 2.69751179841199e-19, + 0.44360159197186, + -0.95358934747421, + 0.5089883395177, + 3.84230905334417e-19, + 0.02779411593668, + 0, + 0, + 0.02779411593668, + -8.53898036542068, + 0, + 0, + 171.461019634572 + ], + [ + "62", + "C", + "Low-Voltage Load(13)", + null, + null, + "471", + 3, + 6, + 6, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 6, + 6, + null, + 0, + 0, + 0, + 0, + -0, + 0.006, + 9.747919e-12, + 0, + 0, + 0, + 0, + 0.006287337375, + 0.00013992742969, + -0.00028733747247, + -0.00013992741994, + 0.80444967124278, + -0.03059444170348, + -0.76909853711356, + -0.045750608603, + 0.42702772283161, + -0.96445602411502, + 0.48232469936131, + 0.00594428911382, + 0, + 0, + 0.02999658922821, + 0.02999658922821, + 0, + 0, + 146.632013179806, + -33.3679868201863 + ], + [ + "63", + "C", + "Low-Voltage Load(2)", + null, + null, + "462", + 3, + 8, + 5.59999990463257, + null, + 0, + 0, + 0, + null, + 0, + 8, + 5.59999990463257, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + 0.0056, + 0.005713, + 0, + 0, + 0, + 0, + 0.00611796127843, + 0.00609595263819, + 0, + 0, + -0.00051796170029, + -0.00038280981285, + 0.82553396008294, + 0.02201114854769, + -0.76268385526606, + -0.00828655479598, + 0.42569815781937, + -0.90650113817532, + 0.49403843693684, + -0.06711260874863, + 0, + 0.04124248718705, + 0, + 0.04124248718705, + 0, + -133.505806591306, + 0, + 46.494193408687 + ], + [ + "64", + "C", + "Low-Voltage Load(3)", + null, + null, + "465", + 3, + 13.74773, + 13.5, + null, + 0, + 3, + 1.5, + null, + 0, + 2, + 2, + null, + 0, + 10, + 10, + null, + 0, + 0.0015, + 0.002598, + 0.002, + -4.455597e-12, + 0.01, + 6.245085e-13, + 0.00138065110391, + 0.00253662236875, + 0.00198961839198, + -8.73255082002046e-5, + 0.01043124449675, + 0.00022401545844, + -0.00030151415182, + -7.5236253845363e-5, + 0.80524277000662, + -0.03000006296912, + -0.77054915249085, + -0.04221060121185, + 0.43071503675549, + -0.96081253614973, + 0.48664912371671, + 0.00447748473871, + 0.01369416127492, + 0.00897094233133, + 0.04957330549428, + 0.03170103260948, + -33.2993020573034, + -89.2752695014207, + 146.494810834169, + -20.065794312098 + ], + [ + "65", + "C", + "Low-Voltage Load(4)", + null, + null, + "486", + 3, + 11.69615, + 11.3999996185303, + null, + 0, + 6, + 5.39999961853027, + null, + 0, + 0, + 0, + null, + 0, + 6, + 6, + null, + 0, + 0.005399, + 0.002615, + -0, + 0, + 0.006, + 1.931918e-11, + 0.00547161713644, + 0.00320082596691, + 0, + 0, + 0.00619579581864, + -0.00050884057071, + -0.00026741415549, + -7.66456226016393e-5, + 0.74257058213117, + -0.04818121496506, + -0.77200959309647, + 0.00940315435565, + 0.43866890162354, + -0.93272924532061, + 0.49125499982478, + 0.07969923720588, + 0.03182631624956, + 0, + 0.02941772100839, + 0.01500972326595, + 0.24511558264472, + 0, + 152.225046126354, + -112.722059018998 + ], + [ + "66", + "C", + "Low-Voltage Load(5)", + null, + null, + "474", + 3, + 5, + 4.5, + null, + 0, + 0, + 0, + null, + 0, + 5, + 4.5, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + 0.0045, + 0.002179, + 0, + 0, + 0, + 0, + 0.00438910801124, + 0.00208792591642, + 0, + 0, + 0.0001108920034, + 9.15238603230447e-5, + 0.79939008867286, + -0.02299110560037, + -0.77715365407525, + -0.00613622912906, + 0.43484794046272, + -0.94341248396424, + 0.49001382723945, + 0.02723403630957, + 0, + 0.02230201370366, + 0, + 0.02230201370366, + 0, + -116.836753433633, + 0, + 63.1632465663598 + ], + [ + "67", + "C", + "Low-Voltage Load(6)", + null, + null, + "477", + 3, + 6, + 4.80000019073486, + null, + 0, + 6, + 4.80000019073486, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.0048, + 0.0036, + -0, + 0, + 0, + 0, + 0.00478103125742, + 0.00413314843518, + 0, + 0, + 0, + 0, + 1.89682948647312e-5, + -0.00053314867782, + 0.75130445601835, + -0.04519257905743, + -0.7761183854309, + 0.01079800099813, + 0.44003296080634, + -0.93397963567086, + 0.49070942516554, + 0.07269991405069, + 0.03143050911216, + 0, + 0, + 0.03143050911216, + -10.4858884785927, + 0, + 0, + 169.5141115214 + ], + [ + "68", + "C", + "Low-Voltage Load(7)", + null, + null, + "480", + 3, + 5.196152, + 4.5, + null, + 0, + 3, + 1.5, + null, + 0, + 2, + 2, + null, + 0, + 1, + 1, + null, + 0, + 0.0015, + 0.002598, + 0.002, + -4.934897e-12, + 0.001, + 1.514344e-12, + 0.00139603607238, + 0.00253788886597, + 0.00199507281215, + -7.81637396862459e-5, + 0.00103725695565, + 2.16548550325227e-5, + 7.16341406730101e-5, + 0.00011669607962, + 0.80483303978942, + -0.02957645566969, + -0.77105094551605, + -0.03774703924052, + 0.42786863718826, + -0.96327142659988, + 0.48353785386891, + 0.00205885983421, + 0.01376007616659, + 0.00897096448299, + 0.00493605884267, + 0.01568435486354, + -33.1896002545223, + -89.5150582975027, + 146.711553170092, + 118.421747963015 + ], + [ + "69", + "C", + "Low-Voltage Load(8)", + null, + null, + "483", + 3, + 7, + 6.29999971389771, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 7, + 6.29999971389771, + null, + 0, + 0, + 0, + -0, + 0, + 0.0063, + 0.003051, + 0, + 0, + 0, + 0, + 0.00677978926689, + 0.00274105779044, + -0.00047978959148, + 0.00031017195716, + 0.76021401870065, + -0.04576557095749, + -0.7790470438604, + -0.00421909877281, + 0.4341670873084, + -0.94252315156521, + 0.48161124730874, + 0.0714292707948, + 0, + 0, + 0.03457373730546, + 0.03457373730546, + 0, + 0, + 126.262007469615, + -53.7379925303781 + ], + [ + "70", + "C", + "Low-Voltage Load(9)", + null, + null, + "455", + 3, + 40, + 36, + null, + 0, + 20, + 18, + null, + 0, + 10, + 9, + null, + 0, + 10, + 9, + null, + 0, + 0.018, + 0.008717, + 0.009, + 0.004358, + 0.009, + 0.004358, + 0.01866167346503, + 0.00824057892441, + 0.00902019602621, + 0.00476936394924, + 0.0086681097198, + 0.00417965321242, + -0.00034997963512, + 0.00024600210827, + 0.79495405446104, + -0.00163831743315, + -0.77279069624025, + 0.03117626345243, + 0.43770118814662, + -0.90104234981109, + 0.50991118531475, + -0.01857621680627, + 0.09734029733274, + 0.04903458847273, + 0.04500641994787, + 0.05104236385932, + 5.01196789779712, + -117.971503784015, + 120.839159336903, + -175.684843797874 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["71", "C", "MV/LV transformer + LV grid", null, 50] - ] + "Values": [["71", "C", "MV/LV transformer + LV grid", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:uln:A", + "m:phiuln:A", + "m:uln:B", + "m:phiuln:B", + "m:uln:C", + "m:phiuln:C" + ], "Values": [ - ["72", "C", "Bus(0)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81793721623607, 0.4412041822185, -0.02136137280616, -0.94735499855454, -0.80035106752893, 0.50748069603594, 0.92957182980840, 28.699122143492, 0.94247306756789, -91.4544093216778, 0.95262421374073, 147.441386901183], - ["73", "C", "Bus(1)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81445746641689, 0.43621208666623, -0.00191916064420, -0.92251744952703, -0.77967453699639, 0.50478868283278, 0.92718958279263, 29.7789104082843, 0.89831185024536, -90.7414171725253, 0.95028116985263, 146.168632114912], - ["74", "C", "Bus(10)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79484408302859, 0.43714801592975, -0.02788088412081, -0.94468097767766, -0.78169955495009, 0.49231345926539, 0.89466300015338, 26.7742400258825, 0.97909831901478, -91.4034347626774, 0.90272308636765, 149.498289012108], - ["75", "C", "Bus(11)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79939018915426, 0.43484785683476, -0.02299124754873, -0.94341251331854, -0.77715362172098, 0.49001397809590, 0.90278557861096, 26.8403982583351, 0.97079289543371, -90.9948268065353, 0.89924029220319, 149.026983670963], - ["76", "C", "Bus(12)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76558726133086, 0.4367986680911, -0.04364062135690, -0.94096569476573, -0.78170461102586, 0.48523287472904, 0.85338805982302, 25.8667093566045, 1.00629852629505, -92.3544195796504, 0.88572008021082, 151.638261220215], - ["77", "C", "Bus(13)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82143521723342, 0.43029989869602, 0.00994258975754, -0.91922807279331, -0.76999500761711, 0.49874845541366, 0.94202418275243, 29.8278630127791, 0.88098767853893, -89.6269744880133, 0.94221320948946, 145.253771319121], - ["78", "C", "Bus(14)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76233682749742, 0.43572412850123, -0.04364298013044, -0.94096609766322, -0.77848829732636, 0.48416142977285, 0.84746138114046, 25.6569854687113, 1.0106305624105, -92.386116479847, 0.88098914554047, 151.8692606967], - ["79", "C", "Bus(15)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75269256409539, 0.44035012482522, -0.04519245216971, -0.93397980272935, -0.77611843943482, 0.49070903185196, 0.83067515688622, 26.285439276089, 1.00787085748259, -93.0201871795051, 0.88859825715482, 151.923567571048], - ["80", "C", "Bus(16)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75130454493232, 0.44003289526401, -0.04519270529496, -0.93397967354063, -0.77611837088354, 0.49070955466665, 0.82660960994482, 26.3840027452214, 1.00823547228838, -93.183465316732, 0.89104962692027, 152.022779575996], - ["81", "C", "Bus(17)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76021410767575, 0.43416703618113, -0.04576569578938, -0.94252315647499, -0.77904701444826, 0.48161139877275, 0.84613045380207, 25.3852076081261, 1.01480328773396, -92.3463777411733, 0.87670274103940, 152.10393811014], - ["82", "C", "Bus(18)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75005111729527, 0.43919434321432, -0.04519471844985, -0.93398028565844, -0.77346058030487, 0.49050607454232, 0.82623566507562, 26.1364277691898, 1.01062631752592, -93.0342098696565, 0.88521431762799, 152.022437919042], - ["83", "C", "Bus(19)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.74257066514948, 0.43866886147818, -0.04818131865370, -0.93272924618234, -0.77200956072295, 0.49125513517140, 0.81632941836543, 26.0870508225879, 1.01406482399171, -93.2553392337365, 0.88316709545611, 152.225040237757], - ["84", "C", "Bus(2)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80902550066001, 0.43327787670445, -0.00167006197017, -0.91941702992737, -0.77735890090719, 0.50312028077866, 0.91455313997023, 29.865965225722, 0.89744504104339, -91.1238243854593, 0.95142691367576, 146.490091457021], - ["85", "C", "Bus(20)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82357665605298, 0.42509884120444, 0.02065647810415, -0.90828293197167, -0.76214440382657, 0.49340431324970, 0.95832845485559, 30.5427504410886, 0.84667478605464, -88.4812444042046, 0.94155037403720, 143.858427719336], - ["86", "C", "Bus(21)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79495457125682, 0.43770081786721, -0.00163886802991, -0.90104257549846, -0.77279055773914, 0.50991183211694, 0.88968871984946, 30.8538679383831, 0.88307626399866, -92.129603804847, 0.96211345958693, 146.681058210149], - ["87", "C", "Bus(22)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82045842248460, 0.42999864511566, 0.01106664057726, -0.91520814843578, -0.76972431567349, 0.49843217176954, 0.94601658644571, 30.1372220098915, 0.87028167874590, -89.4240958603801, 0.94410677792208, 144.860213064577], - ["88", "C", "Bus(23)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553277512109, 0.42569929392666, 0.01969390348627, -0.91281565483787, -0.76268477362796, 0.49403879629199, 0.95680856910698, 30.168264026947, 0.85794553483478, -88.5725007836237, 0.93846834220353, 144.18412139241], - ["89", "C", "Bus(24)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553408138330, 0.42569799372603, 0.02201097653631, -0.90650123564088, -0.76268381782783, 0.49403856852333, 0.96856556199809, 30.5842392284739, 0.83993520558944, -87.9328170669832, 0.94021585386710, 143.356635152657], - ["90", "C", "Bus(25)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81619761855858, 0.43870789901460, -0.01164060072136, -0.93493635647221, -0.79001272840806, 0.50613504109656, 0.92833962131561, 29.2383029155299, 0.92037478479122, -91.1064864657003, 0.95139414002006, 146.805772568337], - ["91", "C", "Bus(26)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79159368675585, 0.43607324932316, -0.02788389085042, -0.94468149816824, -0.77780946446269, 0.48979699839573, 0.88811193086514, 26.3744977039085, 0.98651041801271, -91.3829774103048, 0.89420302532979, 149.914587159598], - ["92", "C", "Bus(27)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81025903717794, 0.42984365637478, -0.02863813067935, -0.96385341182405, -0.78698341119685, 0.48957559190929, 0.93489389179716, 27.1410237619221, 0.96724008597984, -90.4115660279701, 0.90668485768608, 147.570968694754], - ["93", "C", "Bus(28)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81767474633782, 0.43975622457147, -0.02445129058522, -0.95570715233390, -0.79716358678646, 0.50323960602153, 0.93290400144025, 28.0286620438528, 0.95726097230556, -91.1157402805031, 0.93707473249780, 147.617556987267], - ["94", "C", "Bus(29)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81629513659212, 0.44145038881543, -0.02252397536526, -0.95117075149390, -0.79449493326722, 0.50395774843672, 0.92452409025206, 27.8173757188462, 0.96141976335105, -91.259551160442, 0.93434063169805, 148.085579337251], - ["95", "C", "Bus(3)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80707606287023, 0.43039476532926, -0.02950167438917, -0.96192488077198, -0.77718189688532, 0.48783615547151, 0.94268971958676, 26.9165745874959, 0.96557915174521, -89.7634052139063, 0.88742287837322, 146.933385450395], - ["96", "C", "Bus(31)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81619749140667, 0.43870799989876, -0.01164045349899, -0.93493629537412, -0.79001275859506, 0.50613488154292, 0.92833955861707, 29.2383120492255, 0.92037472323197, -91.1064773632473, 0.95139407649786, 146.80578171891], - ["97", "C", "Bus(32)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80902539884599, 0.43327795569353, -0.00166995056681, -0.91941698152600, -0.77735892765125, 0.50312015628541, 0.91455309091794, 29.8659724317978, 0.89744499409505, -91.123817202966, 0.95142686355318, 146.490098714965], - ["98", "C", "Bus(33)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79484393381685, 0.43714813363002, -0.02788069337906, -0.94468090715766, -0.78169958426129, 0.49231326238001, 0.89466292695588, 26.7742512313093, 0.9790982381847, -91.4034234180847, 0.90272301015740, 149.498300258099], - ["99", "C", "Bus(34)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79159350651133, 0.43607339032028, -0.02788366030027, -0.94468141334234, -0.77780949976968, 0.48979676067854, 0.88811184305140, 26.3745112345893, 0.98651031955303, -91.3829636662297, 0.89420293340292, 149.914600765815], - ["100", "C", "Bus(35)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76558723905433, 0.43679868213079, -0.04364059025534, -0.94096569326957, -0.78170461918559, 0.48523283755517, 0.85338805525302, 25.8667110983669, 1.00629851593748, -92.3544174414352, 0.88572006718022, 151.638262960541], - ["101", "C", "Bus(36)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76233665885883, 0.43572425912386, -0.04364274029768, -0.94096602040954, -0.77848832264190, 0.48416118901034, 0.84746129844339, 25.6569989817545, 1.01063046120069, -92.3861026816223, 0.88098905416365, 151.869274262075], - ["102", "C", "Bus(37)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75269253447214, 0.44035014094791, -0.04519241448570, -0.93397980180509, -0.77611845127867, 0.49070898398072, 0.83067515175378, 26.2854414153146, 1.00787084458046, -93.0201844304148, 0.88859823954542, 151.923569775931], - ["103", "C", "Bus(38)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75005056127751, 0.43919474847476, -0.04519393004276, -0.93398004584124, -0.77346066719889, 0.49050526605414, 0.82623539781194, 26.13647226544, 1.01062598156287, -93.0341642214505, 0.88521401045567, 152.022482723879], - ["104", "C", "Bus(39)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79495405446104, 0.43770118814662, -0.00163831743315, -0.90104234981109, -0.77279069624025, 0.50991118531475, 0.88968847598951, 30.8539042366263, 0.88307602878754, -92.1295674301291, 0.96211319837020, 146.68109489718], - ["105", "C", "Bus(4)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80553096533959, 0.42841471355841, -0.03014389715161, -0.96341329820074, -0.77447384499827, 0.48495524504323, 0.94328474727020, 26.763884391181, 0.96707512884224, -89.6115983059155, 0.88089480824467, 146.880023982717], - ["106", "C", "Bus(40)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82357617839502, 0.42509922350128, 0.02065695098978, -0.90828268374193, -0.76214453770094, 0.49340377899830, 0.95832821825242, 30.5427831152403, 0.84667458218733, -88.4812122863194, 0.94155015137197, 143.858460481659], - ["107", "C", "Bus(41)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553396008294, 0.42569815781937, 0.02201114854769, -0.90650113817532, -0.76268385526606, 0.49403843693684, 0.96856548703653, 30.5842506572274, 0.83993514878292, -87.93280802082, 0.94021581726242, 143.356646214801], - ["108", "C", "Bus(42)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80524277000662, 0.43071503675549, -0.03000006296912, -0.96081253614973, -0.77054915249085, 0.48664912371671, 0.94860722490334, 26.7006966205987, 0.96536724704694, -89.2752696290642, 0.87347955597937, 146.494810837748], - ["109", "C", "Bus(43)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82143511326499, 0.43030001634086, 0.00994272346746, -0.91922800921048, -0.76999504469159, 0.49874833574285, 0.94202412998182, 29.8278715466179, 0.88098763792380, -89.6269665291368, 0.94221316864251, 145.253780093466], - ["110", "C", "Bus(44)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444967124278, 0.42702772283161, -0.03059444170348, -0.96445602411502, -0.76909853711356, 0.48232469936131, 0.94876328660073, 26.3480905836224, 0.97051866407077, -89.1052004155373, 0.86612384850441, 146.632013272892], - ["111", "C", "Bus(45)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.79939008867286, 0.43484794046272, -0.02299110560037, -0.94341248396424, -0.77715365407525, 0.49001382723945, 0.90278554681081, 26.8404063041136, 0.97079284823310, -90.9948175982877, 0.89924023734692, 149.026991659134], - ["112", "C", "Bus(46)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.75130445601835, 0.44003296080634, -0.04519257905743, -0.93397963567086, -0.77611838543090, 0.49070942516554, 0.82660956755012, 26.3840098788263, 1.00823541937514, -93.1834580030991, 0.89104957808923, 152.022786768123], - ["113", "C", "Bus(47)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80483303978942, 0.42786863718826, -0.02957645566969, -0.96327142659988, -0.77105094551605, 0.48353785386891, 0.94406311021478, 26.8103984134521, 0.96536486384311, -89.5150584388771, 0.87724377493125, 146.711553256857], - ["114", "C", "Bus(48)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.76021401870065, 0.43416708730840, -0.04576557095749, -0.94252315156521, -0.77904704386040, 0.48161124730874, 0.84613043593718, 25.3852144481553, 1.01480324406298, -92.3463691195562, 0.87670268526195, 152.103944979368], - ["115", "C", "Bus(49)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.74257058213117, 0.43866890162354, -0.04818121496506, -0.93272924532061, -0.77200959309647, 0.49125499982478, 0.81632940478896, 26.0870566573067, 1.01406478679667, -93.2553315458986, 0.88316704401008, 152.225046310839], - ["116", "C", "Bus(5)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80524288877970, 0.43071493220714, -0.03000022191621, -0.96081260093140, -0.77054913047406, 0.48664927398894, 0.94860728774770, 26.7006874331086, 0.96536731298968, -89.2752787736441, 0.87347961409153, 146.494801784111], - ["117", "C", "Bus(50)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82045822535394, 0.42999880118941, 0.01106684477185, -0.91520804970654, -0.76972436927742, 0.49843194270782, 0.94601648969666, 30.1372356735194, 0.87028159161838, -89.4240823461164, 0.94410668426596, 144.860226771642], - ["118", "C", "Bus(51)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.82553235095120, 0.42569963230553, 0.01969432449677, -0.91281543579761, -0.76268489295453, 0.49403832144109, 0.95680836029690, 30.1682929258771, 0.85794535245483, -88.5724722805506, 0.93846814492089, 144.184150415699], - ["119", "C", "Bus(52)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.81025897460912, 0.42984372190058, -0.02863802684726, -0.96385338480909, -0.78698342786710, 0.48957549600971, 0.93489386186150, 27.1410295848261, 0.96724005290499, -90.4115603304035, 0.90668482946613, 147.570974339661], - ["120", "C", "Bus(53)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80707573050062, 0.43039505623957, -0.02950123440401, -0.96192469845158, -0.77718195745223, 0.48783573534718, 0.94268954394233, 26.9166000554346, 0.96557896797855, -89.7633798876611, 0.88742271333402, 146.933410633152], - ["121", "C", "Bus(54)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80553088999997, 0.42841479790408, -0.03014375544344, -0.96341326329526, -0.77447386021990, 0.48495512110020, 0.94328471087183, 26.7638922737467, 0.96707507965790, -89.611590814442, 0.88089477460535, 146.880031005369], - ["122", "C", "Bus(55)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444940009273, 0.42702872946167, -0.03059333063059, -0.96445521084775, -0.77257821159150, 0.48293852499588, 0.94370526043305, 26.6571224833845, 0.96812631898940, -89.50560809212, 0.87632563217961, 146.842201526817], - ["123", "C", "Bus(56)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80600485016847, 0.43804503962308, -0.02230276692308, -0.94734086739845, -0.78217529236864, 0.49599147554042, 0.90847681703425, 26.9807984404423, 0.97339720542925, -91.1014090298127, 0.90950529943541, 148.876072885635], - ["124", "C", "Bus(6)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444948394936, 0.42702863448708, -0.03059349176042, -0.96445525032637, -0.77257819577602, 0.48293866461283, 0.94370530161431, 26.6571135719083, 0.96812637496454, -89.5056165444174, 0.87632566986834, 146.842193617238], - ["125", "C", "Bus(7)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80444978913070, 0.42702761678525, -0.03059460151541, -0.96445609042342, -0.76909851593298, 0.48232484773532, 0.94876334951539, 26.3480813923484, 0.97051873038749, -89.1052095559006, 0.86612390604872, 146.63200421883], - ["126", "C", "Bus(8)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80483309689473, 0.42786857203300, -0.02957656456425, -0.96327145360936, -0.77105093402146, 0.48353794787446, 0.94406313799453, 26.8103923664565, 0.96536490127732, -89.5150641714339, 0.87724380019234, 146.71154787344], - ["127", "C", "Bus(9)", "71", null, 1, 1, 0.4, 0, 0, 0, 0.80600496505275, 0.43804494428582, -0.02230292536470, -0.94734090153743, -0.78217525425995, 0.49599164507572, 0.90847685340191, 26.9807894401489, 0.97339725828385, -91.1014193416434, 0.90950536169281, 148.876063906454], - ["128", "C", "Terminal(1)", "71", null, 0, 1, 0.4, 0, 0, 0, 0.82279368860597, 0.44360159197186, -0.02266298393744, -0.95358934747421, -0.80227587867552, 0.50898833951770, 0.93475762976816, 28.3309152256814, 0.95385861345235, -91.3614339805934, 0.95011352756898, 147.607709519518], - ["129", "C", "Terminal", "71", null, 0, 0, 20, 0, 0, 0, 0.99999913609264, -2.87005016241498e-06, -0.49999708250997, -0.86602471692507, -0.50000205358267, 0.86602758697523, 0, 0, 0, 0, 0, 0] + [ + "72", + "C", + "Bus(0)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81793721623607, + 0.4412041822185, + -0.02136137280616, + -0.94735499855454, + -0.80035106752893, + 0.50748069603594, + 0.9295718298084, + 28.699122143492, + 0.94247306756789, + -91.4544093216778, + 0.95262421374073, + 147.441386901183 + ], + [ + "73", + "C", + "Bus(1)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81445746641689, + 0.43621208666623, + -0.0019191606442, + -0.92251744952703, + -0.77967453699639, + 0.50478868283278, + 0.92718958279263, + 29.7789104082843, + 0.89831185024536, + -90.7414171725253, + 0.95028116985263, + 146.168632114912 + ], + [ + "74", + "C", + "Bus(10)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79484408302859, + 0.43714801592975, + -0.02788088412081, + -0.94468097767766, + -0.78169955495009, + 0.49231345926539, + 0.89466300015338, + 26.7742400258825, + 0.97909831901478, + -91.4034347626774, + 0.90272308636765, + 149.498289012108 + ], + [ + "75", + "C", + "Bus(11)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79939018915426, + 0.43484785683476, + -0.02299124754873, + -0.94341251331854, + -0.77715362172098, + 0.4900139780959, + 0.90278557861096, + 26.8403982583351, + 0.97079289543371, + -90.9948268065353, + 0.89924029220319, + 149.026983670963 + ], + [ + "76", + "C", + "Bus(12)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.76558726133086, + 0.4367986680911, + -0.0436406213569, + -0.94096569476573, + -0.78170461102586, + 0.48523287472904, + 0.85338805982302, + 25.8667093566045, + 1.00629852629505, + -92.3544195796504, + 0.88572008021082, + 151.638261220215 + ], + [ + "77", + "C", + "Bus(13)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82143521723342, + 0.43029989869602, + 0.00994258975754, + -0.91922807279331, + -0.76999500761711, + 0.49874845541366, + 0.94202418275243, + 29.8278630127791, + 0.88098767853893, + -89.6269744880133, + 0.94221320948946, + 145.253771319121 + ], + [ + "78", + "C", + "Bus(14)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.76233682749742, + 0.43572412850123, + -0.04364298013044, + -0.94096609766322, + -0.77848829732636, + 0.48416142977285, + 0.84746138114046, + 25.6569854687113, + 1.0106305624105, + -92.386116479847, + 0.88098914554047, + 151.8692606967 + ], + [ + "79", + "C", + "Bus(15)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.75269256409539, + 0.44035012482522, + -0.04519245216971, + -0.93397980272935, + -0.77611843943482, + 0.49070903185196, + 0.83067515688622, + 26.285439276089, + 1.00787085748259, + -93.0201871795051, + 0.88859825715482, + 151.923567571048 + ], + [ + "80", + "C", + "Bus(16)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.75130454493232, + 0.44003289526401, + -0.04519270529496, + -0.93397967354063, + -0.77611837088354, + 0.49070955466665, + 0.82660960994482, + 26.3840027452214, + 1.00823547228838, + -93.183465316732, + 0.89104962692027, + 152.022779575996 + ], + [ + "81", + "C", + "Bus(17)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.76021410767575, + 0.43416703618113, + -0.04576569578938, + -0.94252315647499, + -0.77904701444826, + 0.48161139877275, + 0.84613045380207, + 25.3852076081261, + 1.01480328773396, + -92.3463777411733, + 0.8767027410394, + 152.10393811014 + ], + [ + "82", + "C", + "Bus(18)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.75005111729527, + 0.43919434321432, + -0.04519471844985, + -0.93398028565844, + -0.77346058030487, + 0.49050607454232, + 0.82623566507562, + 26.1364277691898, + 1.01062631752592, + -93.0342098696565, + 0.88521431762799, + 152.022437919042 + ], + [ + "83", + "C", + "Bus(19)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.74257066514948, + 0.43866886147818, + -0.0481813186537, + -0.93272924618234, + -0.77200956072295, + 0.4912551351714, + 0.81632941836543, + 26.0870508225879, + 1.01406482399171, + -93.2553392337365, + 0.88316709545611, + 152.225040237757 + ], + [ + "84", + "C", + "Bus(2)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80902550066001, + 0.43327787670445, + -0.00167006197017, + -0.91941702992737, + -0.77735890090719, + 0.50312028077866, + 0.91455313997023, + 29.865965225722, + 0.89744504104339, + -91.1238243854593, + 0.95142691367576, + 146.490091457021 + ], + [ + "85", + "C", + "Bus(20)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82357665605298, + 0.42509884120444, + 0.02065647810415, + -0.90828293197167, + -0.76214440382657, + 0.4934043132497, + 0.95832845485559, + 30.5427504410886, + 0.84667478605464, + -88.4812444042046, + 0.9415503740372, + 143.858427719336 + ], + [ + "86", + "C", + "Bus(21)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79495457125682, + 0.43770081786721, + -0.00163886802991, + -0.90104257549846, + -0.77279055773914, + 0.50991183211694, + 0.88968871984946, + 30.8538679383831, + 0.88307626399866, + -92.129603804847, + 0.96211345958693, + 146.681058210149 + ], + [ + "87", + "C", + "Bus(22)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.8204584224846, + 0.42999864511566, + 0.01106664057726, + -0.91520814843578, + -0.76972431567349, + 0.49843217176954, + 0.94601658644571, + 30.1372220098915, + 0.8702816787459, + -89.4240958603801, + 0.94410677792208, + 144.860213064577 + ], + [ + "88", + "C", + "Bus(23)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82553277512109, + 0.42569929392666, + 0.01969390348627, + -0.91281565483787, + -0.76268477362796, + 0.49403879629199, + 0.95680856910698, + 30.168264026947, + 0.85794553483478, + -88.5725007836237, + 0.93846834220353, + 144.18412139241 + ], + [ + "89", + "C", + "Bus(24)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.8255340813833, + 0.42569799372603, + 0.02201097653631, + -0.90650123564088, + -0.76268381782783, + 0.49403856852333, + 0.96856556199809, + 30.5842392284739, + 0.83993520558944, + -87.9328170669832, + 0.9402158538671, + 143.356635152657 + ], + [ + "90", + "C", + "Bus(25)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81619761855858, + 0.4387078990146, + -0.01164060072136, + -0.93493635647221, + -0.79001272840806, + 0.50613504109656, + 0.92833962131561, + 29.2383029155299, + 0.92037478479122, + -91.1064864657003, + 0.95139414002006, + 146.805772568337 + ], + [ + "91", + "C", + "Bus(26)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79159368675585, + 0.43607324932316, + -0.02788389085042, + -0.94468149816824, + -0.77780946446269, + 0.48979699839573, + 0.88811193086514, + 26.3744977039085, + 0.98651041801271, + -91.3829774103048, + 0.89420302532979, + 149.914587159598 + ], + [ + "92", + "C", + "Bus(27)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81025903717794, + 0.42984365637478, + -0.02863813067935, + -0.96385341182405, + -0.78698341119685, + 0.48957559190929, + 0.93489389179716, + 27.1410237619221, + 0.96724008597984, + -90.4115660279701, + 0.90668485768608, + 147.570968694754 + ], + [ + "93", + "C", + "Bus(28)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81767474633782, + 0.43975622457147, + -0.02445129058522, + -0.9557071523339, + -0.79716358678646, + 0.50323960602153, + 0.93290400144025, + 28.0286620438528, + 0.95726097230556, + -91.1157402805031, + 0.9370747324978, + 147.617556987267 + ], + [ + "94", + "C", + "Bus(29)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81629513659212, + 0.44145038881543, + -0.02252397536526, + -0.9511707514939, + -0.79449493326722, + 0.50395774843672, + 0.92452409025206, + 27.8173757188462, + 0.96141976335105, + -91.259551160442, + 0.93434063169805, + 148.085579337251 + ], + [ + "95", + "C", + "Bus(3)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80707606287023, + 0.43039476532926, + -0.02950167438917, + -0.96192488077198, + -0.77718189688532, + 0.48783615547151, + 0.94268971958676, + 26.9165745874959, + 0.96557915174521, + -89.7634052139063, + 0.88742287837322, + 146.933385450395 + ], + [ + "96", + "C", + "Bus(31)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81619749140667, + 0.43870799989876, + -0.01164045349899, + -0.93493629537412, + -0.79001275859506, + 0.50613488154292, + 0.92833955861707, + 29.2383120492255, + 0.92037472323197, + -91.1064773632473, + 0.95139407649786, + 146.80578171891 + ], + [ + "97", + "C", + "Bus(32)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80902539884599, + 0.43327795569353, + -0.00166995056681, + -0.919416981526, + -0.77735892765125, + 0.50312015628541, + 0.91455309091794, + 29.8659724317978, + 0.89744499409505, + -91.123817202966, + 0.95142686355318, + 146.490098714965 + ], + [ + "98", + "C", + "Bus(33)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79484393381685, + 0.43714813363002, + -0.02788069337906, + -0.94468090715766, + -0.78169958426129, + 0.49231326238001, + 0.89466292695588, + 26.7742512313093, + 0.9790982381847, + -91.4034234180847, + 0.9027230101574, + 149.498300258099 + ], + [ + "99", + "C", + "Bus(34)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79159350651133, + 0.43607339032028, + -0.02788366030027, + -0.94468141334234, + -0.77780949976968, + 0.48979676067854, + 0.8881118430514, + 26.3745112345893, + 0.98651031955303, + -91.3829636662297, + 0.89420293340292, + 149.914600765815 + ], + [ + "100", + "C", + "Bus(35)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.76558723905433, + 0.43679868213079, + -0.04364059025534, + -0.94096569326957, + -0.78170461918559, + 0.48523283755517, + 0.85338805525302, + 25.8667110983669, + 1.00629851593748, + -92.3544174414352, + 0.88572006718022, + 151.638262960541 + ], + [ + "101", + "C", + "Bus(36)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.76233665885883, + 0.43572425912386, + -0.04364274029768, + -0.94096602040954, + -0.7784883226419, + 0.48416118901034, + 0.84746129844339, + 25.6569989817545, + 1.01063046120069, + -92.3861026816223, + 0.88098905416365, + 151.869274262075 + ], + [ + "102", + "C", + "Bus(37)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.75269253447214, + 0.44035014094791, + -0.0451924144857, + -0.93397980180509, + -0.77611845127867, + 0.49070898398072, + 0.83067515175378, + 26.2854414153146, + 1.00787084458046, + -93.0201844304148, + 0.88859823954542, + 151.923569775931 + ], + [ + "103", + "C", + "Bus(38)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.75005056127751, + 0.43919474847476, + -0.04519393004276, + -0.93398004584124, + -0.77346066719889, + 0.49050526605414, + 0.82623539781194, + 26.13647226544, + 1.01062598156287, + -93.0341642214505, + 0.88521401045567, + 152.022482723879 + ], + [ + "104", + "C", + "Bus(39)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79495405446104, + 0.43770118814662, + -0.00163831743315, + -0.90104234981109, + -0.77279069624025, + 0.50991118531475, + 0.88968847598951, + 30.8539042366263, + 0.88307602878754, + -92.1295674301291, + 0.9621131983702, + 146.68109489718 + ], + [ + "105", + "C", + "Bus(4)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80553096533959, + 0.42841471355841, + -0.03014389715161, + -0.96341329820074, + -0.77447384499827, + 0.48495524504323, + 0.9432847472702, + 26.763884391181, + 0.96707512884224, + -89.6115983059155, + 0.88089480824467, + 146.880023982717 + ], + [ + "106", + "C", + "Bus(40)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82357617839502, + 0.42509922350128, + 0.02065695098978, + -0.90828268374193, + -0.76214453770094, + 0.4934037789983, + 0.95832821825242, + 30.5427831152403, + 0.84667458218733, + -88.4812122863194, + 0.94155015137197, + 143.858460481659 + ], + [ + "107", + "C", + "Bus(41)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82553396008294, + 0.42569815781937, + 0.02201114854769, + -0.90650113817532, + -0.76268385526606, + 0.49403843693684, + 0.96856548703653, + 30.5842506572274, + 0.83993514878292, + -87.93280802082, + 0.94021581726242, + 143.356646214801 + ], + [ + "108", + "C", + "Bus(42)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80524277000662, + 0.43071503675549, + -0.03000006296912, + -0.96081253614973, + -0.77054915249085, + 0.48664912371671, + 0.94860722490334, + 26.7006966205987, + 0.96536724704694, + -89.2752696290642, + 0.87347955597937, + 146.494810837748 + ], + [ + "109", + "C", + "Bus(43)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82143511326499, + 0.43030001634086, + 0.00994272346746, + -0.91922800921048, + -0.76999504469159, + 0.49874833574285, + 0.94202412998182, + 29.8278715466179, + 0.8809876379238, + -89.6269665291368, + 0.94221316864251, + 145.253780093466 + ], + [ + "110", + "C", + "Bus(44)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80444967124278, + 0.42702772283161, + -0.03059444170348, + -0.96445602411502, + -0.76909853711356, + 0.48232469936131, + 0.94876328660073, + 26.3480905836224, + 0.97051866407077, + -89.1052004155373, + 0.86612384850441, + 146.632013272892 + ], + [ + "111", + "C", + "Bus(45)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.79939008867286, + 0.43484794046272, + -0.02299110560037, + -0.94341248396424, + -0.77715365407525, + 0.49001382723945, + 0.90278554681081, + 26.8404063041136, + 0.9707928482331, + -90.9948175982877, + 0.89924023734692, + 149.026991659134 + ], + [ + "112", + "C", + "Bus(46)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.75130445601835, + 0.44003296080634, + -0.04519257905743, + -0.93397963567086, + -0.7761183854309, + 0.49070942516554, + 0.82660956755012, + 26.3840098788263, + 1.00823541937514, + -93.1834580030991, + 0.89104957808923, + 152.022786768123 + ], + [ + "113", + "C", + "Bus(47)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80483303978942, + 0.42786863718826, + -0.02957645566969, + -0.96327142659988, + -0.77105094551605, + 0.48353785386891, + 0.94406311021478, + 26.8103984134521, + 0.96536486384311, + -89.5150584388771, + 0.87724377493125, + 146.711553256857 + ], + [ + "114", + "C", + "Bus(48)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.76021401870065, + 0.4341670873084, + -0.04576557095749, + -0.94252315156521, + -0.7790470438604, + 0.48161124730874, + 0.84613043593718, + 25.3852144481553, + 1.01480324406298, + -92.3463691195562, + 0.87670268526195, + 152.103944979368 + ], + [ + "115", + "C", + "Bus(49)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.74257058213117, + 0.43866890162354, + -0.04818121496506, + -0.93272924532061, + -0.77200959309647, + 0.49125499982478, + 0.81632940478896, + 26.0870566573067, + 1.01406478679667, + -93.2553315458986, + 0.88316704401008, + 152.225046310839 + ], + [ + "116", + "C", + "Bus(5)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.8052428887797, + 0.43071493220714, + -0.03000022191621, + -0.9608126009314, + -0.77054913047406, + 0.48664927398894, + 0.9486072877477, + 26.7006874331086, + 0.96536731298968, + -89.2752787736441, + 0.87347961409153, + 146.494801784111 + ], + [ + "117", + "C", + "Bus(50)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.82045822535394, + 0.42999880118941, + 0.01106684477185, + -0.91520804970654, + -0.76972436927742, + 0.49843194270782, + 0.94601648969666, + 30.1372356735194, + 0.87028159161838, + -89.4240823461164, + 0.94410668426596, + 144.860226771642 + ], + [ + "118", + "C", + "Bus(51)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.8255323509512, + 0.42569963230553, + 0.01969432449677, + -0.91281543579761, + -0.76268489295453, + 0.49403832144109, + 0.9568083602969, + 30.1682929258771, + 0.85794535245483, + -88.5724722805506, + 0.93846814492089, + 144.184150415699 + ], + [ + "119", + "C", + "Bus(52)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.81025897460912, + 0.42984372190058, + -0.02863802684726, + -0.96385338480909, + -0.7869834278671, + 0.48957549600971, + 0.9348938618615, + 27.1410295848261, + 0.96724005290499, + -90.4115603304035, + 0.90668482946613, + 147.570974339661 + ], + [ + "120", + "C", + "Bus(53)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80707573050062, + 0.43039505623957, + -0.02950123440401, + -0.96192469845158, + -0.77718195745223, + 0.48783573534718, + 0.94268954394233, + 26.9166000554346, + 0.96557896797855, + -89.7633798876611, + 0.88742271333402, + 146.933410633152 + ], + [ + "121", + "C", + "Bus(54)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80553088999997, + 0.42841479790408, + -0.03014375544344, + -0.96341326329526, + -0.7744738602199, + 0.4849551211002, + 0.94328471087183, + 26.7638922737467, + 0.9670750796579, + -89.611590814442, + 0.88089477460535, + 146.880031005369 + ], + [ + "122", + "C", + "Bus(55)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80444940009273, + 0.42702872946167, + -0.03059333063059, + -0.96445521084775, + -0.7725782115915, + 0.48293852499588, + 0.94370526043305, + 26.6571224833845, + 0.9681263189894, + -89.50560809212, + 0.87632563217961, + 146.842201526817 + ], + [ + "123", + "C", + "Bus(56)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80600485016847, + 0.43804503962308, + -0.02230276692308, + -0.94734086739845, + -0.78217529236864, + 0.49599147554042, + 0.90847681703425, + 26.9807984404423, + 0.97339720542925, + -91.1014090298127, + 0.90950529943541, + 148.876072885635 + ], + [ + "124", + "C", + "Bus(6)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80444948394936, + 0.42702863448708, + -0.03059349176042, + -0.96445525032637, + -0.77257819577602, + 0.48293866461283, + 0.94370530161431, + 26.6571135719083, + 0.96812637496454, + -89.5056165444174, + 0.87632566986834, + 146.842193617238 + ], + [ + "125", + "C", + "Bus(7)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.8044497891307, + 0.42702761678525, + -0.03059460151541, + -0.96445609042342, + -0.76909851593298, + 0.48232484773532, + 0.94876334951539, + 26.3480813923484, + 0.97051873038749, + -89.1052095559006, + 0.86612390604872, + 146.63200421883 + ], + [ + "126", + "C", + "Bus(8)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80483309689473, + 0.427868572033, + -0.02957656456425, + -0.96327145360936, + -0.77105093402146, + 0.48353794787446, + 0.94406313799453, + 26.8103923664565, + 0.96536490127732, + -89.5150641714339, + 0.87724380019234, + 146.71154787344 + ], + [ + "127", + "C", + "Bus(9)", + "71", + null, + 1, + 1, + 0.4, + 0, + 0, + 0, + 0.80600496505275, + 0.43804494428582, + -0.0223029253647, + -0.94734090153743, + -0.78217525425995, + 0.49599164507572, + 0.90847685340191, + 26.9807894401489, + 0.97339725828385, + -91.1014193416434, + 0.90950536169281, + 148.876063906454 + ], + [ + "128", + "C", + "Terminal(1)", + "71", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.82279368860597, + 0.44360159197186, + -0.02266298393744, + -0.95358934747421, + -0.80227587867552, + 0.5089883395177, + 0.93475762976816, + 28.3309152256814, + 0.95385861345235, + -91.3614339805934, + 0.95011352756898, + 147.607709519518 + ], + [ + "129", + "C", + "Terminal", + "71", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.99999913609264, + -2.87005016241498e-6, + -0.49999708250997, + -0.86602471692507, + -0.50000205358267, + 0.86602758697523, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] }, "ElmTr2": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"], - "Values": [ - ["130", "C", "2-Winding Transformer", "71", "525", "522", "516", 0] - ] + "Values": [["130", "C", "2-Winding Transformer", "71", "525", "522", "516", 0]] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["131", "C", "External Grid", "71", "521", null, 0, 0, 0, 0, "PV", 0, 1, 0] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["131", "C", "External Grid", "71", "521", null, 0, 0, 0, 0, "PV", 0, 1, 0]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["132", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["132", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -308,7 +2498,26 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rX:2", "rX:3", "rX:4", "rY:SIZEROW", "rY:0", "rY:1", "rY:2", "rY:3", "rY:4"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rX:2", + "rX:3", + "rX:4", + "rY:SIZEROW", + "rY:0", + "rY:1", + "rY:2", + "rY:3", + "rY:4" + ], "Values": [ ["264", "C", "GCO_1", "136", 1, 0, "2", 70, 70, null, null, null, "0", null, null, null, null, null], ["265", "C", "GCO_2", "136", 1, 0, "2", 70, 70, null, null, null, "0", null, null, null, null, null], @@ -396,8 +2605,46 @@ ["347", "C", "GCO_2", "238", 1, 0, "2", 70, 70, null, null, null, "2", 122.5, 83.125, null, null, null], ["348", "C", "GCO_1", "239", 1, 0, "2", 78.75, 70, null, null, null, "0", null, null, null, null, null], ["349", "C", "GCO_2", "239", 1, 0, "2", 78.75, 87.5, null, null, null, "0", null, null, null, null, null], - ["350", "C", "GCO_1", "240", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 45.9375, 83.125, null, null, null], - ["351", "C", "GCO_2", "240", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 45.9375, 26.25, null, null, null], + [ + "350", + "C", + "GCO_1", + "240", + 1, + 0, + "2", + 109.375, + 109.375, + null, + null, + null, + "2", + 45.9375, + 83.125, + null, + null, + null + ], + [ + "351", + "C", + "GCO_2", + "240", + 1, + 0, + "2", + 109.375, + 109.375, + null, + null, + null, + "2", + 45.9375, + 26.25, + null, + null, + null + ], ["352", "C", "GCO_1", "241", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 17.5, 26.25, null, null, null], ["353", "C", "GCO_2", "241", 1, 0, "2", 109.375, 109.375, null, null, null, "2", 17.5, 8.75, null, null, null], ["354", "C", "GCO_1", "242", 1, 0, "2", 109.375, 109.375, null, null, null, "0", null, null, null, null, null], @@ -412,8 +2659,46 @@ ["363", "C", "GCO_2", "247", 1, 0, "2", 131.25, 131.25, null, null, null, "0", null, null, null, null, null], ["364", "C", "GCO_1", "248", 1, 0, "2", 142.1875, 131.25, null, null, null, "0", null, null, null, null, null], ["365", "C", "GCO_2", "248", 1, 0, "4", 142.1875, 153.125, 153.125, 175, null, "0", null, null, null, null, null], - ["366", "C", "GCO_1", "250", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 45.9375, 83.125, null, null, null], - ["367", "C", "GCO_2", "250", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 45.9375, 26.25, null, null, null], + [ + "366", + "C", + "GCO_1", + "250", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 45.9375, + 83.125, + null, + null, + null + ], + [ + "367", + "C", + "GCO_2", + "250", + 1, + 0, + "2", + 153.125, + 153.125, + null, + null, + null, + "2", + 45.9375, + 26.25, + null, + null, + null + ], ["368", "C", "GCO_1", "251", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 17.5, 26.25, null, null, null], ["369", "C", "GCO_2", "251", 1, 0, "2", 153.125, 153.125, null, null, null, "2", 17.5, 8.75, null, null, null], ["370", "C", "GCO_1", "252", 1, 0, "2", 164.0625, 153.125, null, null, null, "2", 8.75, 8.75, null, null, null], @@ -421,7 +2706,26 @@ ["372", "C", "GCO_1", "253", 1, 0, "2", 175, 175, null, null, null, "0", null, null, null, null, null], ["373", "C", "GCO_2", "253", 1, 0, "2", 175, 175, null, null, null, "0", null, null, null, null, null], ["374", "C", "GCO_1", "254", 1, 0, "2", 181.5625, 175, null, null, null, "2", 8.75, 8.75, null, null, null], - ["375", "C", "GCO_2", "254", 1, 0, "5", 181.5625, 188.125, 188.125, 196.875, 196.875, "5", 8.75, 8.75, 17.5, 17.5, 26.25], + [ + "375", + "C", + "GCO_2", + "254", + 1, + 0, + "5", + 181.5625, + 188.125, + 188.125, + 196.875, + 196.875, + "5", + 8.75, + 8.75, + 17.5, + 17.5, + 26.25 + ], ["376", "C", "GCO_1", "255", 1, 0, "2", 207.8125, 196.875, null, null, null, "2", 26.25, 26.25, null, null, null], ["377", "C", "GCO_2", "255", 1, 0, "2", 207.8125, 218.75, null, null, null, "2", 26.25, 26.25, null, null, null], ["378", "C", "GCO_1", "256", 1, 0, "2", 218.75, 218.75, null, null, null, "2", 17.5, 26.25, null, null, null], @@ -433,7 +2737,26 @@ ["384", "C", "GCO_1", "259", 1, 0, "2", 240.625, 218.75, null, null, null, "2", 8.75, 8.75, null, null, null], ["385", "C", "GCO_2", "259", 1, 0, "2", 240.625, 262.5, null, null, null, "2", 8.75, 8.75, null, null, null], ["386", "C", "GCO_1", "260", 1, 0, "2", 229.6875, 218.75, null, null, null, "0", null, null, null, null, null], - ["387", "C", "GCO_2", "260", 1, 0, "4", 229.6875, 240.625, 240.625, 262.5, null, "0", null, null, null, null, null], + [ + "387", + "C", + "GCO_2", + "260", + 1, + 0, + "4", + 229.6875, + 240.625, + 240.625, + 262.5, + null, + "0", + null, + null, + null, + null, + null + ], ["388", "C", "GCO_1", "261", 1, 0, "2", 262.5, 262.5, null, null, null, "0", null, null, null, null, null], ["389", "C", "GCO_2", "261", 1, 0, "2", 262.5, 262.5, null, null, null, "0", null, null, null, null, null], ["390", "C", "GCO_1", "262", 1, 0, "2", 52.5, 52.5, null, null, null, "0", null, null, null, null, null], @@ -441,7 +2764,17 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["392", "C", "MV Line", null, "0", 1, null, "0", "0"], ["393", "C", "MV network", null, "0", 1, null, "0", "0"], @@ -582,16 +2915,183 @@ ] }, "TypLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "uline", + "sline", + "InomAir", + "mlei", + "cohl_", + "systp", + "nlnph", + "nneutral", + "frnom", + "rline", + "xline", + "lline", + "rline0", + "xline0", + "lline0", + "rnline", + "xnline", + "lnline", + "rpnline", + "xpnline", + "lpnline", + "bline", + "cline", + "tline", + "gline", + "bline0", + "cline0", + "gline0", + "bnline", + "cnline", + "bpnline", + "cpnline" + ], "Values": [ - ["523", "C", "Overhead ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0734, 0.233639, 0.188, 0.0812, 0.258467, 0.4029, 0.3522, 1.121087, 0, 0.2894, 0.921188, 50.7512, 0.161546, 0.038950, 1.9768, 44.9735, 0.143155, 1.9768, 107.0929, 0.340887, 0, 0], - ["524", "C", "ZY full 3P+N", null, 0.4, 1, 1, "Cu", 0, 0, 3, 1, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0.4029, 0.3522, 1.121087, 0, 0.2471, 0.786543, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 116.5693, 0.371051, 0, 0] + [ + "523", + "C", + "Overhead ZY full 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.0734, + 0.233639, + 0.188, + 0.0812, + 0.258467, + 0.4029, + 0.3522, + 1.121087, + 0, + 0.2894, + 0.921188, + 50.7512, + 0.161546, + 0.03895, + 1.9768, + 44.9735, + 0.143155, + 1.9768, + 107.0929, + 0.340887, + 0, + 0 + ], + [ + "524", + "C", + "ZY full 3P+N", + null, + 0.4, + 1, + 1, + "Cu", + 0, + 0, + 3, + 1, + 50, + 0.188, + 0.0812, + 0.258467, + 0.188, + 0.8224, + 2.61778, + 0.4029, + 0.3522, + 1.121087, + 0, + 0.2471, + 0.786543, + 199.5807, + 0.635285, + 0.001853, + 0.3699, + 135.4058, + 0.43101, + 0.3699, + 116.5693, + 0.371051, + 0, + 0 + ] ] }, "TypTr2": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "frnom", + "strn", + "nt2ph", + "tr2cn_h", + "tr2cn_l", + "nt2ag", + "utrn_h", + "utrn_l", + "uktr", + "pcutr", + "uk0tr", + "ur0tr", + "pfe", + "curmg", + "zx0hl_n", + "rtox0_n", + "tapchtype", + "tap_side", + "dutap", + "phitr", + "nntap0", + "ntpmn", + "ntpmx" + ], "Values": [ - ["525", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0] + [ + "525", + "C", + "Transformer 100 kVA Dyn11", + null, + 50, + 0.1, + 3, + "D", + "YN", + 11, + 20, + 0.4, + 4, + 2.15, + 4, + 2.15, + 0.21, + 2.5, + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json index 4c3368d2..20011dfc 100644 --- a/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json +++ b/roseau/load_flow/tests/data/dgs/MV_LV_Transformer_unbalanced.json @@ -1,46 +1,231 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLodLV": { - "Attributes": ["FID", "OP", "loc_name", "typ_id", "fold_id", "bus1", "phtech", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "c:sr:r", "c:sr:i", "c:ss:r", "c:ss:i", "c:st:r", "c:st:i", "m:P:bus1:A", "m:Q:bus1:A", "m:P:bus1:B", "m:Q:bus1:B", "m:P:bus1:C", "m:Q:bus1:C", "m:P:bus1:N", "m:Q:bus1:N", "m:ur:bus1:A", "m:ur:bus1:B", "m:ur:bus1:C", "m:ur:bus1:N", "m:ui:bus1:A", "m:ui:bus1:B", "m:ui:bus1:C", "m:ui:bus1:N", "m:I:bus1:A", "m:I:bus1:B", "m:I:bus1:C", "m:I:bus1:N", "m:phii:bus1:A", "m:phii:bus1:B", "m:phii:bus1:C", "m:phii:bus1:N"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "typ_id", + "fold_id", + "bus1", + "phtech", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "c:sr:r", + "c:sr:i", + "c:ss:r", + "c:ss:i", + "c:st:r", + "c:st:i", + "m:P:bus1:A", + "m:Q:bus1:A", + "m:P:bus1:B", + "m:Q:bus1:B", + "m:P:bus1:C", + "m:Q:bus1:C", + "m:P:bus1:N", + "m:Q:bus1:N", + "m:ur:bus1:A", + "m:ur:bus1:B", + "m:ur:bus1:C", + "m:ur:bus1:N", + "m:ui:bus1:A", + "m:ui:bus1:B", + "m:ui:bus1:C", + "m:ui:bus1:N", + "m:I:bus1:A", + "m:I:bus1:B", + "m:I:bus1:C", + "m:I:bus1:N", + "m:phii:bus1:A", + "m:phii:bus1:B", + "m:phii:bus1:C", + "m:phii:bus1:N" + ], "Values": [ - ["2", "C", "Low-Voltage Load", null, null, "24", 3, 50, 50, null, 0, 30, 30, null, 0, 10, 10, null, 0, 10, 10, null, 0, 0.03, -6.193888e-14, 0.01, 8.276077e-18, 0.01, 1.850372e-16, 0.02999999999986, -6.19388799509106e-14, 0.01000000000000, 8.27607658330602e-18, 0.00999999999999, 1.85037170770859e-16, -3.09416069861823e-24, -4.54612424524782e-24, 0.86327812365550, -0.01011780091448, -0.85525586421590, 3.07437086255205e-23, 0.46335749648298, -0.99340231565885, 0.50546581896798, 2.65739320274025e-22, 0.13258602144804, 0.04358659439897, 0.04358642311928, 0.08901358857711, 28.2243168657384, -90.5835372409592, 149.416435813395, -152.359487438943] + [ + "2", + "C", + "Low-Voltage Load", + null, + null, + "24", + 3, + 50, + 50, + null, + 0, + 30, + 30, + null, + 0, + 10, + 10, + null, + 0, + 10, + 10, + null, + 0, + 0.03, + -6.193888e-14, + 0.01, + 8.276077e-18, + 0.01, + 1.850372e-16, + 0.02999999999986, + -6.19388799509106e-14, + 0.01, + 8.27607658330602e-18, + 0.00999999999999, + 1.85037170770859e-16, + -3.09416069861823e-24, + -4.54612424524782e-24, + 0.8632781236555, + -0.01011780091448, + -0.8552558642159, + 3.07437086255205e-23, + 0.46335749648298, + -0.99340231565885, + 0.50546581896798, + 2.65739320274025e-22, + 0.13258602144804, + 0.04358659439897, + 0.04358642311928, + 0.08901358857711, + 28.2243168657384, + -90.5835372409592, + 149.416435813395, + -152.359487438943 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["3", "C", "MV/LV transformer", null, 50] - ] + "Values": [["3", "C", "MV/LV transformer", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:uln:A", + "m:phiuln:A", + "m:uln:B", + "m:phiuln:B", + "m:uln:C", + "m:phiuln:C" + ], "Values": [ - ["4", "C", "Terminal(1)", "3", null, 0, 1, 0.4, 0, 0, 0, 0.8632781236555, 0.46335749648298, -0.01011780091448, -0.99340231565885, -0.85525586421590, 0.50546581896798, 0.97977001808033, 28.2243168656201, 0.99345383921535, -90.5835372409592, 0.99345774314797, 149.416435813396], - ["5", "C", "Terminal", "3", null, 0, 0, 20, 0, 0, 0, 1.00000178018755, -1.39433529289247e-06, -0.49999968256399, -0.86602316492915, -0.50000209762356, 0.86602455926444, 0, 0, 0, 0, 0, 0] + [ + "4", + "C", + "Terminal(1)", + "3", + null, + 0, + 1, + 0.4, + 0, + 0, + 0, + 0.8632781236555, + 0.46335749648298, + -0.01011780091448, + -0.99340231565885, + -0.8552558642159, + 0.50546581896798, + 0.97977001808033, + 28.2243168656201, + 0.99345383921535, + -90.5835372409592, + 0.99345774314797, + 149.416435813396 + ], + [ + "5", + "C", + "Terminal", + "3", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 1.00000178018755, + -1.39433529289247e-6, + -0.49999968256399, + -0.86602316492915, + -0.50000209762356, + 0.86602455926444, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] }, "ElmTr2": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bushv", "buslv", "nntap"], - "Values": [ - ["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0] - ] + "Values": [["6", "C", "2-Winding Transformer", "3", "27", "26", "23", 0]] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["7", "C", "External Grid", "3", "25", null, 0, 0, 0, 0, "PV", 0, 1, 0]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["8", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["8", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -55,7 +240,20 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rY:SIZEROW", + "rY:0", + "rY:1" + ], "Values": [ ["16", "C", "GCO_1", "13", 1, 0, "2", 56.875, 56.875, "2", 262.5, 240.625], ["17", "C", "GCO_1", "14", 1, 0, "2", 83.125, 83.125, "2", 140, 153.125], @@ -64,7 +262,17 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["20", "C", "MV Line", null, "0", 1, null, "0", "0"], ["21", "C", "MV network", null, "0", 1, null, "0", "0"], @@ -81,9 +289,65 @@ ] }, "TypTr2": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom", "strn", "nt2ph", "tr2cn_h", "tr2cn_l", "nt2ag", "utrn_h", "utrn_l", "uktr", "pcutr", "uk0tr", "ur0tr", "pfe", "curmg", "zx0hl_n", "rtox0_n", "tapchtype", "tap_side", "dutap", "phitr", "nntap0", "ntpmn", "ntpmx"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "frnom", + "strn", + "nt2ph", + "tr2cn_h", + "tr2cn_l", + "nt2ag", + "utrn_h", + "utrn_l", + "uktr", + "pcutr", + "uk0tr", + "ur0tr", + "pfe", + "curmg", + "zx0hl_n", + "rtox0_n", + "tapchtype", + "tap_side", + "dutap", + "phitr", + "nntap0", + "ntpmn", + "ntpmx" + ], "Values": [ - ["27", "C", "Transformer 100 kVA Dyn11", null, 50, 0.1, 3, "D", "YN", 11, 20, 0.4, 4, 2.15, 4, 2.15, 0.21, 2.5, 100, 0, 0, 0, 0, 0, 0, 0, 0] + [ + "27", + "C", + "Transformer 100 kVA Dyn11", + null, + 50, + 0.1, + 3, + "D", + "YN", + 11, + 20, + 0.4, + 4, + 2.15, + 4, + 2.15, + 0.21, + 2.5, + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/MV_Line.json b/roseau/load_flow/tests/data/dgs/MV_Line.json index 1fbc48df..81d07375 100644 --- a/roseau/load_flow/tests/data/dgs/MV_Line.json +++ b/roseau/load_flow/tests/data/dgs/MV_Line.json @@ -1,12 +1,23 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "bus1", + "bus2", + "dline", + "nlnum", + "Unom", + "GPScoords:SIZEROW", + "GPScoords:SIZECOL" + ], "Values": [ ["2", "C", "Line Z diagonal - balanced", "10", "62", "58", "49", 10, 1, 20, "0", "0"], ["3", "C", "Line Z full - balanced", "10", "63", "59", "51", 10, 1, 20, "0", "0"], @@ -15,41 +26,419 @@ ] }, "ElmLodmv": { - "Attributes": ["FID", "OP", "loc_name", "bus1", "phtech", "fold_id", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "sgini", "pgini", "cosgini", "pfg_recap", "sginir", "pginir", "cosginir", "pfg_recapr", "sginis", "pginis", "cosginis", "pfg_recaps", "sginit", "pginit", "cosginit", "pfg_recapt", "n:ur:bus1", "n:ui:bus1", "n:u:bus1", "n:Ul:bus1", "n:Pload:bus1", "n:Qload:bus1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "bus1", + "phtech", + "fold_id", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "sgini", + "pgini", + "cosgini", + "pfg_recap", + "sginir", + "pginir", + "cosginir", + "pfg_recapr", + "sginis", + "pginis", + "cosginis", + "pfg_recaps", + "sginit", + "pginit", + "cosginit", + "pfg_recapt", + "n:ur:bus1", + "n:ui:bus1", + "n:u:bus1", + "n:Ul:bus1", + "n:Pload:bus1", + "n:Qload:bus1" + ], "Values": [ - ["6", "C", "Load Z diagonal - balanced", "50", null, "10", 5.555556, 5, null, 0, 1.851852, 1.666667, null, 0, 1.851852, 1.666667, null, 0, 1.851852, 1.666667, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.95360146100806, -0.02965592627949, 0.95406248244032, 19.0812496488244, 4.99995194333034, 2.42158471452648], - ["7", "C", "Load Z full - balanced", "52", null, "10", 5.555556, 5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.97072640548537, 0.00123157021476, 0.97072718673773, 19.4145437346585, 4.99999620442837, 2.42160903574167], - ["8", "C", "Load ZY diagonal - balanced", "54", null, "10", 5.555556, 5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.95575446680952, -0.03082535439085, 0.95625143309679, 19.1250286619498, 4.99995567122653, 2.42158589702938], - ["9", "C", "Load ZY full - balanced", "56", null, "10", 5.555556, 5, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.97153582854532, -0.00054062426284, 0.97153597896416, 19.4307195791916, 4.99999662749313, 2.42160923978074] + [ + "6", + "C", + "Load Z diagonal - balanced", + "50", + null, + "10", + 5.555556, + 5, + null, + 0, + 1.851852, + 1.666667, + null, + 0, + 1.851852, + 1.666667, + null, + 0, + 1.851852, + 1.666667, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.95360146100806, + -0.02965592627949, + 0.95406248244032, + 19.0812496488244, + 4.99995194333034, + 2.42158471452648 + ], + [ + "7", + "C", + "Load Z full - balanced", + "52", + null, + "10", + 5.555556, + 5, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.97072640548537, + 0.00123157021476, + 0.97072718673773, + 19.4145437346585, + 4.99999620442837, + 2.42160903574167 + ], + [ + "8", + "C", + "Load ZY diagonal - balanced", + "54", + null, + "10", + 5.555556, + 5, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.95575446680952, + -0.03082535439085, + 0.95625143309679, + 19.1250286619498, + 4.99995567122653, + 2.42158589702938 + ], + [ + "9", + "C", + "Load ZY full - balanced", + "56", + null, + "10", + 5.555556, + 5, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.97153582854532, + -0.00054062426284, + 0.97153597896416, + 19.4307195791916, + 4.99999662749313, + 2.42160923978074 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["10", "C", "MV Line", null, 50] - ] + "Values": [["10", "C", "MV Line", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:uln:A", + "m:phiuln:A", + "m:uln:B", + "m:phiuln:B", + "m:uln:C", + "m:phiuln:C" + ], "Values": [ - ["11", "C", "Bus Z diagonal - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.95360146100806, -0.02965592627949, -0.50248351608889, -0.81101512708171, -0.45111794491737, 0.84067105335350, 0, 0, 0, 0, 0, 0], - ["12", "C", "Bus Z full - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.97072640548537, 0.00123157021476, -0.48429663165188, -0.84128951236247, -0.48642977383174, 0.84005794214974, 0, 0, 0, 0, 0, 0], - ["13", "C", "Bus ZY diagonal - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.95575446680952, -0.03082535439085, -0.50457277343915, -0.81229497074884, -0.45118169336897, 0.84312032513230, 0, 0, 0, 0, 0, 0], - ["14", "C", "Bus ZY full - balanced", "10", null, 1, 0, 20, 0, 0, 0, 0.97153582854532, -0.00054062426284, -0.48623610861973, -0.84110439605704, -0.48529971992382, 0.84164502032167, 0, 0, 0, 0, 0, 0], - ["15", "C", "Bus source", "10", null, 0, 0, 20, 0, 0, 0, 1.00000000000114, 1.47276594627909e-12, -0.50000000000182, -0.86602540378428, -0.49999999999920, 0.86602540378269, 0, 0, 0, 0, 0, 0] + [ + "11", + "C", + "Bus Z diagonal - balanced", + "10", + null, + 1, + 0, + 20, + 0, + 0, + 0, + 0.95360146100806, + -0.02965592627949, + -0.50248351608889, + -0.81101512708171, + -0.45111794491737, + 0.8406710533535, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "12", + "C", + "Bus Z full - balanced", + "10", + null, + 1, + 0, + 20, + 0, + 0, + 0, + 0.97072640548537, + 0.00123157021476, + -0.48429663165188, + -0.84128951236247, + -0.48642977383174, + 0.84005794214974, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "13", + "C", + "Bus ZY diagonal - balanced", + "10", + null, + 1, + 0, + 20, + 0, + 0, + 0, + 0.95575446680952, + -0.03082535439085, + -0.50457277343915, + -0.81229497074884, + -0.45118169336897, + 0.8431203251323, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "14", + "C", + "Bus ZY full - balanced", + "10", + null, + 1, + 0, + 20, + 0, + 0, + 0, + 0.97153582854532, + -0.00054062426284, + -0.48623610861973, + -0.84110439605704, + -0.48529971992382, + 0.84164502032167, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "15", + "C", + "Bus source", + "10", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 1.00000000000114, + 1.47276594627909e-12, + -0.50000000000182, + -0.86602540378428, + -0.4999999999992, + 0.86602540378269, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["16", "C", "MV source", "10", "57", null, 0, 0, 0, 0, "SL", 0, 1, 0] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["16", "C", "MV source", "10", "57", null, 0, 0, 0, 0, "SL", 0, 1, 0]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["17", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["17", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -73,7 +462,20 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rY:SIZEROW", "rY:0", "rY:1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rY:SIZEROW", + "rY:0", + "rY:1" + ], "Values": [ ["34", "C", "GCO_1", "19", 1, 0, "2", 65.625, 65.625, "2", 120.3125, 153.125], ["35", "C", "GCO_2", "19", 1, 0, "2", 65.625, 65.625, "2", 120.3125, 87.5], @@ -91,7 +493,17 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["47", "C", "MV Line", null, "0", 1, null, "0", "0"], ["48", "C", "MV network", null, "0", 1, null, "0", "0"] @@ -116,12 +528,197 @@ ] }, "TypLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "uline", + "sline", + "InomAir", + "mlei", + "cohl_", + "systp", + "nlnph", + "nneutral", + "frnom", + "rline", + "xline", + "lline", + "rline0", + "xline0", + "lline0", + "rnline", + "xnline", + "lnline", + "rpnline", + "xpnline", + "lpnline", + "bline", + "cline", + "tline", + "gline", + "bline0", + "cline0", + "gline0", + "bnline", + "cnline", + "bpnline", + "cpnline" + ], "Values": [ - ["62", "C", "Z diagonal", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["63", "C", "Z full", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["64", "C", "ZY diagonal", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.3283, 1.045011, 0.188, 0.3283, 1.045011, 0, 0, 0, 0, 0, 0, 135.4058, 0.431010, 0.002731, 0.3699, 135.4058, 0.431010, 0.3699, 0, 0, 0, 0], - ["65", "C", "ZY full", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.188, 0.0812, 0.258467, 0.188, 0.8224, 2.61778, 0, 0, 0, 0, 0, 0, 199.5807, 0.635285, 0.001853, 0.3699, 135.4058, 0.431010, 0.3699, 0, 0, 0, 0] + [ + "62", + "C", + "Z diagonal", + null, + 20, + 1, + 1, + "Cu", + 0, + 0, + 3, + 0, + 50, + 0.188, + 0.3283, + 1.045011, + 0.188, + 0.3283, + 1.045011, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "63", + "C", + "Z full", + null, + 20, + 1, + 1, + "Cu", + 0, + 0, + 3, + 0, + 50, + 0.188, + 0.0812, + 0.258467, + 0.188, + 0.8224, + 2.61778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "64", + "C", + "ZY diagonal", + null, + 20, + 1, + 1, + "Cu", + 0, + 0, + 3, + 0, + 50, + 0.188, + 0.3283, + 1.045011, + 0.188, + 0.3283, + 1.045011, + 0, + 0, + 0, + 0, + 0, + 0, + 135.4058, + 0.43101, + 0.002731, + 0.3699, + 135.4058, + 0.43101, + 0.3699, + 0, + 0, + 0, + 0 + ], + [ + "65", + "C", + "ZY full", + null, + 20, + 1, + 1, + "Cu", + 0, + 0, + 3, + 0, + 50, + 0.188, + 0.0812, + 0.258467, + 0.188, + 0.8224, + 2.61778, + 0, + 0, + 0, + 0, + 0, + 0, + 199.5807, + 0.635285, + 0.001853, + 0.3699, + 135.4058, + 0.43101, + 0.3699, + 0, + 0, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/dgs/MV_Network.json b/roseau/load_flow/tests/data/dgs/MV_Network.json index 37e2c2e5..57c0ed99 100644 --- a/roseau/load_flow/tests/data/dgs/MV_Network.json +++ b/roseau/load_flow/tests/data/dgs/MV_Network.json @@ -1,12 +1,23 @@ { "General": { "Attributes": ["FID", "Descr", "Val"], - "Values": [ - ["1", "Version", "7.0"] - ] + "Values": [["1", "Version", "7.0"]] }, "ElmLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "bus1", "bus2", "dline", "nlnum", "Unom", "GPScoords:SIZEROW", "GPScoords:SIZECOL"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "bus1", + "bus2", + "dline", + "nlnum", + "Unom", + "GPScoords:SIZEROW", + "GPScoords:SIZECOL" + ], "Values": [ ["2", "C", "Ligne HTA de secours", "14", "96", "93", "67", 10, 1, 20, "0", "0"], ["3", "C", "Ligne HTA(1)", "14", "96", "68", "69", 10, 1, 20, "0", "0"], @@ -17,44 +28,536 @@ ] }, "ElmLodmv": { - "Attributes": ["FID", "OP", "loc_name", "bus1", "phtech", "fold_id", "slini", "plini", "coslini", "pf_recap", "slinir", "plinir", "coslinir", "pf_recapr", "slinis", "plinis", "coslinis", "pf_recaps", "slinit", "plinit", "coslinit", "pf_recapt", "sgini", "pgini", "cosgini", "pfg_recap", "sginir", "pginir", "cosginir", "pfg_recapr", "sginis", "pginis", "cosginis", "pfg_recaps", "sginit", "pginit", "cosginit", "pfg_recapt", "n:ur:bus1", "n:ui:bus1", "n:u:bus1", "n:Ul:bus1", "n:Pload:bus1", "n:Qload:bus1"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "bus1", + "phtech", + "fold_id", + "slini", + "plini", + "coslini", + "pf_recap", + "slinir", + "plinir", + "coslinir", + "pf_recapr", + "slinis", + "plinis", + "coslinis", + "pf_recaps", + "slinit", + "plinit", + "coslinit", + "pf_recapt", + "sgini", + "pgini", + "cosgini", + "pfg_recap", + "sginir", + "pginir", + "cosginir", + "pfg_recapr", + "sginis", + "pginis", + "cosginis", + "pfg_recaps", + "sginit", + "pginit", + "cosginit", + "pfg_recapt", + "n:ur:bus1", + "n:ui:bus1", + "n:u:bus1", + "n:Ul:bus1", + "n:Pload:bus1", + "n:Qload:bus1" + ], "Values": [ - ["8", "C", "Charge MT(1)", "72", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.97718469323296, 0.00021920381198, 0.97718471781905, 19.5436943563578, 1.77999958456488, 0.91192090708617], - ["9", "C", "Charge MT(2)", "95", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 1.00000000000068, 1.06314838839795e-12, 1.00000000000068, 20.0000000000243, 1.77999997138977, 0.91192110505921], - ["10", "C", "Charge MT(3)", "79", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.96287347146259, 0.00034236347900, 0.96287353232872, 19.2574706459395, 1.77999067303781, 0.91191634969758], - ["11", "C", "Charge MT(4)", "84", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.93735687106405, 0.00057502350702, 0.93735704743872, 18.7471409475972, 1.77996812354939, 0.91190483604950], - ["12", "C", "Charge MT(5)", "90", null, "14", 2.247191, 2, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.92376412214234, 0.00069806790244, 0.92376438589946, 18.4752877164848, 1.99994163788955, 1.02460067630279], - ["13", "C", "Charge MT", "66", null, "14", 2, 1.78, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0, 0, null, 0, 0.98862542499333, 0.00010960557293, 0.98862543106913, 19.7725086213794, 1.77999990231993, 0.91192106969301] + [ + "8", + "C", + "Charge MT(1)", + "72", + null, + "14", + 2, + 1.78, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.97718469323296, + 0.00021920381198, + 0.97718471781905, + 19.5436943563578, + 1.77999958456488, + 0.91192090708617 + ], + [ + "9", + "C", + "Charge MT(2)", + "95", + null, + "14", + 2, + 1.78, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 1.00000000000068, + 1.06314838839795e-12, + 1.00000000000068, + 20.0000000000243, + 1.77999997138977, + 0.91192110505921 + ], + [ + "10", + "C", + "Charge MT(3)", + "79", + null, + "14", + 2, + 1.78, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.96287347146259, + 0.000342363479, + 0.96287353232872, + 19.2574706459395, + 1.77999067303781, + 0.91191634969758 + ], + [ + "11", + "C", + "Charge MT(4)", + "84", + null, + "14", + 2, + 1.78, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.93735687106405, + 0.00057502350702, + 0.93735704743872, + 18.7471409475972, + 1.77996812354939, + 0.9119048360495 + ], + [ + "12", + "C", + "Charge MT(5)", + "90", + null, + "14", + 2.247191, + 2, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.92376412214234, + 0.00069806790244, + 0.92376438589946, + 18.4752877164848, + 1.99994163788955, + 1.02460067630279 + ], + [ + "13", + "C", + "Charge MT", + "66", + null, + "14", + 2, + 1.78, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0, + 0, + null, + 0, + 0.98862542499333, + 0.00010960557293, + 0.98862543106913, + 19.7725086213794, + 1.77999990231993, + 0.91192106969301 + ] ] }, "ElmNet": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "frnom"], - "Values": [ - ["14", "C", "Réseau MV", null, 50] - ] + "Values": [["14", "C", "Réseau MV", null, 50]] }, "ElmTerm": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "typ_id", "iUsage", "phtech", "uknom", "outserv", "GPSlat", "GPSlon", "m:ur:A", "m:ui:A", "m:ur:B", "m:ui:B", "m:ur:C", "m:ui:C", "m:uln:A", "m:phiuln:A", "m:uln:B", "m:phiuln:B", "m:uln:C", "m:phiuln:C"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "typ_id", + "iUsage", + "phtech", + "uknom", + "outserv", + "GPSlat", + "GPSlon", + "m:ur:A", + "m:ui:A", + "m:ur:B", + "m:ui:B", + "m:ur:C", + "m:ui:C", + "m:uln:A", + "m:phiuln:A", + "m:uln:B", + "m:phiuln:B", + "m:uln:C", + "m:phiuln:C" + ], "Values": [ - ["15", "C", "Terminal(1)", "14", null, 0, 0, 20, 0, 0, 0, 0.98862542499333, 0.00010960557293, -0.49421779128782, -0.85622953565434, -0.49440763370537, 0.85611993008151, 0, 0, 0, 0, 0, 0], - ["16", "C", "Terminal(2)", "14", null, 0, 0, 20, 0, 0, 0, 0.97718469323296, 0.00021920381198, -0.48840251054832, -0.84637637042818, -0.48878218268438, 0.84615716661630, 0, 0, 0, 0, 0, 0], - ["17", "C", "Terminal(3)", "14", null, 0, 0, 20, 0, 0, 0, 0.96287347146259, 0.00034236347900, -0.48114024025879, -0.83404406855041, -0.48173323119701, 0.83370170507161, 0, 0, 0, 0, 0, 0], - ["18", "C", "Terminal(4)", "14", null, 0, 0, 20, 0, 0, 0, 0.93735687106405, 0.00057502350702, -0.46818045056116, -0.81206237431359, -0.46917642049007, 0.81148735080684, 0, 0, 0, 0, 0, 0], - ["19", "C", "Terminal(5)", "14", null, 0, 0, 20, 0, 0, 0, 0.92376412214234, 0.00069806790244, -0.46127751652580, -0.80035223058522, -0.46248660559988, 0.79965416268311, 0, 0, 0, 0, 0, 0], - ["20", "C", "Terminal", "14", null, 0, 0, 20, 0, 0, 0, 1.00000000000068, 1.06314838839795e-12, -0.50000000000119, -0.86602540378434, -0.49999999999941, 0.86602540378339, 0, 0, 0, 0, 0, 0] + [ + "15", + "C", + "Terminal(1)", + "14", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.98862542499333, + 0.00010960557293, + -0.49421779128782, + -0.85622953565434, + -0.49440763370537, + 0.85611993008151, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "16", + "C", + "Terminal(2)", + "14", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.97718469323296, + 0.00021920381198, + -0.48840251054832, + -0.84637637042818, + -0.48878218268438, + 0.8461571666163, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "17", + "C", + "Terminal(3)", + "14", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.96287347146259, + 0.000342363479, + -0.48114024025879, + -0.83404406855041, + -0.48173323119701, + 0.83370170507161, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "18", + "C", + "Terminal(4)", + "14", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.93735687106405, + 0.00057502350702, + -0.46818045056116, + -0.81206237431359, + -0.46917642049007, + 0.81148735080684, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "19", + "C", + "Terminal(5)", + "14", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 0.92376412214234, + 0.00069806790244, + -0.4612775165258, + -0.80035223058522, + -0.46248660559988, + 0.79965416268311, + 0, + 0, + 0, + 0, + 0, + 0 + ], + [ + "20", + "C", + "Terminal", + "14", + null, + 0, + 0, + 20, + 0, + 0, + 0, + 1.00000000000068, + 1.06314838839795e-12, + -0.50000000000119, + -0.86602540378434, + -0.49999999999941, + 0.86602540378339, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] }, "ElmXnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "bus1", "GPSlat", "GPSlon", "pgini", "qgini", "sgini", "bustp", "uset_mode", "usetp", "iintgnd"], - "Values": [ - ["21", "C", "Source 20 kV", "14", "91", null, 0, 0, 0, 0, "SL", 0, 1, 0] - ] + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "bus1", + "GPSlat", + "GPSlon", + "pgini", + "qgini", + "sgini", + "bustp", + "uset_mode", + "usetp", + "iintgnd" + ], + "Values": [["21", "C", "Source 20 kV", "14", "91", null, 0, 0, 0, 0, "SL", 0, 1, 0]] }, "IntCase": { "Attributes": ["FID", "OP", "loc_name", "cpowexp", "campexp", "cpexpshc"], - "Values": [ - ["22", "C", "Study Case(1)", "M", "k", "M"] - ] + "Values": [["22", "C", "Study Case(1)", "M", "k", "M"]] }, "IntGrf": { "Attributes": ["FID", "OP", "loc_name", "fold_id", "rCenterX", "rCenterY", "rSizeX", "rSizeY", "iRot"], @@ -83,7 +586,24 @@ ] }, "IntGrfcon": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "iLinSt", "rLinWd", "rX:SIZEROW", "rX:0", "rX:1", "rX:2", "rX:3", "rY:SIZEROW", "rY:0", "rY:1", "rY:2", "rY:3"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "iLinSt", + "rLinWd", + "rX:SIZEROW", + "rX:0", + "rX:1", + "rX:2", + "rX:3", + "rY:SIZEROW", + "rY:0", + "rY:1", + "rY:2", + "rY:3" + ], "Values": [ ["44", "C", "GCO_1", "26", 1, 0, "2", 91.875, 91.875, null, null, "2", 196.875, 175, null, null], ["45", "C", "GCO_1", "32", 1, 0, "2", 74.375, 74.375, null, null, "2", 146.5625, 175, null, null], @@ -107,7 +627,17 @@ ] }, "IntGrfnet": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "sBordSym:SIZEROW", "snap_on", "ortho_on", "sSubstTyp:SIZEROW", "sSymbol:SIZEROW"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "sBordSym:SIZEROW", + "snap_on", + "ortho_on", + "sSubstTyp:SIZEROW", + "sSymbol:SIZEROW" + ], "Values": [ ["63", "C", "MV Line", null, "0", 1, null, "0", "0"], ["64", "C", "MV network", null, "0", 1, null, "0", "0"] @@ -150,9 +680,83 @@ ] }, "TypLne": { - "Attributes": ["FID", "OP", "loc_name", "fold_id", "uline", "sline", "InomAir", "mlei", "cohl_", "systp", "nlnph", "nneutral", "frnom", "rline", "xline", "lline", "rline0", "xline0", "lline0", "rnline", "xnline", "lnline", "rpnline", "xpnline", "lpnline", "bline", "cline", "tline", "gline", "bline0", "cline0", "gline0", "bnline", "cnline", "bpnline", "cpnline"], + "Attributes": [ + "FID", + "OP", + "loc_name", + "fold_id", + "uline", + "sline", + "InomAir", + "mlei", + "cohl_", + "systp", + "nlnph", + "nneutral", + "frnom", + "rline", + "xline", + "lline", + "rline0", + "xline0", + "lline0", + "rnline", + "xnline", + "lnline", + "rpnline", + "xpnline", + "lpnline", + "bline", + "cline", + "tline", + "gline", + "bline0", + "cline0", + "gline0", + "bnline", + "cnline", + "bpnline", + "cpnline" + ], "Values": [ - ["96", "C", "Ligne HTA", null, 20, 1, 1, "Cu", 0, 0, 3, 0, 50, 0.2, 0.1, 0.318309, 0.2, 0.1, 0.318309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + [ + "96", + "C", + "Ligne HTA", + null, + 20, + 1, + 1, + "Cu", + 0, + 0, + 3, + 0, + 50, + 0.2, + 0.1, + 0.318309, + 0.2, + 0.1, + 0.318309, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] ] } } diff --git a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json index 396e36ff..86a3f134 100644 --- a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_impedance.json @@ -1,1834 +1,1591 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 50, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - } - }, - { - "id": 50, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - } - }, - { - "id": 542, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856978967864625, 45.69219040555863] - } - }, - { - "id": 1364, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855867232318871, 45.69136027006984] - } - }, - { - "id": 1365, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855846104884748, 45.69144901085738] - } - }, - { - "id": 1366, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85588829377169, 45.69161122844266] - } - }, - { - "id": 1367, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855860204231766, 45.69176818400519] - } - }, - { - "id": 51, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855869182087027, 45.69136049630226] - } - }, - { - "id": 1663, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856370661831063, 45.69110851750263] - } - }, - { - "id": 1664, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856375306784422, 45.69110589277815] - } - }, - { - "id": 1665, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856382029776952, 45.69110208720114] - } - }, - { - "id": 1666, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856387024934563, 45.69109925657929] - } - }, - { - "id": 2081, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855854534153559, 45.69135896213488] - } - }, - { - "id": 2082, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855816427653202, 45.69135505659377] - } - }, - { - "id": 2083, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855791018908654, 45.6913524499912] - } - }, - { - "id": 2084, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855786863583238, 45.69135202127266] - } - }, - { - "id": 2085, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85563566314481, 45.69133651542809] - } - }, - { - "id": 2086, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855622952159835, 45.69133520775522] - } - }, - { - "id": 2087, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855600498514187, 45.69133290377598] - } - }, - { - "id": 2088, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855587787530867, 45.69133159609905] - } - }, - { - "id": 2089, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855407023176602, 45.69131305456497] - } - }, - { - "id": 2090, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855368916328575, 45.69130913987988] - } - }, - { - "id": 2091, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855356218598147, 45.6913078408805] - } - }, - { - "id": 2156, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85685262162569, 45.69253367223592] - } - }, - { - "id": 2157, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856851022816997, 45.69253802876519] - } - }, - { - "id": 2488, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856738631522436, 45.69216124238103] - } - }, - { - "id": 2489, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.8563875660472, 45.69228111612342] - } - }, - { - "id": 2490, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856292856235074, 45.69232748538923] - } - }, - { - "id": 2491, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856208673924059, 45.69236870335052] - } - }, - { - "id": 2492, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856029618601329, 45.69250467560685] - } - }, - { - "id": 2493, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855930737267387, 45.69267072873552] - } - }, - { - "id": 2494, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855888072041425, 45.69274239200233] - } - }, - { - "id": 2588, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855825999456157, 45.69273095075617] - } - }, - { - "id": 2589, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855788745488097, 45.6927240826258] - } - }, - { - "id": 2590, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855676659986405, 45.69270342242253] - } - }, - { - "id": 2591, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855670455137178, 45.69270227463329] - } - }, - { - "id": 2649, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85591518390002, 45.69139520669937] - } - }, - { - "id": 2650, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855915068012751, 45.69139520030173] - } - }, - { - "id": 2846, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856360725716369, 45.69102412913973] - } - }, - { - "id": 2847, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856383793336582, 45.69086300169013] - } - }, - { - "id": 2848, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856390704015929, 45.69081473478015] - } - }, - { - "id": 2849, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856458006484099, 45.69111484486989] - } - }, - { - "id": 2850, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856636058726183, 45.69113194244653] - } - }, - { - "id": 2851, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856800333523847, 45.69114772016799] - } - }, - { - "id": 2852, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856801404224056, 45.69114782212127] - } - }, - { - "id": 2853, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856806693572222, 45.69114833332971] - } - }, - { - "id": 2933, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85627431413481, 45.69280960338721] - } - }, - { - "id": 2934, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856417860286734, 45.69283457875029] - } - }, - { - "id": 2935, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856423816029007, 45.69283561508038] - } - }, - { - "id": 2936, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856424087948438, 45.69283566297754] - } - }, - { - "id": 3399, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855763551680219, 45.69182738723423] - } - }, - { - "id": 3400, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855398849537063, 45.69194059727197] - } - }, - { - "id": 3401, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855416724230305, 45.69181947119029] - } - }, - { - "id": 3402, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855418952830454, 45.69181736884877] - } - }, - { - "id": 3403, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855420553793683, 45.69181586568582] - } - } - ], - "branches": [ - { - "id": "transfo", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 50, - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line243", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 542, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.856006369563374, 45.69145685074764], - [4.856041286384759, 45.6914589736374], - [4.85608611929476, 45.69142826223273], - [4.85710799403576, 45.691501610824], - [4.857207269582688, 45.69156598849194], - [4.856978967864625, 45.69219040555863] - ] - }, - "length": 0.1698047886136108, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1213", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 1663, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.856000594306501, 45.69144599899529], - [4.856024490964286, 45.69142874679027], - [4.856042739971293, 45.69129421833258], - [4.856370661831063, 45.69110851750263] - ] - }, - "length": 0.0505315521261473, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line987", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 51, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.855988721281017, 45.6914422332006], - [4.855996361520631, 45.6913753713747], - [4.855869182087027, 45.69136049630226] - ] - }, - "length": 0.0174985508964364, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2112", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 2649, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.855971166936666, 45.69144819937015], - [4.855950443311009, 45.69143851158069], - [4.855955048725805, 45.69139880266571], - [4.85591518390002, 45.69139520669937] - ] - }, - "length": 0.0094992002360799, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line2113", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2649, - "bus2": 2650, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85591518390002, 45.69139520669937], - [4.855915068012751, 45.69139520030173] - ] - }, - "length": 9.054749376593195e-06, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line988", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 51, - "bus2": 1364, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855869182087027, 45.69136049630226], - [4.855867232318871, 45.69136027006984] - ] - }, - "length": 0.0001539404843332, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line952", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1364, - "bus2": 1365, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855867232318871, 45.69136027006984], - [4.855846104884748, 45.69144901085738] - ] - }, - "length": 0.0099994696006292, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1576", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1364, - "bus2": 2081, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855867232318871, 45.69136027006984], - [4.855854534153559, 45.69135896213488] - ] - }, - "length": 0.0009997222679235, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1577", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2081, - "bus2": 2082, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855854534153559, 45.69135896213488], - [4.855816427653202, 45.69135505659377] - ] - }, - "length": 0.0029997976524975, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1578", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2082, - "bus2": 2083, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855816427653202, 45.69135505659377], - [4.855791018908654, 45.6913524499912] - ] - }, - "length": 0.002000251978809, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1579", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2083, - "bus2": 2084, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855791018908654, 45.6913524499912], - [4.855786863583238, 45.69135202127266] - ] - }, - "length": 0.0003271589286956, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1580", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2084, - "bus2": 2085, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855786863583238, 45.69135202127266], - [4.85563566314481, 45.69133651542809] - ] - }, - "length": 0.0119028646292776, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line953", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1365, - "bus2": 1366, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855846104884748, 45.69144901085738], - [4.855845684286097, 45.69145076654667], - [4.855901120337955, 45.69153953345657], - [4.85588829377169, 45.69161122844266] - ] - }, - "length": 0.0189984078266001, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1581", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2085, - "bus2": 2086, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85563566314481, 45.69133651542809], - [4.855622952159835, 45.69133520775522] - ] - }, - "length": 0.0010007064087425, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1582", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2086, - "bus2": 2087, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855622952159835, 45.69133520775522], - [4.855600498514187, 45.69133290377598] - ] - }, - "length": 0.0017676269548577, - "params_id": "S_AL_240", - "ground": "ground" + "id": 1, + "phase": "n" }, { - "id": "line1583", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2087, - "bus2": 2088, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855600498514187, 45.69133290377598], - [4.855587787530867, 45.69133159609905] - ] - }, - "length": 0.0010007064104751, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1584", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2088, - "bus2": 2089, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855587787530867, 45.69133159609905], - [4.855407023176602, 45.69131305456497] - ] - }, - "length": 0.0142302752899377, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line954", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1366, - "bus2": 1367, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85588829377169, 45.69161122844266], - [4.855860204231766, 45.69176818400519] - ] - }, - "length": 0.0175815455828478, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1214", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1663, - "bus2": 1664, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856370661831063, 45.69110851750263], - [4.856375306784422, 45.69110589277815] - ] - }, - "length": 0.0004647694653149, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1215", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1664, - "bus2": 1665, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856375306784422, 45.69110589277815], - [4.856382029776952, 45.69110208720114] - ] - }, - "length": 0.000673157746019, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1216", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1665, - "bus2": 1666, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856382029776952, 45.69110208720114], - [4.856387024934563, 45.69109925657929] - ] - }, - "length": 0.0005003696964554, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2308", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1666, - "bus2": 2846, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856387024934563, 45.69109925657929], - [4.856355663247043, 45.69105945574269], - [4.856360725716369, 45.69102412913973] - ] - }, - "length": 0.0089995012028159, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2311", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1666, - "bus2": 2849, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856387024934563, 45.69109925657929], - [4.85640419839692, 45.69110967215316], - [4.856458006484099, 45.69111484486989] - ] - }, - "length": 0.0059995904338227, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1585", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2089, - "bus2": 2090, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855407023176602, 45.69131305456497], - [4.855368916328575, 45.69130913987988] - ] - }, - "length": 0.0029999740821226, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1586", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2090, - "bus2": 2091, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855368916328575, 45.69130913987988], - [4.855356218598147, 45.6913078408805] - ] - }, - "length": 0.0009995457086402, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2312", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2849, - "bus2": 2850, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856458006484099, 45.69111484486989], - [4.856636058726183, 45.69113194244653] - ] - }, - "length": 0.0139986419668756, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2309", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2846, - "bus2": 2847, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856360725716369, 45.69102412913973], - [4.856383793336582, 45.69086300169013] - ] - }, - "length": 0.0179984696461502, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2832", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1367, - "bus2": 3399, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855860204231766, 45.69176818400519], - [4.855763551680219, 45.69182738723423] - ] - }, - "length": 0.0099988303999178, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2313", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2850, - "bus2": 2851, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856636058726183, 45.69113194244653], - [4.856800333523847, 45.69114772016799] - ] - }, - "length": 0.0129154893237343, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2833", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3399, - "bus2": 3400, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855763551680219, 45.69182738723423], - [4.855584089016939, 45.69193730935378], - [4.855398849537063, 45.69194059727197] - ] - }, - "length": 0.0329985491086803, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2310", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2847, - "bus2": 2848, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856383793336582, 45.69086300169013], - [4.856390704015929, 45.69081473478015] - ] - }, - "length": 0.0053915783689662, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2314", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2851, - "bus2": 2852, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856800333523847, 45.69114772016799], - [4.856801404224056, 45.69114782212127] - ] - }, - "length": 8.41665220926229e-05, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2852, - "bus2": 2853, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856801404224056, 45.69114782212127], - [4.856806693572222, 45.69114833332971] - ] - }, - "length": 0.0004159034442303, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2834", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3400, - "bus2": 3401, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855398849537063, 45.69194059727197], - [4.855392869155902, 45.69194070460053], - [4.855387309011729, 45.69184721664104], - [4.855416724230305, 45.69181947119029] - ] - }, - "length": 0.0147075358057835, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2835", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3401, - "bus2": 3402, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855416724230305, 45.69181947119029], - [4.855418952830454, 45.69181736884877] - ] - }, - "length": 0.0002910897047899, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2836", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3402, - "bus2": 3403, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855418952830454, 45.69181736884877], - [4.855420553793683, 45.69181586568582] - ] - }, - "length": 0.0002084777079536, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1646", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 542, - "bus2": 2156, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856978967864625, 45.69219040555863], - [4.85685262162569, 45.69253367223592] - ] - }, - "length": 0.0394013052961165, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1960", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 542, - "bus2": 2488, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856978967864625, 45.69219040555863], - [4.856738631522436, 45.69216124238103] - ] - }, - "length": 0.0189987578088231, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1961", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2488, - "bus2": 2489, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856738631522436, 45.69216124238103], - [4.85665349107763, 45.69215091411277], - [4.8563875660472, 45.69228111612342] - ] - }, - "length": 0.0319981744631324, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1647", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2156, - "bus2": 2157, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85685262162569, 45.69253367223592], - [4.856851022816997, 45.69253802876519] - ] - }, - "length": 0.0004999657082792, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1962", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2489, - "bus2": 2490, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.8563875660472, 45.69228111612342], - [4.856292856235074, 45.69232748538923] - ] - }, - "length": 0.008999023393858, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1963", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2490, - "bus2": 2491, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856292856235074, 45.69232748538923], - [4.856208673924059, 45.69236870335052] - ] - }, - "length": 0.0079989134977189, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1964", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2491, - "bus2": 2492, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856208673924059, 45.69236870335052], - [4.856140935805975, 45.69240186471046], - [4.856052674911791, 45.69246595632609], - [4.856029618601329, 45.69250467560685] - ] - }, - "length": 0.0209990509945453, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1965", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2492, - "bus2": 2493, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856029618601329, 45.69250467560685], - [4.855930737267387, 45.69267072873552] - ] - }, - "length": 0.0199986363582786, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1966", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2493, - "bus2": 2494, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855930737267387, 45.69267072873552], - [4.855888072041425, 45.69274239200233] - ] - }, - "length": 0.008630510320176, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2389", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2494, - "bus2": 2933, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855888072041425, 45.69274239200233], - [4.85627431413481, 45.69280960338721] - ] - }, - "length": 0.0309983265742373, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2056", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2494, - "bus2": 2588, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855888072041425, 45.69274239200233], - [4.855825999456157, 45.69273095075617] - ] - }, - "length": 0.0049993261430797, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2057", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2588, - "bus2": 2589, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855825999456157, 45.69273095075617], - [4.855788745488097, 45.6927240826258] - ] - }, - "length": 0.003000476475499, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2058", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2589, - "bus2": 2590, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855788745488097, 45.6927240826258], - [4.855676659986405, 45.69270342242253] - ] - }, - "length": 0.0090273856534237, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2059", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2590, - "bus2": 2591, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855676659986405, 45.69270342242253], - [4.855670455137178, 45.69270227463329] - ] - }, - "length": 0.0004998552042313, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2390", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2933, - "bus2": 2934, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85627431413481, 45.69280960338721], - [4.856417860286734, 45.69283457875029] - ] - }, - "length": 0.0115203641917798, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2391", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2934, - "bus2": 2935, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856417860286734, 45.69283457875029], - [4.856423816029007, 45.69283561508038] - ] - }, - "length": 0.0004779834842022, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2392", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2935, - "bus2": 2936, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856423816029007, 45.69283561508038], - [4.856424087948438, 45.69283566297754] - ] - }, - "length": 2.183881197426037e-05, - "params_id": "S_AL_95", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3403, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001285539713848, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001285539713848, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001285539713848, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ] - ] - }, - { - "id": "S_AL_35", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.8571428571428571, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.8571428571428571, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.8571428571428571, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 5.899911003441632e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 5.899911003441632e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 5.899911003441632e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 7.935663042967819e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 7.935663042967819e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 7.935663042967819e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 50, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + } + }, + { + "id": 50, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + } + }, + { + "id": 542, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856978967864625, 45.69219040555863] + } + }, + { + "id": 1364, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855867232318871, 45.69136027006984] + } + }, + { + "id": 1365, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855846104884748, 45.69144901085738] + } + }, + { + "id": 1366, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85588829377169, 45.69161122844266] + } + }, + { + "id": 1367, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855860204231766, 45.69176818400519] + } + }, + { + "id": 51, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855869182087027, 45.69136049630226] + } + }, + { + "id": 1663, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856370661831063, 45.69110851750263] + } + }, + { + "id": 1664, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856375306784422, 45.69110589277815] + } + }, + { + "id": 1665, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856382029776952, 45.69110208720114] + } + }, + { + "id": 1666, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856387024934563, 45.69109925657929] + } + }, + { + "id": 2081, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855854534153559, 45.69135896213488] + } + }, + { + "id": 2082, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855816427653202, 45.69135505659377] + } + }, + { + "id": 2083, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855791018908654, 45.6913524499912] + } + }, + { + "id": 2084, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855786863583238, 45.69135202127266] + } + }, + { + "id": 2085, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85563566314481, 45.69133651542809] + } + }, + { + "id": 2086, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855622952159835, 45.69133520775522] + } + }, + { + "id": 2087, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855600498514187, 45.69133290377598] + } + }, + { + "id": 2088, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855587787530867, 45.69133159609905] + } + }, + { + "id": 2089, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855407023176602, 45.69131305456497] + } + }, + { + "id": 2090, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855368916328575, 45.69130913987988] + } + }, + { + "id": 2091, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855356218598147, 45.6913078408805] + } + }, + { + "id": 2156, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85685262162569, 45.69253367223592] + } + }, + { + "id": 2157, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856851022816997, 45.69253802876519] + } + }, + { + "id": 2488, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856738631522436, 45.69216124238103] + } + }, + { + "id": 2489, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.8563875660472, 45.69228111612342] + } + }, + { + "id": 2490, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856292856235074, 45.69232748538923] + } + }, + { + "id": 2491, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856208673924059, 45.69236870335052] + } + }, + { + "id": 2492, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856029618601329, 45.69250467560685] + } + }, + { + "id": 2493, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855930737267387, 45.69267072873552] + } + }, + { + "id": 2494, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855888072041425, 45.69274239200233] + } + }, + { + "id": 2588, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855825999456157, 45.69273095075617] + } + }, + { + "id": 2589, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855788745488097, 45.6927240826258] + } + }, + { + "id": 2590, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855676659986405, 45.69270342242253] + } + }, + { + "id": 2591, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855670455137178, 45.69270227463329] + } + }, + { + "id": 2649, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85591518390002, 45.69139520669937] + } + }, + { + "id": 2650, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855915068012751, 45.69139520030173] + } + }, + { + "id": 2846, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856360725716369, 45.69102412913973] + } + }, + { + "id": 2847, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856383793336582, 45.69086300169013] + } + }, + { + "id": 2848, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856390704015929, 45.69081473478015] + } + }, + { + "id": 2849, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856458006484099, 45.69111484486989] + } + }, + { + "id": 2850, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856636058726183, 45.69113194244653] + } + }, + { + "id": 2851, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856800333523847, 45.69114772016799] + } + }, + { + "id": 2852, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856801404224056, 45.69114782212127] + } + }, + { + "id": 2853, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856806693572222, 45.69114833332971] + } + }, + { + "id": 2933, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85627431413481, 45.69280960338721] + } + }, + { + "id": 2934, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856417860286734, 45.69283457875029] + } + }, + { + "id": 2935, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856423816029007, 45.69283561508038] + } + }, + { + "id": 2936, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856424087948438, 45.69283566297754] + } + }, + { + "id": 3399, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855763551680219, 45.69182738723423] + } + }, + { + "id": 3400, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855398849537063, 45.69194059727197] + } + }, + { + "id": 3401, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855416724230305, 45.69181947119029] + } + }, + { + "id": 3402, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855418952830454, 45.69181736884877] + } + }, + { + "id": 3403, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855420553793683, 45.69181586568582] + } + } + ], + "branches": [ + { + "id": "transfo", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 50, + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line243", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 542, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.856006369563374, 45.69145685074764], + [4.856041286384759, 45.6914589736374], + [4.85608611929476, 45.69142826223273], + [4.85710799403576, 45.691501610824], + [4.857207269582688, 45.69156598849194], + [4.856978967864625, 45.69219040555863] + ] + }, + "length": 0.1698047886136108, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1213", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 1663, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.856000594306501, 45.69144599899529], + [4.856024490964286, 45.69142874679027], + [4.856042739971293, 45.69129421833258], + [4.856370661831063, 45.69110851750263] + ] + }, + "length": 0.0505315521261473, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line987", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 51, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.855988721281017, 45.6914422332006], + [4.855996361520631, 45.6913753713747], + [4.855869182087027, 45.69136049630226] + ] + }, + "length": 0.0174985508964364, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2112", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 2649, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.855971166936666, 45.69144819937015], + [4.855950443311009, 45.69143851158069], + [4.855955048725805, 45.69139880266571], + [4.85591518390002, 45.69139520669937] + ] + }, + "length": 0.0094992002360799, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line2113", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2649, + "bus2": 2650, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85591518390002, 45.69139520669937], + [4.855915068012751, 45.69139520030173] + ] + }, + "length": 9.054749376593195e-6, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line988", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 51, + "bus2": 1364, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855869182087027, 45.69136049630226], + [4.855867232318871, 45.69136027006984] + ] + }, + "length": 0.0001539404843332, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line952", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1364, + "bus2": 1365, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855867232318871, 45.69136027006984], + [4.855846104884748, 45.69144901085738] + ] + }, + "length": 0.0099994696006292, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1576", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1364, + "bus2": 2081, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855867232318871, 45.69136027006984], + [4.855854534153559, 45.69135896213488] + ] + }, + "length": 0.0009997222679235, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1577", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2081, + "bus2": 2082, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855854534153559, 45.69135896213488], + [4.855816427653202, 45.69135505659377] + ] + }, + "length": 0.0029997976524975, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1578", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2082, + "bus2": 2083, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855816427653202, 45.69135505659377], + [4.855791018908654, 45.6913524499912] + ] + }, + "length": 0.002000251978809, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1579", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2083, + "bus2": 2084, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855791018908654, 45.6913524499912], + [4.855786863583238, 45.69135202127266] + ] + }, + "length": 0.0003271589286956, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1580", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2084, + "bus2": 2085, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855786863583238, 45.69135202127266], + [4.85563566314481, 45.69133651542809] + ] + }, + "length": 0.0119028646292776, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line953", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1365, + "bus2": 1366, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855846104884748, 45.69144901085738], + [4.855845684286097, 45.69145076654667], + [4.855901120337955, 45.69153953345657], + [4.85588829377169, 45.69161122844266] + ] + }, + "length": 0.0189984078266001, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1581", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2085, + "bus2": 2086, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85563566314481, 45.69133651542809], + [4.855622952159835, 45.69133520775522] + ] + }, + "length": 0.0010007064087425, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1582", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2086, + "bus2": 2087, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855622952159835, 45.69133520775522], + [4.855600498514187, 45.69133290377598] + ] + }, + "length": 0.0017676269548577, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1583", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2087, + "bus2": 2088, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855600498514187, 45.69133290377598], + [4.855587787530867, 45.69133159609905] + ] + }, + "length": 0.0010007064104751, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1584", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2088, + "bus2": 2089, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855587787530867, 45.69133159609905], + [4.855407023176602, 45.69131305456497] + ] + }, + "length": 0.0142302752899377, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line954", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1366, + "bus2": 1367, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85588829377169, 45.69161122844266], + [4.855860204231766, 45.69176818400519] + ] + }, + "length": 0.0175815455828478, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1214", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1663, + "bus2": 1664, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856370661831063, 45.69110851750263], + [4.856375306784422, 45.69110589277815] + ] + }, + "length": 0.0004647694653149, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1215", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1664, + "bus2": 1665, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856375306784422, 45.69110589277815], + [4.856382029776952, 45.69110208720114] + ] + }, + "length": 0.000673157746019, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1216", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1665, + "bus2": 1666, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856382029776952, 45.69110208720114], + [4.856387024934563, 45.69109925657929] + ] + }, + "length": 0.0005003696964554, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2308", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1666, + "bus2": 2846, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856387024934563, 45.69109925657929], + [4.856355663247043, 45.69105945574269], + [4.856360725716369, 45.69102412913973] + ] + }, + "length": 0.0089995012028159, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2311", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1666, + "bus2": 2849, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856387024934563, 45.69109925657929], + [4.85640419839692, 45.69110967215316], + [4.856458006484099, 45.69111484486989] + ] + }, + "length": 0.0059995904338227, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1585", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2089, + "bus2": 2090, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855407023176602, 45.69131305456497], + [4.855368916328575, 45.69130913987988] + ] + }, + "length": 0.0029999740821226, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1586", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2090, + "bus2": 2091, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855368916328575, 45.69130913987988], + [4.855356218598147, 45.6913078408805] + ] + }, + "length": 0.0009995457086402, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2312", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2849, + "bus2": 2850, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856458006484099, 45.69111484486989], + [4.856636058726183, 45.69113194244653] + ] + }, + "length": 0.0139986419668756, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2309", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2846, + "bus2": 2847, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856360725716369, 45.69102412913973], + [4.856383793336582, 45.69086300169013] + ] + }, + "length": 0.0179984696461502, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2832", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1367, + "bus2": 3399, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855860204231766, 45.69176818400519], + [4.855763551680219, 45.69182738723423] + ] + }, + "length": 0.0099988303999178, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2313", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2850, + "bus2": 2851, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856636058726183, 45.69113194244653], + [4.856800333523847, 45.69114772016799] + ] + }, + "length": 0.0129154893237343, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2833", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3399, + "bus2": 3400, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855763551680219, 45.69182738723423], + [4.855584089016939, 45.69193730935378], + [4.855398849537063, 45.69194059727197] + ] + }, + "length": 0.0329985491086803, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2310", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2847, + "bus2": 2848, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856383793336582, 45.69086300169013], + [4.856390704015929, 45.69081473478015] + ] + }, + "length": 0.0053915783689662, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2314", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2851, + "bus2": 2852, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856800333523847, 45.69114772016799], + [4.856801404224056, 45.69114782212127] + ] + }, + "length": 8.41665220926229e-5, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2852, + "bus2": 2853, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856801404224056, 45.69114782212127], + [4.856806693572222, 45.69114833332971] + ] + }, + "length": 0.0004159034442303, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2834", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3400, + "bus2": 3401, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855398849537063, 45.69194059727197], + [4.855392869155902, 45.69194070460053], + [4.855387309011729, 45.69184721664104], + [4.855416724230305, 45.69181947119029] + ] + }, + "length": 0.0147075358057835, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2835", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3401, + "bus2": 3402, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855416724230305, 45.69181947119029], + [4.855418952830454, 45.69181736884877] + ] + }, + "length": 0.0002910897047899, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2836", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3402, + "bus2": 3403, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855418952830454, 45.69181736884877], + [4.855420553793683, 45.69181586568582] + ] + }, + "length": 0.0002084777079536, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1646", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 542, + "bus2": 2156, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856978967864625, 45.69219040555863], + [4.85685262162569, 45.69253367223592] + ] + }, + "length": 0.0394013052961165, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1960", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 542, + "bus2": 2488, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856978967864625, 45.69219040555863], + [4.856738631522436, 45.69216124238103] + ] + }, + "length": 0.0189987578088231, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1961", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2488, + "bus2": 2489, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856738631522436, 45.69216124238103], + [4.85665349107763, 45.69215091411277], + [4.8563875660472, 45.69228111612342] + ] + }, + "length": 0.0319981744631324, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1647", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2156, + "bus2": 2157, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85685262162569, 45.69253367223592], + [4.856851022816997, 45.69253802876519] + ] + }, + "length": 0.0004999657082792, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1962", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2489, + "bus2": 2490, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.8563875660472, 45.69228111612342], + [4.856292856235074, 45.69232748538923] + ] + }, + "length": 0.008999023393858, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1963", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2490, + "bus2": 2491, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856292856235074, 45.69232748538923], + [4.856208673924059, 45.69236870335052] + ] + }, + "length": 0.0079989134977189, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1964", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2491, + "bus2": 2492, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856208673924059, 45.69236870335052], + [4.856140935805975, 45.69240186471046], + [4.856052674911791, 45.69246595632609], + [4.856029618601329, 45.69250467560685] + ] + }, + "length": 0.0209990509945453, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1965", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2492, + "bus2": 2493, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856029618601329, 45.69250467560685], + [4.855930737267387, 45.69267072873552] + ] + }, + "length": 0.0199986363582786, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1966", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2493, + "bus2": 2494, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855930737267387, 45.69267072873552], + [4.855888072041425, 45.69274239200233] + ] + }, + "length": 0.008630510320176, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2389", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2494, + "bus2": 2933, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855888072041425, 45.69274239200233], + [4.85627431413481, 45.69280960338721] + ] + }, + "length": 0.0309983265742373, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2056", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2494, + "bus2": 2588, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855888072041425, 45.69274239200233], + [4.855825999456157, 45.69273095075617] + ] + }, + "length": 0.0049993261430797, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2057", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2588, + "bus2": 2589, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855825999456157, 45.69273095075617], + [4.855788745488097, 45.6927240826258] + ] + }, + "length": 0.003000476475499, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2058", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2589, + "bus2": 2590, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855788745488097, 45.6927240826258], + [4.855676659986405, 45.69270342242253] + ] + }, + "length": 0.0090273856534237, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2059", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2590, + "bus2": 2591, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855676659986405, 45.69270342242253], + [4.855670455137178, 45.69270227463329] + ] + }, + "length": 0.0004998552042313, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2390", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2933, + "bus2": 2934, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85627431413481, 45.69280960338721], + [4.856417860286734, 45.69283457875029] + ] + }, + "length": 0.0115203641917798, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2391", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2934, + "bus2": 2935, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856417860286734, 45.69283457875029], + [4.856423816029007, 45.69283561508038] + ] + }, + "length": 0.0004779834842022, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2392", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2935, + "bus2": 2936, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856423816029007, 45.69283561508038], + [4.856424087948438, 45.69283566297754] + ] + }, + "length": 2.183881197426037e-5, + "params_id": "S_AL_95", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 3403, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_240", + "z_line": [ + [ + [0.125, 0.0, 0.0, 0.0], + [0.0, 0.125, 0.0, 0.0], + [0.0, 0.0, 0.125, 0.0], + [0.0, 0.0, 0.0, 0.1] + ], + [ + [0.10000000000000002, 0.0, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0, 0.0], + [0.0, 0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [0.0001285539713848, 0.0, 0.0, 0.0], + [0.0, 0.0001285539713848, 0.0, 0.0], + [0.0, 0.0, 0.0001285539713848, 0.0], + [0.0, 0.0, 0.0, 0.0] + ] + ] + }, + { + "id": "S_AL_35", + "z_line": [ + [ + [0.8571428571428571, 0.0, 0.0, 0.0], + [0.0, 0.8571428571428571, 0.0, 0.0], + [0.0, 0.0, 0.8571428571428571, 0.0], + [0.0, 0.0, 0.0, 0.1] + ], + [ + [0.10000000000000002, 0.0, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0, 0.0], + [0.0, 0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [5.899911003441632e-5, 0.0, 0.0, 0.0], + [0.0, 5.899911003441632e-5, 0.0, 0.0], + [0.0, 0.0, 5.899911003441632e-5, 0.0], + [0.0, 0.0, 0.0, 0.0] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.1] + ], + [ + [0.10000000000000002, 0.0, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0, 0.0], + [0.0, 0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [7.935663042967819e-5, 0.0, 0.0, 0.0], + [0.0, 7.935663042967819e-5, 0.0, 0.0], + [0.0, 0.0, 7.935663042967819e-5, 0.0], + [0.0, 0.0, 0.0, 0.0] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json index 28ea4ccf..e2063e54 100644 --- a/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json +++ b/roseau/load_flow/tests/data/networks/B.EC05_N009/network_power.json @@ -1,1834 +1,1591 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 50, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - } - }, - { - "id": 50, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - } - }, - { - "id": 542, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856978967864625, 45.69219040555863] - } - }, - { - "id": 1364, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855867232318871, 45.69136027006984] - } - }, - { - "id": 1365, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855846104884748, 45.69144901085738] - } - }, - { - "id": 1366, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85588829377169, 45.69161122844266] - } - }, - { - "id": 1367, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855860204231766, 45.69176818400519] - } - }, - { - "id": 51, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855869182087027, 45.69136049630226] - } - }, - { - "id": 1663, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856370661831063, 45.69110851750263] - } - }, - { - "id": 1664, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856375306784422, 45.69110589277815] - } - }, - { - "id": 1665, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856382029776952, 45.69110208720114] - } - }, - { - "id": 1666, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856387024934563, 45.69109925657929] - } - }, - { - "id": 2081, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855854534153559, 45.69135896213488] - } - }, - { - "id": 2082, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855816427653202, 45.69135505659377] - } - }, - { - "id": 2083, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855791018908654, 45.6913524499912] - } - }, - { - "id": 2084, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855786863583238, 45.69135202127266] - } - }, - { - "id": 2085, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85563566314481, 45.69133651542809] - } - }, - { - "id": 2086, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855622952159835, 45.69133520775522] - } - }, - { - "id": 2087, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855600498514187, 45.69133290377598] - } - }, - { - "id": 2088, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855587787530867, 45.69133159609905] - } - }, - { - "id": 2089, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855407023176602, 45.69131305456497] - } - }, - { - "id": 2090, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855368916328575, 45.69130913987988] - } - }, - { - "id": 2091, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855356218598147, 45.6913078408805] - } - }, - { - "id": 2156, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85685262162569, 45.69253367223592] - } - }, - { - "id": 2157, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856851022816997, 45.69253802876519] - } - }, - { - "id": 2488, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856738631522436, 45.69216124238103] - } - }, - { - "id": 2489, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.8563875660472, 45.69228111612342] - } - }, - { - "id": 2490, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856292856235074, 45.69232748538923] - } - }, - { - "id": 2491, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856208673924059, 45.69236870335052] - } - }, - { - "id": 2492, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856029618601329, 45.69250467560685] - } - }, - { - "id": 2493, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855930737267387, 45.69267072873552] - } - }, - { - "id": 2494, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855888072041425, 45.69274239200233] - } - }, - { - "id": 2588, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855825999456157, 45.69273095075617] - } - }, - { - "id": 2589, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855788745488097, 45.6927240826258] - } - }, - { - "id": 2590, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855676659986405, 45.69270342242253] - } - }, - { - "id": 2591, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855670455137178, 45.69270227463329] - } - }, - { - "id": 2649, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85591518390002, 45.69139520669937] - } - }, - { - "id": 2650, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855915068012751, 45.69139520030173] - } - }, - { - "id": 2846, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856360725716369, 45.69102412913973] - } - }, - { - "id": 2847, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856383793336582, 45.69086300169013] - } - }, - { - "id": 2848, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856390704015929, 45.69081473478015] - } - }, - { - "id": 2849, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856458006484099, 45.69111484486989] - } - }, - { - "id": 2850, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856636058726183, 45.69113194244653] - } - }, - { - "id": 2851, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856800333523847, 45.69114772016799] - } - }, - { - "id": 2852, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856801404224056, 45.69114782212127] - } - }, - { - "id": 2853, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856806693572222, 45.69114833332971] - } - }, - { - "id": 2933, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.85627431413481, 45.69280960338721] - } - }, - { - "id": 2934, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856417860286734, 45.69283457875029] - } - }, - { - "id": 2935, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856423816029007, 45.69283561508038] - } - }, - { - "id": 2936, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.856424087948438, 45.69283566297754] - } - }, - { - "id": 3399, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855763551680219, 45.69182738723423] - } - }, - { - "id": 3400, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855398849537063, 45.69194059727197] - } - }, - { - "id": 3401, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855416724230305, 45.69181947119029] - } - }, - { - "id": 3402, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855418952830454, 45.69181736884877] - } - }, - { - "id": 3403, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [4.855420553793683, 45.69181586568582] - } - } - ], - "branches": [ - { - "id": "transfo", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 50, - "geometry": { - "type": "Point", - "coordinates": [4.855987191883029, 45.69145568840754] - }, - "params_id": "160kVA", - "tap": 1.0 - }, - { - "id": "line243", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 542, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.856006369563374, 45.69145685074764], - [4.856041286384759, 45.6914589736374], - [4.85608611929476, 45.69142826223273], - [4.85710799403576, 45.691501610824], - [4.857207269582688, 45.69156598849194], - [4.856978967864625, 45.69219040555863] - ] - }, - "length": 0.1698047886136108, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1213", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 1663, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.856000594306501, 45.69144599899529], - [4.856024490964286, 45.69142874679027], - [4.856042739971293, 45.69129421833258], - [4.856370661831063, 45.69110851750263] - ] - }, - "length": 0.0505315521261473, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line987", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 51, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.855988721281017, 45.6914422332006], - [4.855996361520631, 45.6913753713747], - [4.855869182087027, 45.69136049630226] - ] - }, - "length": 0.0174985508964364, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2112", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 50, - "bus2": 2649, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855987191883029, 45.69145568840754], - [4.855971166936666, 45.69144819937015], - [4.855950443311009, 45.69143851158069], - [4.855955048725805, 45.69139880266571], - [4.85591518390002, 45.69139520669937] - ] - }, - "length": 0.0094992002360799, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line2113", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2649, - "bus2": 2650, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85591518390002, 45.69139520669937], - [4.855915068012751, 45.69139520030173] - ] - }, - "length": 9.054749376593195e-06, - "params_id": "S_AL_35", - "ground": "ground" - }, - { - "id": "line988", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 51, - "bus2": 1364, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855869182087027, 45.69136049630226], - [4.855867232318871, 45.69136027006984] - ] - }, - "length": 0.0001539404843332, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line952", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1364, - "bus2": 1365, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855867232318871, 45.69136027006984], - [4.855846104884748, 45.69144901085738] - ] - }, - "length": 0.0099994696006292, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1576", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1364, - "bus2": 2081, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855867232318871, 45.69136027006984], - [4.855854534153559, 45.69135896213488] - ] - }, - "length": 0.0009997222679235, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1577", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2081, - "bus2": 2082, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855854534153559, 45.69135896213488], - [4.855816427653202, 45.69135505659377] - ] - }, - "length": 0.0029997976524975, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1578", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2082, - "bus2": 2083, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855816427653202, 45.69135505659377], - [4.855791018908654, 45.6913524499912] - ] - }, - "length": 0.002000251978809, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1579", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2083, - "bus2": 2084, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855791018908654, 45.6913524499912], - [4.855786863583238, 45.69135202127266] - ] - }, - "length": 0.0003271589286956, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1580", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2084, - "bus2": 2085, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855786863583238, 45.69135202127266], - [4.85563566314481, 45.69133651542809] - ] - }, - "length": 0.0119028646292776, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line953", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1365, - "bus2": 1366, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855846104884748, 45.69144901085738], - [4.855845684286097, 45.69145076654667], - [4.855901120337955, 45.69153953345657], - [4.85588829377169, 45.69161122844266] - ] - }, - "length": 0.0189984078266001, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1581", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2085, - "bus2": 2086, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85563566314481, 45.69133651542809], - [4.855622952159835, 45.69133520775522] - ] - }, - "length": 0.0010007064087425, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1582", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2086, - "bus2": 2087, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855622952159835, 45.69133520775522], - [4.855600498514187, 45.69133290377598] - ] - }, - "length": 0.0017676269548577, - "params_id": "S_AL_240", - "ground": "ground" + "id": 1, + "phase": "n" }, { - "id": "line1583", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2087, - "bus2": 2088, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855600498514187, 45.69133290377598], - [4.855587787530867, 45.69133159609905] - ] - }, - "length": 0.0010007064104751, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1584", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2088, - "bus2": 2089, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855587787530867, 45.69133159609905], - [4.855407023176602, 45.69131305456497] - ] - }, - "length": 0.0142302752899377, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line954", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1366, - "bus2": 1367, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85588829377169, 45.69161122844266], - [4.855860204231766, 45.69176818400519] - ] - }, - "length": 0.0175815455828478, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1214", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1663, - "bus2": 1664, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856370661831063, 45.69110851750263], - [4.856375306784422, 45.69110589277815] - ] - }, - "length": 0.0004647694653149, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1215", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1664, - "bus2": 1665, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856375306784422, 45.69110589277815], - [4.856382029776952, 45.69110208720114] - ] - }, - "length": 0.000673157746019, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1216", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1665, - "bus2": 1666, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856382029776952, 45.69110208720114], - [4.856387024934563, 45.69109925657929] - ] - }, - "length": 0.0005003696964554, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2308", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1666, - "bus2": 2846, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856387024934563, 45.69109925657929], - [4.856355663247043, 45.69105945574269], - [4.856360725716369, 45.69102412913973] - ] - }, - "length": 0.0089995012028159, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2311", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1666, - "bus2": 2849, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856387024934563, 45.69109925657929], - [4.85640419839692, 45.69110967215316], - [4.856458006484099, 45.69111484486989] - ] - }, - "length": 0.0059995904338227, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1585", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2089, - "bus2": 2090, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855407023176602, 45.69131305456497], - [4.855368916328575, 45.69130913987988] - ] - }, - "length": 0.0029999740821226, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1586", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2090, - "bus2": 2091, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855368916328575, 45.69130913987988], - [4.855356218598147, 45.6913078408805] - ] - }, - "length": 0.0009995457086402, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2312", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2849, - "bus2": 2850, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856458006484099, 45.69111484486989], - [4.856636058726183, 45.69113194244653] - ] - }, - "length": 0.0139986419668756, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2309", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2846, - "bus2": 2847, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856360725716369, 45.69102412913973], - [4.856383793336582, 45.69086300169013] - ] - }, - "length": 0.0179984696461502, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2832", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1367, - "bus2": 3399, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855860204231766, 45.69176818400519], - [4.855763551680219, 45.69182738723423] - ] - }, - "length": 0.0099988303999178, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2313", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2850, - "bus2": 2851, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856636058726183, 45.69113194244653], - [4.856800333523847, 45.69114772016799] - ] - }, - "length": 0.0129154893237343, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2833", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3399, - "bus2": 3400, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855763551680219, 45.69182738723423], - [4.855584089016939, 45.69193730935378], - [4.855398849537063, 45.69194059727197] - ] - }, - "length": 0.0329985491086803, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2310", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2847, - "bus2": 2848, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856383793336582, 45.69086300169013], - [4.856390704015929, 45.69081473478015] - ] - }, - "length": 0.0053915783689662, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2314", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2851, - "bus2": 2852, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856800333523847, 45.69114772016799], - [4.856801404224056, 45.69114782212127] - ] - }, - "length": 8.41665220926229e-05, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2315", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2852, - "bus2": 2853, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856801404224056, 45.69114782212127], - [4.856806693572222, 45.69114833332971] - ] - }, - "length": 0.0004159034442303, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2834", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3400, - "bus2": 3401, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855398849537063, 45.69194059727197], - [4.855392869155902, 45.69194070460053], - [4.855387309011729, 45.69184721664104], - [4.855416724230305, 45.69181947119029] - ] - }, - "length": 0.0147075358057835, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2835", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3401, - "bus2": 3402, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855416724230305, 45.69181947119029], - [4.855418952830454, 45.69181736884877] - ] - }, - "length": 0.0002910897047899, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2836", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3402, - "bus2": 3403, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855418952830454, 45.69181736884877], - [4.855420553793683, 45.69181586568582] - ] - }, - "length": 0.0002084777079536, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line1646", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 542, - "bus2": 2156, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856978967864625, 45.69219040555863], - [4.85685262162569, 45.69253367223592] - ] - }, - "length": 0.0394013052961165, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1960", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 542, - "bus2": 2488, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856978967864625, 45.69219040555863], - [4.856738631522436, 45.69216124238103] - ] - }, - "length": 0.0189987578088231, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1961", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2488, - "bus2": 2489, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856738631522436, 45.69216124238103], - [4.85665349107763, 45.69215091411277], - [4.8563875660472, 45.69228111612342] - ] - }, - "length": 0.0319981744631324, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1647", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2156, - "bus2": 2157, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85685262162569, 45.69253367223592], - [4.856851022816997, 45.69253802876519] - ] - }, - "length": 0.0004999657082792, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1962", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2489, - "bus2": 2490, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.8563875660472, 45.69228111612342], - [4.856292856235074, 45.69232748538923] - ] - }, - "length": 0.008999023393858, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1963", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2490, - "bus2": 2491, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856292856235074, 45.69232748538923], - [4.856208673924059, 45.69236870335052] - ] - }, - "length": 0.0079989134977189, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1964", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2491, - "bus2": 2492, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856208673924059, 45.69236870335052], - [4.856140935805975, 45.69240186471046], - [4.856052674911791, 45.69246595632609], - [4.856029618601329, 45.69250467560685] - ] - }, - "length": 0.0209990509945453, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1965", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2492, - "bus2": 2493, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856029618601329, 45.69250467560685], - [4.855930737267387, 45.69267072873552] - ] - }, - "length": 0.0199986363582786, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line1966", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2493, - "bus2": 2494, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855930737267387, 45.69267072873552], - [4.855888072041425, 45.69274239200233] - ] - }, - "length": 0.008630510320176, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2389", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2494, - "bus2": 2933, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855888072041425, 45.69274239200233], - [4.85627431413481, 45.69280960338721] - ] - }, - "length": 0.0309983265742373, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2056", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2494, - "bus2": 2588, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855888072041425, 45.69274239200233], - [4.855825999456157, 45.69273095075617] - ] - }, - "length": 0.0049993261430797, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2057", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2588, - "bus2": 2589, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855825999456157, 45.69273095075617], - [4.855788745488097, 45.6927240826258] - ] - }, - "length": 0.003000476475499, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2058", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2589, - "bus2": 2590, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855788745488097, 45.6927240826258], - [4.855676659986405, 45.69270342242253] - ] - }, - "length": 0.0090273856534237, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2059", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2590, - "bus2": 2591, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.855676659986405, 45.69270342242253], - [4.855670455137178, 45.69270227463329] - ] - }, - "length": 0.0004998552042313, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2390", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2933, - "bus2": 2934, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.85627431413481, 45.69280960338721], - [4.856417860286734, 45.69283457875029] - ] - }, - "length": 0.0115203641917798, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2391", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2934, - "bus2": 2935, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856417860286734, 45.69283457875029], - [4.856423816029007, 45.69283561508038] - ] - }, - "length": 0.0004779834842022, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line2392", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2935, - "bus2": 2936, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.856423816029007, 45.69283561508038], - [4.856424087948438, 45.69283566297754] - ] - }, - "length": 2.183881197426037e-05, - "params_id": "S_AL_95", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3403, - "phases": "abcn", - "powers": [ - [37977.16080879668, 18988.580404398333], - [37977.160809820285, 18988.580404910143], - [37977.16080879669, 18988.580404398344] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001285539713848, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001285539713848, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001285539713848, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ] - ] - }, - { - "id": "S_AL_35", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.8571428571428571, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.8571428571428571, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.8571428571428571, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 5.899911003441632e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 5.899911003441632e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 5.899911003441632e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.31578947368421, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.31578947368421, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.31578947368421, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.1 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 7.935663042967819e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 7.935663042967819e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 7.935663042967819e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 50, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + } + }, + { + "id": 50, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + } + }, + { + "id": 542, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856978967864625, 45.69219040555863] + } + }, + { + "id": 1364, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855867232318871, 45.69136027006984] + } + }, + { + "id": 1365, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855846104884748, 45.69144901085738] + } + }, + { + "id": 1366, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85588829377169, 45.69161122844266] + } + }, + { + "id": 1367, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855860204231766, 45.69176818400519] + } + }, + { + "id": 51, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855869182087027, 45.69136049630226] + } + }, + { + "id": 1663, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856370661831063, 45.69110851750263] + } + }, + { + "id": 1664, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856375306784422, 45.69110589277815] + } + }, + { + "id": 1665, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856382029776952, 45.69110208720114] + } + }, + { + "id": 1666, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856387024934563, 45.69109925657929] + } + }, + { + "id": 2081, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855854534153559, 45.69135896213488] + } + }, + { + "id": 2082, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855816427653202, 45.69135505659377] + } + }, + { + "id": 2083, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855791018908654, 45.6913524499912] + } + }, + { + "id": 2084, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855786863583238, 45.69135202127266] + } + }, + { + "id": 2085, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85563566314481, 45.69133651542809] + } + }, + { + "id": 2086, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855622952159835, 45.69133520775522] + } + }, + { + "id": 2087, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855600498514187, 45.69133290377598] + } + }, + { + "id": 2088, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855587787530867, 45.69133159609905] + } + }, + { + "id": 2089, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855407023176602, 45.69131305456497] + } + }, + { + "id": 2090, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855368916328575, 45.69130913987988] + } + }, + { + "id": 2091, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855356218598147, 45.6913078408805] + } + }, + { + "id": 2156, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85685262162569, 45.69253367223592] + } + }, + { + "id": 2157, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856851022816997, 45.69253802876519] + } + }, + { + "id": 2488, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856738631522436, 45.69216124238103] + } + }, + { + "id": 2489, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.8563875660472, 45.69228111612342] + } + }, + { + "id": 2490, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856292856235074, 45.69232748538923] + } + }, + { + "id": 2491, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856208673924059, 45.69236870335052] + } + }, + { + "id": 2492, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856029618601329, 45.69250467560685] + } + }, + { + "id": 2493, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855930737267387, 45.69267072873552] + } + }, + { + "id": 2494, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855888072041425, 45.69274239200233] + } + }, + { + "id": 2588, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855825999456157, 45.69273095075617] + } + }, + { + "id": 2589, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855788745488097, 45.6927240826258] + } + }, + { + "id": 2590, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855676659986405, 45.69270342242253] + } + }, + { + "id": 2591, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855670455137178, 45.69270227463329] + } + }, + { + "id": 2649, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85591518390002, 45.69139520669937] + } + }, + { + "id": 2650, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855915068012751, 45.69139520030173] + } + }, + { + "id": 2846, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856360725716369, 45.69102412913973] + } + }, + { + "id": 2847, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856383793336582, 45.69086300169013] + } + }, + { + "id": 2848, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856390704015929, 45.69081473478015] + } + }, + { + "id": 2849, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856458006484099, 45.69111484486989] + } + }, + { + "id": 2850, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856636058726183, 45.69113194244653] + } + }, + { + "id": 2851, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856800333523847, 45.69114772016799] + } + }, + { + "id": 2852, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856801404224056, 45.69114782212127] + } + }, + { + "id": 2853, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856806693572222, 45.69114833332971] + } + }, + { + "id": 2933, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.85627431413481, 45.69280960338721] + } + }, + { + "id": 2934, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856417860286734, 45.69283457875029] + } + }, + { + "id": 2935, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856423816029007, 45.69283561508038] + } + }, + { + "id": 2936, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.856424087948438, 45.69283566297754] + } + }, + { + "id": 3399, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855763551680219, 45.69182738723423] + } + }, + { + "id": 3400, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855398849537063, 45.69194059727197] + } + }, + { + "id": 3401, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855416724230305, 45.69181947119029] + } + }, + { + "id": 3402, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855418952830454, 45.69181736884877] + } + }, + { + "id": 3403, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [4.855420553793683, 45.69181586568582] + } + } + ], + "branches": [ + { + "id": "transfo", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 50, + "geometry": { + "type": "Point", + "coordinates": [4.855987191883029, 45.69145568840754] + }, + "params_id": "160kVA", + "tap": 1.0 + }, + { + "id": "line243", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 542, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.856006369563374, 45.69145685074764], + [4.856041286384759, 45.6914589736374], + [4.85608611929476, 45.69142826223273], + [4.85710799403576, 45.691501610824], + [4.857207269582688, 45.69156598849194], + [4.856978967864625, 45.69219040555863] + ] + }, + "length": 0.1698047886136108, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1213", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 1663, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.856000594306501, 45.69144599899529], + [4.856024490964286, 45.69142874679027], + [4.856042739971293, 45.69129421833258], + [4.856370661831063, 45.69110851750263] + ] + }, + "length": 0.0505315521261473, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line987", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 51, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.855988721281017, 45.6914422332006], + [4.855996361520631, 45.6913753713747], + [4.855869182087027, 45.69136049630226] + ] + }, + "length": 0.0174985508964364, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2112", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 50, + "bus2": 2649, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855987191883029, 45.69145568840754], + [4.855971166936666, 45.69144819937015], + [4.855950443311009, 45.69143851158069], + [4.855955048725805, 45.69139880266571], + [4.85591518390002, 45.69139520669937] + ] + }, + "length": 0.0094992002360799, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line2113", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2649, + "bus2": 2650, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85591518390002, 45.69139520669937], + [4.855915068012751, 45.69139520030173] + ] + }, + "length": 9.054749376593195e-6, + "params_id": "S_AL_35", + "ground": "ground" + }, + { + "id": "line988", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 51, + "bus2": 1364, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855869182087027, 45.69136049630226], + [4.855867232318871, 45.69136027006984] + ] + }, + "length": 0.0001539404843332, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line952", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1364, + "bus2": 1365, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855867232318871, 45.69136027006984], + [4.855846104884748, 45.69144901085738] + ] + }, + "length": 0.0099994696006292, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1576", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1364, + "bus2": 2081, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855867232318871, 45.69136027006984], + [4.855854534153559, 45.69135896213488] + ] + }, + "length": 0.0009997222679235, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1577", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2081, + "bus2": 2082, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855854534153559, 45.69135896213488], + [4.855816427653202, 45.69135505659377] + ] + }, + "length": 0.0029997976524975, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1578", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2082, + "bus2": 2083, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855816427653202, 45.69135505659377], + [4.855791018908654, 45.6913524499912] + ] + }, + "length": 0.002000251978809, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1579", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2083, + "bus2": 2084, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855791018908654, 45.6913524499912], + [4.855786863583238, 45.69135202127266] + ] + }, + "length": 0.0003271589286956, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1580", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2084, + "bus2": 2085, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855786863583238, 45.69135202127266], + [4.85563566314481, 45.69133651542809] + ] + }, + "length": 0.0119028646292776, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line953", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1365, + "bus2": 1366, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855846104884748, 45.69144901085738], + [4.855845684286097, 45.69145076654667], + [4.855901120337955, 45.69153953345657], + [4.85588829377169, 45.69161122844266] + ] + }, + "length": 0.0189984078266001, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1581", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2085, + "bus2": 2086, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85563566314481, 45.69133651542809], + [4.855622952159835, 45.69133520775522] + ] + }, + "length": 0.0010007064087425, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1582", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2086, + "bus2": 2087, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855622952159835, 45.69133520775522], + [4.855600498514187, 45.69133290377598] + ] + }, + "length": 0.0017676269548577, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1583", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2087, + "bus2": 2088, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855600498514187, 45.69133290377598], + [4.855587787530867, 45.69133159609905] + ] + }, + "length": 0.0010007064104751, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1584", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2088, + "bus2": 2089, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855587787530867, 45.69133159609905], + [4.855407023176602, 45.69131305456497] + ] + }, + "length": 0.0142302752899377, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line954", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1366, + "bus2": 1367, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85588829377169, 45.69161122844266], + [4.855860204231766, 45.69176818400519] + ] + }, + "length": 0.0175815455828478, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1214", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1663, + "bus2": 1664, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856370661831063, 45.69110851750263], + [4.856375306784422, 45.69110589277815] + ] + }, + "length": 0.0004647694653149, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1215", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1664, + "bus2": 1665, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856375306784422, 45.69110589277815], + [4.856382029776952, 45.69110208720114] + ] + }, + "length": 0.000673157746019, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1216", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1665, + "bus2": 1666, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856382029776952, 45.69110208720114], + [4.856387024934563, 45.69109925657929] + ] + }, + "length": 0.0005003696964554, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2308", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1666, + "bus2": 2846, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856387024934563, 45.69109925657929], + [4.856355663247043, 45.69105945574269], + [4.856360725716369, 45.69102412913973] + ] + }, + "length": 0.0089995012028159, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2311", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1666, + "bus2": 2849, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856387024934563, 45.69109925657929], + [4.85640419839692, 45.69110967215316], + [4.856458006484099, 45.69111484486989] + ] + }, + "length": 0.0059995904338227, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1585", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2089, + "bus2": 2090, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855407023176602, 45.69131305456497], + [4.855368916328575, 45.69130913987988] + ] + }, + "length": 0.0029999740821226, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1586", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2090, + "bus2": 2091, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855368916328575, 45.69130913987988], + [4.855356218598147, 45.6913078408805] + ] + }, + "length": 0.0009995457086402, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2312", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2849, + "bus2": 2850, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856458006484099, 45.69111484486989], + [4.856636058726183, 45.69113194244653] + ] + }, + "length": 0.0139986419668756, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2309", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2846, + "bus2": 2847, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856360725716369, 45.69102412913973], + [4.856383793336582, 45.69086300169013] + ] + }, + "length": 0.0179984696461502, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2832", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1367, + "bus2": 3399, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855860204231766, 45.69176818400519], + [4.855763551680219, 45.69182738723423] + ] + }, + "length": 0.0099988303999178, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2313", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2850, + "bus2": 2851, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856636058726183, 45.69113194244653], + [4.856800333523847, 45.69114772016799] + ] + }, + "length": 0.0129154893237343, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2833", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3399, + "bus2": 3400, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855763551680219, 45.69182738723423], + [4.855584089016939, 45.69193730935378], + [4.855398849537063, 45.69194059727197] + ] + }, + "length": 0.0329985491086803, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2310", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2847, + "bus2": 2848, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856383793336582, 45.69086300169013], + [4.856390704015929, 45.69081473478015] + ] + }, + "length": 0.0053915783689662, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2314", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2851, + "bus2": 2852, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856800333523847, 45.69114772016799], + [4.856801404224056, 45.69114782212127] + ] + }, + "length": 8.41665220926229e-5, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2315", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2852, + "bus2": 2853, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856801404224056, 45.69114782212127], + [4.856806693572222, 45.69114833332971] + ] + }, + "length": 0.0004159034442303, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2834", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3400, + "bus2": 3401, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855398849537063, 45.69194059727197], + [4.855392869155902, 45.69194070460053], + [4.855387309011729, 45.69184721664104], + [4.855416724230305, 45.69181947119029] + ] + }, + "length": 0.0147075358057835, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2835", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3401, + "bus2": 3402, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855416724230305, 45.69181947119029], + [4.855418952830454, 45.69181736884877] + ] + }, + "length": 0.0002910897047899, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2836", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3402, + "bus2": 3403, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855418952830454, 45.69181736884877], + [4.855420553793683, 45.69181586568582] + ] + }, + "length": 0.0002084777079536, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line1646", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 542, + "bus2": 2156, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856978967864625, 45.69219040555863], + [4.85685262162569, 45.69253367223592] + ] + }, + "length": 0.0394013052961165, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1960", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 542, + "bus2": 2488, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856978967864625, 45.69219040555863], + [4.856738631522436, 45.69216124238103] + ] + }, + "length": 0.0189987578088231, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1961", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2488, + "bus2": 2489, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856738631522436, 45.69216124238103], + [4.85665349107763, 45.69215091411277], + [4.8563875660472, 45.69228111612342] + ] + }, + "length": 0.0319981744631324, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1647", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2156, + "bus2": 2157, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85685262162569, 45.69253367223592], + [4.856851022816997, 45.69253802876519] + ] + }, + "length": 0.0004999657082792, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1962", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2489, + "bus2": 2490, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.8563875660472, 45.69228111612342], + [4.856292856235074, 45.69232748538923] + ] + }, + "length": 0.008999023393858, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1963", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2490, + "bus2": 2491, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856292856235074, 45.69232748538923], + [4.856208673924059, 45.69236870335052] + ] + }, + "length": 0.0079989134977189, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1964", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2491, + "bus2": 2492, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856208673924059, 45.69236870335052], + [4.856140935805975, 45.69240186471046], + [4.856052674911791, 45.69246595632609], + [4.856029618601329, 45.69250467560685] + ] + }, + "length": 0.0209990509945453, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1965", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2492, + "bus2": 2493, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856029618601329, 45.69250467560685], + [4.855930737267387, 45.69267072873552] + ] + }, + "length": 0.0199986363582786, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line1966", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2493, + "bus2": 2494, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855930737267387, 45.69267072873552], + [4.855888072041425, 45.69274239200233] + ] + }, + "length": 0.008630510320176, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2389", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2494, + "bus2": 2933, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855888072041425, 45.69274239200233], + [4.85627431413481, 45.69280960338721] + ] + }, + "length": 0.0309983265742373, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2056", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2494, + "bus2": 2588, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855888072041425, 45.69274239200233], + [4.855825999456157, 45.69273095075617] + ] + }, + "length": 0.0049993261430797, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2057", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2588, + "bus2": 2589, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855825999456157, 45.69273095075617], + [4.855788745488097, 45.6927240826258] + ] + }, + "length": 0.003000476475499, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2058", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2589, + "bus2": 2590, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855788745488097, 45.6927240826258], + [4.855676659986405, 45.69270342242253] + ] + }, + "length": 0.0090273856534237, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2059", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2590, + "bus2": 2591, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.855676659986405, 45.69270342242253], + [4.855670455137178, 45.69270227463329] + ] + }, + "length": 0.0004998552042313, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2390", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2933, + "bus2": 2934, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.85627431413481, 45.69280960338721], + [4.856417860286734, 45.69283457875029] + ] + }, + "length": 0.0115203641917798, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2391", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2934, + "bus2": 2935, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856417860286734, 45.69283457875029], + [4.856423816029007, 45.69283561508038] + ] + }, + "length": 0.0004779834842022, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line2392", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2935, + "bus2": 2936, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.856423816029007, 45.69283561508038], + [4.856424087948438, 45.69283566297754] + ] + }, + "length": 2.183881197426037e-5, + "params_id": "S_AL_95", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 3403, + "phases": "abcn", + "powers": [ + [37977.16080879668, 18988.580404398333], + [37977.160809820285, 18988.580404910143], + [37977.16080879669, 18988.580404398344] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_240", + "z_line": [ + [ + [0.125, 0.0, 0.0, 0.0], + [0.0, 0.125, 0.0, 0.0], + [0.0, 0.0, 0.125, 0.0], + [0.0, 0.0, 0.0, 0.1] + ], + [ + [0.10000000000000002, 0.0, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0, 0.0], + [0.0, 0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [0.0001285539713848, 0.0, 0.0, 0.0], + [0.0, 0.0001285539713848, 0.0, 0.0], + [0.0, 0.0, 0.0001285539713848, 0.0], + [0.0, 0.0, 0.0, 0.0] + ] + ] + }, + { + "id": "S_AL_35", + "z_line": [ + [ + [0.8571428571428571, 0.0, 0.0, 0.0], + [0.0, 0.8571428571428571, 0.0, 0.0], + [0.0, 0.0, 0.8571428571428571, 0.0], + [0.0, 0.0, 0.0, 0.1] + ], + [ + [0.10000000000000002, 0.0, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0, 0.0], + [0.0, 0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [5.899911003441632e-5, 0.0, 0.0, 0.0], + [0.0, 5.899911003441632e-5, 0.0, 0.0], + [0.0, 0.0, 5.899911003441632e-5, 0.0], + [0.0, 0.0, 0.0, 0.0] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.31578947368421, 0.0, 0.0, 0.0], + [0.0, 0.31578947368421, 0.0, 0.0], + [0.0, 0.0, 0.31578947368421, 0.0], + [0.0, 0.0, 0.0, 0.1] + ], + [ + [0.10000000000000002, 0.0, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0, 0.0], + [0.0, 0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.0, 0.1] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 0.0] + ], + [ + [7.935663042967819e-5, 0.0, 0.0, 0.0], + [0.0, 7.935663042967819e-5, 0.0, 0.0], + [0.0, 0.0, 7.935663042967819e-5, 0.0], + [0.0, 0.0, 0.0, 0.0] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json index 40650c8a..ecd99378 100644 --- a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_impedance.json @@ -1,1125 +1,555 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 1.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, -1.0] - } - }, - { - "id": 7, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -1.0] - } - }, - { - "id": 8, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, 0.0] - } - }, - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, 1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_zy_neutral", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_z_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 2, - "bus": 3, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 3, - "bus": 4, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 4, - "bus": 5, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 5, - "bus": 6, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 6, - "bus": 7, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 7, - "bus": 8, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 8, - "bus": 9, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123443e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.883653691123448e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522741e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.88246546842203e-05, - -1.9265213360533982e-06, - -1.925552134660659e-06, - -1.2027068909761439e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422033e-05, - -1.925552134660666e-06, - -1.2027068909761439e-05 - ], - [ - -1.925552134660659e-06, - -1.9255521346606663e-06, - 4.88265396812771e-05, - -1.2028010593546635e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.0001070929347408532 - ] - ] - ] - }, - { - "id": "A_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.3282840277126631, - 0.25483745354438536, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.3282840277126631, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.25483745354438536, - 0.3282840277126631, - 0.2893513764966174 - ], - [ - 0.2893513764966174, - 0.2893513764966174, - 0.2893513764966174, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.88384494258988e-08, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 9.88384494258988e-08, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 9.88384494258988e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.2027382804356504e-05 - ], - [ - -1.2027382804356504e-05, - -1.2027382804356504e-05, - -1.2027382804356504e-05, - 0.0001070929347408 - ] - ] - ] - }, - { - "id": "A_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ] - }, - { - "id": "A_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123444e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.88365369112345e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522746e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.882465468422031e-05, - -1.9265213360533982e-06, - -1.9255521346606625e-06, - -1.2027068909761437e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422034e-05, - -1.9255521346606684e-06, - -1.2027068909761439e-05 - ], - [ - -1.92555213466066e-06, - -1.925552134660667e-06, - 4.8826539681277115e-05, - -1.2028010593546638e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.00010709293474085319 - ] - ] - ] - }, - { - "id": "S_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.87397024584863e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.251453341640509e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.00030308021498525026 - ] - ] - ] - }, - { - "id": "S_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.32828402771266313, - 0.24705491511278602, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.32828402771266313, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.24705491511278602, - 0.32828402771266313, - 0.247054915112786 - ], - [ - 0.247054915112786, - 0.247054915112786, - 0.247054915112786, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.9233205197394304e-05, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 1.9233205197394304e-05, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 1.9233205197394304e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00046329162067999997, - -5.56183240209e-05, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - 0.00046329162067999997, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - -5.56183240209e-05, - 0.00046329162067999997, - -3.150155268172179e-05 - ], - [ - -3.150155268172179e-05, - -3.150155268172179e-05, - -3.150155268172179e-05, - 0.0003030802149852 - ] - ] - ] - }, - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - }, - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 1.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, -1.0] + } + }, + { + "id": 7, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -1.0] + } + }, + { + "id": 8, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, 0.0] + } + }, + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, 1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z_neutral" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_zy_neutral", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_z_neutral" + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 2, + "bus": 3, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 3, + "bus": 4, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 4, + "bus": 5, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 5, + "bus": 6, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 6, + "bus": 7, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 7, + "bus": 8, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 8, + "bus": 9, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123443e-8, -0.0, -0.0, -0.0], + [-0.0, 9.883653691123448e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522741e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5], + [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5], + [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532] + ] + ] + }, + { + "id": "A_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174], + [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [9.88384494258988e-8, 0.0, 0.0, -0.0], + [0.0, 9.88384494258988e-8, 0.0, -0.0], + [0.0, 0.0, 9.88384494258988e-8, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5], + [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408] + ] + ] + }, + { + "id": "A_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ] + }, + { + "id": "A_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123444e-8, -0.0, -0.0, -0.0], + [-0.0, 9.88365369112345e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522746e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.882465468422031e-5, -1.9265213360533982e-6, -1.9255521346606625e-6, -1.2027068909761437e-5], + [-1.926521336053397e-6, 4.882465468422034e-5, -1.9255521346606684e-6, -1.2027068909761439e-5], + [-1.92555213466066e-6, -1.925552134660667e-6, 4.8826539681277115e-5, -1.2028010593546638e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.00010709293474085319] + ] + ] + }, + { + "id": "S_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.87397024584863e-5, -0.0], + [-0.0, -0.0, -0.0, 1.251453341640509e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026] + ] + ] + }, + { + "id": "S_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786], + [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [1.9233205197394304e-5, 0.0, 0.0, -0.0], + [0.0, 1.9233205197394304e-5, 0.0, -0.0], + [0.0, 0.0, 1.9233205197394304e-5, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5], + [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852] + ] + ] + }, + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + }, + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json index 6d0dcff1..1900a533 100644 --- a/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_all_lv_types/network_power.json @@ -1,1125 +1,555 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 1.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, -1.0] - } - }, - { - "id": 7, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -1.0] - } - }, - { - "id": 8, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, 0.0] - } - }, - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, 1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_zy_neutral", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_z_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "powers": [ - [35039.1873340248, 17519.5936670124], - [35781.40565643413, 17890.70282821707], - [36620.18097784068, 18310.09048892034] - ] - }, - { - "id": 2, - "bus": 3, - "phases": "abcn", - "powers": [ - [35816.134717475616, 17908.067358737808], - [35816.1347928834, 17908.0673964417], - [35816.134792883386, 17908.067396441696] - ] - }, - { - "id": 3, - "bus": 4, - "phases": "abcn", - "powers": [ - [35039.1873340248, 17519.5936670124], - [35781.40565643413, 17890.70282821707], - [36620.18097784068, 18310.09048892034] - ] - }, - { - "id": 4, - "bus": 5, - "phases": "abcn", - "powers": [ - [35038.754846820004, 17519.377423409995], - [35781.066730803446, 17890.533365401716], - [36620.01680936384, 18310.008404681917] - ] - }, - { - "id": 5, - "bus": 6, - "phases": "abcn", - "powers": [ - [35916.961624067146, 17958.480812033577], - [35916.96169432148, 17958.480847160736], - [35916.961697864856, 17958.48084893243] - ] - }, - { - "id": 6, - "bus": 7, - "phases": "abcn", - "powers": [ - [35916.96162167113, 17958.480810835565], - [35916.96169729119, 17958.480848645595], - [35916.96169729121, 17958.480848645606] - ] - }, - { - "id": 7, - "bus": 8, - "phases": "abcn", - "powers": [ - [35916.961624067146, 17958.480812033577], - [35916.96169432148, 17958.480847160743], - [35916.96169786487, 17958.48084893243] - ] - }, - { - "id": 8, - "bus": 9, - "phases": "abcn", - "powers": [ - [35916.93047353464, 17958.465236767322], - [35916.93054915485, 17958.465274577422], - [35916.93054915477, 17958.465274577386] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123443e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.883653691123448e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522741e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.88246546842203e-05, - -1.9265213360533982e-06, - -1.925552134660659e-06, - -1.2027068909761439e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422033e-05, - -1.925552134660666e-06, - -1.2027068909761439e-05 - ], - [ - -1.925552134660659e-06, - -1.9255521346606663e-06, - 4.88265396812771e-05, - -1.2028010593546635e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.0001070929347408532 - ] - ] - ] - }, - { - "id": "A_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.3282840277126631, - 0.25483745354438536, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.3282840277126631, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.25483745354438536, - 0.3282840277126631, - 0.2893513764966174 - ], - [ - 0.2893513764966174, - 0.2893513764966174, - 0.2893513764966174, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.88384494258988e-08, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 9.88384494258988e-08, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 9.88384494258988e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.2027382804356504e-05 - ], - [ - -1.2027382804356504e-05, - -1.2027382804356504e-05, - -1.2027382804356504e-05, - 0.0001070929347408 - ] - ] - ] - }, - { - "id": "A_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ] - }, - { - "id": "A_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123444e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.88365369112345e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522746e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.882465468422031e-05, - -1.9265213360533982e-06, - -1.9255521346606625e-06, - -1.2027068909761437e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422034e-05, - -1.9255521346606684e-06, - -1.2027068909761439e-05 - ], - [ - -1.92555213466066e-06, - -1.925552134660667e-06, - 4.8826539681277115e-05, - -1.2028010593546638e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.00010709293474085319 - ] - ] - ] - }, - { - "id": "S_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.87397024584863e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.251453341640509e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.00030308021498525026 - ] - ] - ] - }, - { - "id": "S_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.32828402771266313, - 0.24705491511278602, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.32828402771266313, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.24705491511278602, - 0.32828402771266313, - 0.247054915112786 - ], - [ - 0.247054915112786, - 0.247054915112786, - 0.247054915112786, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.9233205197394304e-05, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 1.9233205197394304e-05, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 1.9233205197394304e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00046329162067999997, - -5.56183240209e-05, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - 0.00046329162067999997, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - -5.56183240209e-05, - 0.00046329162067999997, - -3.150155268172179e-05 - ], - [ - -3.150155268172179e-05, - -3.150155268172179e-05, - -3.150155268172179e-05, - 0.0003030802149852 - ] - ] - ] - }, - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - }, - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 1.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, -1.0] + } + }, + { + "id": 7, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -1.0] + } + }, + { + "id": 8, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, 0.0] + } + }, + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, 1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z_neutral" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_zy_neutral", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_z_neutral" + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "powers": [ + [35039.1873340248, 17519.5936670124], + [35781.40565643413, 17890.70282821707], + [36620.18097784068, 18310.09048892034] + ] + }, + { + "id": 2, + "bus": 3, + "phases": "abcn", + "powers": [ + [35816.134717475616, 17908.067358737808], + [35816.1347928834, 17908.0673964417], + [35816.134792883386, 17908.067396441696] + ] + }, + { + "id": 3, + "bus": 4, + "phases": "abcn", + "powers": [ + [35039.1873340248, 17519.5936670124], + [35781.40565643413, 17890.70282821707], + [36620.18097784068, 18310.09048892034] + ] + }, + { + "id": 4, + "bus": 5, + "phases": "abcn", + "powers": [ + [35038.754846820004, 17519.377423409995], + [35781.066730803446, 17890.533365401716], + [36620.01680936384, 18310.008404681917] + ] + }, + { + "id": 5, + "bus": 6, + "phases": "abcn", + "powers": [ + [35916.961624067146, 17958.480812033577], + [35916.96169432148, 17958.480847160736], + [35916.961697864856, 17958.48084893243] + ] + }, + { + "id": 6, + "bus": 7, + "phases": "abcn", + "powers": [ + [35916.96162167113, 17958.480810835565], + [35916.96169729119, 17958.480848645595], + [35916.96169729121, 17958.480848645606] + ] + }, + { + "id": 7, + "bus": 8, + "phases": "abcn", + "powers": [ + [35916.961624067146, 17958.480812033577], + [35916.96169432148, 17958.480847160743], + [35916.96169786487, 17958.48084893243] + ] + }, + { + "id": 8, + "bus": 9, + "phases": "abcn", + "powers": [ + [35916.93047353464, 17958.465236767322], + [35916.93054915485, 17958.465274577422], + [35916.93054915477, 17958.465274577386] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123443e-8, -0.0, -0.0, -0.0], + [-0.0, 9.883653691123448e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522741e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5], + [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5], + [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532] + ] + ] + }, + { + "id": "A_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174], + [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [9.88384494258988e-8, 0.0, 0.0, -0.0], + [0.0, 9.88384494258988e-8, 0.0, -0.0], + [0.0, 0.0, 9.88384494258988e-8, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5], + [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408] + ] + ] + }, + { + "id": "A_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ] + }, + { + "id": "A_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123444e-8, -0.0, -0.0, -0.0], + [-0.0, 9.88365369112345e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522746e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.882465468422031e-5, -1.9265213360533982e-6, -1.9255521346606625e-6, -1.2027068909761437e-5], + [-1.926521336053397e-6, 4.882465468422034e-5, -1.9255521346606684e-6, -1.2027068909761439e-5], + [-1.92555213466066e-6, -1.925552134660667e-6, 4.8826539681277115e-5, -1.2028010593546638e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.00010709293474085319] + ] + ] + }, + { + "id": "S_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.87397024584863e-5, -0.0], + [-0.0, -0.0, -0.0, 1.251453341640509e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026] + ] + ] + }, + { + "id": "S_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786], + [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [1.9233205197394304e-5, 0.0, 0.0, -0.0], + [0.0, 1.9233205197394304e-5, 0.0, -0.0], + [0.0, 0.0, 1.9233205197394304e-5, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5], + [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852] + ] + ] + }, + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + }, + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json index bc3d4bfe..6875f093 100644 --- a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_impedance.json @@ -1,649 +1,401 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 1.0] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, -1.0] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, 1.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_zy", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_z", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, -1.0] - ] - }, - "length": 5.0, - "params_id": "A_AL_150_sym", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, -1.0] - ] - }, - "length": 5.0, - "params_id": "A_AL_150_zy", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, -1.0] - ] - }, - "length": 5.0, - "params_id": "A_AL_150_z", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 3, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 3, - "bus": 4, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 4, - "bus": 5, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 5, - "bus": 6, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 6, - "bus": 7, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.255, - 0.255 - ], - [ - 0.255, - 0.328, - 0.255 - ], - [ - 0.255, - 0.255, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 5.0999999999999993e-08, - 0.0, - 0.0 - ], - [ - 0.0, - 5.0999999999999993e-08, - 0.0 - ], - [ - 0.0, - 0.0, - 5.0999999999999993e-08 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - }, - { - "id": "A_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2548, - 0.2548 - ], - [ - 0.2548, - 0.3283, - 0.2548 - ], - [ - 0.2548, - 0.2548, - 0.3283 - ] - ] - ] - }, - { - "id": "A_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2548, - 0.2548 - ], - [ - 0.2548, - 0.3283, - 0.2548 - ], - [ - 0.2548, - 0.2548, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 5e-08, - 0.0, - 0.0 - ], - [ - 0.0, - 5e-08, - 0.0 - ], - [ - 0.0, - 0.0, - 5e-08 - ] - ], - [ - [ - 1.707e-05, - -1.93e-06, - -1.93e-06 - ], - [ - -1.93e-06, - 1.707e-05, - -1.93e-06 - ], - [ - -1.93e-06, - -1.93e-06, - 1.707e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ] - }, - { - "id": "S_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.046e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 1.108e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 1.046e-05 - ] - ], - [ - [ - 0.00017437, - -7.293e-05, - -2.099e-05 - ], - [ - -7.293e-05, - 0.0001847, - -7.293e-05 - ], - [ - -2.099e-05, - -7.293e-05, - 0.00017437 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 1.0] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, -1.0] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, 1.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_zy", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_z" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, -1.0] + ] + }, + "length": 5.0, + "params_id": "A_AL_150_sym", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, -1.0] + ] + }, + "length": 5.0, + "params_id": "A_AL_150_zy", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, -1.0] + ] + }, + "length": 5.0, + "params_id": "A_AL_150_z" + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 3, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 3, + "bus": 4, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 4, + "bus": 5, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 5, + "bus": 6, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 6, + "bus": 7, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.255, 0.255], + [0.255, 0.328, 0.255], + [0.255, 0.255, 0.328] + ] + ], + "y_shunt": [ + [ + [5.0999999999999993e-8, 0.0, 0.0], + [0.0, 5.0999999999999993e-8, 0.0], + [0.0, 0.0, 5.0999999999999993e-8] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + }, + { + "id": "A_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2548, 0.2548], + [0.2548, 0.3283, 0.2548], + [0.2548, 0.2548, 0.3283] + ] + ] + }, + { + "id": "A_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2548, 0.2548], + [0.2548, 0.3283, 0.2548], + [0.2548, 0.2548, 0.3283] + ] + ], + "y_shunt": [ + [ + [5e-8, 0.0, 0.0], + [0.0, 5e-8, 0.0], + [0.0, 0.0, 5e-8] + ], + [ + [1.707e-5, -1.93e-6, -1.93e-6], + [-1.93e-6, 1.707e-5, -1.93e-6], + [-1.93e-6, -1.93e-6, 1.707e-5] + ] + ] + }, + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + }, + { + "id": "S_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ] + }, + { + "id": "S_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ], + "y_shunt": [ + [ + [1.046e-5, 0.0, 0.0], + [0.0, 1.108e-5, 0.0], + [0.0, 0.0, 1.046e-5] + ], + [ + [0.00017437, -7.293e-5, -2.099e-5], + [-7.293e-5, 0.0001847, -7.293e-5], + [-2.099e-5, -7.293e-5, 0.00017437] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json index 04ca0521..eb2a95d8 100644 --- a/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_all_mv_types/network_power.json @@ -1,649 +1,401 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 1.0] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, -1.0] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, 1.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_zy", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_z", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, -1.0] - ] - }, - "length": 5.0, - "params_id": "A_AL_150_sym", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, -1.0] - ] - }, - "length": 5.0, - "params_id": "A_AL_150_zy", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-1.0, -1.0] - ] - }, - "length": 5.0, - "params_id": "A_AL_150_z", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "powers": [ - [8976647.55370645, 4488323.776853224], - [8976647.553948393, 4488323.7769741975], - [8976647.553948395, 4488323.776974197] - ] - }, - { - "id": 2, - "bus": 3, - "phases": "abcn", - "powers": [ - [8851974.197587248, 4425987.098793624], - [9004394.547519604, 4502197.273759801], - [9015108.260802487, 4507554.130401242] - ] - }, - { - "id": 3, - "bus": 4, - "phases": "abcn", - "powers": [ - [8847353.195074398, 4423676.597537199], - [9001005.405795652, 4500502.702897826], - [9012931.55806226, 4506465.779031129] - ] - }, - { - "id": 4, - "bus": 5, - "phases": "abcn", - "powers": [ - [8980987.706659468, 4490493.853329734], - [8980987.70690153, 4490493.853450765], - [8980987.70690153, 4490493.853450765] - ] - }, - { - "id": 5, - "bus": 6, - "phases": "abcn", - "powers": [ - [8979350.424799088, 4489675.212399543], - [8979350.425041111, 4489675.2125205565], - [8979350.425041111, 4489675.212520554] - ] - }, - { - "id": 6, - "bus": 7, - "phases": "abcn", - "powers": [ - [8979059.220473152, 4489529.610236577], - [8979059.220715165, 4489529.610357584], - [8979059.220715165, 4489529.610357586] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.255, - 0.255 - ], - [ - 0.255, - 0.328, - 0.255 - ], - [ - 0.255, - 0.255, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 5.0999999999999993e-08, - 0.0, - 0.0 - ], - [ - 0.0, - 5.0999999999999993e-08, - 0.0 - ], - [ - 0.0, - 0.0, - 5.0999999999999993e-08 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - }, - { - "id": "A_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2548, - 0.2548 - ], - [ - 0.2548, - 0.3283, - 0.2548 - ], - [ - 0.2548, - 0.2548, - 0.3283 - ] - ] - ] - }, - { - "id": "A_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2548, - 0.2548 - ], - [ - 0.2548, - 0.3283, - 0.2548 - ], - [ - 0.2548, - 0.2548, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 5e-08, - 0.0, - 0.0 - ], - [ - 0.0, - 5e-08, - 0.0 - ], - [ - 0.0, - 0.0, - 5e-08 - ] - ], - [ - [ - 1.707e-05, - -1.93e-06, - -1.93e-06 - ], - [ - -1.93e-06, - 1.707e-05, - -1.93e-06 - ], - [ - -1.93e-06, - -1.93e-06, - 1.707e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ] - }, - { - "id": "S_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.046e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 1.108e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 1.046e-05 - ] - ], - [ - [ - 0.00017437, - -7.293e-05, - -2.099e-05 - ], - [ - -7.293e-05, - 0.0001847, - -7.293e-05 - ], - [ - -2.099e-05, - -7.293e-05, - 0.00017437 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 1.0] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, -1.0] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, 1.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_zy", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_z" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, -1.0] + ] + }, + "length": 5.0, + "params_id": "A_AL_150_sym", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, -1.0] + ] + }, + "length": 5.0, + "params_id": "A_AL_150_zy", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-1.0, -1.0] + ] + }, + "length": 5.0, + "params_id": "A_AL_150_z" + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "powers": [ + [8976647.55370645, 4488323.776853224], + [8976647.553948393, 4488323.7769741975], + [8976647.553948395, 4488323.776974197] + ] + }, + { + "id": 2, + "bus": 3, + "phases": "abcn", + "powers": [ + [8851974.197587248, 4425987.098793624], + [9004394.547519604, 4502197.273759801], + [9015108.260802487, 4507554.130401242] + ] + }, + { + "id": 3, + "bus": 4, + "phases": "abcn", + "powers": [ + [8847353.195074398, 4423676.597537199], + [9001005.405795652, 4500502.702897826], + [9012931.55806226, 4506465.779031129] + ] + }, + { + "id": 4, + "bus": 5, + "phases": "abcn", + "powers": [ + [8980987.706659468, 4490493.853329734], + [8980987.70690153, 4490493.853450765], + [8980987.70690153, 4490493.853450765] + ] + }, + { + "id": 5, + "bus": 6, + "phases": "abcn", + "powers": [ + [8979350.424799088, 4489675.212399543], + [8979350.425041111, 4489675.2125205565], + [8979350.425041111, 4489675.212520554] + ] + }, + { + "id": 6, + "bus": 7, + "phases": "abcn", + "powers": [ + [8979059.220473152, 4489529.610236577], + [8979059.220715165, 4489529.610357584], + [8979059.220715165, 4489529.610357586] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.255, 0.255], + [0.255, 0.328, 0.255], + [0.255, 0.255, 0.328] + ] + ], + "y_shunt": [ + [ + [5.0999999999999993e-8, 0.0, 0.0], + [0.0, 5.0999999999999993e-8, 0.0], + [0.0, 0.0, 5.0999999999999993e-8] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + }, + { + "id": "A_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2548, 0.2548], + [0.2548, 0.3283, 0.2548], + [0.2548, 0.2548, 0.3283] + ] + ] + }, + { + "id": "A_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2548, 0.2548], + [0.2548, 0.3283, 0.2548], + [0.2548, 0.2548, 0.3283] + ] + ], + "y_shunt": [ + [ + [5e-8, 0.0, 0.0], + [0.0, 5e-8, 0.0], + [0.0, 0.0, 5e-8] + ], + [ + [1.707e-5, -1.93e-6, -1.93e-6], + [-1.93e-6, 1.707e-5, -1.93e-6], + [-1.93e-6, -1.93e-6, 1.707e-5] + ] + ] + }, + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + }, + { + "id": "S_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ] + }, + { + "id": "S_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ], + "y_shunt": [ + [ + [1.046e-5, 0.0, 0.0], + [0.0, 1.108e-5, 0.0], + [0.0, 0.0, 1.046e-5] + ], + [ + [0.00017437, -7.293e-5, -2.099e-5], + [-7.293e-5, 0.0001847, -7.293e-5], + [-2.099e-5, -7.293e-5, 0.00017437] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json index 28e558ef..fc36bdc1 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_impedance.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_lv_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 6.492990301993529e-07, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 7.760329608740529e-07, - -0.0, - 0.0 - ], - [ - -0.0, - -0.0, - 6.492990301993506e-07, - -0.0 - ], - [ - -0.0, - 0.0, - -0.0, - 3.5616901884786625e-07 - ] - ], - [ - [ - 0.0003163289867670228, - -6.592686877000749e-05, - -1.507901584696675e-06, - -3.246120634586769e-05 - ], - [ - -6.592686877000748e-05, - 0.0003820159070099681, - -6.592686877000684e-05, - 8.515484154730534e-06 - ], - [ - -1.5079015846966908e-06, - -6.592686877000681e-05, - 0.00031632898676702166, - -3.246120634586795e-05 - ], - [ - -3.246120634586768e-05, - 8.51548415473053e-06, - -3.246120634586795e-05, - 0.0001751299348196272 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_lv_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [6.492990301993529e-7, -0.0, -0.0, -0.0], + [-0.0, 7.760329608740529e-7, -0.0, 0.0], + [-0.0, -0.0, 6.492990301993506e-7, -0.0], + [-0.0, 0.0, -0.0, 3.5616901884786625e-7] + ], + [ + [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5], + [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6], + [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5], + [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json index a50006e1..5ee4b514 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_exact/network_power.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4180.783784516326, 2090.3918922581624], - [4189.859333623026, 2094.929666811513], - [4205.094966924958, 2102.547483462479] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_lv_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 6.492990301993529e-07, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 7.760329608740529e-07, - -0.0, - 0.0 - ], - [ - -0.0, - -0.0, - 6.492990301993506e-07, - -0.0 - ], - [ - -0.0, - 0.0, - -0.0, - 3.5616901884786625e-07 - ] - ], - [ - [ - 0.0003163289867670228, - -6.592686877000749e-05, - -1.507901584696675e-06, - -3.246120634586769e-05 - ], - [ - -6.592686877000748e-05, - 0.0003820159070099681, - -6.592686877000684e-05, - 8.515484154730534e-06 - ], - [ - -1.5079015846966908e-06, - -6.592686877000681e-05, - 0.00031632898676702166, - -3.246120634586795e-05 - ], - [ - -3.246120634586768e-05, - 8.51548415473053e-06, - -3.246120634586795e-05, - 0.0001751299348196272 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4180.783784516326, 2090.3918922581624], + [4189.859333623026, 2094.929666811513], + [4205.094966924958, 2102.547483462479] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_lv_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [6.492990301993529e-7, -0.0, -0.0, -0.0], + [-0.0, 7.760329608740529e-7, -0.0, 0.0], + [-0.0, -0.0, 6.492990301993506e-7, -0.0], + [-0.0, 0.0, -0.0, 3.5616901884786625e-7] + ], + [ + [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5], + [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6], + [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5], + [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json index f5ec44f6..84e1fcd7 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_impedance.json @@ -1,186 +1,105 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - } - ], - "loads": [], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_lv_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 6.492990301993529e-07, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 7.760329608740529e-07, - -0.0, - 0.0 - ], - [ - -0.0, - -0.0, - 6.492990301993506e-07, - -0.0 - ], - [ - -0.0, - 0.0, - -0.0, - 3.5616901884786625e-07 - ] - ], - [ - [ - 0.0003163289867670228, - -6.592686877000749e-05, - -1.507901584696675e-06, - -3.246120634586769e-05 - ], - [ - -6.592686877000748e-05, - 0.0003820159070099681, - -6.592686877000684e-05, - 8.515484154730534e-06 - ], - [ - -1.5079015846966908e-06, - -6.592686877000681e-05, - 0.00031632898676702166, - -3.246120634586795e-05 - ], - [ - -3.246120634586768e-05, - 8.51548415473053e-06, - -3.246120634586795e-05, - 0.0001751299348196272 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + } + ], + "loads": [], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_lv_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [6.492990301993529e-7, -0.0, -0.0, -0.0], + [-0.0, 7.760329608740529e-7, -0.0, 0.0], + [-0.0, -0.0, 6.492990301993506e-7, -0.0], + [-0.0, 0.0, -0.0, 3.5616901884786625e-7] + ], + [ + [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5], + [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6], + [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5], + [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json index f5ec44f6..84e1fcd7 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_exact_no_load/network_power.json @@ -1,186 +1,105 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - } - ], - "loads": [], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_lv_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 6.492990301993529e-07, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 7.760329608740529e-07, - -0.0, - 0.0 - ], - [ - -0.0, - -0.0, - 6.492990301993506e-07, - -0.0 - ], - [ - -0.0, - 0.0, - -0.0, - 3.5616901884786625e-07 - ] - ], - [ - [ - 0.0003163289867670228, - -6.592686877000749e-05, - -1.507901584696675e-06, - -3.246120634586769e-05 - ], - [ - -6.592686877000748e-05, - 0.0003820159070099681, - -6.592686877000684e-05, - 8.515484154730534e-06 - ], - [ - -1.5079015846966908e-06, - -6.592686877000681e-05, - 0.00031632898676702166, - -3.246120634586795e-05 - ], - [ - -3.246120634586768e-05, - 8.51548415473053e-06, - -3.246120634586795e-05, - 0.0001751299348196272 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + } + ], + "loads": [], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_lv_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [6.492990301993529e-7, -0.0, -0.0, -0.0], + [-0.0, 7.760329608740529e-7, -0.0, 0.0], + [-0.0, -0.0, 6.492990301993506e-7, -0.0], + [-0.0, 0.0, -0.0, 3.5616901884786625e-7] + ], + [ + [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5], + [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6], + [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5], + [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json index ee532072..290aeb1b 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_impedance.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.32828402771266313, - 0.24705491511278602, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.32828402771266313, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.24705491511278602, - 0.32828402771266313, - 0.247054915112786 - ], - [ - 0.247054915112786, - 0.247054915112786, - 0.247054915112786, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.9233205197394304e-05, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 1.9233205197394304e-05, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 1.9233205197394304e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00046329162067999997, - -5.56183240209e-05, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - 0.00046329162067999997, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - -5.56183240209e-05, - 0.00046329162067999997, - -3.150155268172179e-05 - ], - [ - -3.150155268172179e-05, - -3.150155268172179e-05, - -3.150155268172179e-05, - 0.0003030802149852 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786], + [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [1.9233205197394304e-5, 0.0, 0.0, -0.0], + [0.0, 1.9233205197394304e-5, 0.0, -0.0], + [0.0, 0.0, 1.9233205197394304e-5, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5], + [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json index 1b237d01..b27408ac 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_sym/network_power.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4189.7293486490735, 2094.8646743245367], - [4189.72935747019, 2094.8646787350945], - [4189.729357470191, 2094.8646787350954] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.32828402771266313, - 0.24705491511278602, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.32828402771266313, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.24705491511278602, - 0.32828402771266313, - 0.247054915112786 - ], - [ - 0.247054915112786, - 0.247054915112786, - 0.247054915112786, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.9233205197394304e-05, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 1.9233205197394304e-05, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 1.9233205197394304e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00046329162067999997, - -5.56183240209e-05, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - 0.00046329162067999997, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - -5.56183240209e-05, - 0.00046329162067999997, - -3.150155268172179e-05 - ], - [ - -3.150155268172179e-05, - -3.150155268172179e-05, - -3.150155268172179e-05, - 0.0003030802149852 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4189.7293486490735, 2094.8646743245367], + [4189.72935747019, 2094.8646787350945], + [4189.729357470191, 2094.8646787350954] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786], + [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [1.9233205197394304e-5, 0.0, 0.0, -0.0], + [0.0, 1.9233205197394304e-5, 0.0, -0.0], + [0.0, 0.0, 1.9233205197394304e-5, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5], + [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json index 58975747..d1ea4487 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_z/network_impedance.json @@ -1,143 +1,101 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z_neutral" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json index 4570197d..76f9c196 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_z/network_power.json @@ -1,143 +1,101 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4178.566539756862, 2089.283269878431], - [4187.615297660943, 2093.807648830472], - [4202.879669403405, 2101.439834701703] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z_neutral" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4178.566539756862, 2089.283269878431], + [4187.615297660943, 2093.807648830472], + [4202.879669403405, 2101.439834701703] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json index 58975747..d1ea4487 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_impedance.json @@ -1,143 +1,101 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z_neutral" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json index 4570197d..76f9c196 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_z_underground/network_power.json @@ -1,143 +1,101 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4178.566539756862, 2089.283269878431], - [4187.615297660943, 2093.807648830472], - [4202.879669403405, 2101.439834701703] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z_neutral" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4178.566539756862, 2089.283269878431], + [4187.615297660943, 2093.807648830472], + [4202.879669403405, 2101.439834701703] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json index 59523973..4a47fdb9 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_impedance.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json index 842acaf2..81418580 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_zy/network_power.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4178.622841482365, 2089.3114207411827], - [4187.661711183047, 2093.8308555915237], - [4202.893970504318, 2101.446985252159] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4178.622841482365, 2089.3114207411827], + [4187.661711183047, 2093.8308555915237], + [4202.893970504318, 2101.446985252159] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json index 59523973..4a47fdb9 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_impedance.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json index 842acaf2..81418580 100644 --- a/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_lv_zy_underground/network_power.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4178.622841482365, 2089.3114207411827], - [4187.661711183047, 2093.8308555915237], - [4202.893970504318, 2101.446985252159] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4178.622841482365, 2089.3114207411827], + [4187.661711183047, 2093.8308555915237], + [4202.893970504318, 2101.446985252159] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json index 799a80c0..d561710a 100644 --- a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_impedance.json @@ -1,161 +1,112 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json index a8bd5f3c..e96e71fa 100644 --- a/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_mv_sym/network_power.json @@ -1,161 +1,112 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [10477211.277314685, 5238605.638657343], - [10477211.27759708, 5238605.638798538], - [10477211.277597075, 5238605.638798539] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [10477211.277314685, 5238605.638657343], + [10477211.27759708, 5238605.638798538], + [10477211.277597075, 5238605.638798539] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json index bf0175c5..e802eadb 100644 --- a/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_mv_z/network_impedance.json @@ -1,125 +1,99 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json b/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json index 36be94cc..a8ef7a7e 100644 --- a/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_mv_z/network_power.json @@ -1,125 +1,99 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_z", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [10460739.41448147, 5230369.707240736], - [10480234.529394493, 5240117.264697246], - [10481646.455736073, 5240823.227868035] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_z" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [10460739.41448147, 5230369.707240736], + [10480234.529394493, 5240117.264697246], + [10481646.455736073, 5240823.227868035] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json index 2e565d96..b21bf915 100644 --- a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_impedance.json @@ -1,161 +1,112 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.046e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 1.108e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 1.046e-05 - ] - ], - [ - [ - 0.00017437, - -7.293e-05, - -2.099e-05 - ], - [ - -7.293e-05, - 0.0001847, - -7.293e-05 - ], - [ - -2.099e-05, - -7.293e-05, - 0.00017437 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ], + "y_shunt": [ + [ + [1.046e-5, 0.0, 0.0], + [0.0, 1.108e-5, 0.0], + [0.0, 0.0, 1.046e-5] + ], + [ + [0.00017437, -7.293e-5, -2.099e-5], + [-7.293e-5, 0.0001847, -7.293e-5], + [-2.099e-5, -7.293e-5, 0.00017437] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json index 647b8587..8c72dc18 100644 --- a/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json +++ b/roseau/load_flow/tests/data/networks/cable_mv_zy/network_power.json @@ -1,161 +1,112 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_zy", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [10460798.061942106, 5230399.030971053], - [10480275.900003351, 5240137.950001675], - [10481673.617717963, 5240836.808858982] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.046e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 1.108e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 1.046e-05 - ] - ], - [ - [ - 0.00017437, - -7.293e-05, - -2.099e-05 - ], - [ - -7.293e-05, - 0.0001847, - -7.293e-05 - ], - [ - -2.099e-05, - -7.293e-05, - 0.00017437 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_zy", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [10460798.061942106, 5230399.030971053], + [10480275.900003351, 5240137.950001675], + [10481673.617717963, 5240836.808858982] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ], + "y_shunt": [ + [ + [1.046e-5, 0.0, 0.0], + [0.0, 1.108e-5, 0.0], + [0.0, 0.0, 1.046e-5] + ], + [ + [0.00017437, -7.293e-5, -2.099e-5], + [-7.293e-5, 0.0001847, -7.293e-5], + [-2.099e-5, -7.293e-5, 0.00017437] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json b/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json index 9b457521..91e739b4 100644 --- a/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/feeder_die/network_impedance.json @@ -1,5877 +1,5044 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [5.354205, 44.76649699999999] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.352489, 44.767044] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.350948000000001, 44.766465] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.349889, 44.768479] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.340990000000001, 44.771987] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.33796, 44.767887] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.333443, 44.772101] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.332152, 44.773154] - } - }, - { - "id": 9, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.328604, 44.771373] - } - }, - { - "id": 10, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.329613, 44.766793] - } - }, - { - "id": 11, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.329857, 44.766317] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.332717, 44.754985] - } - }, - { - "id": 13, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.335779, 44.751524] - } - }, - { - "id": 14, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322039, 44.770639] - } - }, - { - "id": 15, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322518, 44.773602] - } - }, - { - "id": 16, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322693, 44.77292199999999] - } - }, - { - "id": 17, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322789, 44.777828] - } - }, - { - "id": 18, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322418, 44.778323] - } - }, - { - "id": 19, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.317114, 44.784118] - } - }, - { - "id": 20, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.317399, 44.78419] - } - }, - { - "id": 21, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.315126999999999, 44.788614] - } - }, - { - "id": 22, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.314989, 44.769299] - } - }, - { - "id": 23, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.314938, 44.768333] - } - }, - { - "id": 24, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.306875, 44.765457] - } - }, - { - "id": 25, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.294973000000001, 44.768387] - } - }, - { - "id": 26, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.282789, 44.768455] - } - }, - { - "id": 27, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.280849, 44.765393] - } - }, - { - "id": 28, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.280136, 44.76502199999999] - } - }, - { - "id": 29, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.279859, 44.764848] - } - }, - { - "id": 30, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272926, 44.763672] - } - }, - { - "id": 31, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.273633999999999, 44.76358] - } - }, - { - "id": 32, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272794, 44.763982] - } - }, - { - "id": 33, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270316999999999, 44.760419] - } - }, - { - "id": 34, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.274366000000001, 44.758161] - } - }, - { - "id": 35, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275697, 44.757549] - } - }, - { - "id": 36, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.269593, 44.756572] - } - }, - { - "id": 37, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.267119999999999, 44.752936] - } - }, - { - "id": 38, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264632, 44.750295] - } - }, - { - "id": 39, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.27005, 44.740412] - } - }, - { - "id": 40, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.269245, 44.73877] - } - }, - { - "id": 41, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271239, 44.739363] - } - }, - { - "id": 42, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264574, 44.728315] - } - }, - { - "id": 43, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264002, 44.727847] - } - }, - { - "id": 44, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275233999999999, 44.727239] - } - }, - { - "id": 45, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272823000000001, 44.720533] - } - }, - { - "id": 46, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275627, 44.729237] - } - }, - { - "id": 47, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.276962, 44.736068] - } - }, - { - "id": 48, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.276011, 44.729195] - } - }, - { - "id": 49, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.287058999999999, 44.727613] - } - }, - { - "id": 50, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.288065, 44.727506] - } - }, - { - "id": 51, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.288366000000001, 44.727226] - } - }, - { - "id": 52, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291179000000001, 44.730151] - } - }, - { - "id": 53, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291457, 44.731671] - } - }, - { - "id": 54, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.303999999999999, 44.716648] - } - }, - { - "id": 55, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260366, 44.716965] - } - }, - { - "id": 56, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.263661, 44.715183] - } - }, - { - "id": 57, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.257317, 44.708429] - } - }, - { - "id": 58, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.255011, 44.70945800000001] - } - }, - { - "id": 59, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.255535, 44.709709] - } - }, - { - "id": 60, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251427, 44.710828] - } - }, - { - "id": 61, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.243164, 44.708558] - } - }, - { - "id": 62, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251423, 44.711268] - } - }, - { - "id": 63, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251258999999999, 44.71193] - } - }, - { - "id": 64, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.247221, 44.712975] - } - }, - { - "id": 65, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.246554, 44.7128] - } - }, - { - "id": 66, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260308999999999, 44.706012] - } - }, - { - "id": 67, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260567, 44.706227] - } - }, - { - "id": 68, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260624, 44.70527199999999] - } - }, - { - "id": 69, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.256809, 44.701526] - } - }, - { - "id": 70, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264354, 44.701611] - } - }, - { - "id": 71, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.265117, 44.701458] - } - }, - { - "id": 72, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.265736, 44.70128] - } - }, - { - "id": 73, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264355999999999, 44.699422] - } - }, - { - "id": 74, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271076, 44.699195] - } - }, - { - "id": 75, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270124, 44.69265] - } - }, - { - "id": 76, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.274132, 44.698074] - } - }, - { - "id": 77, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275216, 44.69925] - } - }, - { - "id": 78, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.29159, 44.69426] - } - }, - { - "id": 79, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293287, 44.697755] - } - }, - { - "id": 80, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.290635, 44.692304] - } - }, - { - "id": 81, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.28942, 44.691436] - } - }, - { - "id": 82, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.284808, 44.691404] - } - }, - { - "id": 83, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.295083, 44.688311] - } - }, - { - "id": 84, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293566, 44.694074] - } - }, - { - "id": 85, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293666, 44.692658] - } - }, - { - "id": 86, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293688, 44.692509] - } - }, - { - "id": 87, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293481, 44.692697] - } - }, - { - "id": 88, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.298165, 44.693851] - } - }, - { - "id": 89, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.30206, 44.694964] - } - }, - { - "id": 90, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.300629, 44.696719] - } - }, - { - "id": 91, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.304166, 44.69539] - } - }, - { - "id": 92, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.303697000000001, 44.695461] - } - }, - { - "id": 93, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.309441099999999, 44.696444] - } - }, - { - "id": 94, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.268341, 44.703601] - } - }, - { - "id": 95, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270058000000001, 44.70570900000001] - } - }, - { - "id": 96, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272387999999999, 44.708816] - } - }, - { - "id": 97, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271646, 44.709229] - } - }, - { - "id": 98, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.276741, 44.711462] - } - }, - { - "id": 99, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.286003, 44.70976] - } - }, - { - "id": 100, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251605000000001, 44.70417800000001] - } - }, - { - "id": 101, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.252232, 44.699817] - } - }, - { - "id": 102, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.245869, 44.699619] - } - }, - { - "id": 103, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.23077, 44.68984] - } - }, - { - "id": 104, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.233189, 44.688771] - } - }, - { - "id": 105, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.225613, 44.690414] - } - }, - { - "id": 106, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.225658999999999, 44.689413] - } - }, - { - "id": 107, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.229568, 44.685496] - } - }, - { - "id": 108, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.229077999999999, 44.683975] - } - }, - { - "id": 109, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.23335, 44.684175] - } - }, - { - "id": 110, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.252115, 44.696185] - } - }, - { - "id": 111, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.252836, 44.696314] - } - }, - { - "id": 112, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.257869, 44.692639] - } - }, - { - "id": 113, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.258694999999999, 44.694684] - } - }, - { - "id": 114, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271508, 44.666087] - } - }, - { - "id": 115, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.27233, 44.664478] - } - }, - { - "id": 116, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270444, 44.665025] - } - }, - { - "id": 117, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271881, 44.663251] - } - }, - { - "id": 118, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271709, 44.662301] - } - }, - { - "id": 119, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.268746, 44.660331] - } - }, - { - "id": 120, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.288922, 44.6484] - } - }, - { - "id": 121, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.29191, 44.64957800000001] - } - }, - { - "id": 122, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291696, 44.649937] - } - }, - { - "id": 123, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.305674099999999, 44.660426] - } - }, - { - "id": 124, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.306435, 44.663013] - } - }, - { - "id": 125, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291407, 44.637677] - } - }, - { - "id": 126, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.279602, 44.637676] - } - }, - { - "id": 127, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.273155, 44.632589] - } - }, - { - "id": 128, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.302328, 44.630718] - } - }, - { - "id": 129, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.310708999999999, 44.635436] - } - }, - { - "id": 130, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.315926999999999, 44.637017] - } - }, - { - "id": 131, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264264, 44.753757] - } - }, - { - "id": 132, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.263632, 44.753395] - } - }, - { - "id": 133, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.263077, 44.756667] - } - }, - { - "id": 134, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.239022, 44.751841] - } - }, - { - "id": 135, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.238964, 44.751516] - } - }, - { - "id": 136, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.222045, 44.750602] - } - }, - { - "id": 137, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.220266000000001, 44.749594] - } - }, - { - "id": 138, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.218814, 44.748727] - } - }, - { - "id": 139, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.215553, 44.74695] - } - }, - { - "id": 140, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.209531, 44.736899] - } - }, - { - "id": 141, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.208638, 44.734537] - } - }, - { - "id": 142, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.206393, 44.725698] - } - }, - { - "id": 143, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.218058999999999, 44.726117] - } - }, - { - "id": 144, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.219531, 44.72863] - } - }, - { - "id": 145, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.219654, 44.73002899999999] - } - }, - { - "id": 146, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.217169, 44.734855] - } - }, - { - "id": 147, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.220665, 44.720294] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.354205, 44.76649699999999], - [5.352489, 44.767044] - ] - }, - "length": 0.847, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.352489, 44.767044], - [5.350948000000001, 44.766465] - ] - }, - "length": 0.138, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.352489, 44.767044], - [5.349889, 44.768479] - ] - }, - "length": 0.28, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.349889, 44.768479], - [5.340990000000001, 44.771987] - ] - }, - "length": 0.8059999999999999, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 5, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.340990000000001, 44.771987], - [5.33796, 44.767887] - ] - }, - "length": 0.349, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 5, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.340990000000001, 44.771987], - [5.333443, 44.772101] - ] - }, - "length": 0.635, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.333443, 44.772101], - [5.332152, 44.773154] - ] - }, - "length": 0.072, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.333443, 44.772101], - [5.328604, 44.771373] - ] - }, - "length": 0.389, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.328604, 44.771373], - [5.329613, 44.766793] - ] - }, - "length": 0.512, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.329613, 44.766793], - [5.329857, 44.766317] - ] - }, - "length": 0.0579999999999999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.329857, 44.766317], - [5.332717, 44.754985] - ] - }, - "length": 0.981, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line12", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 12, - "bus2": 13, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.332717, 44.754985], - [5.335779, 44.751524] - ] - }, - "length": 0.4539999999999999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line13", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 14, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.328604, 44.771373], - [5.322039, 44.770639] - ] - }, - "length": 0.53, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line14", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 14, - "bus2": 15, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322039, 44.770639], - [5.322518, 44.773602] - ] - }, - "length": 0.3329999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line15", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 15, - "bus2": 16, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322518, 44.773602], - [5.322693, 44.77292199999999] - ] - }, - "length": 0.077, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line16", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 16, - "bus2": 17, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322693, 44.77292199999999], - [5.322789, 44.777828] - ] - }, - "length": 0.47, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line17", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 17, - "bus2": 18, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322789, 44.777828], - [5.322418, 44.778323] - ] - }, - "length": 0.067, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line18", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 18, - "bus2": 19, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322418, 44.778323], - [5.317114, 44.784118] - ] - }, - "length": 0.8420000000000001, - "params_id": "A_AA_75", - "ground": "ground" - }, - { - "id": "line19", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 19, - "bus2": 20, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.317114, 44.784118], - [5.317399, 44.78419] - ] - }, - "length": 0.022, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line20", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 20, - "bus2": 21, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.317399, 44.78419], - [5.315126999999999, 44.788614] - ] - }, - "length": 0.534, - "params_id": "A_AA_75", - "ground": "ground" - }, - { - "id": "line21", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 14, - "bus2": 22, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322039, 44.770639], - [5.314989, 44.769299] - ] - }, - "length": 0.575, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line22", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 22, - "bus2": 23, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.314989, 44.769299], - [5.314938, 44.768333] - ] - }, - "length": 0.787, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line23", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 23, - "bus2": 24, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.314938, 44.768333], - [5.306875, 44.765457] - ] - }, - "length": 0.787, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line24", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 24, - "bus2": 25, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.306875, 44.765457], - [5.294973000000001, 44.768387] - ] - }, - "length": 1.224, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line25", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 25, - "bus2": 26, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.294973000000001, 44.768387], - [5.282789, 44.768455] - ] - }, - "length": 1.37, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line26", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 26, - "bus2": 27, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.282789, 44.768455], - [5.280849, 44.765393] - ] - }, - "length": 0.634, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line27", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 27, - "bus2": 28, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.280849, 44.765393], - [5.280136, 44.76502199999999] - ] - }, - "length": 0.07, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line28", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 28, - "bus2": 29, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.280136, 44.76502199999999], - [5.279859, 44.764848] - ] - }, - "length": 0.044, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line29", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 29, - "bus2": 30, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.279859, 44.764848], - [5.272926, 44.763672] - ] - }, - "length": 0.501, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line30", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 30, - "bus2": 31, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272926, 44.763672], - [5.273633999999999, 44.76358] - ] - }, - "length": 0.069, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line31", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 31, - "bus2": 32, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.273633999999999, 44.76358], - [5.272794, 44.763982] - ] - }, - "length": 0.069, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line32", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 32, - "bus2": 33, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272794, 44.763982], - [5.270316999999999, 44.760419] - ] - }, - "length": 0.4589999999999999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line33", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 33, - "bus2": 34, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270316999999999, 44.760419], - [5.274366000000001, 44.758161] - ] - }, - "length": 0.207, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line34", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 34, - "bus2": 35, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.274366000000001, 44.758161], - [5.275697, 44.757549] - ] - }, - "length": 0.122, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line35", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 35, - "bus2": 36, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275697, 44.757549], - [5.269593, 44.756572] - ] - }, - "length": 0.411, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line36", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 33, - "bus2": 37, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270316999999999, 44.760419], - [5.267119999999999, 44.752936] - ] - }, - "length": 0.897, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line37", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 37, - "bus2": 38, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.267119999999999, 44.752936], - [5.264632, 44.750295] - ] - }, - "length": 0.311, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line38", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 38, - "bus2": 39, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264632, 44.750295], - [5.27005, 44.740412] - ] - }, - "length": 1.254, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line39", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 39, - "bus2": 40, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.27005, 44.740412], - [5.269245, 44.73877] - ] - }, - "length": 0.1889999999999999, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line40", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 40, - "bus2": 41, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.269245, 44.73877], - [5.271239, 44.739363] - ] - }, - "length": 0.177, - "params_id": "A_AA_54", - "ground": "ground" - }, - { - "id": "line41", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 41, - "bus2": 42, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271239, 44.739363], - [5.264574, 44.728315] - ] - }, - "length": 1.217, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line42", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 42, - "bus2": 43, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264574, 44.728315], - [5.264002, 44.727847] - ] - }, - "length": 0.067, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line43", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 42, - "bus2": 44, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264574, 44.728315], - [5.275233999999999, 44.727239] - ] - }, - "length": 0.133, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line44", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 44, - "bus2": 45, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275233999999999, 44.727239], - [5.272823000000001, 44.720533] - ] - }, - "length": 0.529, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line45", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 44, - "bus2": 46, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275233999999999, 44.727239], - [5.275627, 44.729237] - ] - }, - "length": 0.213, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line46", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 46, - "bus2": 47, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275627, 44.729237], - [5.276962, 44.736068] - ] - }, - "length": 1.121, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line47", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 46, - "bus2": 48, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275627, 44.729237], - [5.276011, 44.729195] - ] - }, - "length": 0.03, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line48", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 48, - "bus2": 49, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.276011, 44.729195], - [5.287058999999999, 44.727613] - ] - }, - "length": 0.888, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line49", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 49, - "bus2": 50, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.287058999999999, 44.727613], - [5.288065, 44.727506] - ] - }, - "length": 0.083, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line50", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 50, - "bus2": 51, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288065, 44.727506], - [5.288366000000001, 44.727226] - ] - }, - "length": 0.034, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line51", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 50, - "bus2": 52, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288065, 44.727506], - [5.291179000000001, 44.730151] - ] - }, - "length": 0.238, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line52", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 50, - "bus2": 53, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288065, 44.727506], - [5.291457, 44.731671] - ] - }, - "length": 0.379, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line53", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 49, - "bus2": 54, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.287058999999999, 44.727613], - [5.303999999999999, 44.716648] - ] - }, - "length": 1.971, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line54", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 42, - "bus2": 55, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264574, 44.728315], - [5.260366, 44.716965] - ] - }, - "length": 1.306, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line55", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 55, - "bus2": 56, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260366, 44.716965], - [5.263661, 44.715183] - ] - }, - "length": 0.118, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line56", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 55, - "bus2": 57, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260366, 44.716965], - [5.257317, 44.708429] - ] - }, - "length": 0.982, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line57", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 57, - "bus2": 58, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257317, 44.708429], - [5.255011, 44.70945800000001] - ] - }, - "length": 0.11, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line58", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 58, - "bus2": 59, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.255011, 44.70945800000001], - [5.255535, 44.709709] - ] - }, - "length": 0.05, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line59", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 59, - "bus2": 60, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.255535, 44.709709], - [5.251427, 44.710828] - ] - }, - "length": 0.321, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line60", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 60, - "bus2": 61, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251427, 44.710828], - [5.243164, 44.708558] - ] - }, - "length": 0.732, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line61", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 59, - "bus2": 62, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.255535, 44.709709], - [5.251423, 44.711268] - ] - }, - "length": 0.047, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line62", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 62, - "bus2": 63, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251423, 44.711268], - [5.251258999999999, 44.71193] - ] - }, - "length": 0.064, - "params_id": "A_CU_12", - "ground": "ground" - }, - { - "id": "line63", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 63, - "bus2": 64, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251258999999999, 44.71193], - [5.247221, 44.712975] - ] - }, - "length": 0.376, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line64", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 64, - "bus2": 65, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.247221, 44.712975], - [5.246554, 44.7128] - ] - }, - "length": 0.0559999999999999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line65", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 57, - "bus2": 66, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257317, 44.708429], - [5.260308999999999, 44.706012] - ] - }, - "length": 0.2269999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line66", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 66, - "bus2": 67, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260308999999999, 44.706012], - [5.260567, 44.706227] - ] - }, - "length": 0.038, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line67", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 67, - "bus2": 68, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260567, 44.706227], - [5.260624, 44.70527199999999] - ] - }, - "length": 0.085, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line68", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 68, - "bus2": 69, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260624, 44.70527199999999], - [5.256809, 44.701526] - ] - }, - "length": 0.306, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line69", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 68, - "bus2": 70, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260624, 44.70527199999999], - [5.264354, 44.701611] - ] - }, - "length": 0.511, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line70", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 70, - "bus2": 71, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264354, 44.701611], - [5.265117, 44.701458] - ] - }, - "length": 0.049, - "params_id": "A_CU_07", - "ground": "ground" - }, - { - "id": "line71", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 71, - "bus2": 72, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.265117, 44.701458], - [5.265736, 44.70128] - ] - }, - "length": 0.0579999999999999, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line72", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 72, - "bus2": 73, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.265736, 44.70128], - [5.264355999999999, 44.699422] - ] - }, - "length": 0.236, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line73", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 73, - "bus2": 74, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264355999999999, 44.699422], - [5.271076, 44.699195] - ] - }, - "length": 0.477, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line74", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 74, - "bus2": 75, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271076, 44.699195], - [5.270124, 44.69265] - ] - }, - "length": 0.353, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line75", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 75, - "bus2": 76, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270124, 44.69265], - [5.274132, 44.698074] - ] - }, - "length": 0.275, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line76", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 76, - "bus2": 77, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.274132, 44.698074], - [5.275216, 44.69925] - ] - }, - "length": 0.158, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line77", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 77, - "bus2": 78, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275216, 44.69925], - [5.29159, 44.69426] - ] - }, - "length": 1.481, - "params_id": "A_LA_38", - "ground": "ground" - }, - { - "id": "line78", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 78, - "bus2": 79, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29159, 44.69426], - [5.293287, 44.697755] - ] - }, - "length": 0.275, - "params_id": "A_LA_39", - "ground": "ground" - }, - { - "id": "line79", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 78, - "bus2": 80, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29159, 44.69426], - [5.290635, 44.692304] - ] - }, - "length": 0.134, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line80", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 80, - "bus2": 81, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.290635, 44.692304], - [5.28942, 44.691436] - ] - }, - "length": 0.136, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line81", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 81, - "bus2": 82, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.28942, 44.691436], - [5.284808, 44.691404] - ] - }, - "length": 0.361, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line82", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 81, - "bus2": 83, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.28942, 44.691436], - [5.295083, 44.688311] - ] - }, - "length": 0.763, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line83", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 78, - "bus2": 84, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29159, 44.69426], - [5.293566, 44.694074] - ] - }, - "length": 0.072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line84", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 84, - "bus2": 85, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293566, 44.694074], - [5.293666, 44.692658] - ] - }, - "length": 0.154, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line85", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 85, - "bus2": 86, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293666, 44.692658], - [5.293688, 44.692509] - ] - }, - "length": 0.021, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line86", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 85, - "bus2": 87, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293666, 44.692658], - [5.293481, 44.692697] - ] - }, - "length": 0.023, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line87", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 84, - "bus2": 88, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293566, 44.694074], - [5.298165, 44.693851] - ] - }, - "length": 0.365, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line88", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 88, - "bus2": 89, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.298165, 44.693851], - [5.30206, 44.694964] - ] - }, - "length": 0.353, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line89", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 89, - "bus2": 90, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.30206, 44.694964], - [5.300629, 44.696719] - ] - }, - "length": 0.281, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line90", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 88, - "bus2": 91, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.298165, 44.693851], - [5.304166, 44.69539] - ] - }, - "length": 0.174, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line91", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 91, - "bus2": 92, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.304166, 44.69539], - [5.303697000000001, 44.695461] - ] - }, - "length": 0.037, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line92", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 91, - "bus2": 93, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.304166, 44.69539], - [5.309441099999999, 44.696444] - ] - }, - "length": 0.428, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line93", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 71, - "bus2": 94, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.265117, 44.701458], - [5.268341, 44.703601] - ] - }, - "length": 0.3329999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line94", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 94, - "bus2": 95, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.268341, 44.703601], - [5.270058000000001, 44.70570900000001] - ] - }, - "length": 0.272, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line95", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 95, - "bus2": 96, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270058000000001, 44.70570900000001], - [5.272387999999999, 44.708816] - ] - }, - "length": 0.4, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line96", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 96, - "bus2": 97, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272387999999999, 44.708816], - [5.271646, 44.709229] - ] - }, - "length": 0.072, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line97", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 96, - "bus2": 98, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272387999999999, 44.708816], - [5.276741, 44.711462] - ] - }, - "length": 0.441, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line98", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 98, - "bus2": 99, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.276741, 44.711462], - [5.286003, 44.70976] - ] - }, - "length": 0.772, - "params_id": "A_AA_54", - "ground": "ground" - }, - { - "id": "line99", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 57, - "bus2": 100, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257317, 44.708429], - [5.251605000000001, 44.70417800000001] - ] - }, - "length": 0.65, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line100", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 100, - "bus2": 101, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251605000000001, 44.70417800000001], - [5.252232, 44.699817] - ] - }, - "length": 0.34, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line101", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 100, - "bus2": 102, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251605000000001, 44.70417800000001], - [5.245869, 44.699619] - ] - }, - "length": 0.682, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line102", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 102, - "bus2": 103, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.245869, 44.699619], - [5.23077, 44.68984] - ] - }, - "length": 1.841, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line103", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 103, - "bus2": 104, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.23077, 44.68984], - [5.233189, 44.688771] - ] - }, - "length": 0.226, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line104", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 103, - "bus2": 105, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.23077, 44.68984], - [5.225613, 44.690414] - ] - }, - "length": 0.407, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line105", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 105, - "bus2": 106, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.225613, 44.690414], - [5.225658999999999, 44.689413] - ] - }, - "length": 0.067, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 106, - "bus2": 107, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.225658999999999, 44.689413], - [5.229568, 44.685496] - ] - }, - "length": 0.272, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line107", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 107, - "bus2": 108, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.229568, 44.685496], - [5.229077999999999, 44.683975] - ] - }, - "length": 0.2319999999999999, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line108", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 107, - "bus2": 109, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.229568, 44.685496], - [5.23335, 44.684175] - ] - }, - "length": 0.253, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line109", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 102, - "bus2": 110, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.245869, 44.699619], - [5.252115, 44.696185] - ] - }, - "length": 0.515, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line110", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 110, - "bus2": 111, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.252115, 44.696185], - [5.252836, 44.696314] - ] - }, - "length": 0.06, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line111", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 110, - "bus2": 112, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.252115, 44.696185], - [5.257869, 44.692639] - ] - }, - "length": 0.607, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line112", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 112, - "bus2": 113, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257869, 44.692639], - [5.258694999999999, 44.694684] - ] - }, - "length": 0.238, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 112, - "bus2": 114, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257869, 44.692639], - [5.271508, 44.666087] - ] - }, - "length": 3.315, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line114", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 114, - "bus2": 115, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271508, 44.666087], - [5.27233, 44.664478] - ] - }, - "length": 0.09, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line115", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 114, - "bus2": 116, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271508, 44.666087], - [5.270444, 44.665025] - ] - }, - "length": 0.141, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line116", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 116, - "bus2": 117, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270444, 44.665025], - [5.271881, 44.663251] - ] - }, - "length": 0.242, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line117", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 117, - "bus2": 118, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271881, 44.663251], - [5.271709, 44.662301] - ] - }, - "length": 0.11, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line118", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 118, - "bus2": 119, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271709, 44.662301], - [5.268746, 44.660331] - ] - }, - "length": 0.299, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line119", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 118, - "bus2": 120, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271709, 44.662301], - [5.288922, 44.6484] - ] - }, - "length": 1.927, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line120", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 120, - "bus2": 121, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288922, 44.6484], - [5.29191, 44.64957800000001] - ] - }, - "length": 0.2289999999999999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line121", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 121, - "bus2": 122, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29191, 44.64957800000001], - [5.291696, 44.649937] - ] - }, - "length": 0.039, - "params_id": "A_AA_22", - "ground": "ground" - }, - { - "id": "line122", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 121, - "bus2": 123, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29191, 44.64957800000001], - [5.305674099999999, 44.660426] - ] - }, - "length": 1.67, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line123", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 123, - "bus2": 124, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.305674099999999, 44.660426], - [5.306435, 44.663013] - ] - }, - "length": 0.291, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line124", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 120, - "bus2": 125, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288922, 44.6484], - [5.291407, 44.637677] - ] - }, - "length": 1.266, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line125", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 125, - "bus2": 126, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.291407, 44.637677], - [5.279602, 44.637676] - ] - }, - "length": 0.3389999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line126", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 126, - "bus2": 127, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.279602, 44.637676], - [5.273155, 44.632589] - ] - }, - "length": 0.871, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line127", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 125, - "bus2": 128, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.291407, 44.637677], - [5.302328, 44.630718] - ] - }, - "length": 0.799, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 128, - "bus2": 129, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.302328, 44.630718], - [5.310708999999999, 44.635436] - ] - }, - "length": 0.8290000000000001, - "params_id": "A_AA_22", - "ground": "ground" - }, - { - "id": "line129", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 129, - "bus2": 130, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.310708999999999, 44.635436], - [5.315926999999999, 44.637017] - ] - }, - "length": 0.444, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line130", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 37, - "bus2": 131, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.267119999999999, 44.752936], - [5.264264, 44.753757] - ] - }, - "length": 0.216, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line131", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 131, - "bus2": 132, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264264, 44.753757], - [5.263632, 44.753395] - ] - }, - "length": 0.064, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line132", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 131, - "bus2": 133, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264264, 44.753757], - [5.263077, 44.756667] - ] - }, - "length": 0.337, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line133", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 131, - "bus2": 134, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264264, 44.753757], - [5.239022, 44.751841] - ] - }, - "length": 1.992, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line134", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 134, - "bus2": 135, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.239022, 44.751841], - [5.238964, 44.751516] - ] - }, - "length": 0.031, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line135", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 134, - "bus2": 136, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.239022, 44.751841], - [5.222045, 44.750602] - ] - }, - "length": 1.41, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line136", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 136, - "bus2": 137, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.222045, 44.750602], - [5.220266000000001, 44.749594] - ] - }, - "length": 0.1, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line137", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 137, - "bus2": 138, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.220266000000001, 44.749594], - [5.218814, 44.748727] - ] - }, - "length": 0.075, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 138, - "bus2": 139, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.218814, 44.748727], - [5.215553, 44.74695] - ] - }, - "length": 0.487, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 139, - "bus2": 140, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.215553, 44.74695], - [5.209531, 44.736899] - ] - }, - "length": 0.995, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line140", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 140, - "bus2": 141, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.209531, 44.736899], - [5.208638, 44.734537] - ] - }, - "length": 0.2739999999999999, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line141", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 141, - "bus2": 142, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.208638, 44.734537], - [5.206393, 44.725698] - ] - }, - "length": 1.095, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line142", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 142, - "bus2": 143, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.206393, 44.725698], - [5.218058999999999, 44.726117] - ] - }, - "length": 0.999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line143", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 143, - "bus2": 144, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.218058999999999, 44.726117], - [5.219531, 44.72863] - ] - }, - "length": 0.28, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 144, - "bus2": 145, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.219531, 44.72863], - [5.219654, 44.73002899999999] - ] - }, - "length": 0.18, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line145", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 145, - "bus2": 146, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.219654, 44.73002899999999], - [5.217169, 44.734855] - ] - }, - "length": 0.564, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line146", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 143, - "bus2": 147, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.218058999999999, 44.726117], - [5.220665, 44.720294] - ] - }, - "length": 0.687, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 1, - "bus": 4, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 2, - "bus": 5, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 3, - "bus": 7, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 4, - "bus": 9, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 5, - "bus": 10, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 6, - "bus": 11, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 7, - "bus": 14, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 8, - "bus": 15, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 9, - "bus": 17, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 10, - "bus": 19, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 11, - "bus": 22, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 12, - "bus": 24, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 13, - "bus": 27, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 14, - "bus": 28, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 15, - "bus": 30, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 16, - "bus": 31, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 17, - "bus": 33, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 18, - "bus": 34, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 19, - "bus": 37, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 20, - "bus": 39, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 21, - "bus": 40, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 22, - "bus": 42, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 23, - "bus": 44, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 24, - "bus": 46, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 25, - "bus": 48, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 26, - "bus": 49, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 27, - "bus": 50, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 28, - "bus": 55, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 29, - "bus": 57, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 30, - "bus": 58, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 31, - "bus": 60, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 32, - "bus": 61, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 33, - "bus": 62, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 34, - "bus": 63, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 35, - "bus": 64, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 36, - "bus": 66, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 37, - "bus": 68, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 38, - "bus": 70, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 39, - "bus": 71, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 40, - "bus": 72, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 41, - "bus": 73, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 42, - "bus": 74, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 43, - "bus": 76, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 44, - "bus": 78, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 45, - "bus": 81, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 46, - "bus": 84, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 47, - "bus": 85, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 48, - "bus": 86, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 49, - "bus": 89, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 50, - "bus": 91, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 51, - "bus": 96, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 52, - "bus": 100, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 53, - "bus": 102, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 54, - "bus": 103, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 55, - "bus": 105, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 56, - "bus": 107, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 57, - "bus": 110, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 58, - "bus": 112, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 59, - "bus": 114, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 60, - "bus": 116, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 61, - "bus": 118, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 62, - "bus": 120, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 63, - "bus": 121, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 64, - "bus": 125, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 65, - "bus": 129, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 66, - "bus": 131, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 67, - "bus": 134, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 68, - "bus": 136, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 69, - "bus": 138, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 70, - "bus": 139, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 71, - "bus": 140, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 72, - "bus": 144, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - }, - { - "id": 73, - "bus": 145, - "phases": "abcn", - "impedances": [ - [10000.0, 2000.0], - [10000.0, 2000.0], - [10000.0, 2000.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AA_147", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.243, - 0.0, - 0.0 - ], - [ - 0.0, - 0.243, - 0.0 - ], - [ - 0.0, - 0.0, - 0.243 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_22", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.75, - 0.0, - 0.0 - ], - [ - 0.0, - 1.75, - 0.0 - ], - [ - 0.0, - 0.0, - 1.75 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_37", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.041, - 0.0, - 0.0 - ], - [ - 0.0, - 1.041, - 0.0 - ], - [ - 0.0, - 0.0, - 1.041 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.775, - 0.0, - 0.0 - ], - [ - 0.0, - 0.775, - 0.0 - ], - [ - 0.0, - 0.0, - 0.775 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_75", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.609, - 0.0, - 0.0 - ], - [ - 0.0, - 0.609, - 0.0 - ], - [ - 0.0, - 0.0, - 0.609 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AM_34", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.505, - 0.0, - 0.0 - ], - [ - 0.0, - 1.505, - 0.0 - ], - [ - 0.0, - 0.0, - 1.505 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.613, - 0.0, - 0.0 - ], - [ - 0.0, - 0.613, - 0.0 - ], - [ - 0.0, - 0.0, - 0.613 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AM_75", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.441, - 0.0, - 0.0 - ], - [ - 0.0, - 0.441, - 0.0 - ], - [ - 0.0, - 0.0, - 0.441 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_CU_07", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.5, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_CU_12", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.5, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_LA_37", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.192, - 0.0, - 0.0 - ], - [ - 0.0, - 1.192, - 0.0 - ], - [ - 0.0, - 0.0, - 1.192 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_LA_38", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.192, - 0.0, - 0.0 - ], - [ - 0.0, - 1.192, - 0.0 - ], - [ - 0.0, - 0.0, - 1.192 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_LA_39", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.192, - 0.0, - 0.0 - ], - [ - 0.0, - 1.192, - 0.0 - ], - [ - 0.0, - 0.0, - 1.192 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001410575101461, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001410575101461, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001410575101461 - ] - ] - ] - }, - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001834690109696, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001834690109696, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001834690109696 - ] - ] - ] - }, - { - "id": "S_AL_50", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 8.702211650443729e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 8.702211650443729e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 8.702211650443729e-05 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.316, - 0.0, - 0.0 - ], - [ - 0.0, - 0.316, - 0.0 - ], - [ - 0.0, - 0.0, - 0.316 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.000115139370754, - 0.0, - 0.0 - ], - [ - 0.0, - 0.000115139370754, - 0.0 - ], - [ - 0.0, - 0.0, - 0.000115139370754 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [5.354205, 44.76649699999999] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.352489, 44.767044] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.350948000000001, 44.766465] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.349889, 44.768479] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.340990000000001, 44.771987] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.33796, 44.767887] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.333443, 44.772101] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.332152, 44.773154] + } + }, + { + "id": 9, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.328604, 44.771373] + } + }, + { + "id": 10, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.329613, 44.766793] + } + }, + { + "id": 11, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.329857, 44.766317] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.332717, 44.754985] + } + }, + { + "id": 13, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.335779, 44.751524] + } + }, + { + "id": 14, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322039, 44.770639] + } + }, + { + "id": 15, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322518, 44.773602] + } + }, + { + "id": 16, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322693, 44.77292199999999] + } + }, + { + "id": 17, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322789, 44.777828] + } + }, + { + "id": 18, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322418, 44.778323] + } + }, + { + "id": 19, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.317114, 44.784118] + } + }, + { + "id": 20, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.317399, 44.78419] + } + }, + { + "id": 21, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.315126999999999, 44.788614] + } + }, + { + "id": 22, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.314989, 44.769299] + } + }, + { + "id": 23, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.314938, 44.768333] + } + }, + { + "id": 24, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.306875, 44.765457] + } + }, + { + "id": 25, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.294973000000001, 44.768387] + } + }, + { + "id": 26, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.282789, 44.768455] + } + }, + { + "id": 27, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.280849, 44.765393] + } + }, + { + "id": 28, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.280136, 44.76502199999999] + } + }, + { + "id": 29, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.279859, 44.764848] + } + }, + { + "id": 30, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272926, 44.763672] + } + }, + { + "id": 31, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.273633999999999, 44.76358] + } + }, + { + "id": 32, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272794, 44.763982] + } + }, + { + "id": 33, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270316999999999, 44.760419] + } + }, + { + "id": 34, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.274366000000001, 44.758161] + } + }, + { + "id": 35, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275697, 44.757549] + } + }, + { + "id": 36, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.269593, 44.756572] + } + }, + { + "id": 37, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.267119999999999, 44.752936] + } + }, + { + "id": 38, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264632, 44.750295] + } + }, + { + "id": 39, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.27005, 44.740412] + } + }, + { + "id": 40, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.269245, 44.73877] + } + }, + { + "id": 41, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271239, 44.739363] + } + }, + { + "id": 42, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264574, 44.728315] + } + }, + { + "id": 43, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264002, 44.727847] + } + }, + { + "id": 44, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275233999999999, 44.727239] + } + }, + { + "id": 45, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272823000000001, 44.720533] + } + }, + { + "id": 46, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275627, 44.729237] + } + }, + { + "id": 47, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.276962, 44.736068] + } + }, + { + "id": 48, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.276011, 44.729195] + } + }, + { + "id": 49, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.287058999999999, 44.727613] + } + }, + { + "id": 50, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.288065, 44.727506] + } + }, + { + "id": 51, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.288366000000001, 44.727226] + } + }, + { + "id": 52, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291179000000001, 44.730151] + } + }, + { + "id": 53, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291457, 44.731671] + } + }, + { + "id": 54, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.303999999999999, 44.716648] + } + }, + { + "id": 55, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260366, 44.716965] + } + }, + { + "id": 56, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.263661, 44.715183] + } + }, + { + "id": 57, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.257317, 44.708429] + } + }, + { + "id": 58, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.255011, 44.70945800000001] + } + }, + { + "id": 59, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.255535, 44.709709] + } + }, + { + "id": 60, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251427, 44.710828] + } + }, + { + "id": 61, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.243164, 44.708558] + } + }, + { + "id": 62, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251423, 44.711268] + } + }, + { + "id": 63, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251258999999999, 44.71193] + } + }, + { + "id": 64, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.247221, 44.712975] + } + }, + { + "id": 65, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.246554, 44.7128] + } + }, + { + "id": 66, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260308999999999, 44.706012] + } + }, + { + "id": 67, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260567, 44.706227] + } + }, + { + "id": 68, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260624, 44.70527199999999] + } + }, + { + "id": 69, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.256809, 44.701526] + } + }, + { + "id": 70, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264354, 44.701611] + } + }, + { + "id": 71, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.265117, 44.701458] + } + }, + { + "id": 72, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.265736, 44.70128] + } + }, + { + "id": 73, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264355999999999, 44.699422] + } + }, + { + "id": 74, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271076, 44.699195] + } + }, + { + "id": 75, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270124, 44.69265] + } + }, + { + "id": 76, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.274132, 44.698074] + } + }, + { + "id": 77, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275216, 44.69925] + } + }, + { + "id": 78, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.29159, 44.69426] + } + }, + { + "id": 79, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293287, 44.697755] + } + }, + { + "id": 80, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.290635, 44.692304] + } + }, + { + "id": 81, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.28942, 44.691436] + } + }, + { + "id": 82, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.284808, 44.691404] + } + }, + { + "id": 83, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.295083, 44.688311] + } + }, + { + "id": 84, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293566, 44.694074] + } + }, + { + "id": 85, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293666, 44.692658] + } + }, + { + "id": 86, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293688, 44.692509] + } + }, + { + "id": 87, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293481, 44.692697] + } + }, + { + "id": 88, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.298165, 44.693851] + } + }, + { + "id": 89, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.30206, 44.694964] + } + }, + { + "id": 90, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.300629, 44.696719] + } + }, + { + "id": 91, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.304166, 44.69539] + } + }, + { + "id": 92, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.303697000000001, 44.695461] + } + }, + { + "id": 93, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.309441099999999, 44.696444] + } + }, + { + "id": 94, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.268341, 44.703601] + } + }, + { + "id": 95, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270058000000001, 44.70570900000001] + } + }, + { + "id": 96, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272387999999999, 44.708816] + } + }, + { + "id": 97, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271646, 44.709229] + } + }, + { + "id": 98, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.276741, 44.711462] + } + }, + { + "id": 99, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.286003, 44.70976] + } + }, + { + "id": 100, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251605000000001, 44.70417800000001] + } + }, + { + "id": 101, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.252232, 44.699817] + } + }, + { + "id": 102, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.245869, 44.699619] + } + }, + { + "id": 103, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.23077, 44.68984] + } + }, + { + "id": 104, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.233189, 44.688771] + } + }, + { + "id": 105, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.225613, 44.690414] + } + }, + { + "id": 106, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.225658999999999, 44.689413] + } + }, + { + "id": 107, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.229568, 44.685496] + } + }, + { + "id": 108, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.229077999999999, 44.683975] + } + }, + { + "id": 109, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.23335, 44.684175] + } + }, + { + "id": 110, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.252115, 44.696185] + } + }, + { + "id": 111, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.252836, 44.696314] + } + }, + { + "id": 112, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.257869, 44.692639] + } + }, + { + "id": 113, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.258694999999999, 44.694684] + } + }, + { + "id": 114, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271508, 44.666087] + } + }, + { + "id": 115, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.27233, 44.664478] + } + }, + { + "id": 116, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270444, 44.665025] + } + }, + { + "id": 117, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271881, 44.663251] + } + }, + { + "id": 118, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271709, 44.662301] + } + }, + { + "id": 119, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.268746, 44.660331] + } + }, + { + "id": 120, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.288922, 44.6484] + } + }, + { + "id": 121, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.29191, 44.64957800000001] + } + }, + { + "id": 122, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291696, 44.649937] + } + }, + { + "id": 123, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.305674099999999, 44.660426] + } + }, + { + "id": 124, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.306435, 44.663013] + } + }, + { + "id": 125, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291407, 44.637677] + } + }, + { + "id": 126, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.279602, 44.637676] + } + }, + { + "id": 127, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.273155, 44.632589] + } + }, + { + "id": 128, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.302328, 44.630718] + } + }, + { + "id": 129, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.310708999999999, 44.635436] + } + }, + { + "id": 130, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.315926999999999, 44.637017] + } + }, + { + "id": 131, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264264, 44.753757] + } + }, + { + "id": 132, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.263632, 44.753395] + } + }, + { + "id": 133, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.263077, 44.756667] + } + }, + { + "id": 134, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.239022, 44.751841] + } + }, + { + "id": 135, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.238964, 44.751516] + } + }, + { + "id": 136, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.222045, 44.750602] + } + }, + { + "id": 137, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.220266000000001, 44.749594] + } + }, + { + "id": 138, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.218814, 44.748727] + } + }, + { + "id": 139, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.215553, 44.74695] + } + }, + { + "id": 140, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.209531, 44.736899] + } + }, + { + "id": 141, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.208638, 44.734537] + } + }, + { + "id": 142, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.206393, 44.725698] + } + }, + { + "id": 143, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.218058999999999, 44.726117] + } + }, + { + "id": 144, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.219531, 44.72863] + } + }, + { + "id": 145, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.219654, 44.73002899999999] + } + }, + { + "id": 146, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.217169, 44.734855] + } + }, + { + "id": 147, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.220665, 44.720294] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.354205, 44.76649699999999], + [5.352489, 44.767044] + ] + }, + "length": 0.847, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.352489, 44.767044], + [5.350948000000001, 44.766465] + ] + }, + "length": 0.138, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.352489, 44.767044], + [5.349889, 44.768479] + ] + }, + "length": 0.28, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.349889, 44.768479], + [5.340990000000001, 44.771987] + ] + }, + "length": 0.8059999999999999, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 5, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.340990000000001, 44.771987], + [5.33796, 44.767887] + ] + }, + "length": 0.349, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 5, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.340990000000001, 44.771987], + [5.333443, 44.772101] + ] + }, + "length": 0.635, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.333443, 44.772101], + [5.332152, 44.773154] + ] + }, + "length": 0.072, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.333443, 44.772101], + [5.328604, 44.771373] + ] + }, + "length": 0.389, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.328604, 44.771373], + [5.329613, 44.766793] + ] + }, + "length": 0.512, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line10", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.329613, 44.766793], + [5.329857, 44.766317] + ] + }, + "length": 0.0579999999999999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.329857, 44.766317], + [5.332717, 44.754985] + ] + }, + "length": 0.981, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line12", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 12, + "bus2": 13, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.332717, 44.754985], + [5.335779, 44.751524] + ] + }, + "length": 0.4539999999999999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line13", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 14, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.328604, 44.771373], + [5.322039, 44.770639] + ] + }, + "length": 0.53, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line14", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 14, + "bus2": 15, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322039, 44.770639], + [5.322518, 44.773602] + ] + }, + "length": 0.3329999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line15", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 15, + "bus2": 16, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322518, 44.773602], + [5.322693, 44.77292199999999] + ] + }, + "length": 0.077, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line16", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 16, + "bus2": 17, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322693, 44.77292199999999], + [5.322789, 44.777828] + ] + }, + "length": 0.47, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line17", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 17, + "bus2": 18, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322789, 44.777828], + [5.322418, 44.778323] + ] + }, + "length": 0.067, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line18", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 18, + "bus2": 19, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322418, 44.778323], + [5.317114, 44.784118] + ] + }, + "length": 0.8420000000000001, + "params_id": "A_AA_75", + "ground": "ground" + }, + { + "id": "line19", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 19, + "bus2": 20, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.317114, 44.784118], + [5.317399, 44.78419] + ] + }, + "length": 0.022, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line20", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 20, + "bus2": 21, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.317399, 44.78419], + [5.315126999999999, 44.788614] + ] + }, + "length": 0.534, + "params_id": "A_AA_75", + "ground": "ground" + }, + { + "id": "line21", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 14, + "bus2": 22, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322039, 44.770639], + [5.314989, 44.769299] + ] + }, + "length": 0.575, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line22", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 22, + "bus2": 23, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.314989, 44.769299], + [5.314938, 44.768333] + ] + }, + "length": 0.787, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line23", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 23, + "bus2": 24, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.314938, 44.768333], + [5.306875, 44.765457] + ] + }, + "length": 0.787, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line24", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 24, + "bus2": 25, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.306875, 44.765457], + [5.294973000000001, 44.768387] + ] + }, + "length": 1.224, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line25", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 25, + "bus2": 26, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.294973000000001, 44.768387], + [5.282789, 44.768455] + ] + }, + "length": 1.37, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line26", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 26, + "bus2": 27, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.282789, 44.768455], + [5.280849, 44.765393] + ] + }, + "length": 0.634, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line27", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 27, + "bus2": 28, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.280849, 44.765393], + [5.280136, 44.76502199999999] + ] + }, + "length": 0.07, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line28", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 28, + "bus2": 29, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.280136, 44.76502199999999], + [5.279859, 44.764848] + ] + }, + "length": 0.044, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line29", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 29, + "bus2": 30, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.279859, 44.764848], + [5.272926, 44.763672] + ] + }, + "length": 0.501, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line30", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 30, + "bus2": 31, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272926, 44.763672], + [5.273633999999999, 44.76358] + ] + }, + "length": 0.069, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line31", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 31, + "bus2": 32, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.273633999999999, 44.76358], + [5.272794, 44.763982] + ] + }, + "length": 0.069, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line32", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 32, + "bus2": 33, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272794, 44.763982], + [5.270316999999999, 44.760419] + ] + }, + "length": 0.4589999999999999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line33", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 33, + "bus2": 34, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270316999999999, 44.760419], + [5.274366000000001, 44.758161] + ] + }, + "length": 0.207, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line34", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 34, + "bus2": 35, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.274366000000001, 44.758161], + [5.275697, 44.757549] + ] + }, + "length": 0.122, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line35", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 35, + "bus2": 36, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275697, 44.757549], + [5.269593, 44.756572] + ] + }, + "length": 0.411, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line36", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 33, + "bus2": 37, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270316999999999, 44.760419], + [5.267119999999999, 44.752936] + ] + }, + "length": 0.897, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line37", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 37, + "bus2": 38, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.267119999999999, 44.752936], + [5.264632, 44.750295] + ] + }, + "length": 0.311, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line38", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 38, + "bus2": 39, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264632, 44.750295], + [5.27005, 44.740412] + ] + }, + "length": 1.254, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line39", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 39, + "bus2": 40, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.27005, 44.740412], + [5.269245, 44.73877] + ] + }, + "length": 0.1889999999999999, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line40", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 40, + "bus2": 41, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.269245, 44.73877], + [5.271239, 44.739363] + ] + }, + "length": 0.177, + "params_id": "A_AA_54", + "ground": "ground" + }, + { + "id": "line41", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 41, + "bus2": 42, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271239, 44.739363], + [5.264574, 44.728315] + ] + }, + "length": 1.217, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line42", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 42, + "bus2": 43, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264574, 44.728315], + [5.264002, 44.727847] + ] + }, + "length": 0.067, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line43", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 42, + "bus2": 44, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264574, 44.728315], + [5.275233999999999, 44.727239] + ] + }, + "length": 0.133, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line44", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 44, + "bus2": 45, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275233999999999, 44.727239], + [5.272823000000001, 44.720533] + ] + }, + "length": 0.529, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line45", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 44, + "bus2": 46, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275233999999999, 44.727239], + [5.275627, 44.729237] + ] + }, + "length": 0.213, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line46", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 46, + "bus2": 47, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275627, 44.729237], + [5.276962, 44.736068] + ] + }, + "length": 1.121, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line47", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 46, + "bus2": 48, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275627, 44.729237], + [5.276011, 44.729195] + ] + }, + "length": 0.03, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line48", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 48, + "bus2": 49, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.276011, 44.729195], + [5.287058999999999, 44.727613] + ] + }, + "length": 0.888, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line49", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 49, + "bus2": 50, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.287058999999999, 44.727613], + [5.288065, 44.727506] + ] + }, + "length": 0.083, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line50", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 50, + "bus2": 51, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288065, 44.727506], + [5.288366000000001, 44.727226] + ] + }, + "length": 0.034, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line51", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 50, + "bus2": 52, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288065, 44.727506], + [5.291179000000001, 44.730151] + ] + }, + "length": 0.238, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line52", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 50, + "bus2": 53, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288065, 44.727506], + [5.291457, 44.731671] + ] + }, + "length": 0.379, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line53", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 49, + "bus2": 54, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.287058999999999, 44.727613], + [5.303999999999999, 44.716648] + ] + }, + "length": 1.971, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line54", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 42, + "bus2": 55, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264574, 44.728315], + [5.260366, 44.716965] + ] + }, + "length": 1.306, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line55", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 55, + "bus2": 56, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260366, 44.716965], + [5.263661, 44.715183] + ] + }, + "length": 0.118, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line56", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 55, + "bus2": 57, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260366, 44.716965], + [5.257317, 44.708429] + ] + }, + "length": 0.982, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line57", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 57, + "bus2": 58, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257317, 44.708429], + [5.255011, 44.70945800000001] + ] + }, + "length": 0.11, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line58", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 58, + "bus2": 59, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.255011, 44.70945800000001], + [5.255535, 44.709709] + ] + }, + "length": 0.05, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line59", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 59, + "bus2": 60, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.255535, 44.709709], + [5.251427, 44.710828] + ] + }, + "length": 0.321, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line60", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 60, + "bus2": 61, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251427, 44.710828], + [5.243164, 44.708558] + ] + }, + "length": 0.732, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line61", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 59, + "bus2": 62, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.255535, 44.709709], + [5.251423, 44.711268] + ] + }, + "length": 0.047, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line62", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 62, + "bus2": 63, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251423, 44.711268], + [5.251258999999999, 44.71193] + ] + }, + "length": 0.064, + "params_id": "A_CU_12", + "ground": "ground" + }, + { + "id": "line63", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 63, + "bus2": 64, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251258999999999, 44.71193], + [5.247221, 44.712975] + ] + }, + "length": 0.376, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line64", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 64, + "bus2": 65, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.247221, 44.712975], + [5.246554, 44.7128] + ] + }, + "length": 0.0559999999999999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line65", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 57, + "bus2": 66, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257317, 44.708429], + [5.260308999999999, 44.706012] + ] + }, + "length": 0.2269999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line66", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 66, + "bus2": 67, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260308999999999, 44.706012], + [5.260567, 44.706227] + ] + }, + "length": 0.038, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line67", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 67, + "bus2": 68, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260567, 44.706227], + [5.260624, 44.70527199999999] + ] + }, + "length": 0.085, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line68", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 68, + "bus2": 69, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260624, 44.70527199999999], + [5.256809, 44.701526] + ] + }, + "length": 0.306, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line69", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 68, + "bus2": 70, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260624, 44.70527199999999], + [5.264354, 44.701611] + ] + }, + "length": 0.511, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line70", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 70, + "bus2": 71, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264354, 44.701611], + [5.265117, 44.701458] + ] + }, + "length": 0.049, + "params_id": "A_CU_07", + "ground": "ground" + }, + { + "id": "line71", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 71, + "bus2": 72, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.265117, 44.701458], + [5.265736, 44.70128] + ] + }, + "length": 0.0579999999999999, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line72", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 72, + "bus2": 73, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.265736, 44.70128], + [5.264355999999999, 44.699422] + ] + }, + "length": 0.236, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line73", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 73, + "bus2": 74, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264355999999999, 44.699422], + [5.271076, 44.699195] + ] + }, + "length": 0.477, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line74", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 74, + "bus2": 75, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271076, 44.699195], + [5.270124, 44.69265] + ] + }, + "length": 0.353, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line75", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 75, + "bus2": 76, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270124, 44.69265], + [5.274132, 44.698074] + ] + }, + "length": 0.275, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line76", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 76, + "bus2": 77, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.274132, 44.698074], + [5.275216, 44.69925] + ] + }, + "length": 0.158, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line77", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 77, + "bus2": 78, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275216, 44.69925], + [5.29159, 44.69426] + ] + }, + "length": 1.481, + "params_id": "A_LA_38", + "ground": "ground" + }, + { + "id": "line78", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 78, + "bus2": 79, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29159, 44.69426], + [5.293287, 44.697755] + ] + }, + "length": 0.275, + "params_id": "A_LA_39", + "ground": "ground" + }, + { + "id": "line79", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 78, + "bus2": 80, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29159, 44.69426], + [5.290635, 44.692304] + ] + }, + "length": 0.134, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line80", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 80, + "bus2": 81, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.290635, 44.692304], + [5.28942, 44.691436] + ] + }, + "length": 0.136, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line81", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 81, + "bus2": 82, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.28942, 44.691436], + [5.284808, 44.691404] + ] + }, + "length": 0.361, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line82", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 81, + "bus2": 83, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.28942, 44.691436], + [5.295083, 44.688311] + ] + }, + "length": 0.763, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line83", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 78, + "bus2": 84, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29159, 44.69426], + [5.293566, 44.694074] + ] + }, + "length": 0.072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line84", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 84, + "bus2": 85, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293566, 44.694074], + [5.293666, 44.692658] + ] + }, + "length": 0.154, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line85", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 85, + "bus2": 86, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293666, 44.692658], + [5.293688, 44.692509] + ] + }, + "length": 0.021, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line86", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 85, + "bus2": 87, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293666, 44.692658], + [5.293481, 44.692697] + ] + }, + "length": 0.023, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line87", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 84, + "bus2": 88, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293566, 44.694074], + [5.298165, 44.693851] + ] + }, + "length": 0.365, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line88", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 88, + "bus2": 89, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.298165, 44.693851], + [5.30206, 44.694964] + ] + }, + "length": 0.353, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line89", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 89, + "bus2": 90, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.30206, 44.694964], + [5.300629, 44.696719] + ] + }, + "length": 0.281, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line90", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 88, + "bus2": 91, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.298165, 44.693851], + [5.304166, 44.69539] + ] + }, + "length": 0.174, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line91", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 91, + "bus2": 92, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.304166, 44.69539], + [5.303697000000001, 44.695461] + ] + }, + "length": 0.037, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line92", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 91, + "bus2": 93, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.304166, 44.69539], + [5.309441099999999, 44.696444] + ] + }, + "length": 0.428, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line93", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 71, + "bus2": 94, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.265117, 44.701458], + [5.268341, 44.703601] + ] + }, + "length": 0.3329999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line94", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 94, + "bus2": 95, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.268341, 44.703601], + [5.270058000000001, 44.70570900000001] + ] + }, + "length": 0.272, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line95", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 95, + "bus2": 96, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270058000000001, 44.70570900000001], + [5.272387999999999, 44.708816] + ] + }, + "length": 0.4, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line96", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 96, + "bus2": 97, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272387999999999, 44.708816], + [5.271646, 44.709229] + ] + }, + "length": 0.072, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line97", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 96, + "bus2": 98, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272387999999999, 44.708816], + [5.276741, 44.711462] + ] + }, + "length": 0.441, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line98", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 98, + "bus2": 99, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.276741, 44.711462], + [5.286003, 44.70976] + ] + }, + "length": 0.772, + "params_id": "A_AA_54", + "ground": "ground" + }, + { + "id": "line99", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 57, + "bus2": 100, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257317, 44.708429], + [5.251605000000001, 44.70417800000001] + ] + }, + "length": 0.65, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line100", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 100, + "bus2": 101, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251605000000001, 44.70417800000001], + [5.252232, 44.699817] + ] + }, + "length": 0.34, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line101", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 100, + "bus2": 102, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251605000000001, 44.70417800000001], + [5.245869, 44.699619] + ] + }, + "length": 0.682, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line102", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 102, + "bus2": 103, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.245869, 44.699619], + [5.23077, 44.68984] + ] + }, + "length": 1.841, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line103", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 103, + "bus2": 104, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.23077, 44.68984], + [5.233189, 44.688771] + ] + }, + "length": 0.226, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line104", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 103, + "bus2": 105, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.23077, 44.68984], + [5.225613, 44.690414] + ] + }, + "length": 0.407, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line105", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 105, + "bus2": 106, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.225613, 44.690414], + [5.225658999999999, 44.689413] + ] + }, + "length": 0.067, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 106, + "bus2": 107, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.225658999999999, 44.689413], + [5.229568, 44.685496] + ] + }, + "length": 0.272, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line107", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 107, + "bus2": 108, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.229568, 44.685496], + [5.229077999999999, 44.683975] + ] + }, + "length": 0.2319999999999999, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line108", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 107, + "bus2": 109, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.229568, 44.685496], + [5.23335, 44.684175] + ] + }, + "length": 0.253, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line109", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 102, + "bus2": 110, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.245869, 44.699619], + [5.252115, 44.696185] + ] + }, + "length": 0.515, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line110", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 110, + "bus2": 111, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.252115, 44.696185], + [5.252836, 44.696314] + ] + }, + "length": 0.06, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line111", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 110, + "bus2": 112, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.252115, 44.696185], + [5.257869, 44.692639] + ] + }, + "length": 0.607, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line112", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 112, + "bus2": 113, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257869, 44.692639], + [5.258694999999999, 44.694684] + ] + }, + "length": 0.238, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 112, + "bus2": 114, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257869, 44.692639], + [5.271508, 44.666087] + ] + }, + "length": 3.315, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line114", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 114, + "bus2": 115, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271508, 44.666087], + [5.27233, 44.664478] + ] + }, + "length": 0.09, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line115", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 114, + "bus2": 116, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271508, 44.666087], + [5.270444, 44.665025] + ] + }, + "length": 0.141, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line116", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 116, + "bus2": 117, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270444, 44.665025], + [5.271881, 44.663251] + ] + }, + "length": 0.242, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line117", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 117, + "bus2": 118, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271881, 44.663251], + [5.271709, 44.662301] + ] + }, + "length": 0.11, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line118", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 118, + "bus2": 119, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271709, 44.662301], + [5.268746, 44.660331] + ] + }, + "length": 0.299, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line119", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 118, + "bus2": 120, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271709, 44.662301], + [5.288922, 44.6484] + ] + }, + "length": 1.927, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line120", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 120, + "bus2": 121, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288922, 44.6484], + [5.29191, 44.64957800000001] + ] + }, + "length": 0.2289999999999999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line121", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 121, + "bus2": 122, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29191, 44.64957800000001], + [5.291696, 44.649937] + ] + }, + "length": 0.039, + "params_id": "A_AA_22", + "ground": "ground" + }, + { + "id": "line122", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 121, + "bus2": 123, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29191, 44.64957800000001], + [5.305674099999999, 44.660426] + ] + }, + "length": 1.67, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line123", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 123, + "bus2": 124, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.305674099999999, 44.660426], + [5.306435, 44.663013] + ] + }, + "length": 0.291, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line124", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 120, + "bus2": 125, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288922, 44.6484], + [5.291407, 44.637677] + ] + }, + "length": 1.266, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line125", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 125, + "bus2": 126, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.291407, 44.637677], + [5.279602, 44.637676] + ] + }, + "length": 0.3389999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line126", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 126, + "bus2": 127, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.279602, 44.637676], + [5.273155, 44.632589] + ] + }, + "length": 0.871, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line127", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 125, + "bus2": 128, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.291407, 44.637677], + [5.302328, 44.630718] + ] + }, + "length": 0.799, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 128, + "bus2": 129, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.302328, 44.630718], + [5.310708999999999, 44.635436] + ] + }, + "length": 0.8290000000000001, + "params_id": "A_AA_22", + "ground": "ground" + }, + { + "id": "line129", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 129, + "bus2": 130, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.310708999999999, 44.635436], + [5.315926999999999, 44.637017] + ] + }, + "length": 0.444, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line130", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 37, + "bus2": 131, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.267119999999999, 44.752936], + [5.264264, 44.753757] + ] + }, + "length": 0.216, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line131", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 131, + "bus2": 132, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264264, 44.753757], + [5.263632, 44.753395] + ] + }, + "length": 0.064, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line132", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 131, + "bus2": 133, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264264, 44.753757], + [5.263077, 44.756667] + ] + }, + "length": 0.337, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line133", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 131, + "bus2": 134, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264264, 44.753757], + [5.239022, 44.751841] + ] + }, + "length": 1.992, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line134", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 134, + "bus2": 135, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.239022, 44.751841], + [5.238964, 44.751516] + ] + }, + "length": 0.031, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line135", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 134, + "bus2": 136, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.239022, 44.751841], + [5.222045, 44.750602] + ] + }, + "length": 1.41, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line136", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 136, + "bus2": 137, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.222045, 44.750602], + [5.220266000000001, 44.749594] + ] + }, + "length": 0.1, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line137", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 137, + "bus2": 138, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.220266000000001, 44.749594], + [5.218814, 44.748727] + ] + }, + "length": 0.075, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 138, + "bus2": 139, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.218814, 44.748727], + [5.215553, 44.74695] + ] + }, + "length": 0.487, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 139, + "bus2": 140, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.215553, 44.74695], + [5.209531, 44.736899] + ] + }, + "length": 0.995, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line140", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 140, + "bus2": 141, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.209531, 44.736899], + [5.208638, 44.734537] + ] + }, + "length": 0.2739999999999999, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line141", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 141, + "bus2": 142, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.208638, 44.734537], + [5.206393, 44.725698] + ] + }, + "length": 1.095, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line142", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 142, + "bus2": 143, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.206393, 44.725698], + [5.218058999999999, 44.726117] + ] + }, + "length": 0.999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line143", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 143, + "bus2": 144, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.218058999999999, 44.726117], + [5.219531, 44.72863] + ] + }, + "length": 0.28, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 144, + "bus2": 145, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.219531, 44.72863], + [5.219654, 44.73002899999999] + ] + }, + "length": 0.18, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line145", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 145, + "bus2": 146, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.219654, 44.73002899999999], + [5.217169, 44.734855] + ] + }, + "length": 0.564, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line146", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 143, + "bus2": 147, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.218058999999999, 44.726117], + [5.220665, 44.720294] + ] + }, + "length": 0.687, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 1, + "bus": 4, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 2, + "bus": 5, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 3, + "bus": 7, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 4, + "bus": 9, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 5, + "bus": 10, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 6, + "bus": 11, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 7, + "bus": 14, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 8, + "bus": 15, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 9, + "bus": 17, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 10, + "bus": 19, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 11, + "bus": 22, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 12, + "bus": 24, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 13, + "bus": 27, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 14, + "bus": 28, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 15, + "bus": 30, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 16, + "bus": 31, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 17, + "bus": 33, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 18, + "bus": 34, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 19, + "bus": 37, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 20, + "bus": 39, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 21, + "bus": 40, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 22, + "bus": 42, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 23, + "bus": 44, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 24, + "bus": 46, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 25, + "bus": 48, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 26, + "bus": 49, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 27, + "bus": 50, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 28, + "bus": 55, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 29, + "bus": 57, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 30, + "bus": 58, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 31, + "bus": 60, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 32, + "bus": 61, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 33, + "bus": 62, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 34, + "bus": 63, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 35, + "bus": 64, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 36, + "bus": 66, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 37, + "bus": 68, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 38, + "bus": 70, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 39, + "bus": 71, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 40, + "bus": 72, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 41, + "bus": 73, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 42, + "bus": 74, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 43, + "bus": 76, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 44, + "bus": 78, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 45, + "bus": 81, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 46, + "bus": 84, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 47, + "bus": 85, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 48, + "bus": 86, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 49, + "bus": 89, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 50, + "bus": 91, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 51, + "bus": 96, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 52, + "bus": 100, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 53, + "bus": 102, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 54, + "bus": 103, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 55, + "bus": 105, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 56, + "bus": 107, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 57, + "bus": 110, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 58, + "bus": 112, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 59, + "bus": 114, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 60, + "bus": 116, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 61, + "bus": 118, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 62, + "bus": 120, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 63, + "bus": 121, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 64, + "bus": 125, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 65, + "bus": 129, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 66, + "bus": 131, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 67, + "bus": 134, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 68, + "bus": 136, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 69, + "bus": 138, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 70, + "bus": 139, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 71, + "bus": 140, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 72, + "bus": 144, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + }, + { + "id": 73, + "bus": 145, + "phases": "abcn", + "impedances": [ + [10000.0, 2000.0], + [10000.0, 2000.0], + [10000.0, 2000.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AA_147", + "z_line": [ + [ + [0.243, 0.0, 0.0], + [0.0, 0.243, 0.0], + [0.0, 0.0, 0.243] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_22", + "z_line": [ + [ + [1.75, 0.0, 0.0], + [0.0, 1.75, 0.0], + [0.0, 0.0, 1.75] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_37", + "z_line": [ + [ + [1.041, 0.0, 0.0], + [0.0, 1.041, 0.0], + [0.0, 0.0, 1.041] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_54", + "z_line": [ + [ + [0.775, 0.0, 0.0], + [0.0, 0.775, 0.0], + [0.0, 0.0, 0.775] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_75", + "z_line": [ + [ + [0.609, 0.0, 0.0], + [0.0, 0.609, 0.0], + [0.0, 0.0, 0.609] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AM_34", + "z_line": [ + [ + [1.505, 0.0, 0.0], + [0.0, 1.505, 0.0], + [0.0, 0.0, 1.505] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.613, 0.0, 0.0], + [0.0, 0.613, 0.0], + [0.0, 0.0, 0.613] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AM_75", + "z_line": [ + [ + [0.441, 0.0, 0.0], + [0.0, 0.441, 0.0], + [0.0, 0.0, 0.441] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_CU_07", + "z_line": [ + [ + [1.5, 0.0, 0.0], + [0.0, 1.5, 0.0], + [0.0, 0.0, 1.5] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_CU_12", + "z_line": [ + [ + [1.5, 0.0, 0.0], + [0.0, 1.5, 0.0], + [0.0, 0.0, 1.5] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_LA_37", + "z_line": [ + [ + [1.192, 0.0, 0.0], + [0.0, 1.192, 0.0], + [0.0, 0.0, 1.192] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_LA_38", + "z_line": [ + [ + [1.192, 0.0, 0.0], + [0.0, 1.192, 0.0], + [0.0, 0.0, 1.192] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_LA_39", + "z_line": [ + [ + [1.192, 0.0, 0.0], + [0.0, 1.192, 0.0], + [0.0, 0.0, 1.192] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.20000000000000004] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.0001410575101461, 0.0, 0.0], + [0.0, 0.0001410575101461, 0.0], + [0.0, 0.0, 0.0001410575101461] + ] + ] + }, + { + "id": "S_AL_240", + "z_line": [ + [ + [0.125, 0.0, 0.0], + [0.0, 0.125, 0.0], + [0.0, 0.0, 0.125] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.0001834690109696, 0.0, 0.0], + [0.0, 0.0001834690109696, 0.0], + [0.0, 0.0, 0.0001834690109696] + ] + ] + }, + { + "id": "S_AL_50", + "z_line": [ + [ + [0.6, 0.0, 0.0], + [0.0, 0.6, 0.0], + [0.0, 0.0, 0.6] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [8.702211650443729e-5, 0.0, 0.0], + [0.0, 8.702211650443729e-5, 0.0], + [0.0, 0.0, 8.702211650443729e-5] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.316, 0.0, 0.0], + [0.0, 0.316, 0.0], + [0.0, 0.0, 0.316] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.000115139370754, 0.0, 0.0], + [0.0, 0.000115139370754, 0.0], + [0.0, 0.0, 0.000115139370754] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/feeder_die/network_power.json b/roseau/load_flow/tests/data/networks/feeder_die/network_power.json index 5d14d958..5f62ed31 100644 --- a/roseau/load_flow/tests/data/networks/feeder_die/network_power.json +++ b/roseau/load_flow/tests/data/networks/feeder_die/network_power.json @@ -1,5877 +1,5044 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [5.354205, 44.76649699999999] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.352489, 44.767044] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.350948000000001, 44.766465] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.349889, 44.768479] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.340990000000001, 44.771987] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.33796, 44.767887] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.333443, 44.772101] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.332152, 44.773154] - } - }, - { - "id": 9, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.328604, 44.771373] - } - }, - { - "id": 10, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.329613, 44.766793] - } - }, - { - "id": 11, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.329857, 44.766317] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.332717, 44.754985] - } - }, - { - "id": 13, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.335779, 44.751524] - } - }, - { - "id": 14, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322039, 44.770639] - } - }, - { - "id": 15, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322518, 44.773602] - } - }, - { - "id": 16, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322693, 44.77292199999999] - } - }, - { - "id": 17, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322789, 44.777828] - } - }, - { - "id": 18, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.322418, 44.778323] - } - }, - { - "id": 19, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.317114, 44.784118] - } - }, - { - "id": 20, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.317399, 44.78419] - } - }, - { - "id": 21, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.315126999999999, 44.788614] - } - }, - { - "id": 22, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.314989, 44.769299] - } - }, - { - "id": 23, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.314938, 44.768333] - } - }, - { - "id": 24, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.306875, 44.765457] - } - }, - { - "id": 25, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.294973000000001, 44.768387] - } - }, - { - "id": 26, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.282789, 44.768455] - } - }, - { - "id": 27, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.280849, 44.765393] - } - }, - { - "id": 28, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.280136, 44.76502199999999] - } - }, - { - "id": 29, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.279859, 44.764848] - } - }, - { - "id": 30, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272926, 44.763672] - } - }, - { - "id": 31, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.273633999999999, 44.76358] - } - }, - { - "id": 32, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272794, 44.763982] - } - }, - { - "id": 33, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270316999999999, 44.760419] - } - }, - { - "id": 34, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.274366000000001, 44.758161] - } - }, - { - "id": 35, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275697, 44.757549] - } - }, - { - "id": 36, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.269593, 44.756572] - } - }, - { - "id": 37, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.267119999999999, 44.752936] - } - }, - { - "id": 38, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264632, 44.750295] - } - }, - { - "id": 39, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.27005, 44.740412] - } - }, - { - "id": 40, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.269245, 44.73877] - } - }, - { - "id": 41, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271239, 44.739363] - } - }, - { - "id": 42, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264574, 44.728315] - } - }, - { - "id": 43, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264002, 44.727847] - } - }, - { - "id": 44, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275233999999999, 44.727239] - } - }, - { - "id": 45, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272823000000001, 44.720533] - } - }, - { - "id": 46, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275627, 44.729237] - } - }, - { - "id": 47, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.276962, 44.736068] - } - }, - { - "id": 48, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.276011, 44.729195] - } - }, - { - "id": 49, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.287058999999999, 44.727613] - } - }, - { - "id": 50, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.288065, 44.727506] - } - }, - { - "id": 51, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.288366000000001, 44.727226] - } - }, - { - "id": 52, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291179000000001, 44.730151] - } - }, - { - "id": 53, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291457, 44.731671] - } - }, - { - "id": 54, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.303999999999999, 44.716648] - } - }, - { - "id": 55, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260366, 44.716965] - } - }, - { - "id": 56, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.263661, 44.715183] - } - }, - { - "id": 57, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.257317, 44.708429] - } - }, - { - "id": 58, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.255011, 44.70945800000001] - } - }, - { - "id": 59, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.255535, 44.709709] - } - }, - { - "id": 60, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251427, 44.710828] - } - }, - { - "id": 61, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.243164, 44.708558] - } - }, - { - "id": 62, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251423, 44.711268] - } - }, - { - "id": 63, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251258999999999, 44.71193] - } - }, - { - "id": 64, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.247221, 44.712975] - } - }, - { - "id": 65, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.246554, 44.7128] - } - }, - { - "id": 66, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260308999999999, 44.706012] - } - }, - { - "id": 67, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260567, 44.706227] - } - }, - { - "id": 68, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.260624, 44.70527199999999] - } - }, - { - "id": 69, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.256809, 44.701526] - } - }, - { - "id": 70, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264354, 44.701611] - } - }, - { - "id": 71, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.265117, 44.701458] - } - }, - { - "id": 72, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.265736, 44.70128] - } - }, - { - "id": 73, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264355999999999, 44.699422] - } - }, - { - "id": 74, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271076, 44.699195] - } - }, - { - "id": 75, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270124, 44.69265] - } - }, - { - "id": 76, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.274132, 44.698074] - } - }, - { - "id": 77, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.275216, 44.69925] - } - }, - { - "id": 78, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.29159, 44.69426] - } - }, - { - "id": 79, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293287, 44.697755] - } - }, - { - "id": 80, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.290635, 44.692304] - } - }, - { - "id": 81, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.28942, 44.691436] - } - }, - { - "id": 82, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.284808, 44.691404] - } - }, - { - "id": 83, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.295083, 44.688311] - } - }, - { - "id": 84, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293566, 44.694074] - } - }, - { - "id": 85, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293666, 44.692658] - } - }, - { - "id": 86, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293688, 44.692509] - } - }, - { - "id": 87, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.293481, 44.692697] - } - }, - { - "id": 88, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.298165, 44.693851] - } - }, - { - "id": 89, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.30206, 44.694964] - } - }, - { - "id": 90, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.300629, 44.696719] - } - }, - { - "id": 91, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.304166, 44.69539] - } - }, - { - "id": 92, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.303697000000001, 44.695461] - } - }, - { - "id": 93, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.309441099999999, 44.696444] - } - }, - { - "id": 94, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.268341, 44.703601] - } - }, - { - "id": 95, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270058000000001, 44.70570900000001] - } - }, - { - "id": 96, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.272387999999999, 44.708816] - } - }, - { - "id": 97, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271646, 44.709229] - } - }, - { - "id": 98, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.276741, 44.711462] - } - }, - { - "id": 99, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.286003, 44.70976] - } - }, - { - "id": 100, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.251605000000001, 44.70417800000001] - } - }, - { - "id": 101, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.252232, 44.699817] - } - }, - { - "id": 102, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.245869, 44.699619] - } - }, - { - "id": 103, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.23077, 44.68984] - } - }, - { - "id": 104, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.233189, 44.688771] - } - }, - { - "id": 105, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.225613, 44.690414] - } - }, - { - "id": 106, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.225658999999999, 44.689413] - } - }, - { - "id": 107, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.229568, 44.685496] - } - }, - { - "id": 108, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.229077999999999, 44.683975] - } - }, - { - "id": 109, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.23335, 44.684175] - } - }, - { - "id": 110, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.252115, 44.696185] - } - }, - { - "id": 111, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.252836, 44.696314] - } - }, - { - "id": 112, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.257869, 44.692639] - } - }, - { - "id": 113, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.258694999999999, 44.694684] - } - }, - { - "id": 114, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271508, 44.666087] - } - }, - { - "id": 115, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.27233, 44.664478] - } - }, - { - "id": 116, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.270444, 44.665025] - } - }, - { - "id": 117, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271881, 44.663251] - } - }, - { - "id": 118, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.271709, 44.662301] - } - }, - { - "id": 119, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.268746, 44.660331] - } - }, - { - "id": 120, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.288922, 44.6484] - } - }, - { - "id": 121, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.29191, 44.64957800000001] - } - }, - { - "id": 122, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291696, 44.649937] - } - }, - { - "id": 123, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.305674099999999, 44.660426] - } - }, - { - "id": 124, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.306435, 44.663013] - } - }, - { - "id": 125, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.291407, 44.637677] - } - }, - { - "id": 126, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.279602, 44.637676] - } - }, - { - "id": 127, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.273155, 44.632589] - } - }, - { - "id": 128, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.302328, 44.630718] - } - }, - { - "id": 129, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.310708999999999, 44.635436] - } - }, - { - "id": 130, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.315926999999999, 44.637017] - } - }, - { - "id": 131, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.264264, 44.753757] - } - }, - { - "id": 132, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.263632, 44.753395] - } - }, - { - "id": 133, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.263077, 44.756667] - } - }, - { - "id": 134, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.239022, 44.751841] - } - }, - { - "id": 135, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.238964, 44.751516] - } - }, - { - "id": 136, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.222045, 44.750602] - } - }, - { - "id": 137, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.220266000000001, 44.749594] - } - }, - { - "id": 138, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.218814, 44.748727] - } - }, - { - "id": 139, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.215553, 44.74695] - } - }, - { - "id": 140, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.209531, 44.736899] - } - }, - { - "id": 141, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.208638, 44.734537] - } - }, - { - "id": 142, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.206393, 44.725698] - } - }, - { - "id": 143, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.218058999999999, 44.726117] - } - }, - { - "id": 144, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.219531, 44.72863] - } - }, - { - "id": 145, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.219654, 44.73002899999999] - } - }, - { - "id": 146, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.217169, 44.734855] - } - }, - { - "id": 147, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.220665, 44.720294] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.354205, 44.76649699999999], - [5.352489, 44.767044] - ] - }, - "length": 0.847, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.352489, 44.767044], - [5.350948000000001, 44.766465] - ] - }, - "length": 0.138, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.352489, 44.767044], - [5.349889, 44.768479] - ] - }, - "length": 0.28, - "params_id": "S_AL_240", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.349889, 44.768479], - [5.340990000000001, 44.771987] - ] - }, - "length": 0.8059999999999999, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 5, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.340990000000001, 44.771987], - [5.33796, 44.767887] - ] - }, - "length": 0.349, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 5, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.340990000000001, 44.771987], - [5.333443, 44.772101] - ] - }, - "length": 0.635, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.333443, 44.772101], - [5.332152, 44.773154] - ] - }, - "length": 0.072, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.333443, 44.772101], - [5.328604, 44.771373] - ] - }, - "length": 0.389, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.328604, 44.771373], - [5.329613, 44.766793] - ] - }, - "length": 0.512, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.329613, 44.766793], - [5.329857, 44.766317] - ] - }, - "length": 0.0579999999999999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.329857, 44.766317], - [5.332717, 44.754985] - ] - }, - "length": 0.981, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line12", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 12, - "bus2": 13, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.332717, 44.754985], - [5.335779, 44.751524] - ] - }, - "length": 0.4539999999999999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line13", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 14, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.328604, 44.771373], - [5.322039, 44.770639] - ] - }, - "length": 0.53, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line14", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 14, - "bus2": 15, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322039, 44.770639], - [5.322518, 44.773602] - ] - }, - "length": 0.3329999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line15", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 15, - "bus2": 16, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322518, 44.773602], - [5.322693, 44.77292199999999] - ] - }, - "length": 0.077, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line16", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 16, - "bus2": 17, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322693, 44.77292199999999], - [5.322789, 44.777828] - ] - }, - "length": 0.47, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line17", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 17, - "bus2": 18, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322789, 44.777828], - [5.322418, 44.778323] - ] - }, - "length": 0.067, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line18", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 18, - "bus2": 19, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322418, 44.778323], - [5.317114, 44.784118] - ] - }, - "length": 0.8420000000000001, - "params_id": "A_AA_75", - "ground": "ground" - }, - { - "id": "line19", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 19, - "bus2": 20, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.317114, 44.784118], - [5.317399, 44.78419] - ] - }, - "length": 0.022, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line20", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 20, - "bus2": 21, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.317399, 44.78419], - [5.315126999999999, 44.788614] - ] - }, - "length": 0.534, - "params_id": "A_AA_75", - "ground": "ground" - }, - { - "id": "line21", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 14, - "bus2": 22, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.322039, 44.770639], - [5.314989, 44.769299] - ] - }, - "length": 0.575, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line22", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 22, - "bus2": 23, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.314989, 44.769299], - [5.314938, 44.768333] - ] - }, - "length": 0.787, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line23", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 23, - "bus2": 24, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.314938, 44.768333], - [5.306875, 44.765457] - ] - }, - "length": 0.787, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line24", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 24, - "bus2": 25, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.306875, 44.765457], - [5.294973000000001, 44.768387] - ] - }, - "length": 1.224, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line25", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 25, - "bus2": 26, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.294973000000001, 44.768387], - [5.282789, 44.768455] - ] - }, - "length": 1.37, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line26", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 26, - "bus2": 27, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.282789, 44.768455], - [5.280849, 44.765393] - ] - }, - "length": 0.634, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line27", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 27, - "bus2": 28, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.280849, 44.765393], - [5.280136, 44.76502199999999] - ] - }, - "length": 0.07, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line28", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 28, - "bus2": 29, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.280136, 44.76502199999999], - [5.279859, 44.764848] - ] - }, - "length": 0.044, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line29", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 29, - "bus2": 30, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.279859, 44.764848], - [5.272926, 44.763672] - ] - }, - "length": 0.501, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line30", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 30, - "bus2": 31, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272926, 44.763672], - [5.273633999999999, 44.76358] - ] - }, - "length": 0.069, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line31", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 31, - "bus2": 32, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.273633999999999, 44.76358], - [5.272794, 44.763982] - ] - }, - "length": 0.069, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line32", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 32, - "bus2": 33, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272794, 44.763982], - [5.270316999999999, 44.760419] - ] - }, - "length": 0.4589999999999999, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line33", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 33, - "bus2": 34, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270316999999999, 44.760419], - [5.274366000000001, 44.758161] - ] - }, - "length": 0.207, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line34", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 34, - "bus2": 35, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.274366000000001, 44.758161], - [5.275697, 44.757549] - ] - }, - "length": 0.122, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line35", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 35, - "bus2": 36, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275697, 44.757549], - [5.269593, 44.756572] - ] - }, - "length": 0.411, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line36", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 33, - "bus2": 37, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270316999999999, 44.760419], - [5.267119999999999, 44.752936] - ] - }, - "length": 0.897, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line37", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 37, - "bus2": 38, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.267119999999999, 44.752936], - [5.264632, 44.750295] - ] - }, - "length": 0.311, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line38", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 38, - "bus2": 39, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264632, 44.750295], - [5.27005, 44.740412] - ] - }, - "length": 1.254, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line39", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 39, - "bus2": 40, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.27005, 44.740412], - [5.269245, 44.73877] - ] - }, - "length": 0.1889999999999999, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line40", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 40, - "bus2": 41, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.269245, 44.73877], - [5.271239, 44.739363] - ] - }, - "length": 0.177, - "params_id": "A_AA_54", - "ground": "ground" - }, - { - "id": "line41", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 41, - "bus2": 42, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271239, 44.739363], - [5.264574, 44.728315] - ] - }, - "length": 1.217, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line42", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 42, - "bus2": 43, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264574, 44.728315], - [5.264002, 44.727847] - ] - }, - "length": 0.067, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line43", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 42, - "bus2": 44, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264574, 44.728315], - [5.275233999999999, 44.727239] - ] - }, - "length": 0.133, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line44", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 44, - "bus2": 45, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275233999999999, 44.727239], - [5.272823000000001, 44.720533] - ] - }, - "length": 0.529, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line45", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 44, - "bus2": 46, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275233999999999, 44.727239], - [5.275627, 44.729237] - ] - }, - "length": 0.213, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line46", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 46, - "bus2": 47, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275627, 44.729237], - [5.276962, 44.736068] - ] - }, - "length": 1.121, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line47", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 46, - "bus2": 48, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275627, 44.729237], - [5.276011, 44.729195] - ] - }, - "length": 0.03, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line48", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 48, - "bus2": 49, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.276011, 44.729195], - [5.287058999999999, 44.727613] - ] - }, - "length": 0.888, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line49", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 49, - "bus2": 50, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.287058999999999, 44.727613], - [5.288065, 44.727506] - ] - }, - "length": 0.083, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line50", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 50, - "bus2": 51, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288065, 44.727506], - [5.288366000000001, 44.727226] - ] - }, - "length": 0.034, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line51", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 50, - "bus2": 52, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288065, 44.727506], - [5.291179000000001, 44.730151] - ] - }, - "length": 0.238, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line52", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 50, - "bus2": 53, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288065, 44.727506], - [5.291457, 44.731671] - ] - }, - "length": 0.379, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line53", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 49, - "bus2": 54, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.287058999999999, 44.727613], - [5.303999999999999, 44.716648] - ] - }, - "length": 1.971, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line54", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 42, - "bus2": 55, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264574, 44.728315], - [5.260366, 44.716965] - ] - }, - "length": 1.306, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line55", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 55, - "bus2": 56, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260366, 44.716965], - [5.263661, 44.715183] - ] - }, - "length": 0.118, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line56", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 55, - "bus2": 57, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260366, 44.716965], - [5.257317, 44.708429] - ] - }, - "length": 0.982, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line57", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 57, - "bus2": 58, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257317, 44.708429], - [5.255011, 44.70945800000001] - ] - }, - "length": 0.11, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line58", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 58, - "bus2": 59, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.255011, 44.70945800000001], - [5.255535, 44.709709] - ] - }, - "length": 0.05, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line59", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 59, - "bus2": 60, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.255535, 44.709709], - [5.251427, 44.710828] - ] - }, - "length": 0.321, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line60", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 60, - "bus2": 61, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251427, 44.710828], - [5.243164, 44.708558] - ] - }, - "length": 0.732, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line61", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 59, - "bus2": 62, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.255535, 44.709709], - [5.251423, 44.711268] - ] - }, - "length": 0.047, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line62", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 62, - "bus2": 63, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251423, 44.711268], - [5.251258999999999, 44.71193] - ] - }, - "length": 0.064, - "params_id": "A_CU_12", - "ground": "ground" - }, - { - "id": "line63", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 63, - "bus2": 64, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251258999999999, 44.71193], - [5.247221, 44.712975] - ] - }, - "length": 0.376, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line64", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 64, - "bus2": 65, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.247221, 44.712975], - [5.246554, 44.7128] - ] - }, - "length": 0.0559999999999999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line65", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 57, - "bus2": 66, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257317, 44.708429], - [5.260308999999999, 44.706012] - ] - }, - "length": 0.2269999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line66", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 66, - "bus2": 67, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260308999999999, 44.706012], - [5.260567, 44.706227] - ] - }, - "length": 0.038, - "params_id": "S_AL_150", - "ground": "ground" - }, - { - "id": "line67", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 67, - "bus2": 68, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260567, 44.706227], - [5.260624, 44.70527199999999] - ] - }, - "length": 0.085, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line68", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 68, - "bus2": 69, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260624, 44.70527199999999], - [5.256809, 44.701526] - ] - }, - "length": 0.306, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line69", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 68, - "bus2": 70, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.260624, 44.70527199999999], - [5.264354, 44.701611] - ] - }, - "length": 0.511, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line70", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 70, - "bus2": 71, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264354, 44.701611], - [5.265117, 44.701458] - ] - }, - "length": 0.049, - "params_id": "A_CU_07", - "ground": "ground" - }, - { - "id": "line71", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 71, - "bus2": 72, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.265117, 44.701458], - [5.265736, 44.70128] - ] - }, - "length": 0.0579999999999999, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line72", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 72, - "bus2": 73, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.265736, 44.70128], - [5.264355999999999, 44.699422] - ] - }, - "length": 0.236, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line73", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 73, - "bus2": 74, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264355999999999, 44.699422], - [5.271076, 44.699195] - ] - }, - "length": 0.477, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line74", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 74, - "bus2": 75, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271076, 44.699195], - [5.270124, 44.69265] - ] - }, - "length": 0.353, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line75", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 75, - "bus2": 76, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270124, 44.69265], - [5.274132, 44.698074] - ] - }, - "length": 0.275, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line76", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 76, - "bus2": 77, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.274132, 44.698074], - [5.275216, 44.69925] - ] - }, - "length": 0.158, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line77", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 77, - "bus2": 78, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.275216, 44.69925], - [5.29159, 44.69426] - ] - }, - "length": 1.481, - "params_id": "A_LA_38", - "ground": "ground" - }, - { - "id": "line78", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 78, - "bus2": 79, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29159, 44.69426], - [5.293287, 44.697755] - ] - }, - "length": 0.275, - "params_id": "A_LA_39", - "ground": "ground" - }, - { - "id": "line79", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 78, - "bus2": 80, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29159, 44.69426], - [5.290635, 44.692304] - ] - }, - "length": 0.134, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line80", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 80, - "bus2": 81, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.290635, 44.692304], - [5.28942, 44.691436] - ] - }, - "length": 0.136, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line81", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 81, - "bus2": 82, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.28942, 44.691436], - [5.284808, 44.691404] - ] - }, - "length": 0.361, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line82", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 81, - "bus2": 83, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.28942, 44.691436], - [5.295083, 44.688311] - ] - }, - "length": 0.763, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line83", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 78, - "bus2": 84, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29159, 44.69426], - [5.293566, 44.694074] - ] - }, - "length": 0.072, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line84", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 84, - "bus2": 85, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293566, 44.694074], - [5.293666, 44.692658] - ] - }, - "length": 0.154, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line85", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 85, - "bus2": 86, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293666, 44.692658], - [5.293688, 44.692509] - ] - }, - "length": 0.021, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line86", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 85, - "bus2": 87, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293666, 44.692658], - [5.293481, 44.692697] - ] - }, - "length": 0.023, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line87", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 84, - "bus2": 88, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.293566, 44.694074], - [5.298165, 44.693851] - ] - }, - "length": 0.365, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line88", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 88, - "bus2": 89, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.298165, 44.693851], - [5.30206, 44.694964] - ] - }, - "length": 0.353, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line89", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 89, - "bus2": 90, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.30206, 44.694964], - [5.300629, 44.696719] - ] - }, - "length": 0.281, - "params_id": "A_LA_37", - "ground": "ground" - }, - { - "id": "line90", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 88, - "bus2": 91, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.298165, 44.693851], - [5.304166, 44.69539] - ] - }, - "length": 0.174, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line91", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 91, - "bus2": 92, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.304166, 44.69539], - [5.303697000000001, 44.695461] - ] - }, - "length": 0.037, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line92", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 91, - "bus2": 93, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.304166, 44.69539], - [5.309441099999999, 44.696444] - ] - }, - "length": 0.428, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line93", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 71, - "bus2": 94, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.265117, 44.701458], - [5.268341, 44.703601] - ] - }, - "length": 0.3329999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line94", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 94, - "bus2": 95, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.268341, 44.703601], - [5.270058000000001, 44.70570900000001] - ] - }, - "length": 0.272, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line95", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 95, - "bus2": 96, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270058000000001, 44.70570900000001], - [5.272387999999999, 44.708816] - ] - }, - "length": 0.4, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line96", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 96, - "bus2": 97, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272387999999999, 44.708816], - [5.271646, 44.709229] - ] - }, - "length": 0.072, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line97", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 96, - "bus2": 98, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.272387999999999, 44.708816], - [5.276741, 44.711462] - ] - }, - "length": 0.441, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line98", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 98, - "bus2": 99, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.276741, 44.711462], - [5.286003, 44.70976] - ] - }, - "length": 0.772, - "params_id": "A_AA_54", - "ground": "ground" - }, - { - "id": "line99", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 57, - "bus2": 100, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257317, 44.708429], - [5.251605000000001, 44.70417800000001] - ] - }, - "length": 0.65, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line100", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 100, - "bus2": 101, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251605000000001, 44.70417800000001], - [5.252232, 44.699817] - ] - }, - "length": 0.34, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line101", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 100, - "bus2": 102, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.251605000000001, 44.70417800000001], - [5.245869, 44.699619] - ] - }, - "length": 0.682, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line102", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 102, - "bus2": 103, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.245869, 44.699619], - [5.23077, 44.68984] - ] - }, - "length": 1.841, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line103", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 103, - "bus2": 104, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.23077, 44.68984], - [5.233189, 44.688771] - ] - }, - "length": 0.226, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line104", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 103, - "bus2": 105, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.23077, 44.68984], - [5.225613, 44.690414] - ] - }, - "length": 0.407, - "params_id": "A_AA_147", - "ground": "ground" - }, - { - "id": "line105", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 105, - "bus2": 106, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.225613, 44.690414], - [5.225658999999999, 44.689413] - ] - }, - "length": 0.067, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line106", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 106, - "bus2": 107, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.225658999999999, 44.689413], - [5.229568, 44.685496] - ] - }, - "length": 0.272, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line107", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 107, - "bus2": 108, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.229568, 44.685496], - [5.229077999999999, 44.683975] - ] - }, - "length": 0.2319999999999999, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line108", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 107, - "bus2": 109, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.229568, 44.685496], - [5.23335, 44.684175] - ] - }, - "length": 0.253, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line109", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 102, - "bus2": 110, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.245869, 44.699619], - [5.252115, 44.696185] - ] - }, - "length": 0.515, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line110", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 110, - "bus2": 111, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.252115, 44.696185], - [5.252836, 44.696314] - ] - }, - "length": 0.06, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line111", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 110, - "bus2": 112, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.252115, 44.696185], - [5.257869, 44.692639] - ] - }, - "length": 0.607, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line112", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 112, - "bus2": 113, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257869, 44.692639], - [5.258694999999999, 44.694684] - ] - }, - "length": 0.238, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line113", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 112, - "bus2": 114, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.257869, 44.692639], - [5.271508, 44.666087] - ] - }, - "length": 3.315, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line114", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 114, - "bus2": 115, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271508, 44.666087], - [5.27233, 44.664478] - ] - }, - "length": 0.09, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line115", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 114, - "bus2": 116, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271508, 44.666087], - [5.270444, 44.665025] - ] - }, - "length": 0.141, - "params_id": "A_AM_75", - "ground": "ground" - }, - { - "id": "line116", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 116, - "bus2": 117, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.270444, 44.665025], - [5.271881, 44.663251] - ] - }, - "length": 0.242, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line117", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 117, - "bus2": 118, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271881, 44.663251], - [5.271709, 44.662301] - ] - }, - "length": 0.11, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line118", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 118, - "bus2": 119, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271709, 44.662301], - [5.268746, 44.660331] - ] - }, - "length": 0.299, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line119", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 118, - "bus2": 120, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.271709, 44.662301], - [5.288922, 44.6484] - ] - }, - "length": 1.927, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line120", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 120, - "bus2": 121, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288922, 44.6484], - [5.29191, 44.64957800000001] - ] - }, - "length": 0.2289999999999999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line121", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 121, - "bus2": 122, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29191, 44.64957800000001], - [5.291696, 44.649937] - ] - }, - "length": 0.039, - "params_id": "A_AA_22", - "ground": "ground" - }, - { - "id": "line122", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 121, - "bus2": 123, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.29191, 44.64957800000001], - [5.305674099999999, 44.660426] - ] - }, - "length": 1.67, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line123", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 123, - "bus2": 124, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.305674099999999, 44.660426], - [5.306435, 44.663013] - ] - }, - "length": 0.291, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line124", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 120, - "bus2": 125, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.288922, 44.6484], - [5.291407, 44.637677] - ] - }, - "length": 1.266, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line125", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 125, - "bus2": 126, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.291407, 44.637677], - [5.279602, 44.637676] - ] - }, - "length": 0.3389999999999999, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line126", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 126, - "bus2": 127, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.279602, 44.637676], - [5.273155, 44.632589] - ] - }, - "length": 0.871, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line127", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 125, - "bus2": 128, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.291407, 44.637677], - [5.302328, 44.630718] - ] - }, - "length": 0.799, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line128", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 128, - "bus2": 129, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.302328, 44.630718], - [5.310708999999999, 44.635436] - ] - }, - "length": 0.8290000000000001, - "params_id": "A_AA_22", - "ground": "ground" - }, - { - "id": "line129", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 129, - "bus2": 130, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.310708999999999, 44.635436], - [5.315926999999999, 44.637017] - ] - }, - "length": 0.444, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line130", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 37, - "bus2": 131, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.267119999999999, 44.752936], - [5.264264, 44.753757] - ] - }, - "length": 0.216, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line131", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 131, - "bus2": 132, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264264, 44.753757], - [5.263632, 44.753395] - ] - }, - "length": 0.064, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line132", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 131, - "bus2": 133, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264264, 44.753757], - [5.263077, 44.756667] - ] - }, - "length": 0.337, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line133", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 131, - "bus2": 134, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.264264, 44.753757], - [5.239022, 44.751841] - ] - }, - "length": 1.992, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line134", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 134, - "bus2": 135, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.239022, 44.751841], - [5.238964, 44.751516] - ] - }, - "length": 0.031, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line135", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 134, - "bus2": 136, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.239022, 44.751841], - [5.222045, 44.750602] - ] - }, - "length": 1.41, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line136", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 136, - "bus2": 137, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.222045, 44.750602], - [5.220266000000001, 44.749594] - ] - }, - "length": 0.1, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line137", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 137, - "bus2": 138, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.220266000000001, 44.749594], - [5.218814, 44.748727] - ] - }, - "length": 0.075, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line138", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 138, - "bus2": 139, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.218814, 44.748727], - [5.215553, 44.74695] - ] - }, - "length": 0.487, - "params_id": "A_AA_37", - "ground": "ground" - }, - { - "id": "line139", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 139, - "bus2": 140, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.215553, 44.74695], - [5.209531, 44.736899] - ] - }, - "length": 0.995, - "params_id": "A_AM_34", - "ground": "ground" - }, - { - "id": "line140", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 140, - "bus2": 141, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.209531, 44.736899], - [5.208638, 44.734537] - ] - }, - "length": 0.2739999999999999, - "params_id": "S_AL_50", - "ground": "ground" - }, - { - "id": "line141", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 141, - "bus2": 142, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.208638, 44.734537], - [5.206393, 44.725698] - ] - }, - "length": 1.095, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line142", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 142, - "bus2": 143, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.206393, 44.725698], - [5.218058999999999, 44.726117] - ] - }, - "length": 0.999, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line143", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 143, - "bus2": 144, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.218058999999999, 44.726117], - [5.219531, 44.72863] - ] - }, - "length": 0.28, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line144", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 144, - "bus2": 145, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.219531, 44.72863], - [5.219654, 44.73002899999999] - ] - }, - "length": 0.18, - "params_id": "S_AL_95", - "ground": "ground" - }, - { - "id": "line145", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 145, - "bus2": 146, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.219654, 44.73002899999999], - [5.217169, 44.734855] - ] - }, - "length": 0.564, - "params_id": "A_AM_54", - "ground": "ground" - }, - { - "id": "line146", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 143, - "bus2": 147, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.218058999999999, 44.726117], - [5.220665, 44.720294] - ] - }, - "length": 0.687, - "params_id": "A_AM_54", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [12802.501990789257, 2560.500398157851], - [12802.501991134319, 2560.5003982268627], - [12802.501991134317, 2560.5003982268668] - ] - }, - { - "id": 1, - "bus": 4, - "phases": "abcn", - "powers": [ - [12796.567508638322, 2559.313501727664], - [12796.56750898323, 2559.313501796648], - [12796.567508983235, 2559.3135017966506] - ] - }, - { - "id": 2, - "bus": 5, - "phases": "abcn", - "powers": [ - [12765.017770922159, 2553.0035541844327], - [12765.017771266208, 2553.0035542532423], - [12765.017771266213, 2553.0035542532382] - ] - }, - { - "id": 3, - "bus": 7, - "phases": "abcn", - "powers": [ - [12740.737737064119, 2548.1475474128224], - [12740.737737407515, 2548.1475474815006], - [12740.737737407508, 2548.1475474814974] - ] - }, - { - "id": 4, - "bus": 9, - "phases": "abcn", - "powers": [ - [12726.200419221137, 2545.2400838442263], - [12726.200419564138, 2545.240083912827], - [12726.20041956414, 2545.2400839128277] - ] - }, - { - "id": 5, - "bus": 10, - "phases": "abcn", - "powers": [ - [12725.465466076494, 2545.0930932152983], - [12725.465466419479, 2545.0930932838937], - [12725.465466419473, 2545.093093283894] - ] - }, - { - "id": 6, - "bus": 11, - "phases": "abcn", - "powers": [ - [12725.43517637802, 2545.0870352756046], - [12725.435176721006, 2545.0870353442015], - [12725.435176721006, 2545.087035344201] - ] - }, - { - "id": 7, - "bus": 14, - "phases": "abcn", - "powers": [ - [12707.602683905367, 2541.5205367810727], - [12707.602684247868, 2541.5205368495754], - [12707.60268424787, 2541.520536849573] - ] - }, - { - "id": 8, - "bus": 15, - "phases": "abcn", - "powers": [ - [12704.901205829321, 2540.9802411658625], - [12704.901206171744, 2540.980241234349], - [12704.901206171748, 2540.9802412343515] - ] - }, - { - "id": 9, - "bus": 17, - "phases": "abcn", - "powers": [ - [12701.770964275058, 2540.3541928550126], - [12701.770964617397, 2540.3541929234825], - [12701.770964617403, 2540.354192923482] - ] - }, - { - "id": 10, - "bus": 19, - "phases": "abcn", - "powers": [ - [12700.205603076367, 2540.041120615274], - [12700.20560341866, 2540.0411206837325], - [12700.205603418672, 2540.0411206837343] - ] - }, - { - "id": 11, - "bus": 22, - "phases": "abcn", - "powers": [ - [12689.217617966586, 2537.8435235933175], - [12689.217618308583, 2537.843523661718], - [12689.217618308587, 2537.8435236617197] - ] - }, - { - "id": 12, - "bus": 24, - "phases": "abcn", - "powers": [ - [12597.043984934118, 2519.4087969868233], - [12597.043985273627, 2519.408797054728], - [12597.04398527364, 2519.408797054729] - ] - }, - { - "id": 13, - "bus": 27, - "phases": "abcn", - "powers": [ - [12506.045785991091, 2501.209157198218], - [12506.045786328154, 2501.2091572656273], - [12506.045786328166, 2501.2091572656327] - ] - }, - { - "id": 14, - "bus": 28, - "phases": "abcn", - "powers": [ - [12503.726828561492, 2500.7453657122983], - [12503.726828898474, 2500.745365779696], - [12503.7268288985, 2500.7453657797] - ] - }, - { - "id": 15, - "bus": 30, - "phases": "abcn", - "powers": [ - [12488.622180748127, 2497.7244361496264], - [12488.62218108472, 2497.7244362169386], - [12488.622181084738, 2497.7244362169495] - ] - }, - { - "id": 16, - "bus": 31, - "phases": "abcn", - "powers": [ - [12486.739679367176, 2497.3479358734335], - [12486.739679703718, 2497.3479359407356], - [12486.739679703738, 2497.347935940747] - ] - }, - { - "id": 17, - "bus": 33, - "phases": "abcn", - "powers": [ - [12460.422372843175, 2492.0844745686345], - [12460.422373179015, 2492.0844746358], - [12460.422373179032, 2492.0844746358007] - ] - }, - { - "id": 18, - "bus": 34, - "phases": "abcn", - "powers": [ - [12459.873117109248, 2491.9746234218496], - [12459.873117445062, 2491.97462348901], - [12459.873117445082, 2491.9746234890154] - ] - }, - { - "id": 19, - "bus": 37, - "phases": "abcn", - "powers": [ - [12437.115136541554, 2487.42302730831], - [12437.115136876753, 2487.4230273753437], - [12437.115136876771, 2487.4230273753515] - ] - }, - { - "id": 20, - "bus": 39, - "phases": "abcn", - "powers": [ - [12402.516318557688, 2480.503263711538], - [12402.516318891954, 2480.5032637783843], - [12402.516318891981, 2480.5032637783997] - ] - }, - { - "id": 21, - "bus": 40, - "phases": "abcn", - "powers": [ - [12397.2955315958, 2479.4591063191597], - [12397.295531929922, 2479.4591063859853], - [12397.29553192994, 2479.4591063859916] - ] - }, - { - "id": 22, - "bus": 42, - "phases": "abcn", - "powers": [ - [12350.08915464453, 2470.017830928906], - [12350.089154977362, 2470.0178309954717], - [12350.089154977402, 2470.0178309954817] - ] - }, - { - "id": 23, - "bus": 44, - "phases": "abcn", - "powers": [ - [12348.387911342532, 2469.6775822685045], - [12348.387911675325, 2469.677582335068], - [12348.387911675358, 2469.6775823350767] - ] - }, - { - "id": 24, - "bus": 46, - "phases": "abcn", - "powers": [ - [12346.223486490066, 2469.244697298013], - [12346.223486822808, 2469.244697364561], - [12346.223486822846, 2469.244697364572] - ] - }, - { - "id": 25, - "bus": 48, - "phases": "abcn", - "powers": [ - [12346.179516601576, 2469.2359033203147], - [12346.179516934308, 2469.2359033868615], - [12346.17951693435, 2469.235903386871] - ] - }, - { - "id": 26, - "bus": 49, - "phases": "abcn", - "powers": [ - [12339.833388750798, 2467.9666777501598], - [12339.83338908336, 2467.966677816674], - [12339.833389083396, 2467.9666778166784] - ] - }, - { - "id": 27, - "bus": 50, - "phases": "abcn", - "powers": [ - [12339.54775798752, 2467.909551597504], - [12339.54775832008, 2467.9095516640164], - [12339.547758320114, 2467.9095516640236] - ] - }, - { - "id": 28, - "bus": 55, - "phases": "abcn", - "powers": [ - [12320.47105093255, 2464.0942101865103], - [12320.471051264594, 2464.094210252916], - [12320.471051264638, 2464.0942102529316] - ] - }, - { - "id": 29, - "bus": 57, - "phases": "abcn", - "powers": [ - [12298.97759572786, 2459.7955191455717], - [12298.97759605932, 2459.795519211865], - [12298.97759605936, 2459.7955192118743] - ] - }, - { - "id": 30, - "bus": 58, - "phases": "abcn", - "powers": [ - [12297.246110182197, 2459.4492220364396], - [12297.24611051361, 2459.449222102722], - [12297.246110513644, 2459.449222102731] - ] - }, - { - "id": 31, - "bus": 60, - "phases": "abcn", - "powers": [ - [12295.160815223391, 2459.032163044679], - [12295.160815554753, 2459.0321631109546], - [12295.160815554796, 2459.0321631109605] - ] - }, - { - "id": 32, - "bus": 61, - "phases": "abcn", - "powers": [ - [12293.982395686638, 2458.796479137327], - [12293.982396017964, 2458.796479203591], - [12293.982396018006, 2458.796479203602] - ] - }, - { - "id": 33, - "bus": 62, - "phases": "abcn", - "powers": [ - [12296.616039898434, 2459.323207979687], - [12296.616040229826, 2459.323208045964], - [12296.616040229861, 2459.3232080459734] - ] - }, - { - "id": 34, - "bus": 63, - "phases": "abcn", - "powers": [ - [12296.141244021726, 2459.2282488043456], - [12296.1412443531, 2459.228248870614], - [12296.14124435314, 2459.228248870628] - ] - }, - { - "id": 35, - "bus": 64, - "phases": "abcn", - "powers": [ - [12295.535246857302, 2459.107049371459], - [12295.535247188673, 2459.1070494377327], - [12295.535247188709, 2459.107049437743] - ] - }, - { - "id": 36, - "bus": 66, - "phases": "abcn", - "powers": [ - [12289.633404085758, 2457.926680817149], - [12289.633404416963, 2457.926680883391], - [12289.633404417002, 2457.926680883402] - ] - }, - { - "id": 37, - "bus": 68, - "phases": "abcn", - "powers": [ - [12286.066845253778, 2457.2133690507517], - [12286.066845584883, 2457.2133691169765], - [12286.066845584923, 2457.2133691169824] - ] - }, - { - "id": 38, - "bus": 70, - "phases": "abcn", - "powers": [ - [12267.700626786547, 2453.540125357308], - [12267.700627117149, 2453.540125423431], - [12267.700627117203, 2453.5401254234407] - ] - }, - { - "id": 39, - "bus": 71, - "phases": "abcn", - "powers": [ - [12265.380072032627, 2453.0760144065243], - [12265.38007236317, 2453.076014472633], - [12265.380072363218, 2453.0760144726446] - ] - }, - { - "id": 40, - "bus": 72, - "phases": "abcn", - "powers": [ - [12263.523709578187, 2452.7047419156356], - [12263.523709908673, 2452.7047419817363], - [12263.52370990872, 2452.7047419817454] - ] - }, - { - "id": 41, - "bus": 73, - "phases": "abcn", - "powers": [ - [12254.935892839552, 2450.987178567909], - [12254.935893169812, 2450.987178633961], - [12254.93589316986, 2450.9871786339727] - ] - }, - { - "id": 42, - "bus": 74, - "phases": "abcn", - "powers": [ - [12242.51281613178, 2448.5025632263564], - [12242.512816461702, 2448.50256329234], - [12242.512816461749, 2448.5025632923516] - ] - }, - { - "id": 43, - "bus": 76, - "phases": "abcn", - "powers": [ - [12228.027002796374, 2445.6054005592746], - [12228.027003125919, 2445.6054006251834], - [12228.027003125964, 2445.6054006251943] - ] - }, - { - "id": 44, - "bus": 78, - "phases": "abcn", - "powers": [ - [12195.094540595564, 2439.018908119113], - [12195.094540924201, 2439.018908184843], - [12195.094540924252, 2439.0189081848507] - ] - }, - { - "id": 45, - "bus": 81, - "phases": "abcn", - "powers": [ - [12194.397907903025, 2438.879581580604], - [12194.397908231655, 2438.8795816463326], - [12194.397908231706, 2438.8795816463376] - ] - }, - { - "id": 46, - "bus": 84, - "phases": "abcn", - "powers": [ - [12194.521349752014, 2438.904269950403], - [12194.521350080639, 2438.90427001613], - [12194.52135008069, 2438.9042700161376] - ] - }, - { - "id": 47, - "bus": 85, - "phases": "abcn", - "powers": [ - [12194.031723143064, 2438.8063446286124], - [12194.031723471682, 2438.806344694336], - [12194.03172347173, 2438.806344694346] - ] - }, - { - "id": 48, - "bus": 86, - "phases": "abcn", - "powers": [ - [12193.998091744037, 2438.7996183488085], - [12193.998092072648, 2438.7996184145322], - [12193.9980920727, 2438.799618414539] - ] - }, - { - "id": 49, - "bus": 89, - "phases": "abcn", - "powers": [ - [12192.7961636406, 2438.55923272812], - [12192.796163969175, 2438.5592327938366], - [12192.796163969228, 2438.5592327938466] - ] - }, - { - "id": 50, - "bus": 91, - "phases": "abcn", - "powers": [ - [12193.081949536554, 2438.61638990731], - [12193.081949865145, 2438.616389973028], - [12193.081949865194, 2438.6163899730404] - ] - }, - { - "id": 51, - "bus": 96, - "phases": "abcn", - "powers": [ - [12262.77106449845, 2452.5542128996904], - [12262.771064828907, 2452.5542129657824], - [12262.771064828954, 2452.554212965794] - ] - }, - { - "id": 52, - "bus": 100, - "phases": "abcn", - "powers": [ - [12295.301951915377, 2459.060390383075], - [12295.301952246733, 2459.0603904493455], - [12295.301952246773, 2459.060390449357] - ] - }, - { - "id": 53, - "bus": 102, - "phases": "abcn", - "powers": [ - [12291.944396425028, 2458.3888792850057], - [12291.94439675629, 2458.3888793512597], - [12291.944396756355, 2458.3888793512733] - ] - }, - { - "id": 54, - "bus": 103, - "phases": "abcn", - "powers": [ - [12288.334961780476, 2457.6669923560976], - [12288.334962111632, 2457.666992422327], - [12288.334962111676, 2457.6669924223343] - ] - }, - { - "id": 55, - "bus": 105, - "phases": "abcn", - "powers": [ - [12287.830777190737, 2457.566155438148], - [12287.83077752188, 2457.566155504377], - [12287.830777521927, 2457.5661555043857] - ] - }, - { - "id": 56, - "bus": 107, - "phases": "abcn", - "powers": [ - [12287.088405667299, 2457.41768113346], - [12287.088405998416, 2457.4176811996813], - [12287.088405998471, 2457.417681199692] - ] - }, - { - "id": 57, - "bus": 110, - "phases": "abcn", - "powers": [ - [12288.621960893228, 2457.724392178644], - [12288.621961224388, 2457.724392244875], - [12288.621961224457, 2457.7243922448897] - ] - }, - { - "id": 58, - "bus": 112, - "phases": "abcn", - "powers": [ - [12285.436006820195, 2457.087201364039], - [12285.436007151286, 2457.0872014302577], - [12285.436007151342, 2457.0872014302668] - ] - }, - { - "id": 59, - "bus": 114, - "phases": "abcn", - "powers": [ - [12271.971328492453, 2454.394265698492], - [12271.971328823172, 2454.394265764634], - [12271.971328823241, 2454.394265764648] - ] - }, - { - "id": 60, - "bus": 116, - "phases": "abcn", - "powers": [ - [12271.566322333221, 2454.3132644666443], - [12271.566322663948, 2454.3132645327887], - [12271.566322664006, 2454.3132645327964] - ] - }, - { - "id": 61, - "bus": 118, - "phases": "abcn", - "powers": [ - [12270.592082030807, 2454.1184164061597], - [12270.5920823615, 2454.1184164722963], - [12270.592082361563, 2454.118416472311] - ] - }, - { - "id": 62, - "bus": 120, - "phases": "abcn", - "powers": [ - [12266.165321951908, 2453.2330643903806], - [12266.165322282475, 2453.2330644564954], - [12266.16532228254, 2453.2330644565054] - ] - }, - { - "id": 63, - "bus": 121, - "phases": "abcn", - "powers": [ - [12265.802915429917, 2453.16058308598], - [12265.80291576048, 2453.1605831520974], - [12265.802915760549, 2453.1605831521088] - ] - }, - { - "id": 64, - "bus": 125, - "phases": "abcn", - "powers": [ - [12264.682914183797, 2452.936582836761], - [12264.682914514327, 2452.9365829028684], - [12264.682914514397, 2452.9365829028775] - ] - }, - { - "id": 65, - "bus": 129, - "phases": "abcn", - "powers": [ - [12260.595819680475, 2452.119163936096], - [12260.595820010902, 2452.11916400218], - [12260.59582001097, 2452.119164002193] - ] - }, - { - "id": 66, - "bus": 131, - "phases": "abcn", - "powers": [ - [12432.876180518142, 2486.5752361036284], - [12432.876180853233, 2486.575236170641], - [12432.876180853253, 2486.5752361706454] - ] - }, - { - "id": 67, - "bus": 134, - "phases": "abcn", - "powers": [ - [12399.064781536277, 2479.8129563072544], - [12399.064781870467, 2479.812956374095], - [12399.064781870464, 2479.812956374092] - ] - }, - { - "id": 68, - "bus": 136, - "phases": "abcn", - "powers": [ - [12378.863033841777, 2475.772606768356], - [12378.86303417543, 2475.7726068350885], - [12378.863034175418, 2475.7726068350844] - ] - }, - { - "id": 69, - "bus": 138, - "phases": "abcn", - "powers": [ - [12377.709104796742, 2475.54182095935], - [12377.709105130365, 2475.5418210260777], - [12377.709105130349, 2475.5418210260727] - ] - }, - { - "id": 70, - "bus": 139, - "phases": "abcn", - "powers": [ - [12373.304471533807, 2474.660894306761], - [12373.304471867308, 2474.6608943734655], - [12373.304471867285, 2474.660894373461] - ] - }, - { - "id": 71, - "bus": 140, - "phases": "abcn", - "powers": [ - [12363.635345915347, 2472.727069183071], - [12363.635346248599, 2472.727069249727], - [12363.63534624858, 2472.727069249717] - ] - }, - { - "id": 72, - "bus": 144, - "phases": "abcn", - "powers": [ - [12357.53364027714, 2471.50672805543], - [12357.533640610238, 2471.5067281220563], - [12357.533640610227, 2471.5067281220427] - ] - }, - { - "id": 73, - "bus": 145, - "phases": "abcn", - "powers": [ - [12357.39491792443, 2471.4789835848856], - [12357.394918257512, 2471.4789836515083], - [12357.394918257492, 2471.4789836514915] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AA_147", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.243, - 0.0, - 0.0 - ], - [ - 0.0, - 0.243, - 0.0 - ], - [ - 0.0, - 0.0, - 0.243 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_22", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.75, - 0.0, - 0.0 - ], - [ - 0.0, - 1.75, - 0.0 - ], - [ - 0.0, - 0.0, - 1.75 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_37", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.041, - 0.0, - 0.0 - ], - [ - 0.0, - 1.041, - 0.0 - ], - [ - 0.0, - 0.0, - 1.041 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.775, - 0.0, - 0.0 - ], - [ - 0.0, - 0.775, - 0.0 - ], - [ - 0.0, - 0.0, - 0.775 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AA_75", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.609, - 0.0, - 0.0 - ], - [ - 0.0, - 0.609, - 0.0 - ], - [ - 0.0, - 0.0, - 0.609 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AM_34", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.505, - 0.0, - 0.0 - ], - [ - 0.0, - 1.505, - 0.0 - ], - [ - 0.0, - 0.0, - 1.505 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AM_54", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.613, - 0.0, - 0.0 - ], - [ - 0.0, - 0.613, - 0.0 - ], - [ - 0.0, - 0.0, - 0.613 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_AM_75", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.441, - 0.0, - 0.0 - ], - [ - 0.0, - 0.441, - 0.0 - ], - [ - 0.0, - 0.0, - 0.441 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_CU_07", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.5, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_CU_12", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.5, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_LA_37", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.192, - 0.0, - 0.0 - ], - [ - 0.0, - 1.192, - 0.0 - ], - [ - 0.0, - 0.0, - 1.192 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_LA_38", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.192, - 0.0, - 0.0 - ], - [ - 0.0, - 1.192, - 0.0 - ], - [ - 0.0, - 0.0, - 1.192 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "A_LA_39", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.192, - 0.0, - 0.0 - ], - [ - 0.0, - 1.192, - 0.0 - ], - [ - 0.0, - 0.0, - 1.192 - ] - ], - [ - [ - 0.3499999999999999, - 0.0, - 0.0 - ], - [ - 0.0, - 0.3499999999999999, - 0.0 - ], - [ - 0.0, - 0.0, - 0.3499999999999999 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 1.5707963267948998e-06, - 0.0, - 0.0 - ], - [ - 0.0, - 1.5707963267948998e-06, - 0.0 - ], - [ - 0.0, - 0.0, - 1.5707963267948998e-06 - ] - ] - ] - }, - { - "id": "S_AL_150", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.20000000000000004, - 0.0, - 0.0 - ], - [ - 0.0, - 0.20000000000000004, - 0.0 - ], - [ - 0.0, - 0.0, - 0.20000000000000004 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001410575101461, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001410575101461, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001410575101461 - ] - ] - ] - }, - { - "id": "S_AL_240", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.125, - 0.0, - 0.0 - ], - [ - 0.0, - 0.125, - 0.0 - ], - [ - 0.0, - 0.0, - 0.125 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.0001834690109696, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0001834690109696, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0001834690109696 - ] - ] - ] - }, - { - "id": "S_AL_50", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.6, - 0.0, - 0.0 - ], - [ - 0.0, - 0.6, - 0.0 - ], - [ - 0.0, - 0.0, - 0.6 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 8.702211650443729e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 8.702211650443729e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 8.702211650443729e-05 - ] - ] - ] - }, - { - "id": "S_AL_95", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.316, - 0.0, - 0.0 - ], - [ - 0.0, - 0.316, - 0.0 - ], - [ - 0.0, - 0.0, - 0.316 - ] - ], - [ - [ - 0.10000000000000002, - 0.0, - 0.0 - ], - [ - 0.0, - 0.10000000000000002, - 0.0 - ], - [ - 0.0, - 0.0, - 0.10000000000000002 - ] - ] - ], - "y_shunt": [ - [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0 - ] - ], - [ - [ - 0.000115139370754, - 0.0, - 0.0 - ], - [ - 0.0, - 0.000115139370754, - 0.0 - ], - [ - 0.0, - 0.0, - 0.000115139370754 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [5.354205, 44.76649699999999] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.352489, 44.767044] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.350948000000001, 44.766465] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.349889, 44.768479] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.340990000000001, 44.771987] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.33796, 44.767887] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.333443, 44.772101] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.332152, 44.773154] + } + }, + { + "id": 9, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.328604, 44.771373] + } + }, + { + "id": 10, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.329613, 44.766793] + } + }, + { + "id": 11, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.329857, 44.766317] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.332717, 44.754985] + } + }, + { + "id": 13, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.335779, 44.751524] + } + }, + { + "id": 14, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322039, 44.770639] + } + }, + { + "id": 15, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322518, 44.773602] + } + }, + { + "id": 16, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322693, 44.77292199999999] + } + }, + { + "id": 17, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322789, 44.777828] + } + }, + { + "id": 18, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.322418, 44.778323] + } + }, + { + "id": 19, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.317114, 44.784118] + } + }, + { + "id": 20, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.317399, 44.78419] + } + }, + { + "id": 21, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.315126999999999, 44.788614] + } + }, + { + "id": 22, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.314989, 44.769299] + } + }, + { + "id": 23, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.314938, 44.768333] + } + }, + { + "id": 24, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.306875, 44.765457] + } + }, + { + "id": 25, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.294973000000001, 44.768387] + } + }, + { + "id": 26, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.282789, 44.768455] + } + }, + { + "id": 27, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.280849, 44.765393] + } + }, + { + "id": 28, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.280136, 44.76502199999999] + } + }, + { + "id": 29, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.279859, 44.764848] + } + }, + { + "id": 30, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272926, 44.763672] + } + }, + { + "id": 31, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.273633999999999, 44.76358] + } + }, + { + "id": 32, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272794, 44.763982] + } + }, + { + "id": 33, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270316999999999, 44.760419] + } + }, + { + "id": 34, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.274366000000001, 44.758161] + } + }, + { + "id": 35, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275697, 44.757549] + } + }, + { + "id": 36, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.269593, 44.756572] + } + }, + { + "id": 37, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.267119999999999, 44.752936] + } + }, + { + "id": 38, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264632, 44.750295] + } + }, + { + "id": 39, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.27005, 44.740412] + } + }, + { + "id": 40, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.269245, 44.73877] + } + }, + { + "id": 41, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271239, 44.739363] + } + }, + { + "id": 42, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264574, 44.728315] + } + }, + { + "id": 43, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264002, 44.727847] + } + }, + { + "id": 44, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275233999999999, 44.727239] + } + }, + { + "id": 45, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272823000000001, 44.720533] + } + }, + { + "id": 46, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275627, 44.729237] + } + }, + { + "id": 47, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.276962, 44.736068] + } + }, + { + "id": 48, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.276011, 44.729195] + } + }, + { + "id": 49, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.287058999999999, 44.727613] + } + }, + { + "id": 50, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.288065, 44.727506] + } + }, + { + "id": 51, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.288366000000001, 44.727226] + } + }, + { + "id": 52, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291179000000001, 44.730151] + } + }, + { + "id": 53, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291457, 44.731671] + } + }, + { + "id": 54, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.303999999999999, 44.716648] + } + }, + { + "id": 55, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260366, 44.716965] + } + }, + { + "id": 56, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.263661, 44.715183] + } + }, + { + "id": 57, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.257317, 44.708429] + } + }, + { + "id": 58, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.255011, 44.70945800000001] + } + }, + { + "id": 59, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.255535, 44.709709] + } + }, + { + "id": 60, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251427, 44.710828] + } + }, + { + "id": 61, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.243164, 44.708558] + } + }, + { + "id": 62, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251423, 44.711268] + } + }, + { + "id": 63, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251258999999999, 44.71193] + } + }, + { + "id": 64, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.247221, 44.712975] + } + }, + { + "id": 65, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.246554, 44.7128] + } + }, + { + "id": 66, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260308999999999, 44.706012] + } + }, + { + "id": 67, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260567, 44.706227] + } + }, + { + "id": 68, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.260624, 44.70527199999999] + } + }, + { + "id": 69, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.256809, 44.701526] + } + }, + { + "id": 70, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264354, 44.701611] + } + }, + { + "id": 71, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.265117, 44.701458] + } + }, + { + "id": 72, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.265736, 44.70128] + } + }, + { + "id": 73, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264355999999999, 44.699422] + } + }, + { + "id": 74, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271076, 44.699195] + } + }, + { + "id": 75, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270124, 44.69265] + } + }, + { + "id": 76, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.274132, 44.698074] + } + }, + { + "id": 77, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.275216, 44.69925] + } + }, + { + "id": 78, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.29159, 44.69426] + } + }, + { + "id": 79, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293287, 44.697755] + } + }, + { + "id": 80, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.290635, 44.692304] + } + }, + { + "id": 81, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.28942, 44.691436] + } + }, + { + "id": 82, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.284808, 44.691404] + } + }, + { + "id": 83, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.295083, 44.688311] + } + }, + { + "id": 84, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293566, 44.694074] + } + }, + { + "id": 85, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293666, 44.692658] + } + }, + { + "id": 86, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293688, 44.692509] + } + }, + { + "id": 87, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.293481, 44.692697] + } + }, + { + "id": 88, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.298165, 44.693851] + } + }, + { + "id": 89, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.30206, 44.694964] + } + }, + { + "id": 90, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.300629, 44.696719] + } + }, + { + "id": 91, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.304166, 44.69539] + } + }, + { + "id": 92, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.303697000000001, 44.695461] + } + }, + { + "id": 93, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.309441099999999, 44.696444] + } + }, + { + "id": 94, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.268341, 44.703601] + } + }, + { + "id": 95, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270058000000001, 44.70570900000001] + } + }, + { + "id": 96, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.272387999999999, 44.708816] + } + }, + { + "id": 97, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271646, 44.709229] + } + }, + { + "id": 98, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.276741, 44.711462] + } + }, + { + "id": 99, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.286003, 44.70976] + } + }, + { + "id": 100, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.251605000000001, 44.70417800000001] + } + }, + { + "id": 101, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.252232, 44.699817] + } + }, + { + "id": 102, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.245869, 44.699619] + } + }, + { + "id": 103, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.23077, 44.68984] + } + }, + { + "id": 104, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.233189, 44.688771] + } + }, + { + "id": 105, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.225613, 44.690414] + } + }, + { + "id": 106, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.225658999999999, 44.689413] + } + }, + { + "id": 107, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.229568, 44.685496] + } + }, + { + "id": 108, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.229077999999999, 44.683975] + } + }, + { + "id": 109, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.23335, 44.684175] + } + }, + { + "id": 110, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.252115, 44.696185] + } + }, + { + "id": 111, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.252836, 44.696314] + } + }, + { + "id": 112, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.257869, 44.692639] + } + }, + { + "id": 113, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.258694999999999, 44.694684] + } + }, + { + "id": 114, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271508, 44.666087] + } + }, + { + "id": 115, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.27233, 44.664478] + } + }, + { + "id": 116, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.270444, 44.665025] + } + }, + { + "id": 117, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271881, 44.663251] + } + }, + { + "id": 118, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.271709, 44.662301] + } + }, + { + "id": 119, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.268746, 44.660331] + } + }, + { + "id": 120, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.288922, 44.6484] + } + }, + { + "id": 121, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.29191, 44.64957800000001] + } + }, + { + "id": 122, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291696, 44.649937] + } + }, + { + "id": 123, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.305674099999999, 44.660426] + } + }, + { + "id": 124, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.306435, 44.663013] + } + }, + { + "id": 125, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.291407, 44.637677] + } + }, + { + "id": 126, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.279602, 44.637676] + } + }, + { + "id": 127, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.273155, 44.632589] + } + }, + { + "id": 128, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.302328, 44.630718] + } + }, + { + "id": 129, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.310708999999999, 44.635436] + } + }, + { + "id": 130, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.315926999999999, 44.637017] + } + }, + { + "id": 131, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.264264, 44.753757] + } + }, + { + "id": 132, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.263632, 44.753395] + } + }, + { + "id": 133, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.263077, 44.756667] + } + }, + { + "id": 134, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.239022, 44.751841] + } + }, + { + "id": 135, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.238964, 44.751516] + } + }, + { + "id": 136, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.222045, 44.750602] + } + }, + { + "id": 137, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.220266000000001, 44.749594] + } + }, + { + "id": 138, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.218814, 44.748727] + } + }, + { + "id": 139, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.215553, 44.74695] + } + }, + { + "id": 140, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.209531, 44.736899] + } + }, + { + "id": 141, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.208638, 44.734537] + } + }, + { + "id": 142, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.206393, 44.725698] + } + }, + { + "id": 143, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.218058999999999, 44.726117] + } + }, + { + "id": 144, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.219531, 44.72863] + } + }, + { + "id": 145, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.219654, 44.73002899999999] + } + }, + { + "id": 146, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.217169, 44.734855] + } + }, + { + "id": 147, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.220665, 44.720294] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.354205, 44.76649699999999], + [5.352489, 44.767044] + ] + }, + "length": 0.847, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.352489, 44.767044], + [5.350948000000001, 44.766465] + ] + }, + "length": 0.138, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.352489, 44.767044], + [5.349889, 44.768479] + ] + }, + "length": 0.28, + "params_id": "S_AL_240", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.349889, 44.768479], + [5.340990000000001, 44.771987] + ] + }, + "length": 0.8059999999999999, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 5, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.340990000000001, 44.771987], + [5.33796, 44.767887] + ] + }, + "length": 0.349, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 5, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.340990000000001, 44.771987], + [5.333443, 44.772101] + ] + }, + "length": 0.635, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.333443, 44.772101], + [5.332152, 44.773154] + ] + }, + "length": 0.072, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.333443, 44.772101], + [5.328604, 44.771373] + ] + }, + "length": 0.389, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.328604, 44.771373], + [5.329613, 44.766793] + ] + }, + "length": 0.512, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line10", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.329613, 44.766793], + [5.329857, 44.766317] + ] + }, + "length": 0.0579999999999999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.329857, 44.766317], + [5.332717, 44.754985] + ] + }, + "length": 0.981, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line12", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 12, + "bus2": 13, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.332717, 44.754985], + [5.335779, 44.751524] + ] + }, + "length": 0.4539999999999999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line13", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 14, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.328604, 44.771373], + [5.322039, 44.770639] + ] + }, + "length": 0.53, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line14", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 14, + "bus2": 15, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322039, 44.770639], + [5.322518, 44.773602] + ] + }, + "length": 0.3329999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line15", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 15, + "bus2": 16, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322518, 44.773602], + [5.322693, 44.77292199999999] + ] + }, + "length": 0.077, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line16", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 16, + "bus2": 17, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322693, 44.77292199999999], + [5.322789, 44.777828] + ] + }, + "length": 0.47, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line17", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 17, + "bus2": 18, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322789, 44.777828], + [5.322418, 44.778323] + ] + }, + "length": 0.067, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line18", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 18, + "bus2": 19, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322418, 44.778323], + [5.317114, 44.784118] + ] + }, + "length": 0.8420000000000001, + "params_id": "A_AA_75", + "ground": "ground" + }, + { + "id": "line19", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 19, + "bus2": 20, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.317114, 44.784118], + [5.317399, 44.78419] + ] + }, + "length": 0.022, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line20", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 20, + "bus2": 21, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.317399, 44.78419], + [5.315126999999999, 44.788614] + ] + }, + "length": 0.534, + "params_id": "A_AA_75", + "ground": "ground" + }, + { + "id": "line21", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 14, + "bus2": 22, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.322039, 44.770639], + [5.314989, 44.769299] + ] + }, + "length": 0.575, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line22", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 22, + "bus2": 23, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.314989, 44.769299], + [5.314938, 44.768333] + ] + }, + "length": 0.787, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line23", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 23, + "bus2": 24, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.314938, 44.768333], + [5.306875, 44.765457] + ] + }, + "length": 0.787, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line24", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 24, + "bus2": 25, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.306875, 44.765457], + [5.294973000000001, 44.768387] + ] + }, + "length": 1.224, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line25", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 25, + "bus2": 26, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.294973000000001, 44.768387], + [5.282789, 44.768455] + ] + }, + "length": 1.37, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line26", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 26, + "bus2": 27, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.282789, 44.768455], + [5.280849, 44.765393] + ] + }, + "length": 0.634, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line27", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 27, + "bus2": 28, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.280849, 44.765393], + [5.280136, 44.76502199999999] + ] + }, + "length": 0.07, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line28", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 28, + "bus2": 29, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.280136, 44.76502199999999], + [5.279859, 44.764848] + ] + }, + "length": 0.044, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line29", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 29, + "bus2": 30, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.279859, 44.764848], + [5.272926, 44.763672] + ] + }, + "length": 0.501, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line30", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 30, + "bus2": 31, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272926, 44.763672], + [5.273633999999999, 44.76358] + ] + }, + "length": 0.069, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line31", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 31, + "bus2": 32, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.273633999999999, 44.76358], + [5.272794, 44.763982] + ] + }, + "length": 0.069, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line32", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 32, + "bus2": 33, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272794, 44.763982], + [5.270316999999999, 44.760419] + ] + }, + "length": 0.4589999999999999, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line33", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 33, + "bus2": 34, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270316999999999, 44.760419], + [5.274366000000001, 44.758161] + ] + }, + "length": 0.207, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line34", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 34, + "bus2": 35, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.274366000000001, 44.758161], + [5.275697, 44.757549] + ] + }, + "length": 0.122, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line35", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 35, + "bus2": 36, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275697, 44.757549], + [5.269593, 44.756572] + ] + }, + "length": 0.411, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line36", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 33, + "bus2": 37, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270316999999999, 44.760419], + [5.267119999999999, 44.752936] + ] + }, + "length": 0.897, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line37", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 37, + "bus2": 38, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.267119999999999, 44.752936], + [5.264632, 44.750295] + ] + }, + "length": 0.311, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line38", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 38, + "bus2": 39, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264632, 44.750295], + [5.27005, 44.740412] + ] + }, + "length": 1.254, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line39", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 39, + "bus2": 40, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.27005, 44.740412], + [5.269245, 44.73877] + ] + }, + "length": 0.1889999999999999, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line40", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 40, + "bus2": 41, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.269245, 44.73877], + [5.271239, 44.739363] + ] + }, + "length": 0.177, + "params_id": "A_AA_54", + "ground": "ground" + }, + { + "id": "line41", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 41, + "bus2": 42, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271239, 44.739363], + [5.264574, 44.728315] + ] + }, + "length": 1.217, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line42", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 42, + "bus2": 43, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264574, 44.728315], + [5.264002, 44.727847] + ] + }, + "length": 0.067, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line43", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 42, + "bus2": 44, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264574, 44.728315], + [5.275233999999999, 44.727239] + ] + }, + "length": 0.133, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line44", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 44, + "bus2": 45, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275233999999999, 44.727239], + [5.272823000000001, 44.720533] + ] + }, + "length": 0.529, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line45", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 44, + "bus2": 46, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275233999999999, 44.727239], + [5.275627, 44.729237] + ] + }, + "length": 0.213, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line46", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 46, + "bus2": 47, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275627, 44.729237], + [5.276962, 44.736068] + ] + }, + "length": 1.121, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line47", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 46, + "bus2": 48, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275627, 44.729237], + [5.276011, 44.729195] + ] + }, + "length": 0.03, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line48", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 48, + "bus2": 49, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.276011, 44.729195], + [5.287058999999999, 44.727613] + ] + }, + "length": 0.888, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line49", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 49, + "bus2": 50, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.287058999999999, 44.727613], + [5.288065, 44.727506] + ] + }, + "length": 0.083, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line50", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 50, + "bus2": 51, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288065, 44.727506], + [5.288366000000001, 44.727226] + ] + }, + "length": 0.034, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line51", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 50, + "bus2": 52, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288065, 44.727506], + [5.291179000000001, 44.730151] + ] + }, + "length": 0.238, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line52", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 50, + "bus2": 53, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288065, 44.727506], + [5.291457, 44.731671] + ] + }, + "length": 0.379, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line53", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 49, + "bus2": 54, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.287058999999999, 44.727613], + [5.303999999999999, 44.716648] + ] + }, + "length": 1.971, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line54", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 42, + "bus2": 55, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264574, 44.728315], + [5.260366, 44.716965] + ] + }, + "length": 1.306, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line55", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 55, + "bus2": 56, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260366, 44.716965], + [5.263661, 44.715183] + ] + }, + "length": 0.118, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line56", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 55, + "bus2": 57, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260366, 44.716965], + [5.257317, 44.708429] + ] + }, + "length": 0.982, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line57", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 57, + "bus2": 58, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257317, 44.708429], + [5.255011, 44.70945800000001] + ] + }, + "length": 0.11, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line58", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 58, + "bus2": 59, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.255011, 44.70945800000001], + [5.255535, 44.709709] + ] + }, + "length": 0.05, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line59", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 59, + "bus2": 60, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.255535, 44.709709], + [5.251427, 44.710828] + ] + }, + "length": 0.321, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line60", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 60, + "bus2": 61, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251427, 44.710828], + [5.243164, 44.708558] + ] + }, + "length": 0.732, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line61", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 59, + "bus2": 62, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.255535, 44.709709], + [5.251423, 44.711268] + ] + }, + "length": 0.047, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line62", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 62, + "bus2": 63, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251423, 44.711268], + [5.251258999999999, 44.71193] + ] + }, + "length": 0.064, + "params_id": "A_CU_12", + "ground": "ground" + }, + { + "id": "line63", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 63, + "bus2": 64, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251258999999999, 44.71193], + [5.247221, 44.712975] + ] + }, + "length": 0.376, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line64", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 64, + "bus2": 65, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.247221, 44.712975], + [5.246554, 44.7128] + ] + }, + "length": 0.0559999999999999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line65", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 57, + "bus2": 66, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257317, 44.708429], + [5.260308999999999, 44.706012] + ] + }, + "length": 0.2269999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line66", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 66, + "bus2": 67, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260308999999999, 44.706012], + [5.260567, 44.706227] + ] + }, + "length": 0.038, + "params_id": "S_AL_150", + "ground": "ground" + }, + { + "id": "line67", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 67, + "bus2": 68, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260567, 44.706227], + [5.260624, 44.70527199999999] + ] + }, + "length": 0.085, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line68", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 68, + "bus2": 69, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260624, 44.70527199999999], + [5.256809, 44.701526] + ] + }, + "length": 0.306, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line69", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 68, + "bus2": 70, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.260624, 44.70527199999999], + [5.264354, 44.701611] + ] + }, + "length": 0.511, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line70", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 70, + "bus2": 71, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264354, 44.701611], + [5.265117, 44.701458] + ] + }, + "length": 0.049, + "params_id": "A_CU_07", + "ground": "ground" + }, + { + "id": "line71", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 71, + "bus2": 72, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.265117, 44.701458], + [5.265736, 44.70128] + ] + }, + "length": 0.0579999999999999, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line72", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 72, + "bus2": 73, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.265736, 44.70128], + [5.264355999999999, 44.699422] + ] + }, + "length": 0.236, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line73", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 73, + "bus2": 74, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264355999999999, 44.699422], + [5.271076, 44.699195] + ] + }, + "length": 0.477, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line74", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 74, + "bus2": 75, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271076, 44.699195], + [5.270124, 44.69265] + ] + }, + "length": 0.353, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line75", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 75, + "bus2": 76, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270124, 44.69265], + [5.274132, 44.698074] + ] + }, + "length": 0.275, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line76", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 76, + "bus2": 77, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.274132, 44.698074], + [5.275216, 44.69925] + ] + }, + "length": 0.158, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line77", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 77, + "bus2": 78, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.275216, 44.69925], + [5.29159, 44.69426] + ] + }, + "length": 1.481, + "params_id": "A_LA_38", + "ground": "ground" + }, + { + "id": "line78", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 78, + "bus2": 79, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29159, 44.69426], + [5.293287, 44.697755] + ] + }, + "length": 0.275, + "params_id": "A_LA_39", + "ground": "ground" + }, + { + "id": "line79", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 78, + "bus2": 80, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29159, 44.69426], + [5.290635, 44.692304] + ] + }, + "length": 0.134, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line80", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 80, + "bus2": 81, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.290635, 44.692304], + [5.28942, 44.691436] + ] + }, + "length": 0.136, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line81", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 81, + "bus2": 82, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.28942, 44.691436], + [5.284808, 44.691404] + ] + }, + "length": 0.361, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line82", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 81, + "bus2": 83, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.28942, 44.691436], + [5.295083, 44.688311] + ] + }, + "length": 0.763, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line83", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 78, + "bus2": 84, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29159, 44.69426], + [5.293566, 44.694074] + ] + }, + "length": 0.072, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line84", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 84, + "bus2": 85, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293566, 44.694074], + [5.293666, 44.692658] + ] + }, + "length": 0.154, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line85", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 85, + "bus2": 86, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293666, 44.692658], + [5.293688, 44.692509] + ] + }, + "length": 0.021, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line86", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 85, + "bus2": 87, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293666, 44.692658], + [5.293481, 44.692697] + ] + }, + "length": 0.023, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line87", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 84, + "bus2": 88, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.293566, 44.694074], + [5.298165, 44.693851] + ] + }, + "length": 0.365, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line88", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 88, + "bus2": 89, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.298165, 44.693851], + [5.30206, 44.694964] + ] + }, + "length": 0.353, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line89", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 89, + "bus2": 90, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.30206, 44.694964], + [5.300629, 44.696719] + ] + }, + "length": 0.281, + "params_id": "A_LA_37", + "ground": "ground" + }, + { + "id": "line90", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 88, + "bus2": 91, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.298165, 44.693851], + [5.304166, 44.69539] + ] + }, + "length": 0.174, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line91", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 91, + "bus2": 92, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.304166, 44.69539], + [5.303697000000001, 44.695461] + ] + }, + "length": 0.037, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line92", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 91, + "bus2": 93, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.304166, 44.69539], + [5.309441099999999, 44.696444] + ] + }, + "length": 0.428, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line93", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 71, + "bus2": 94, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.265117, 44.701458], + [5.268341, 44.703601] + ] + }, + "length": 0.3329999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line94", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 94, + "bus2": 95, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.268341, 44.703601], + [5.270058000000001, 44.70570900000001] + ] + }, + "length": 0.272, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line95", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 95, + "bus2": 96, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270058000000001, 44.70570900000001], + [5.272387999999999, 44.708816] + ] + }, + "length": 0.4, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line96", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 96, + "bus2": 97, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272387999999999, 44.708816], + [5.271646, 44.709229] + ] + }, + "length": 0.072, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line97", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 96, + "bus2": 98, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.272387999999999, 44.708816], + [5.276741, 44.711462] + ] + }, + "length": 0.441, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line98", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 98, + "bus2": 99, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.276741, 44.711462], + [5.286003, 44.70976] + ] + }, + "length": 0.772, + "params_id": "A_AA_54", + "ground": "ground" + }, + { + "id": "line99", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 57, + "bus2": 100, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257317, 44.708429], + [5.251605000000001, 44.70417800000001] + ] + }, + "length": 0.65, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line100", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 100, + "bus2": 101, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251605000000001, 44.70417800000001], + [5.252232, 44.699817] + ] + }, + "length": 0.34, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line101", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 100, + "bus2": 102, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.251605000000001, 44.70417800000001], + [5.245869, 44.699619] + ] + }, + "length": 0.682, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line102", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 102, + "bus2": 103, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.245869, 44.699619], + [5.23077, 44.68984] + ] + }, + "length": 1.841, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line103", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 103, + "bus2": 104, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.23077, 44.68984], + [5.233189, 44.688771] + ] + }, + "length": 0.226, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line104", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 103, + "bus2": 105, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.23077, 44.68984], + [5.225613, 44.690414] + ] + }, + "length": 0.407, + "params_id": "A_AA_147", + "ground": "ground" + }, + { + "id": "line105", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 105, + "bus2": 106, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.225613, 44.690414], + [5.225658999999999, 44.689413] + ] + }, + "length": 0.067, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line106", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 106, + "bus2": 107, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.225658999999999, 44.689413], + [5.229568, 44.685496] + ] + }, + "length": 0.272, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line107", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 107, + "bus2": 108, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.229568, 44.685496], + [5.229077999999999, 44.683975] + ] + }, + "length": 0.2319999999999999, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line108", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 107, + "bus2": 109, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.229568, 44.685496], + [5.23335, 44.684175] + ] + }, + "length": 0.253, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line109", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 102, + "bus2": 110, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.245869, 44.699619], + [5.252115, 44.696185] + ] + }, + "length": 0.515, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line110", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 110, + "bus2": 111, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.252115, 44.696185], + [5.252836, 44.696314] + ] + }, + "length": 0.06, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line111", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 110, + "bus2": 112, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.252115, 44.696185], + [5.257869, 44.692639] + ] + }, + "length": 0.607, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line112", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 112, + "bus2": 113, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257869, 44.692639], + [5.258694999999999, 44.694684] + ] + }, + "length": 0.238, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line113", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 112, + "bus2": 114, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.257869, 44.692639], + [5.271508, 44.666087] + ] + }, + "length": 3.315, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line114", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 114, + "bus2": 115, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271508, 44.666087], + [5.27233, 44.664478] + ] + }, + "length": 0.09, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line115", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 114, + "bus2": 116, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271508, 44.666087], + [5.270444, 44.665025] + ] + }, + "length": 0.141, + "params_id": "A_AM_75", + "ground": "ground" + }, + { + "id": "line116", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 116, + "bus2": 117, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.270444, 44.665025], + [5.271881, 44.663251] + ] + }, + "length": 0.242, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line117", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 117, + "bus2": 118, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271881, 44.663251], + [5.271709, 44.662301] + ] + }, + "length": 0.11, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line118", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 118, + "bus2": 119, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271709, 44.662301], + [5.268746, 44.660331] + ] + }, + "length": 0.299, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line119", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 118, + "bus2": 120, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.271709, 44.662301], + [5.288922, 44.6484] + ] + }, + "length": 1.927, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line120", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 120, + "bus2": 121, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288922, 44.6484], + [5.29191, 44.64957800000001] + ] + }, + "length": 0.2289999999999999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line121", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 121, + "bus2": 122, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29191, 44.64957800000001], + [5.291696, 44.649937] + ] + }, + "length": 0.039, + "params_id": "A_AA_22", + "ground": "ground" + }, + { + "id": "line122", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 121, + "bus2": 123, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.29191, 44.64957800000001], + [5.305674099999999, 44.660426] + ] + }, + "length": 1.67, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line123", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 123, + "bus2": 124, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.305674099999999, 44.660426], + [5.306435, 44.663013] + ] + }, + "length": 0.291, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line124", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 120, + "bus2": 125, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.288922, 44.6484], + [5.291407, 44.637677] + ] + }, + "length": 1.266, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line125", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 125, + "bus2": 126, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.291407, 44.637677], + [5.279602, 44.637676] + ] + }, + "length": 0.3389999999999999, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line126", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 126, + "bus2": 127, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.279602, 44.637676], + [5.273155, 44.632589] + ] + }, + "length": 0.871, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line127", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 125, + "bus2": 128, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.291407, 44.637677], + [5.302328, 44.630718] + ] + }, + "length": 0.799, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line128", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 128, + "bus2": 129, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.302328, 44.630718], + [5.310708999999999, 44.635436] + ] + }, + "length": 0.8290000000000001, + "params_id": "A_AA_22", + "ground": "ground" + }, + { + "id": "line129", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 129, + "bus2": 130, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.310708999999999, 44.635436], + [5.315926999999999, 44.637017] + ] + }, + "length": 0.444, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line130", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 37, + "bus2": 131, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.267119999999999, 44.752936], + [5.264264, 44.753757] + ] + }, + "length": 0.216, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line131", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 131, + "bus2": 132, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264264, 44.753757], + [5.263632, 44.753395] + ] + }, + "length": 0.064, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line132", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 131, + "bus2": 133, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264264, 44.753757], + [5.263077, 44.756667] + ] + }, + "length": 0.337, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line133", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 131, + "bus2": 134, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.264264, 44.753757], + [5.239022, 44.751841] + ] + }, + "length": 1.992, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line134", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 134, + "bus2": 135, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.239022, 44.751841], + [5.238964, 44.751516] + ] + }, + "length": 0.031, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line135", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 134, + "bus2": 136, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.239022, 44.751841], + [5.222045, 44.750602] + ] + }, + "length": 1.41, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line136", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 136, + "bus2": 137, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.222045, 44.750602], + [5.220266000000001, 44.749594] + ] + }, + "length": 0.1, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line137", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 137, + "bus2": 138, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.220266000000001, 44.749594], + [5.218814, 44.748727] + ] + }, + "length": 0.075, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line138", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 138, + "bus2": 139, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.218814, 44.748727], + [5.215553, 44.74695] + ] + }, + "length": 0.487, + "params_id": "A_AA_37", + "ground": "ground" + }, + { + "id": "line139", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 139, + "bus2": 140, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.215553, 44.74695], + [5.209531, 44.736899] + ] + }, + "length": 0.995, + "params_id": "A_AM_34", + "ground": "ground" + }, + { + "id": "line140", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 140, + "bus2": 141, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.209531, 44.736899], + [5.208638, 44.734537] + ] + }, + "length": 0.2739999999999999, + "params_id": "S_AL_50", + "ground": "ground" + }, + { + "id": "line141", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 141, + "bus2": 142, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.208638, 44.734537], + [5.206393, 44.725698] + ] + }, + "length": 1.095, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line142", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 142, + "bus2": 143, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.206393, 44.725698], + [5.218058999999999, 44.726117] + ] + }, + "length": 0.999, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line143", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 143, + "bus2": 144, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.218058999999999, 44.726117], + [5.219531, 44.72863] + ] + }, + "length": 0.28, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line144", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 144, + "bus2": 145, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.219531, 44.72863], + [5.219654, 44.73002899999999] + ] + }, + "length": 0.18, + "params_id": "S_AL_95", + "ground": "ground" + }, + { + "id": "line145", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 145, + "bus2": 146, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.219654, 44.73002899999999], + [5.217169, 44.734855] + ] + }, + "length": 0.564, + "params_id": "A_AM_54", + "ground": "ground" + }, + { + "id": "line146", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 143, + "bus2": 147, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.218058999999999, 44.726117], + [5.220665, 44.720294] + ] + }, + "length": 0.687, + "params_id": "A_AM_54", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [12802.501990789257, 2560.500398157851], + [12802.501991134319, 2560.5003982268627], + [12802.501991134317, 2560.5003982268668] + ] + }, + { + "id": 1, + "bus": 4, + "phases": "abcn", + "powers": [ + [12796.567508638322, 2559.313501727664], + [12796.56750898323, 2559.313501796648], + [12796.567508983235, 2559.3135017966506] + ] + }, + { + "id": 2, + "bus": 5, + "phases": "abcn", + "powers": [ + [12765.017770922159, 2553.0035541844327], + [12765.017771266208, 2553.0035542532423], + [12765.017771266213, 2553.0035542532382] + ] + }, + { + "id": 3, + "bus": 7, + "phases": "abcn", + "powers": [ + [12740.737737064119, 2548.1475474128224], + [12740.737737407515, 2548.1475474815006], + [12740.737737407508, 2548.1475474814974] + ] + }, + { + "id": 4, + "bus": 9, + "phases": "abcn", + "powers": [ + [12726.200419221137, 2545.2400838442263], + [12726.200419564138, 2545.240083912827], + [12726.20041956414, 2545.2400839128277] + ] + }, + { + "id": 5, + "bus": 10, + "phases": "abcn", + "powers": [ + [12725.465466076494, 2545.0930932152983], + [12725.465466419479, 2545.0930932838937], + [12725.465466419473, 2545.093093283894] + ] + }, + { + "id": 6, + "bus": 11, + "phases": "abcn", + "powers": [ + [12725.43517637802, 2545.0870352756046], + [12725.435176721006, 2545.0870353442015], + [12725.435176721006, 2545.087035344201] + ] + }, + { + "id": 7, + "bus": 14, + "phases": "abcn", + "powers": [ + [12707.602683905367, 2541.5205367810727], + [12707.602684247868, 2541.5205368495754], + [12707.60268424787, 2541.520536849573] + ] + }, + { + "id": 8, + "bus": 15, + "phases": "abcn", + "powers": [ + [12704.901205829321, 2540.9802411658625], + [12704.901206171744, 2540.980241234349], + [12704.901206171748, 2540.9802412343515] + ] + }, + { + "id": 9, + "bus": 17, + "phases": "abcn", + "powers": [ + [12701.770964275058, 2540.3541928550126], + [12701.770964617397, 2540.3541929234825], + [12701.770964617403, 2540.354192923482] + ] + }, + { + "id": 10, + "bus": 19, + "phases": "abcn", + "powers": [ + [12700.205603076367, 2540.041120615274], + [12700.20560341866, 2540.0411206837325], + [12700.205603418672, 2540.0411206837343] + ] + }, + { + "id": 11, + "bus": 22, + "phases": "abcn", + "powers": [ + [12689.217617966586, 2537.8435235933175], + [12689.217618308583, 2537.843523661718], + [12689.217618308587, 2537.8435236617197] + ] + }, + { + "id": 12, + "bus": 24, + "phases": "abcn", + "powers": [ + [12597.043984934118, 2519.4087969868233], + [12597.043985273627, 2519.408797054728], + [12597.04398527364, 2519.408797054729] + ] + }, + { + "id": 13, + "bus": 27, + "phases": "abcn", + "powers": [ + [12506.045785991091, 2501.209157198218], + [12506.045786328154, 2501.2091572656273], + [12506.045786328166, 2501.2091572656327] + ] + }, + { + "id": 14, + "bus": 28, + "phases": "abcn", + "powers": [ + [12503.726828561492, 2500.7453657122983], + [12503.726828898474, 2500.745365779696], + [12503.7268288985, 2500.7453657797] + ] + }, + { + "id": 15, + "bus": 30, + "phases": "abcn", + "powers": [ + [12488.622180748127, 2497.7244361496264], + [12488.62218108472, 2497.7244362169386], + [12488.622181084738, 2497.7244362169495] + ] + }, + { + "id": 16, + "bus": 31, + "phases": "abcn", + "powers": [ + [12486.739679367176, 2497.3479358734335], + [12486.739679703718, 2497.3479359407356], + [12486.739679703738, 2497.347935940747] + ] + }, + { + "id": 17, + "bus": 33, + "phases": "abcn", + "powers": [ + [12460.422372843175, 2492.0844745686345], + [12460.422373179015, 2492.0844746358], + [12460.422373179032, 2492.0844746358007] + ] + }, + { + "id": 18, + "bus": 34, + "phases": "abcn", + "powers": [ + [12459.873117109248, 2491.9746234218496], + [12459.873117445062, 2491.97462348901], + [12459.873117445082, 2491.9746234890154] + ] + }, + { + "id": 19, + "bus": 37, + "phases": "abcn", + "powers": [ + [12437.115136541554, 2487.42302730831], + [12437.115136876753, 2487.4230273753437], + [12437.115136876771, 2487.4230273753515] + ] + }, + { + "id": 20, + "bus": 39, + "phases": "abcn", + "powers": [ + [12402.516318557688, 2480.503263711538], + [12402.516318891954, 2480.5032637783843], + [12402.516318891981, 2480.5032637783997] + ] + }, + { + "id": 21, + "bus": 40, + "phases": "abcn", + "powers": [ + [12397.2955315958, 2479.4591063191597], + [12397.295531929922, 2479.4591063859853], + [12397.29553192994, 2479.4591063859916] + ] + }, + { + "id": 22, + "bus": 42, + "phases": "abcn", + "powers": [ + [12350.08915464453, 2470.017830928906], + [12350.089154977362, 2470.0178309954717], + [12350.089154977402, 2470.0178309954817] + ] + }, + { + "id": 23, + "bus": 44, + "phases": "abcn", + "powers": [ + [12348.387911342532, 2469.6775822685045], + [12348.387911675325, 2469.677582335068], + [12348.387911675358, 2469.6775823350767] + ] + }, + { + "id": 24, + "bus": 46, + "phases": "abcn", + "powers": [ + [12346.223486490066, 2469.244697298013], + [12346.223486822808, 2469.244697364561], + [12346.223486822846, 2469.244697364572] + ] + }, + { + "id": 25, + "bus": 48, + "phases": "abcn", + "powers": [ + [12346.179516601576, 2469.2359033203147], + [12346.179516934308, 2469.2359033868615], + [12346.17951693435, 2469.235903386871] + ] + }, + { + "id": 26, + "bus": 49, + "phases": "abcn", + "powers": [ + [12339.833388750798, 2467.9666777501598], + [12339.83338908336, 2467.966677816674], + [12339.833389083396, 2467.9666778166784] + ] + }, + { + "id": 27, + "bus": 50, + "phases": "abcn", + "powers": [ + [12339.54775798752, 2467.909551597504], + [12339.54775832008, 2467.9095516640164], + [12339.547758320114, 2467.9095516640236] + ] + }, + { + "id": 28, + "bus": 55, + "phases": "abcn", + "powers": [ + [12320.47105093255, 2464.0942101865103], + [12320.471051264594, 2464.094210252916], + [12320.471051264638, 2464.0942102529316] + ] + }, + { + "id": 29, + "bus": 57, + "phases": "abcn", + "powers": [ + [12298.97759572786, 2459.7955191455717], + [12298.97759605932, 2459.795519211865], + [12298.97759605936, 2459.7955192118743] + ] + }, + { + "id": 30, + "bus": 58, + "phases": "abcn", + "powers": [ + [12297.246110182197, 2459.4492220364396], + [12297.24611051361, 2459.449222102722], + [12297.246110513644, 2459.449222102731] + ] + }, + { + "id": 31, + "bus": 60, + "phases": "abcn", + "powers": [ + [12295.160815223391, 2459.032163044679], + [12295.160815554753, 2459.0321631109546], + [12295.160815554796, 2459.0321631109605] + ] + }, + { + "id": 32, + "bus": 61, + "phases": "abcn", + "powers": [ + [12293.982395686638, 2458.796479137327], + [12293.982396017964, 2458.796479203591], + [12293.982396018006, 2458.796479203602] + ] + }, + { + "id": 33, + "bus": 62, + "phases": "abcn", + "powers": [ + [12296.616039898434, 2459.323207979687], + [12296.616040229826, 2459.323208045964], + [12296.616040229861, 2459.3232080459734] + ] + }, + { + "id": 34, + "bus": 63, + "phases": "abcn", + "powers": [ + [12296.141244021726, 2459.2282488043456], + [12296.1412443531, 2459.228248870614], + [12296.14124435314, 2459.228248870628] + ] + }, + { + "id": 35, + "bus": 64, + "phases": "abcn", + "powers": [ + [12295.535246857302, 2459.107049371459], + [12295.535247188673, 2459.1070494377327], + [12295.535247188709, 2459.107049437743] + ] + }, + { + "id": 36, + "bus": 66, + "phases": "abcn", + "powers": [ + [12289.633404085758, 2457.926680817149], + [12289.633404416963, 2457.926680883391], + [12289.633404417002, 2457.926680883402] + ] + }, + { + "id": 37, + "bus": 68, + "phases": "abcn", + "powers": [ + [12286.066845253778, 2457.2133690507517], + [12286.066845584883, 2457.2133691169765], + [12286.066845584923, 2457.2133691169824] + ] + }, + { + "id": 38, + "bus": 70, + "phases": "abcn", + "powers": [ + [12267.700626786547, 2453.540125357308], + [12267.700627117149, 2453.540125423431], + [12267.700627117203, 2453.5401254234407] + ] + }, + { + "id": 39, + "bus": 71, + "phases": "abcn", + "powers": [ + [12265.380072032627, 2453.0760144065243], + [12265.38007236317, 2453.076014472633], + [12265.380072363218, 2453.0760144726446] + ] + }, + { + "id": 40, + "bus": 72, + "phases": "abcn", + "powers": [ + [12263.523709578187, 2452.7047419156356], + [12263.523709908673, 2452.7047419817363], + [12263.52370990872, 2452.7047419817454] + ] + }, + { + "id": 41, + "bus": 73, + "phases": "abcn", + "powers": [ + [12254.935892839552, 2450.987178567909], + [12254.935893169812, 2450.987178633961], + [12254.93589316986, 2450.9871786339727] + ] + }, + { + "id": 42, + "bus": 74, + "phases": "abcn", + "powers": [ + [12242.51281613178, 2448.5025632263564], + [12242.512816461702, 2448.50256329234], + [12242.512816461749, 2448.5025632923516] + ] + }, + { + "id": 43, + "bus": 76, + "phases": "abcn", + "powers": [ + [12228.027002796374, 2445.6054005592746], + [12228.027003125919, 2445.6054006251834], + [12228.027003125964, 2445.6054006251943] + ] + }, + { + "id": 44, + "bus": 78, + "phases": "abcn", + "powers": [ + [12195.094540595564, 2439.018908119113], + [12195.094540924201, 2439.018908184843], + [12195.094540924252, 2439.0189081848507] + ] + }, + { + "id": 45, + "bus": 81, + "phases": "abcn", + "powers": [ + [12194.397907903025, 2438.879581580604], + [12194.397908231655, 2438.8795816463326], + [12194.397908231706, 2438.8795816463376] + ] + }, + { + "id": 46, + "bus": 84, + "phases": "abcn", + "powers": [ + [12194.521349752014, 2438.904269950403], + [12194.521350080639, 2438.90427001613], + [12194.52135008069, 2438.9042700161376] + ] + }, + { + "id": 47, + "bus": 85, + "phases": "abcn", + "powers": [ + [12194.031723143064, 2438.8063446286124], + [12194.031723471682, 2438.806344694336], + [12194.03172347173, 2438.806344694346] + ] + }, + { + "id": 48, + "bus": 86, + "phases": "abcn", + "powers": [ + [12193.998091744037, 2438.7996183488085], + [12193.998092072648, 2438.7996184145322], + [12193.9980920727, 2438.799618414539] + ] + }, + { + "id": 49, + "bus": 89, + "phases": "abcn", + "powers": [ + [12192.7961636406, 2438.55923272812], + [12192.796163969175, 2438.5592327938366], + [12192.796163969228, 2438.5592327938466] + ] + }, + { + "id": 50, + "bus": 91, + "phases": "abcn", + "powers": [ + [12193.081949536554, 2438.61638990731], + [12193.081949865145, 2438.616389973028], + [12193.081949865194, 2438.6163899730404] + ] + }, + { + "id": 51, + "bus": 96, + "phases": "abcn", + "powers": [ + [12262.77106449845, 2452.5542128996904], + [12262.771064828907, 2452.5542129657824], + [12262.771064828954, 2452.554212965794] + ] + }, + { + "id": 52, + "bus": 100, + "phases": "abcn", + "powers": [ + [12295.301951915377, 2459.060390383075], + [12295.301952246733, 2459.0603904493455], + [12295.301952246773, 2459.060390449357] + ] + }, + { + "id": 53, + "bus": 102, + "phases": "abcn", + "powers": [ + [12291.944396425028, 2458.3888792850057], + [12291.94439675629, 2458.3888793512597], + [12291.944396756355, 2458.3888793512733] + ] + }, + { + "id": 54, + "bus": 103, + "phases": "abcn", + "powers": [ + [12288.334961780476, 2457.6669923560976], + [12288.334962111632, 2457.666992422327], + [12288.334962111676, 2457.6669924223343] + ] + }, + { + "id": 55, + "bus": 105, + "phases": "abcn", + "powers": [ + [12287.830777190737, 2457.566155438148], + [12287.83077752188, 2457.566155504377], + [12287.830777521927, 2457.5661555043857] + ] + }, + { + "id": 56, + "bus": 107, + "phases": "abcn", + "powers": [ + [12287.088405667299, 2457.41768113346], + [12287.088405998416, 2457.4176811996813], + [12287.088405998471, 2457.417681199692] + ] + }, + { + "id": 57, + "bus": 110, + "phases": "abcn", + "powers": [ + [12288.621960893228, 2457.724392178644], + [12288.621961224388, 2457.724392244875], + [12288.621961224457, 2457.7243922448897] + ] + }, + { + "id": 58, + "bus": 112, + "phases": "abcn", + "powers": [ + [12285.436006820195, 2457.087201364039], + [12285.436007151286, 2457.0872014302577], + [12285.436007151342, 2457.0872014302668] + ] + }, + { + "id": 59, + "bus": 114, + "phases": "abcn", + "powers": [ + [12271.971328492453, 2454.394265698492], + [12271.971328823172, 2454.394265764634], + [12271.971328823241, 2454.394265764648] + ] + }, + { + "id": 60, + "bus": 116, + "phases": "abcn", + "powers": [ + [12271.566322333221, 2454.3132644666443], + [12271.566322663948, 2454.3132645327887], + [12271.566322664006, 2454.3132645327964] + ] + }, + { + "id": 61, + "bus": 118, + "phases": "abcn", + "powers": [ + [12270.592082030807, 2454.1184164061597], + [12270.5920823615, 2454.1184164722963], + [12270.592082361563, 2454.118416472311] + ] + }, + { + "id": 62, + "bus": 120, + "phases": "abcn", + "powers": [ + [12266.165321951908, 2453.2330643903806], + [12266.165322282475, 2453.2330644564954], + [12266.16532228254, 2453.2330644565054] + ] + }, + { + "id": 63, + "bus": 121, + "phases": "abcn", + "powers": [ + [12265.802915429917, 2453.16058308598], + [12265.80291576048, 2453.1605831520974], + [12265.802915760549, 2453.1605831521088] + ] + }, + { + "id": 64, + "bus": 125, + "phases": "abcn", + "powers": [ + [12264.682914183797, 2452.936582836761], + [12264.682914514327, 2452.9365829028684], + [12264.682914514397, 2452.9365829028775] + ] + }, + { + "id": 65, + "bus": 129, + "phases": "abcn", + "powers": [ + [12260.595819680475, 2452.119163936096], + [12260.595820010902, 2452.11916400218], + [12260.59582001097, 2452.119164002193] + ] + }, + { + "id": 66, + "bus": 131, + "phases": "abcn", + "powers": [ + [12432.876180518142, 2486.5752361036284], + [12432.876180853233, 2486.575236170641], + [12432.876180853253, 2486.5752361706454] + ] + }, + { + "id": 67, + "bus": 134, + "phases": "abcn", + "powers": [ + [12399.064781536277, 2479.8129563072544], + [12399.064781870467, 2479.812956374095], + [12399.064781870464, 2479.812956374092] + ] + }, + { + "id": 68, + "bus": 136, + "phases": "abcn", + "powers": [ + [12378.863033841777, 2475.772606768356], + [12378.86303417543, 2475.7726068350885], + [12378.863034175418, 2475.7726068350844] + ] + }, + { + "id": 69, + "bus": 138, + "phases": "abcn", + "powers": [ + [12377.709104796742, 2475.54182095935], + [12377.709105130365, 2475.5418210260777], + [12377.709105130349, 2475.5418210260727] + ] + }, + { + "id": 70, + "bus": 139, + "phases": "abcn", + "powers": [ + [12373.304471533807, 2474.660894306761], + [12373.304471867308, 2474.6608943734655], + [12373.304471867285, 2474.660894373461] + ] + }, + { + "id": 71, + "bus": 140, + "phases": "abcn", + "powers": [ + [12363.635345915347, 2472.727069183071], + [12363.635346248599, 2472.727069249727], + [12363.63534624858, 2472.727069249717] + ] + }, + { + "id": 72, + "bus": 144, + "phases": "abcn", + "powers": [ + [12357.53364027714, 2471.50672805543], + [12357.533640610238, 2471.5067281220563], + [12357.533640610227, 2471.5067281220427] + ] + }, + { + "id": 73, + "bus": 145, + "phases": "abcn", + "powers": [ + [12357.39491792443, 2471.4789835848856], + [12357.394918257512, 2471.4789836515083], + [12357.394918257492, 2471.4789836514915] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AA_147", + "z_line": [ + [ + [0.243, 0.0, 0.0], + [0.0, 0.243, 0.0], + [0.0, 0.0, 0.243] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_22", + "z_line": [ + [ + [1.75, 0.0, 0.0], + [0.0, 1.75, 0.0], + [0.0, 0.0, 1.75] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_37", + "z_line": [ + [ + [1.041, 0.0, 0.0], + [0.0, 1.041, 0.0], + [0.0, 0.0, 1.041] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_54", + "z_line": [ + [ + [0.775, 0.0, 0.0], + [0.0, 0.775, 0.0], + [0.0, 0.0, 0.775] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AA_75", + "z_line": [ + [ + [0.609, 0.0, 0.0], + [0.0, 0.609, 0.0], + [0.0, 0.0, 0.609] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AM_34", + "z_line": [ + [ + [1.505, 0.0, 0.0], + [0.0, 1.505, 0.0], + [0.0, 0.0, 1.505] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AM_54", + "z_line": [ + [ + [0.613, 0.0, 0.0], + [0.0, 0.613, 0.0], + [0.0, 0.0, 0.613] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_AM_75", + "z_line": [ + [ + [0.441, 0.0, 0.0], + [0.0, 0.441, 0.0], + [0.0, 0.0, 0.441] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_CU_07", + "z_line": [ + [ + [1.5, 0.0, 0.0], + [0.0, 1.5, 0.0], + [0.0, 0.0, 1.5] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_CU_12", + "z_line": [ + [ + [1.5, 0.0, 0.0], + [0.0, 1.5, 0.0], + [0.0, 0.0, 1.5] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_LA_37", + "z_line": [ + [ + [1.192, 0.0, 0.0], + [0.0, 1.192, 0.0], + [0.0, 0.0, 1.192] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_LA_38", + "z_line": [ + [ + [1.192, 0.0, 0.0], + [0.0, 1.192, 0.0], + [0.0, 0.0, 1.192] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "A_LA_39", + "z_line": [ + [ + [1.192, 0.0, 0.0], + [0.0, 1.192, 0.0], + [0.0, 0.0, 1.192] + ], + [ + [0.3499999999999999, 0.0, 0.0], + [0.0, 0.3499999999999999, 0.0], + [0.0, 0.0, 0.3499999999999999] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [1.5707963267948998e-6, 0.0, 0.0], + [0.0, 1.5707963267948998e-6, 0.0], + [0.0, 0.0, 1.5707963267948998e-6] + ] + ] + }, + { + "id": "S_AL_150", + "z_line": [ + [ + [0.20000000000000004, 0.0, 0.0], + [0.0, 0.20000000000000004, 0.0], + [0.0, 0.0, 0.20000000000000004] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.0001410575101461, 0.0, 0.0], + [0.0, 0.0001410575101461, 0.0], + [0.0, 0.0, 0.0001410575101461] + ] + ] + }, + { + "id": "S_AL_240", + "z_line": [ + [ + [0.125, 0.0, 0.0], + [0.0, 0.125, 0.0], + [0.0, 0.0, 0.125] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.0001834690109696, 0.0, 0.0], + [0.0, 0.0001834690109696, 0.0], + [0.0, 0.0, 0.0001834690109696] + ] + ] + }, + { + "id": "S_AL_50", + "z_line": [ + [ + [0.6, 0.0, 0.0], + [0.0, 0.6, 0.0], + [0.0, 0.0, 0.6] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [8.702211650443729e-5, 0.0, 0.0], + [0.0, 8.702211650443729e-5, 0.0], + [0.0, 0.0, 8.702211650443729e-5] + ] + ] + }, + { + "id": "S_AL_95", + "z_line": [ + [ + [0.316, 0.0, 0.0], + [0.0, 0.316, 0.0], + [0.0, 0.0, 0.316] + ], + [ + [0.10000000000000002, 0.0, 0.0], + [0.0, 0.10000000000000002, 0.0], + [0.0, 0.0, 0.10000000000000002] + ] + ], + "y_shunt": [ + [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0] + ], + [ + [0.000115139370754, 0.0, 0.0], + [0.0, 0.000115139370754, 0.0], + [0.0, 0.0, 0.000115139370754] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json index 1ac643b5..0c6910fc 100644 --- a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_impedance.json @@ -1,779 +1,494 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -2.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -3.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -3.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -4.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, -4.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -4.0] - } - }, - { - "id": 7, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-2.0, -4.0] - } - }, - { - "id": 8, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -5.0] - } - }, - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -5.0] - } - }, - { - "id": 10, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -6.0] - } - }, - { - "id": 11, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -7.0] - } - }, - { - "id": 12, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -8.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -2.0], - [1.0, -3.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [2.0, -3.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [1.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [0.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, -4.0], - [-1.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0, -4.0], - [-2.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [1.0, -5.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 8, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [2.0, -5.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 8, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [1.0, -6.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -6.0], - [1.0, -7.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -7.0], - [1.0, -8.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 7, - "phases": "abcn", - "impedances": [ - [10.0, 0.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 3, - "bus": 9, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 0.0] - ] - }, - { - "id": 4, - "bus": 10, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 5, - "bus": 12, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [5.0, 0.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_lv_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 6.492990301993529e-07, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 7.760329608740529e-07, - -0.0, - 0.0 - ], - [ - -0.0, - -0.0, - 6.492990301993506e-07, - -0.0 - ], - [ - -0.0, - 0.0, - -0.0, - 3.5616901884786625e-07 - ] - ], - [ - [ - 0.0003163289867670228, - -6.592686877000749e-05, - -1.507901584696675e-06, - -3.246120634586769e-05 - ], - [ - -6.592686877000748e-05, - 0.0003820159070099681, - -6.592686877000684e-05, - 8.515484154730534e-06 - ], - [ - -1.5079015846966908e-06, - -6.592686877000681e-05, - 0.00031632898676702166, - -3.246120634586795e-05 - ], - [ - -3.246120634586768e-05, - 8.51548415473053e-06, - -3.246120634586795e-05, - 0.0001751299348196272 - ] - ] - ] - }, - { - "id": "S_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.32828402771266313, - 0.24705491511278602, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.32828402771266313, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.24705491511278602, - 0.32828402771266313, - 0.247054915112786 - ], - [ - 0.247054915112786, - 0.247054915112786, - 0.247054915112786, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.9233205197394304e-05, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 1.9233205197394304e-05, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 1.9233205197394304e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00046329162067999997, - -5.56183240209e-05, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - 0.00046329162067999997, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - -5.56183240209e-05, - 0.00046329162067999997, - -3.150155268172179e-05 - ], - [ - -3.150155268172179e-05, - -3.150155268172179e-05, - -3.150155268172179e-05, - 0.0003030802149852 - ] - ] - ] - }, - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - }, - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -2.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -3.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -3.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -4.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, -4.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -4.0] + } + }, + { + "id": 7, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-2.0, -4.0] + } + }, + { + "id": 8, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -5.0] + } + }, + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -5.0] + } + }, + { + "id": 10, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -6.0] + } + }, + { + "id": 11, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -7.0] + } + }, + { + "id": 12, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -8.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -2.0], + [1.0, -3.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [2.0, -3.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [1.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [0.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, -4.0], + [-1.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0, -4.0], + [-2.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [1.0, -5.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 8, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [2.0, -5.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 8, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [1.0, -6.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_z_neutral" + }, + { + "id": "line10", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -6.0], + [1.0, -7.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -7.0], + [1.0, -8.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 3, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 7, + "phases": "abcn", + "impedances": [ + [10.0, 0.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 3, + "bus": 9, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 0.0] + ] + }, + { + "id": 4, + "bus": 10, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 5, + "bus": 12, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [5.0, 0.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_lv_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [6.492990301993529e-7, -0.0, -0.0, -0.0], + [-0.0, 7.760329608740529e-7, -0.0, 0.0], + [-0.0, -0.0, 6.492990301993506e-7, -0.0], + [-0.0, 0.0, -0.0, 3.5616901884786625e-7] + ], + [ + [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5], + [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6], + [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5], + [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272] + ] + ] + }, + { + "id": "S_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786], + [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [1.9233205197394304e-5, 0.0, 0.0, -0.0], + [0.0, 1.9233205197394304e-5, 0.0, -0.0], + [0.0, 0.0, 1.9233205197394304e-5, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5], + [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852] + ] + ] + }, + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + }, + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json index ca59c1c8..18a37405 100644 --- a/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json +++ b/roseau/load_flow/tests/data/networks/lv_network_12_buses/network_power.json @@ -1,779 +1,494 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -2.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -3.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -3.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -4.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, -4.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -4.0] - } - }, - { - "id": 7, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-2.0, -4.0] - } - }, - { - "id": 8, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -5.0] - } - }, - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -5.0] - } - }, - { - "id": 10, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -6.0] - } - }, - { - "id": 11, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -7.0] - } - }, - { - "id": 12, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -8.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -2.0], - [1.0, -3.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [2.0, -3.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [1.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [0.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, -4.0], - [-1.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0, -4.0], - [-2.0, -4.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 4, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [1.0, -5.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 8, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [2.0, -5.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_lv_exact", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 8, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [1.0, -6.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_z_neutral", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -6.0], - [1.0, -7.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_zy_neutral", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -7.0], - [1.0, -8.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3, - "phases": "abcn", - "powers": [ - [4078.5759498434495, 2039.2879749217245], - [4025.790789140828, 2012.8953945704143], - [4144.855450640247, 2072.4277253201235] - ] - }, - { - "id": 2, - "bus": 7, - "phases": "abcn", - "powers": [ - [4838.426591499185, 0.0], - [3872.7233399825973, 1936.3616699912986], - [3968.978373876759, 1984.4891869383796] - ] - }, - { - "id": 3, - "bus": 9, - "phases": "abcn", - "powers": [ - [3914.5692437241705, 1957.2846218620853], - [3656.4563343592586, 1828.2281671796295], - [5046.083188458626, 4.547473508864641e-13] - ] - }, - { - "id": 4, - "bus": 10, - "phases": "abcn", - "powers": [ - [3849.8549167741094, 1924.9274583870556], - [3572.255431241537, 1786.1277156207677], - [4081.9861885154055, 2040.9930942577025] - ] - }, - { - "id": 5, - "bus": 12, - "phases": "abcn", - "powers": [ - [3786.43394177269, 1893.216970886345], - [8414.187605768742, 0.0], - [4152.23287801158, 2076.1164390057897] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_lv_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.26757551559358256, - 0.24579965469054643, - 0.26757551559358234 - ], - [ - 0.26757551559358256, - 0.32828402771266313, - 0.26757551559358234, - 0.24579965469054643 - ], - [ - 0.24579965469054643, - 0.26757551559358234, - 0.32828402771266313, - 0.26757551559358256 - ], - [ - 0.26757551559358234, - 0.24579965469054643, - 0.26757551559358256, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 6.492990301993529e-07, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 7.760329608740529e-07, - -0.0, - 0.0 - ], - [ - -0.0, - -0.0, - 6.492990301993506e-07, - -0.0 - ], - [ - -0.0, - 0.0, - -0.0, - 3.5616901884786625e-07 - ] - ], - [ - [ - 0.0003163289867670228, - -6.592686877000749e-05, - -1.507901584696675e-06, - -3.246120634586769e-05 - ], - [ - -6.592686877000748e-05, - 0.0003820159070099681, - -6.592686877000684e-05, - 8.515484154730534e-06 - ], - [ - -1.5079015846966908e-06, - -6.592686877000681e-05, - 0.00031632898676702166, - -3.246120634586795e-05 - ], - [ - -3.246120634586768e-05, - 8.51548415473053e-06, - -3.246120634586795e-05, - 0.0001751299348196272 - ] - ] - ] - }, - { - "id": "S_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.32828402771266313, - 0.24705491511278602, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.32828402771266313, - 0.24705491511278602, - 0.247054915112786 - ], - [ - 0.24705491511278602, - 0.24705491511278602, - 0.32828402771266313, - 0.247054915112786 - ], - [ - 0.247054915112786, - 0.247054915112786, - 0.247054915112786, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.9233205197394304e-05, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 1.9233205197394304e-05, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 1.9233205197394304e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 0.00046329162067999997, - -5.56183240209e-05, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - 0.00046329162067999997, - -5.56183240209e-05, - -3.150155268172179e-05 - ], - [ - -5.56183240209e-05, - -5.56183240209e-05, - 0.00046329162067999997, - -3.150155268172179e-05 - ], - [ - -3.150155268172179e-05, - -3.150155268172179e-05, - -3.150155268172179e-05, - 0.0003030802149852 - ] - ] - ] - }, - { - "id": "S_AL_150_z_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ] - }, - { - "id": "S_AL_150_zy_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.40285714285714286 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.8739702458486305e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.2514533416405092e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.0003030802149852502 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -2.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -3.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -3.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -4.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, -4.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -4.0] + } + }, + { + "id": 7, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-2.0, -4.0] + } + }, + { + "id": 8, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -5.0] + } + }, + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -5.0] + } + }, + { + "id": 10, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -6.0] + } + }, + { + "id": 11, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -7.0] + } + }, + { + "id": 12, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -8.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -2.0], + [1.0, -3.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [2.0, -3.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [1.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [0.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, -4.0], + [-1.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0, -4.0], + [-2.0, -4.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 4, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [1.0, -5.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 8, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [2.0, -5.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_lv_exact", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 8, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [1.0, -6.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_z_neutral" + }, + { + "id": "line10", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -6.0], + [1.0, -7.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_zy_neutral", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -7.0], + [1.0, -8.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 3, + "phases": "abcn", + "powers": [ + [4078.5759498434495, 2039.2879749217245], + [4025.790789140828, 2012.8953945704143], + [4144.855450640247, 2072.4277253201235] + ] + }, + { + "id": 2, + "bus": 7, + "phases": "abcn", + "powers": [ + [4838.426591499185, 0.0], + [3872.7233399825973, 1936.3616699912986], + [3968.978373876759, 1984.4891869383796] + ] + }, + { + "id": 3, + "bus": 9, + "phases": "abcn", + "powers": [ + [3914.5692437241705, 1957.2846218620853], + [3656.4563343592586, 1828.2281671796295], + [5046.083188458626, 4.547473508864641e-13] + ] + }, + { + "id": 4, + "bus": 10, + "phases": "abcn", + "powers": [ + [3849.8549167741094, 1924.9274583870556], + [3572.255431241537, 1786.1277156207677], + [4081.9861885154055, 2040.9930942577025] + ] + }, + { + "id": 5, + "bus": 12, + "phases": "abcn", + "powers": [ + [3786.43394177269, 1893.216970886345], + [8414.187605768742, 0.0], + [4152.23287801158, 2076.1164390057897] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_lv_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.26757551559358256, 0.24579965469054643, 0.26757551559358234], + [0.26757551559358256, 0.32828402771266313, 0.26757551559358234, 0.24579965469054643], + [0.24579965469054643, 0.26757551559358234, 0.32828402771266313, 0.26757551559358256], + [0.26757551559358234, 0.24579965469054643, 0.26757551559358256, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [6.492990301993529e-7, -0.0, -0.0, -0.0], + [-0.0, 7.760329608740529e-7, -0.0, 0.0], + [-0.0, -0.0, 6.492990301993506e-7, -0.0], + [-0.0, 0.0, -0.0, 3.5616901884786625e-7] + ], + [ + [0.0003163289867670228, -6.592686877000749e-5, -1.507901584696675e-6, -3.246120634586769e-5], + [-6.592686877000748e-5, 0.0003820159070099681, -6.592686877000684e-5, 8.515484154730534e-6], + [-1.5079015846966908e-6, -6.592686877000681e-5, 0.00031632898676702166, -3.246120634586795e-5], + [-3.246120634586768e-5, 8.51548415473053e-6, -3.246120634586795e-5, 0.0001751299348196272] + ] + ] + }, + { + "id": "S_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.32828402771266313, 0.24705491511278602, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.32828402771266313, 0.24705491511278602, 0.247054915112786], + [0.24705491511278602, 0.24705491511278602, 0.32828402771266313, 0.247054915112786], + [0.247054915112786, 0.247054915112786, 0.247054915112786, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [1.9233205197394304e-5, 0.0, 0.0, -0.0], + [0.0, 1.9233205197394304e-5, 0.0, -0.0], + [0.0, 0.0, 1.9233205197394304e-5, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [0.00046329162067999997, -5.56183240209e-5, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, 0.00046329162067999997, -5.56183240209e-5, -3.150155268172179e-5], + [-5.56183240209e-5, -5.56183240209e-5, 0.00046329162067999997, -3.150155268172179e-5], + [-3.150155268172179e-5, -3.150155268172179e-5, -3.150155268172179e-5, 0.0003030802149852] + ] + ] + }, + { + "id": "S_AL_150_z_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ] + }, + { + "id": "S_AL_150_zy_neutral", + "z_line": [ + [ + [0.188, 0.0, 0.0, 0.0], + [0.0, 0.188, 0.0, 0.0], + [0.0, 0.0, 0.188, 0.0], + [0.0, 0.0, 0.0, 0.40285714285714286] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.8739702458486305e-5, -0.0], + [-0.0, -0.0, -0.0, 1.2514533416405092e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.0003030802149852502] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json index 6f628938..b12b1395 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_impedance.json @@ -1,937 +1,807 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 13, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, 0.0] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, 0.0] - } - }, - { - "id": 9, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, -1.0] - } - }, - { - "id": 10, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, -1.0] - } - }, - { - "id": 11, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, -1.0] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [6.0, -1.0] - } - }, - { - "id": 13, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -2.0] - } - }, - { - "id": 14, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -3.0] - } - }, - { - "id": 15, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -3.0] - } - }, - { - "id": 16, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -4.0] - } - }, - { - "id": 17, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, -4.0] - } - }, - { - "id": 18, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -4.0] - } - }, - { - "id": 19, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-2.0, -4.0] - } - }, - { - "id": 20, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -5.0] - } - }, - { - "id": 21, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -5.0] - } - }, - { - "id": 22, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -6.0] - } - }, - { - "id": 23, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -7.0] - } - }, - { - "id": 24, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -8.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [-1.0, 1.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [2.0, 0.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [3.0, 0.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" + "id": 1, + "phase": "n" }, { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [4.0, 0.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, 0.0], - [5.0, 0.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [3.0, -1.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, -1.0], - [4.0, -1.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, -1.0], - [5.0, -1.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.0, -1.0], - [6.0, -1.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "transformateur", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 3, - "bus2": 13, - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.5] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - }, - { - "id": "line13", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13, - "bus2": 14, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -2.0], - [1.0, -3.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line14", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 14, - "bus2": 15, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [2.0, -3.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line15", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 14, - "bus2": 16, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [1.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line16", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 16, - "bus2": 17, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [0.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line17", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 17, - "bus2": 18, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, -4.0], - [-1.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line18", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 18, - "bus2": 19, - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0, -4.0], - [-2.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line19", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 16, - "bus2": 20, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [1.0, -5.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line20", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 20, - "bus2": 21, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [2.0, -5.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line21", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 20, - "bus2": 22, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [1.0, -6.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line22", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 22, - "bus2": 23, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -6.0], - [1.0, -7.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line23", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 23, - "bus2": 24, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -7.0], - [1.0, -8.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 5, - "phases": "abcn", - "impedances": [ - [500.0, 100.0], - [500.0, 100.0], - [500.0, 100.0] - ] - }, - { - "id": 2, - "bus": 8, - "phases": "abcn", - "impedances": [ - [500.0, 100.0], - [500.0, 100.0], - [500.0, 100.0] - ] - }, - { - "id": 3, - "bus": 9, - "phases": "abcn", - "impedances": [ - [500.0, 100.0], - [500.0, 100.0], - [500.0, 100.0] - ] - }, - { - "id": 4, - "bus": 12, - "phases": "abcn", - "impedances": [ - [500.0, 100.0], - [500.0, 100.0], - [500.0, 100.0] - ] - }, - { - "id": 5, - "bus": 15, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [8.0, 5.0], - [12.0, 5.0] - ] - }, - { - "id": 6, - "bus": 19, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [8.0, 5.0], - [12.0, 5.0] - ] - }, - { - "id": 7, - "bus": 21, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [8.0, 5.0], - [12.0, 5.0] - ] - }, - { - "id": 8, - "bus": 22, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [8.0, 5.0], - [12.0, 5.0] - ] - }, - { - "id": 9, - "bus": 24, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [8.0, 5.0], - [12.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.87397024584863e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.251453341640509e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.00030308021498525026 - ] - ] - ] - }, - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 13, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, 0.0] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, 0.0] + } + }, + { + "id": 9, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, -1.0] + } + }, + { + "id": 10, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, -1.0] + } + }, + { + "id": 11, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, -1.0] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [6.0, -1.0] + } + }, + { + "id": 13, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -2.0] + } + }, + { + "id": 14, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -3.0] + } + }, + { + "id": 15, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -3.0] + } + }, + { + "id": 16, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -4.0] + } + }, + { + "id": 17, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, -4.0] + } + }, + { + "id": 18, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -4.0] + } + }, + { + "id": 19, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-2.0, -4.0] + } + }, + { + "id": 20, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -5.0] + } + }, + { + "id": 21, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -5.0] + } + }, + { + "id": 22, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -6.0] + } + }, + { + "id": 23, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -7.0] + } + }, + { + "id": 24, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -8.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [-1.0, 1.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [2.0, 0.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [3.0, 0.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [4.0, 0.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, 0.0], + [5.0, 0.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [3.0, -1.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, -1.0], + [4.0, -1.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line10", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, -1.0], + [5.0, -1.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.0, -1.0], + [6.0, -1.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "transformateur", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 3, + "bus2": 13, + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.5] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + }, + { + "id": "line13", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13, + "bus2": 14, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -2.0], + [1.0, -3.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line14", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 14, + "bus2": 15, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [2.0, -3.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line15", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 14, + "bus2": 16, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [1.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line16", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 16, + "bus2": 17, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [0.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line17", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 17, + "bus2": 18, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, -4.0], + [-1.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line18", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 18, + "bus2": 19, + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0, -4.0], + [-2.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line19", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 16, + "bus2": 20, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [1.0, -5.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line20", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 20, + "bus2": 21, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [2.0, -5.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line21", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 20, + "bus2": 22, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [1.0, -6.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line22", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 22, + "bus2": 23, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -6.0], + [1.0, -7.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line23", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 23, + "bus2": 24, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -7.0], + [1.0, -8.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 5, + "phases": "abcn", + "impedances": [ + [500.0, 100.0], + [500.0, 100.0], + [500.0, 100.0] + ] + }, + { + "id": 2, + "bus": 8, + "phases": "abcn", + "impedances": [ + [500.0, 100.0], + [500.0, 100.0], + [500.0, 100.0] + ] + }, + { + "id": 3, + "bus": 9, + "phases": "abcn", + "impedances": [ + [500.0, 100.0], + [500.0, 100.0], + [500.0, 100.0] + ] + }, + { + "id": 4, + "bus": 12, + "phases": "abcn", + "impedances": [ + [500.0, 100.0], + [500.0, 100.0], + [500.0, 100.0] + ] + }, + { + "id": 5, + "bus": 15, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [8.0, 5.0], + [12.0, 5.0] + ] + }, + { + "id": 6, + "bus": 19, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [8.0, 5.0], + [12.0, 5.0] + ] + }, + { + "id": 7, + "bus": 21, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [8.0, 5.0], + [12.0, 5.0] + ] + }, + { + "id": 8, + "bus": 22, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [8.0, 5.0], + [12.0, 5.0] + ] + }, + { + "id": 9, + "bus": 24, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [8.0, 5.0], + [12.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.87397024584863e-5, -0.0], + [-0.0, -0.0, -0.0, 1.251453341640509e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026] + ] + ] + }, + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json index e59df850..e7c378cb 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_network_24_buses/network_power.json @@ -1,937 +1,807 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 13, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, 0.0] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, 0.0] - } - }, - { - "id": 9, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, -1.0] - } - }, - { - "id": 10, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, -1.0] - } - }, - { - "id": 11, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, -1.0] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [6.0, -1.0] - } - }, - { - "id": 13, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -2.0] - } - }, - { - "id": 14, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -3.0] - } - }, - { - "id": 15, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -3.0] - } - }, - { - "id": 16, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -4.0] - } - }, - { - "id": 17, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, -4.0] - } - }, - { - "id": 18, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-1.0, -4.0] - } - }, - { - "id": 19, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-2.0, -4.0] - } - }, - { - "id": 20, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -5.0] - } - }, - { - "id": 21, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -5.0] - } - }, - { - "id": 22, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -6.0] - } - }, - { - "id": 23, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -7.0] - } - }, - { - "id": 24, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, -8.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 5.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [-1.0, 1.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [2.0, 0.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [3.0, 0.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" + "id": 1, + "phase": "n" }, { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [4.0, 0.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, 0.0], - [5.0, 0.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [3.0, -1.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, -1.0], - [4.0, -1.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, -1.0], - [5.0, -1.0] - ] - }, - "length": 2.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.0, -1.0], - [6.0, -1.0] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "transformateur", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 3, - "bus2": 13, - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.5] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - }, - { - "id": "line13", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 13, - "bus2": 14, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -2.0], - [1.0, -3.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line14", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 14, - "bus2": 15, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [2.0, -3.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line15", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 14, - "bus2": 16, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -3.0], - [1.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line16", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 16, - "bus2": 17, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [0.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line17", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 17, - "bus2": 18, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, -4.0], - [-1.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line18", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 18, - "bus2": 19, - "geometry": { - "type": "LineString", - "coordinates": [ - [-1.0, -4.0], - [-2.0, -4.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line19", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 16, - "bus2": 20, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -4.0], - [1.0, -5.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line20", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 20, - "bus2": 21, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [2.0, -5.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line21", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 20, - "bus2": 22, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -5.0], - [1.0, -6.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line22", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 22, - "bus2": 23, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -6.0], - [1.0, -7.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line23", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 23, - "bus2": 24, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, -7.0], - [1.0, -8.0] - ] - }, - "length": 0.1, - "params_id": "S_AL_150_exact", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 5, - "phases": "abcn", - "powers": [ - [251009.2634237357, 50201.85268474712], - [250995.49287217823, 50199.09857443569], - [251009.0826811284, 50201.81653622564] - ] - }, - { - "id": 2, - "bus": 8, - "phases": "abcn", - "powers": [ - [250205.73959141047, 50041.147918282135], - [250192.01312175737, 50038.402624351525], - [250205.5594273914, 50041.11188547827] - ] - }, - { - "id": 3, - "bus": 9, - "phases": "abcn", - "powers": [ - [250000.8781073924, 50000.17562147856], - [249987.16287658954, 49997.43257531784], - [250000.69809088638, 50000.1396181774] - ] - }, - { - "id": 4, - "bus": 12, - "phases": "abcn", - "powers": [ - [249207.2413601394, 49841.448272027876], - [249193.5696688285, 49838.71393376577], - [249207.0619151023, 49841.4123830203] - ] - }, - { - "id": 5, - "bus": 15, - "phases": "abcn", - "powers": [ - [4022.684654015081, 2011.3423270075414], - [4396.4639371455905, 2747.789960715992], - [3602.3239721679847, 1500.968321736661] - ] - }, - { - "id": 6, - "bus": 19, - "phases": "abcn", - "powers": [ - [3956.1153917407923, 1978.057695870396], - [4235.944883388208, 2647.46555211763], - [3559.2513593225367, 1483.021399717724] - ] - }, - { - "id": 7, - "bus": 21, - "phases": "abcn", - "powers": [ - [3944.7439109776074, 1972.371955488804], - [4210.512435293473, 2631.57027205842], - [3552.015927941965, 1480.0066366424855] - ] - }, - { - "id": 8, - "bus": 22, - "phases": "abcn", - "powers": [ - [3933.576461887421, 1966.7882309437105], - [4184.640537609303, 2615.4003360058136], - [3544.8493185110397, 1477.0205493796004] - ] - }, - { - "id": 9, - "bus": 24, - "phases": "abcn", - "powers": [ - [3911.425534062758, 1955.712767031379], - [4132.774797382108, 2582.984248363817], - [3530.59314215058, 1471.080475896075] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.87397024584863e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.251453341640509e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.00030308021498525026 - ] - ] - ] - }, - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 13, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, 0.0] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, 0.0] + } + }, + { + "id": 9, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, -1.0] + } + }, + { + "id": 10, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, -1.0] + } + }, + { + "id": 11, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, -1.0] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [6.0, -1.0] + } + }, + { + "id": 13, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -2.0] + } + }, + { + "id": 14, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -3.0] + } + }, + { + "id": 15, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -3.0] + } + }, + { + "id": 16, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -4.0] + } + }, + { + "id": 17, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, -4.0] + } + }, + { + "id": 18, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-1.0, -4.0] + } + }, + { + "id": 19, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-2.0, -4.0] + } + }, + { + "id": 20, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -5.0] + } + }, + { + "id": 21, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -5.0] + } + }, + { + "id": 22, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -6.0] + } + }, + { + "id": 23, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -7.0] + } + }, + { + "id": 24, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, -8.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 5.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [-1.0, 1.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [2.0, 0.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [3.0, 0.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [4.0, 0.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, 0.0], + [5.0, 0.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [3.0, -1.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, -1.0], + [4.0, -1.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line10", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, -1.0], + [5.0, -1.0] + ] + }, + "length": 2.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.0, -1.0], + [6.0, -1.0] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "transformateur", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 3, + "bus2": 13, + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.5] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + }, + { + "id": "line13", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 13, + "bus2": 14, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -2.0], + [1.0, -3.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line14", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 14, + "bus2": 15, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [2.0, -3.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line15", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 14, + "bus2": 16, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -3.0], + [1.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line16", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 16, + "bus2": 17, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [0.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line17", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 17, + "bus2": 18, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, -4.0], + [-1.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line18", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 18, + "bus2": 19, + "geometry": { + "type": "LineString", + "coordinates": [ + [-1.0, -4.0], + [-2.0, -4.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line19", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 16, + "bus2": 20, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -4.0], + [1.0, -5.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line20", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 20, + "bus2": 21, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [2.0, -5.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line21", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 20, + "bus2": 22, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -5.0], + [1.0, -6.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line22", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 22, + "bus2": 23, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -6.0], + [1.0, -7.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line23", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 23, + "bus2": 24, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, -7.0], + [1.0, -8.0] + ] + }, + "length": 0.1, + "params_id": "S_AL_150_exact", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 5, + "phases": "abcn", + "powers": [ + [251009.2634237357, 50201.85268474712], + [250995.49287217823, 50199.09857443569], + [251009.0826811284, 50201.81653622564] + ] + }, + { + "id": 2, + "bus": 8, + "phases": "abcn", + "powers": [ + [250205.73959141047, 50041.147918282135], + [250192.01312175737, 50038.402624351525], + [250205.5594273914, 50041.11188547827] + ] + }, + { + "id": 3, + "bus": 9, + "phases": "abcn", + "powers": [ + [250000.8781073924, 50000.17562147856], + [249987.16287658954, 49997.43257531784], + [250000.69809088638, 50000.1396181774] + ] + }, + { + "id": 4, + "bus": 12, + "phases": "abcn", + "powers": [ + [249207.2413601394, 49841.448272027876], + [249193.5696688285, 49838.71393376577], + [249207.0619151023, 49841.4123830203] + ] + }, + { + "id": 5, + "bus": 15, + "phases": "abcn", + "powers": [ + [4022.684654015081, 2011.3423270075414], + [4396.4639371455905, 2747.789960715992], + [3602.3239721679847, 1500.968321736661] + ] + }, + { + "id": 6, + "bus": 19, + "phases": "abcn", + "powers": [ + [3956.1153917407923, 1978.057695870396], + [4235.944883388208, 2647.46555211763], + [3559.2513593225367, 1483.021399717724] + ] + }, + { + "id": 7, + "bus": 21, + "phases": "abcn", + "powers": [ + [3944.7439109776074, 1972.371955488804], + [4210.512435293473, 2631.57027205842], + [3552.015927941965, 1480.0066366424855] + ] + }, + { + "id": 8, + "bus": 22, + "phases": "abcn", + "powers": [ + [3933.576461887421, 1966.7882309437105], + [4184.640537609303, 2615.4003360058136], + [3544.8493185110397, 1477.0205493796004] + ] + }, + { + "id": 9, + "bus": 24, + "phases": "abcn", + "powers": [ + [3911.425534062758, 1955.712767031379], + [4132.774797382108, 2582.984248363817], + [3530.59314215058, 1471.080475896075] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.87397024584863e-5, -0.0], + [-0.0, -0.0, -0.0, 1.251453341640509e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026] + ] + ] + }, + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json index 343d5445..74c5ab50 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_impedance.json @@ -1,96 +1,96 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 2, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } + "id": 1, + "phase": "n" }, { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - } - ], - "branches": [ - { - "id": "transfo1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - } - ], - "loads": [ - { - "id": 2, - "bus": 2, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [], - "transformers_params": [ - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 2, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + } + ], + "branches": [ + { + "id": "transfo1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + } + ], + "loads": [ + { + "id": 2, + "bus": 2, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [], + "transformers_params": [ + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json index 21714733..b24807a0 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer/network_power.json @@ -1,96 +1,96 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 2, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } + "id": 1, + "phase": "n" }, { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - } - ], - "branches": [ - { - "id": "transfo1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - } - ], - "loads": [ - { - "id": 2, - "bus": 2, - "phases": "abcn", - "powers": [ - [40459.798978684, 20229.899489342006], - [40459.79897977452, 20229.899489887266], - [40459.798978684004, 20229.899489342002] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [], - "transformers_params": [ - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 2, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + } + ], + "branches": [ + { + "id": "transfo1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + } + ], + "loads": [ + { + "id": 2, + "bus": 2, + "phases": "abcn", + "powers": [ + [40459.798978684, 20229.899489342006], + [40459.79897977452, 20229.899489887266], + [40459.798978684004, 20229.899489342002] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [], + "transformers_params": [ + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json index 68c9d0d8..8bdfdf73 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_impedance.json @@ -1,85 +1,85 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 2, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } + "id": 1, + "phase": "n" }, { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - } - ], - "branches": [ - { - "id": "transfo1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - } - ], - "loads": [], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [], - "transformers_params": [ - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 2, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + } + ], + "branches": [ + { + "id": "transfo1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + } + ], + "loads": [], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [], + "transformers_params": [ + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json index 68c9d0d8..8bdfdf73 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_transformer_no_load/network_power.json @@ -1,85 +1,85 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 2, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } + "id": 1, + "phase": "n" }, { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - } - ], - "branches": [ - { - "id": "transfo1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - } - ], - "loads": [], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [], - "transformers_params": [ - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 2, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + } + ], + "branches": [ + { + "id": "transfo1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + } + ], + "loads": [], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [], + "transformers_params": [ + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json index cf9a13d9..fd3409a4 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_impedance.json @@ -1,617 +1,617 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 3, - "phase": "n" - }, - { - "id": 4, - "phase": "n" - }, - { - "id": 5, - "phase": "n" - }, - { - "id": 7, - "phase": "n" - }, - { - "id": 9, - "phase": "n" - }, - { - "id": 10, - "phase": "n" - }, - { - "id": 11, - "phase": "n" - }, - { - "id": 13, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - }, - { - "id": "line12", - "bus": 2, - "phases": null - }, - { - "id": "line56", - "bus": 6, - "phases": null - }, - { - "id": "line78", - "bus": 8, - "phases": null - }, - { - "id": "line1112", - "bus": 12, - "phases": null - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 7, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 10, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 11, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 13, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - } - ], - "branches": [ - { - "id": "tr1", - "type": "transformer", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dd0", - "tap": 1.0 - }, - { - "id": "tr2", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yyn0", - "tap": 1.0 - }, - { - "id": "tr3", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dzn0", - "tap": 1.0 - }, - { - "id": "tr4", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 5, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - }, - { - "id": "tr5", - "type": "transformer", - "phases1": "abcn", - "phases2": "abc", - "bus1": 1, - "bus2": 6, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yd11", - "tap": 1.0 - }, - { - "id": "tr6", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 7, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yzn11", - "tap": 1.0 - }, - { - "id": "tr7", - "type": "transformer", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 8, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dd6", - "tap": 1.0 - }, - { - "id": "tr8", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 9, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yyn6", - "tap": 1.0 - }, - { - "id": "tr9", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 10, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dzn6", - "tap": 1.0 - }, - { - "id": "tr10", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 11, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dyn5", - "tap": 1.0 - }, - { - "id": "tr11", - "type": "transformer", - "phases1": "abcn", - "phases2": "abc", - "bus1": 1, - "bus2": 12, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yd5", - "tap": 1.0 - }, - { - "id": "tr12", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 13, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yzn5", - "tap": 1.0 - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 2, - "bus": 3, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 3, - "bus": 4, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 4, - "bus": 5, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 5, - "bus": 6, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 6, - "bus": 7, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 7, - "bus": 8, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 8, - "bus": 9, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 9, - "bus": 10, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 10, - "bus": 11, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 11, - "bus": 12, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - }, - { - "id": 12, - "bus": 13, - "phases": "abcn", - "impedances": [ - [1.0, 0.5], - [1.0, 0.5], - [1.0, 0.5] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [], - "transformers_params": [ - { - "id": "160kVA_Dd0", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dd0" - }, - { - "id": "160kVA_Dd6", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dd6" - }, - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" - }, - { - "id": "160kVA_Dyn5", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn5" + "id": 1, + "phase": "n" }, { - "id": "160kVA_Dzn0", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dzn0" + "id": 3, + "phase": "n" }, { - "id": "160kVA_Dzn6", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dzn6" + "id": 4, + "phase": "n" }, { - "id": "160kVA_Yd11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yd11" + "id": 5, + "phase": "n" }, { - "id": "160kVA_Yd5", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yd5" + "id": 7, + "phase": "n" }, { - "id": "160kVA_Yyn0", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yyn0" + "id": 9, + "phase": "n" }, { - "id": "160kVA_Yyn6", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yyn6" + "id": 10, + "phase": "n" }, { - "id": "160kVA_Yzn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yzn11" + "id": 11, + "phase": "n" }, { - "id": "160kVA_Yzn5", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yzn5" + "id": 13, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + }, + { + "id": "line12", + "bus": 2, + "phases": null + }, + { + "id": "line56", + "bus": 6, + "phases": null + }, + { + "id": "line78", + "bus": 8, + "phases": null + }, + { + "id": "line1112", + "bus": 12, + "phases": null + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 7, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 10, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 11, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 13, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + } + ], + "branches": [ + { + "id": "tr1", + "type": "transformer", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dd0", + "tap": 1.0 + }, + { + "id": "tr2", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yyn0", + "tap": 1.0 + }, + { + "id": "tr3", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dzn0", + "tap": 1.0 + }, + { + "id": "tr4", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 5, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + }, + { + "id": "tr5", + "type": "transformer", + "phases1": "abcn", + "phases2": "abc", + "bus1": 1, + "bus2": 6, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yd11", + "tap": 1.0 + }, + { + "id": "tr6", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 7, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yzn11", + "tap": 1.0 + }, + { + "id": "tr7", + "type": "transformer", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 8, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dd6", + "tap": 1.0 + }, + { + "id": "tr8", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 9, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yyn6", + "tap": 1.0 + }, + { + "id": "tr9", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 10, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dzn6", + "tap": 1.0 + }, + { + "id": "tr10", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 11, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dyn5", + "tap": 1.0 + }, + { + "id": "tr11", + "type": "transformer", + "phases1": "abcn", + "phases2": "abc", + "bus1": 1, + "bus2": 12, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yd5", + "tap": 1.0 + }, + { + "id": "tr12", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 13, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yzn5", + "tap": 1.0 + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 2, + "bus": 3, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 3, + "bus": 4, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 4, + "bus": 5, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 5, + "bus": 6, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 6, + "bus": 7, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 7, + "bus": 8, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 8, + "bus": 9, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 9, + "bus": 10, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 10, + "bus": 11, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 11, + "bus": 12, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + }, + { + "id": 12, + "bus": 13, + "phases": "abcn", + "impedances": [ + [1.0, 0.5], + [1.0, 0.5], + [1.0, 0.5] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [], + "transformers_params": [ + { + "id": "160kVA_Dd0", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dd0" + }, + { + "id": "160kVA_Dd6", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dd6" + }, + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + }, + { + "id": "160kVA_Dyn5", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn5" + }, + { + "id": "160kVA_Dzn0", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dzn0" + }, + { + "id": "160kVA_Dzn6", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dzn6" + }, + { + "id": "160kVA_Yd11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yd11" + }, + { + "id": "160kVA_Yd5", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yd5" + }, + { + "id": "160kVA_Yyn0", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yyn0" + }, + { + "id": "160kVA_Yyn6", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yyn6" + }, + { + "id": "160kVA_Yzn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yzn11" + }, + { + "id": "160kVA_Yzn5", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yzn5" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json index 81fddac8..0bb7b95a 100644 --- a/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json +++ b/roseau/load_flow/tests/data/networks/mv_lv_transformers/network_power.json @@ -1,617 +1,617 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 3, - "phase": "n" - }, - { - "id": 4, - "phase": "n" - }, - { - "id": 5, - "phase": "n" - }, - { - "id": 7, - "phase": "n" - }, - { - "id": 9, - "phase": "n" - }, - { - "id": 10, - "phase": "n" - }, - { - "id": 11, - "phase": "n" - }, - { - "id": 13, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - }, - { - "id": "line12", - "bus": 2, - "phases": null - }, - { - "id": "line56", - "bus": 6, - "phases": null - }, - { - "id": "line78", - "bus": 8, - "phases": null - }, - { - "id": "line1112", - "bus": 12, - "phases": null - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 7, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 9, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 10, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 11, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - }, - { - "id": 13, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 1.0] - } - } - ], - "branches": [ - { - "id": "tr1", - "type": "transformer", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dd0", - "tap": 1.0 - }, - { - "id": "tr2", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yyn0", - "tap": 1.0 - }, - { - "id": "tr3", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dzn0", - "tap": 1.0 - }, - { - "id": "tr4", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 5, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dyn11", - "tap": 1.0 - }, - { - "id": "tr5", - "type": "transformer", - "phases1": "abcn", - "phases2": "abc", - "bus1": 1, - "bus2": 6, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yd11", - "tap": 1.0 - }, - { - "id": "tr6", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 7, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yzn11", - "tap": 1.0 - }, - { - "id": "tr7", - "type": "transformer", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 8, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dd6", - "tap": 1.0 - }, - { - "id": "tr8", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 9, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yyn6", - "tap": 1.0 - }, - { - "id": "tr9", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 10, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dzn6", - "tap": 1.0 - }, - { - "id": "tr10", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 11, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Dyn5", - "tap": 1.0 - }, - { - "id": "tr11", - "type": "transformer", - "phases1": "abcn", - "phases2": "abc", - "bus1": 1, - "bus2": 12, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yd5", - "tap": 1.0 - }, - { - "id": "tr12", - "type": "transformer", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 13, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - }, - "params_id": "160kVA_Yzn5", - "tap": 1.0 - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "powers": [ - [41916.482229647016, 20958.241114823508], - [41916.482230776804, 20958.2411153884], - [41916.4822307768, 20958.241115388402] - ] - }, - { - "id": 2, - "bus": 3, - "phases": "abcn", - "powers": [ - [40459.7989783205, 20229.89948916025], - [40459.79897941102, 20229.89948970551], - [40459.79897941102, 20229.89948970551] - ] - }, - { - "id": 3, - "bus": 4, - "phases": "abcn", - "powers": [ - [37922.04164877094, 18961.020824385465], - [37922.04164985974, 18961.020824929874], - [37922.04164980375, 18961.02082490188] - ] - }, - { - "id": 4, - "bus": 5, - "phases": "abcn", - "powers": [ - [40459.798978684, 20229.899489342002], - [40459.79897977451, 20229.89948988726], - [40459.798978684004, 20229.899489342002] - ] - }, - { - "id": 5, - "bus": 6, - "phases": "abcn", - "powers": [ - [41916.48223002361, 20958.24111501181], - [41916.4822311534, 20958.241115576697], - [41916.48223002363, 20958.241115011813] - ] - }, - { - "id": 6, - "bus": 7, - "phases": "abcn", - "powers": [ - [40932.79932474136, 20466.399662370677], - [40932.79932583017, 20466.39966291509], - [40932.79932479737, 20466.39966239868] - ] - }, - { - "id": 7, - "bus": 8, - "phases": "abcn", - "powers": [ - [41916.482229647016, 20958.241114823508], - [41916.482230776804, 20958.241115388402], - [41916.4822307768, 20958.241115388402] - ] - }, - { - "id": 8, - "bus": 9, - "phases": "abcn", - "powers": [ - [40459.79897832049, 20229.899489160252], - [40459.79897941102, 20229.89948970551], - [40459.79897941101, 20229.899489705513] - ] - }, - { - "id": 9, - "bus": 10, - "phases": "abcn", - "powers": [ - [37922.04164877094, 18961.020824385465], - [37922.04164985973, 18961.020824929878], - [37922.04164980376, 18961.02082490188] - ] - }, - { - "id": 10, - "bus": 11, - "phases": "abcn", - "powers": [ - [40459.798978684, 20229.899489342002], - [40459.79897977452, 20229.899489887266], - [40459.798978684004, 20229.899489342002] - ] - }, - { - "id": 11, - "bus": 12, - "phases": "abcn", - "powers": [ - [41916.48223002361, 20958.24111501181], - [41916.4822311534, 20958.241115576693], - [41916.48223002362, 20958.241115011817] - ] - }, - { - "id": 12, - "bus": 13, - "phases": "abcn", - "powers": [ - [40932.79932474137, 20466.399662370684], - [40932.79932583017, 20466.399662915086], - [40932.799324797365, 20466.399662398682] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [], - "transformers_params": [ - { - "id": "160kVA_Dd0", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dd0" - }, - { - "id": "160kVA_Dd6", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dd6" - }, - { - "id": "160kVA_Dyn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn11" - }, - { - "id": "160kVA_Dyn5", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dyn5" + "id": 1, + "phase": "n" }, { - "id": "160kVA_Dzn0", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dzn0" + "id": 3, + "phase": "n" }, { - "id": "160kVA_Dzn6", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "dzn6" + "id": 4, + "phase": "n" }, { - "id": "160kVA_Yd11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yd11" + "id": 5, + "phase": "n" }, { - "id": "160kVA_Yd5", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yd5" + "id": 7, + "phase": "n" }, { - "id": "160kVA_Yyn0", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yyn0" + "id": 9, + "phase": "n" }, { - "id": "160kVA_Yyn6", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yyn6" + "id": 10, + "phase": "n" }, { - "id": "160kVA_Yzn11", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yzn11" + "id": 11, + "phase": "n" }, { - "id": "160kVA_Yzn5", - "sn": 160000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.023, - "p0": 460.0, - "psc": 2350.0, - "vsc": 0.04, - "type": "yzn5" + "id": 13, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + }, + { + "id": "line12", + "bus": 2, + "phases": null + }, + { + "id": "line56", + "bus": 6, + "phases": null + }, + { + "id": "line78", + "bus": 8, + "phases": null + }, + { + "id": "line1112", + "bus": 12, + "phases": null + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 7, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 9, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 10, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 11, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + }, + { + "id": 13, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 1.0] + } + } + ], + "branches": [ + { + "id": "tr1", + "type": "transformer", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dd0", + "tap": 1.0 + }, + { + "id": "tr2", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yyn0", + "tap": 1.0 + }, + { + "id": "tr3", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dzn0", + "tap": 1.0 + }, + { + "id": "tr4", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 5, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dyn11", + "tap": 1.0 + }, + { + "id": "tr5", + "type": "transformer", + "phases1": "abcn", + "phases2": "abc", + "bus1": 1, + "bus2": 6, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yd11", + "tap": 1.0 + }, + { + "id": "tr6", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 7, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yzn11", + "tap": 1.0 + }, + { + "id": "tr7", + "type": "transformer", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 8, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dd6", + "tap": 1.0 + }, + { + "id": "tr8", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 9, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yyn6", + "tap": 1.0 + }, + { + "id": "tr9", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 10, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dzn6", + "tap": 1.0 + }, + { + "id": "tr10", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 11, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Dyn5", + "tap": 1.0 + }, + { + "id": "tr11", + "type": "transformer", + "phases1": "abcn", + "phases2": "abc", + "bus1": 1, + "bus2": 12, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yd5", + "tap": 1.0 + }, + { + "id": "tr12", + "type": "transformer", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 13, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + }, + "params_id": "160kVA_Yzn5", + "tap": 1.0 + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "powers": [ + [41916.482229647016, 20958.241114823508], + [41916.482230776804, 20958.2411153884], + [41916.4822307768, 20958.241115388402] + ] + }, + { + "id": 2, + "bus": 3, + "phases": "abcn", + "powers": [ + [40459.7989783205, 20229.89948916025], + [40459.79897941102, 20229.89948970551], + [40459.79897941102, 20229.89948970551] + ] + }, + { + "id": 3, + "bus": 4, + "phases": "abcn", + "powers": [ + [37922.04164877094, 18961.020824385465], + [37922.04164985974, 18961.020824929874], + [37922.04164980375, 18961.02082490188] + ] + }, + { + "id": 4, + "bus": 5, + "phases": "abcn", + "powers": [ + [40459.798978684, 20229.899489342002], + [40459.79897977451, 20229.89948988726], + [40459.798978684004, 20229.899489342002] + ] + }, + { + "id": 5, + "bus": 6, + "phases": "abcn", + "powers": [ + [41916.48223002361, 20958.24111501181], + [41916.4822311534, 20958.241115576697], + [41916.48223002363, 20958.241115011813] + ] + }, + { + "id": 6, + "bus": 7, + "phases": "abcn", + "powers": [ + [40932.79932474136, 20466.399662370677], + [40932.79932583017, 20466.39966291509], + [40932.79932479737, 20466.39966239868] + ] + }, + { + "id": 7, + "bus": 8, + "phases": "abcn", + "powers": [ + [41916.482229647016, 20958.241114823508], + [41916.482230776804, 20958.241115388402], + [41916.4822307768, 20958.241115388402] + ] + }, + { + "id": 8, + "bus": 9, + "phases": "abcn", + "powers": [ + [40459.79897832049, 20229.899489160252], + [40459.79897941102, 20229.89948970551], + [40459.79897941101, 20229.899489705513] + ] + }, + { + "id": 9, + "bus": 10, + "phases": "abcn", + "powers": [ + [37922.04164877094, 18961.020824385465], + [37922.04164985973, 18961.020824929878], + [37922.04164980376, 18961.02082490188] + ] + }, + { + "id": 10, + "bus": 11, + "phases": "abcn", + "powers": [ + [40459.798978684, 20229.899489342002], + [40459.79897977452, 20229.899489887266], + [40459.798978684004, 20229.899489342002] + ] + }, + { + "id": 11, + "bus": 12, + "phases": "abcn", + "powers": [ + [41916.48223002361, 20958.24111501181], + [41916.4822311534, 20958.241115576693], + [41916.48223002362, 20958.241115011817] + ] + }, + { + "id": 12, + "bus": 13, + "phases": "abcn", + "powers": [ + [40932.79932474137, 20466.399662370684], + [40932.79932583017, 20466.399662915086], + [40932.799324797365, 20466.399662398682] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [], + "transformers_params": [ + { + "id": "160kVA_Dd0", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dd0" + }, + { + "id": "160kVA_Dd6", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dd6" + }, + { + "id": "160kVA_Dyn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn11" + }, + { + "id": "160kVA_Dyn5", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dyn5" + }, + { + "id": "160kVA_Dzn0", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dzn0" + }, + { + "id": "160kVA_Dzn6", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "dzn6" + }, + { + "id": "160kVA_Yd11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yd11" + }, + { + "id": "160kVA_Yd5", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yd5" + }, + { + "id": "160kVA_Yyn0", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yyn0" + }, + { + "id": "160kVA_Yyn6", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yyn6" + }, + { + "id": "160kVA_Yzn11", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yzn11" + }, + { + "id": "160kVA_Yzn5", + "sn": 160000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.023, + "p0": 460.0, + "psc": 2350.0, + "vsc": 0.04, + "type": "yzn5" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json index b5e54147..1f0c1c93 100644 --- a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_impedance.json @@ -1,577 +1,453 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, 0.0] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, 0.0] - } - }, - { - "id": 9, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, -1.0] - } - }, - { - "id": 10, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, -1.0] - } - }, - { - "id": 11, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, -1.0] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [6.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [-1.0, 1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [2.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [3.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [4.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, 0.0], - [5.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [3.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, -1.0], - [4.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, -1.0], - [5.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_zy", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.0, -1.0], - [6.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_z", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 5, - "phases": "abcn", - "impedances": [ - [10.0, 0.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 3, - "bus": 8, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 0.0] - ] - }, - { - "id": 4, - "bus": 9, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 5, - "bus": 12, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [5.0, 0.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ] - }, - { - "id": "S_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.046e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 1.108e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 1.046e-05 - ] - ], - [ - [ - 0.00017437, - -7.293e-05, - -2.099e-05 - ], - [ - -7.293e-05, - 0.0001847, - -7.293e-05 - ], - [ - -2.099e-05, - -7.293e-05, - 0.00017437 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, 0.0] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, 0.0] + } + }, + { + "id": 9, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, -1.0] + } + }, + { + "id": 10, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, -1.0] + } + }, + { + "id": 11, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, -1.0] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [6.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [-1.0, 1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [2.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [3.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [4.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, 0.0], + [5.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [3.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, -1.0], + [4.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line10", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, -1.0], + [5.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_zy", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.0, -1.0], + [6.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_z" + } + ], + "loads": [ + { + "id": 1, + "bus": 3, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 5, + "phases": "abcn", + "impedances": [ + [10.0, 0.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 3, + "bus": 8, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 0.0] + ] + }, + { + "id": 4, + "bus": 9, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 5, + "bus": 12, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [5.0, 0.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + }, + { + "id": "S_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ] + }, + { + "id": "S_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ], + "y_shunt": [ + [ + [1.046e-5, 0.0, 0.0], + [0.0, 1.108e-5, 0.0], + [0.0, 0.0, 1.046e-5] + ], + [ + [0.00017437, -7.293e-5, -2.099e-5], + [-7.293e-5, 0.0001847, -7.293e-5], + [-2.099e-5, -7.293e-5, 0.00017437] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json index c68294ec..44eb795a 100644 --- a/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json +++ b/roseau/load_flow/tests/data/networks/mv_network_12_buses/network_power.json @@ -1,577 +1,453 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [1.0, -1.0] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 6, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 7, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, 0.0] - } - }, - { - "id": 8, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, 0.0] - } - }, - { - "id": 9, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [3.0, -1.0] - } - }, - { - "id": 10, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [4.0, -1.0] - } - }, - { - "id": 11, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [5.0, -1.0] - } - }, - { - "id": 12, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [6.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [-1.0, 1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 2, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [1.0, 1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [1.0, 0.0], - [2.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [3.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line6", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 7, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [4.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line7", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 7, - "bus2": 8, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, 0.0], - [5.0, 0.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line8", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 6, - "bus2": 9, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, 0.0], - [3.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line9", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 9, - "bus2": 10, - "geometry": { - "type": "LineString", - "coordinates": [ - [3.0, -1.0], - [4.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_sym", - "ground": "ground" - }, - { - "id": "line10", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 10, - "bus2": 11, - "geometry": { - "type": "LineString", - "coordinates": [ - [4.0, -1.0], - [5.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_zy", - "ground": "ground" - }, - { - "id": "line11", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 11, - "bus2": 12, - "geometry": { - "type": "LineString", - "coordinates": [ - [5.0, -1.0], - [6.0, -1.0] - ] - }, - "length": 0.2, - "params_id": "S_AL_150_z", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3, - "phases": "abcn", - "powers": [ - [10209993.930569092, 5104996.965284546], - [10184427.504083402, 5092213.752041699], - [10212001.154821586, 5106000.577410791] - ] - }, - { - "id": 2, - "bus": 5, - "phases": "abcn", - "powers": [ - [12043978.809777597, -4.656612873077393e-10], - [13158161.958345288, 6579080.979172645], - [7680405.992758585, 3840202.996379295] - ] - }, - { - "id": 3, - "bus": 8, - "phases": "abcn", - "powers": [ - [12809516.860629251, 6404758.430314625], - [7390933.725022931, 3695466.8625114667], - [11674812.395720374, 1.862645149230957e-09] - ] - }, - { - "id": 4, - "bus": 9, - "phases": "abcn", - "powers": [ - [9617974.845066011, 4808987.422533005], - [9509297.777580347, 4754648.888790177], - [9592528.112592854, 4796264.056296427] - ] - }, - { - "id": 5, - "bus": 12, - "phases": "abcn", - "powers": [ - [10351324.247540874, 5175662.123770438], - [12159260.542917678, 0.0], - [15946791.22791296, 7973395.613956487] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - }, - { - "id": "S_AL_150_z", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ] - }, - { - "id": "S_AL_150_zy", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.188, - 0.0, - 0.0 - ], - [ - 0.0, - 0.188, - 0.0 - ], - [ - 0.0, - 0.0, - 0.188 - ] - ], - [ - [ - 0.3283, - 0.2543, - 0.2325 - ], - [ - 0.2543, - 0.3283, - 0.2543 - ], - [ - 0.2325, - 0.2543, - 0.3283 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.046e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 1.108e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 1.046e-05 - ] - ], - [ - [ - 0.00017437, - -7.293e-05, - -2.099e-05 - ], - [ - -7.293e-05, - 0.0001847, - -7.293e-05 - ], - [ - -2.099e-05, - -7.293e-05, - 0.00017437 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [1.0, -1.0] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 6, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 7, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, 0.0] + } + }, + { + "id": 8, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, 0.0] + } + }, + { + "id": 9, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [3.0, -1.0] + } + }, + { + "id": 10, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [4.0, -1.0] + } + }, + { + "id": 11, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [5.0, -1.0] + } + }, + { + "id": 12, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [6.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [-1.0, 1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 2, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [1.0, 1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [1.0, 0.0], + [2.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [3.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line6", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 7, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [4.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line7", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 7, + "bus2": 8, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, 0.0], + [5.0, 0.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line8", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 6, + "bus2": 9, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, 0.0], + [3.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line9", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 9, + "bus2": 10, + "geometry": { + "type": "LineString", + "coordinates": [ + [3.0, -1.0], + [4.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_sym", + "ground": "ground" + }, + { + "id": "line10", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 10, + "bus2": 11, + "geometry": { + "type": "LineString", + "coordinates": [ + [4.0, -1.0], + [5.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_zy", + "ground": "ground" + }, + { + "id": "line11", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 11, + "bus2": 12, + "geometry": { + "type": "LineString", + "coordinates": [ + [5.0, -1.0], + [6.0, -1.0] + ] + }, + "length": 0.2, + "params_id": "S_AL_150_z" + } + ], + "loads": [ + { + "id": 1, + "bus": 3, + "phases": "abcn", + "powers": [ + [10209993.930569092, 5104996.965284546], + [10184427.504083402, 5092213.752041699], + [10212001.154821586, 5106000.577410791] + ] + }, + { + "id": 2, + "bus": 5, + "phases": "abcn", + "powers": [ + [12043978.809777597, -4.656612873077393e-10], + [13158161.958345288, 6579080.979172645], + [7680405.992758585, 3840202.996379295] + ] + }, + { + "id": 3, + "bus": 8, + "phases": "abcn", + "powers": [ + [12809516.860629251, 6404758.430314625], + [7390933.725022931, 3695466.8625114667], + [11674812.395720374, 1.862645149230957e-9] + ] + }, + { + "id": 4, + "bus": 9, + "phases": "abcn", + "powers": [ + [9617974.845066011, 4808987.422533005], + [9509297.777580347, 4754648.888790177], + [9592528.112592854, 4796264.056296427] + ] + }, + { + "id": 5, + "bus": 12, + "phases": "abcn", + "powers": [ + [10351324.247540874, 5175662.123770438], + [12159260.542917678, 0.0], + [15946791.22791296, 7973395.613956487] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + }, + { + "id": "S_AL_150_z", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ] + }, + { + "id": "S_AL_150_zy", + "z_line": [ + [ + [0.188, 0.0, 0.0], + [0.0, 0.188, 0.0], + [0.0, 0.0, 0.188] + ], + [ + [0.3283, 0.2543, 0.2325], + [0.2543, 0.3283, 0.2543], + [0.2325, 0.2543, 0.3283] + ] + ], + "y_shunt": [ + [ + [1.046e-5, 0.0, 0.0], + [0.0, 1.108e-5, 0.0], + [0.0, 0.0, 1.046e-5] + ], + [ + [0.00017437, -7.293e-5, -2.099e-5], + [-7.293e-5, 0.0001847, -7.293e-5], + [-2.099e-5, -7.293e-5, 0.00017437] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/network_1/network_impedance.json b/roseau/load_flow/tests/data/networks/network_1/network_impedance.json index 943393c8..fd3a99db 100644 --- a/roseau/load_flow/tests/data/networks/network_1/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/network_1/network_impedance.json @@ -1,367 +1,237 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 2, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.25] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.4, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.4, 0.25] - } - } - ], - "branches": [ - { - "id": "tr1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.125] - }, - "params_id": "H61_50kVA_Dyn11", - "tap": 1.0 + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" }, { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.25], - [0.0, 0.5] - ] - }, - "length": 1.0, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line3", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "Point", - "coordinates": [0.2, 0.0] - } - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-0.4, 0.25] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3, - "phases": "abcn", - "impedances": [ - [5.0, 0.0], - [15.0, 10.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 5, - "phases": "abcn", - "impedances": [ - [500.0, 100.0], - [500.0, 100.0], - [500.0, 100.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123443e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.883653691123448e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522741e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.88246546842203e-05, - -1.9265213360533982e-06, - -1.925552134660659e-06, - -1.2027068909761439e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422033e-05, - -1.925552134660666e-06, - -1.2027068909761439e-05 - ], - [ - -1.925552134660659e-06, - -1.9255521346606663e-06, - 4.88265396812771e-05, - -1.2028010593546635e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.0001070929347408532 - ] - ] - ] - }, - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "H61_50kVA_Dyn11", - "sn": 50000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.018000000000000002, - "p0": 145.0, - "psc": 1350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 2, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.25] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.4, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.4, 0.25] + } + } + ], + "branches": [ + { + "id": "tr1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.125] + }, + "params_id": "H61_50kVA_Dyn11", + "tap": 1.0 + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.25], + [0.0, 0.5] + ] + }, + "length": 1.0, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line3", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "Point", + "coordinates": [0.2, 0.0] + } + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-0.4, 0.25] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 3, + "phases": "abcn", + "impedances": [ + [5.0, 0.0], + [15.0, 10.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 5, + "phases": "abcn", + "impedances": [ + [500.0, 100.0], + [500.0, 100.0], + [500.0, 100.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123443e-8, -0.0, -0.0, -0.0], + [-0.0, 9.883653691123448e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522741e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5], + [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5], + [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532] + ] + ] + }, + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "H61_50kVA_Dyn11", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018000000000000002, + "p0": 145.0, + "psc": 1350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/network_1/network_power.json b/roseau/load_flow/tests/data/networks/network_1/network_power.json index b8110f5d..95b8ddc8 100644 --- a/roseau/load_flow/tests/data/networks/network_1/network_power.json +++ b/roseau/load_flow/tests/data/networks/network_1/network_power.json @@ -1,367 +1,237 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - }, - { - "id": 2, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.25] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - }, - { - "id": 4, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [0.4, 0.0] - } - }, - { - "id": 5, - "phases": "abc", - "geometry": { - "type": "Point", - "coordinates": [-0.4, 0.25] - } - } - ], - "branches": [ - { - "id": "tr1", - "type": "transformer", - "phases1": "abc", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.125] - }, - "params_id": "H61_50kVA_Dyn11", - "tap": 1.0 + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" }, { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.25], - [0.0, 0.5] - ] - }, - "length": 1.0, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line3", - "type": "switch", - "phases1": "abc", - "phases2": "abc", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "Point", - "coordinates": [0.2, 0.0] - } - }, - { - "id": "line4", - "type": "line", - "phases1": "abc", - "phases2": "abc", - "bus1": 4, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [-0.4, 0.25] - ] - }, - "length": 0.5, - "params_id": "S_AL_150_sym", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 3, - "phases": "abcn", - "powers": [ - [8711.474896898504, 0.0], - [2594.04717163006, 1729.364781086707], - [4059.8222333751887, 2029.9111166875941] - ] - }, - { - "id": 2, - "bus": 5, - "phases": "abcn", - "powers": [ - [256310.03712190496, 51262.00742438098], - [256310.03712881327, 51262.00742576264], - [256310.03712881327, 51262.0074257627] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [11547.005383792515, 0.0], - [-5773.502691896258, -10000.000000179687], - [-5773.502691896258, 10000.000000179687] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123443e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.883653691123448e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522741e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.88246546842203e-05, - -1.9265213360533982e-06, - -1.925552134660659e-06, - -1.2027068909761439e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422033e-05, - -1.925552134660666e-06, - -1.2027068909761439e-05 - ], - [ - -1.925552134660659e-06, - -1.9255521346606663e-06, - 4.88265396812771e-05, - -1.2028010593546635e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.0001070929347408532 - ] - ] - ] - }, - { - "id": "S_AL_150_sym", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003 - ] - ], - [ - [ - 0.328, - 0.254, - 0.254 - ], - [ - 0.254, - 0.328, - 0.254 - ], - [ - 0.254, - 0.254, - 0.328 - ] - ] - ], - "y_shunt": [ - [ - [ - 2.8506e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 2.8506e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 2.8506e-05 - ] - ], - [ - [ - 1.7782e-05, - -2.2840000000000005e-06, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - 1.7782e-05, - -2.2840000000000005e-06 - ], - [ - -2.2840000000000005e-06, - -2.2840000000000005e-06, - 1.7782e-05 - ] - ] - ] - } - ], - "transformers_params": [ - { - "id": "H61_50kVA_Dyn11", - "sn": 50000.0, - "uhv": 20000.0, - "ulv": 400.0, - "i0": 0.018000000000000002, - "p0": 145.0, - "psc": 1350.0, - "vsc": 0.04, - "type": "dyn11" + "id": 2, + "phase": "n" } - ] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.25] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + }, + { + "id": 4, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [0.4, 0.0] + } + }, + { + "id": 5, + "phases": "abc", + "geometry": { + "type": "Point", + "coordinates": [-0.4, 0.25] + } + } + ], + "branches": [ + { + "id": "tr1", + "type": "transformer", + "phases1": "abc", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.125] + }, + "params_id": "H61_50kVA_Dyn11", + "tap": 1.0 + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.25], + [0.0, 0.5] + ] + }, + "length": 1.0, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line3", + "type": "switch", + "phases1": "abc", + "phases2": "abc", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "Point", + "coordinates": [0.2, 0.0] + } + }, + { + "id": "line4", + "type": "line", + "phases1": "abc", + "phases2": "abc", + "bus1": 4, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [-0.4, 0.25] + ] + }, + "length": 0.5, + "params_id": "S_AL_150_sym", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 3, + "phases": "abcn", + "powers": [ + [8711.474896898504, 0.0], + [2594.04717163006, 1729.364781086707], + [4059.8222333751887, 2029.9111166875941] + ] + }, + { + "id": 2, + "bus": 5, + "phases": "abcn", + "powers": [ + [256310.03712190496, 51262.00742438098], + [256310.03712881327, 51262.00742576264], + [256310.03712881327, 51262.0074257627] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [11547.005383792515, 0.0], + [-5773.502691896258, -10000.000000179687], + [-5773.502691896258, 10000.000000179687] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123443e-8, -0.0, -0.0, -0.0], + [-0.0, 9.883653691123448e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522741e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5], + [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5], + [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532] + ] + ] + }, + { + "id": "S_AL_150_sym", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.18800000000000003] + ], + [ + [0.328, 0.254, 0.254], + [0.254, 0.328, 0.254], + [0.254, 0.254, 0.328] + ] + ], + "y_shunt": [ + [ + [2.8506e-5, 0.0, 0.0], + [0.0, 2.8506e-5, 0.0], + [0.0, 0.0, 2.8506e-5] + ], + [ + [1.7782e-5, -2.2840000000000005e-6, -2.2840000000000005e-6], + [-2.2840000000000005e-6, 1.7782e-5, -2.2840000000000005e-6], + [-2.2840000000000005e-6, -2.2840000000000005e-6, 1.7782e-5] + ] + ] + } + ], + "transformers_params": [ + { + "id": "H61_50kVA_Dyn11", + "sn": 50000.0, + "uhv": 20000.0, + "ulv": 400.0, + "i0": 0.018000000000000002, + "p0": 145.0, + "psc": 1350.0, + "vsc": 0.04, + "type": "dyn11" + } + ] } diff --git a/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json b/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json index 9f5660f1..3deec92a 100644 --- a/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/network_6_buses/network_impedance.json @@ -1,433 +1,271 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.25] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.4, 0.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.4, 0.25] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.4, 0.5] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, 0.25] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.25], - [0.0, 0.5] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.4, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.25], - [-0.4, 0.25] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.5], - [0.4, 0.5] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 3, - "bus": 3, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123443e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.883653691123448e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522741e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.88246546842203e-05, - -1.9265213360533982e-06, - -1.925552134660659e-06, - -1.2027068909761439e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422033e-05, - -1.925552134660666e-06, - -1.2027068909761439e-05 - ], - [ - -1.925552134660659e-06, - -1.9255521346606663e-06, - 4.88265396812771e-05, - -1.2028010593546635e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.0001070929347408532 - ] - ] - ] - }, - { - "id": "S_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.87397024584863e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.251453341640509e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.00030308021498525026 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.25] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.4, 0.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.4, 0.25] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.4, 0.5] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, 0.25] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.25], + [0.0, 0.5] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.4, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.25], + [-0.4, 0.25] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.5], + [0.4, 0.5] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 3, + "bus": 3, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123443e-8, -0.0, -0.0, -0.0], + [-0.0, 9.883653691123448e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522741e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5], + [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5], + [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532] + ] + ] + }, + { + "id": "S_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.87397024584863e-5, -0.0], + [-0.0, -0.0, -0.0, 1.251453341640509e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json b/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json index 90fb6cbe..4d959072 100644 --- a/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json +++ b/roseau/load_flow/tests/data/networks/network_6_buses/network_power.json @@ -1,433 +1,271 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.25] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.5] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.4, 0.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [-0.4, 0.25] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.4, 0.5] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.0, 0.25] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.25], - [0.0, 0.5] - ] - }, - "length": 1.0, - "params_id": "S_AL_150_exact", - "ground": "ground" - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [0.4, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line4", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 5, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.25], - [-0.4, 0.25] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - }, - { - "id": "line5", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.5], - [0.4, 0.5] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_exact", - "ground": "ground" - } - ], - "loads": [ - { - "id": 1, - "bus": 2, - "phases": "abcn", - "powers": [ - [3784.13906992178, 1892.0695349608898], - [3832.6932935361037, 1916.3466467680526], - [3894.240495272786, 1947.1202476363933] - ] - }, - { - "id": 2, - "bus": 2, - "phases": "abcn", - "powers": [ - [3784.13906992178, 1892.0695349608898], - [3832.693293536103, 1916.3466467680532], - [3894.2404952727857, 1947.1202476363922] - ] - }, - { - "id": 3, - "bus": 3, - "phases": "abcn", - "powers": [ - [3632.2230994219854, 1816.1115497109927], - [3695.415813939502, 1847.7079069697513], - [3774.1174774789292, 1887.058738739465] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2548374535443866, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.2548374535443866, - 0.32828402771266313, - 0.25483745354438475, - 0.2893513764966162 - ], - [ - 0.25483745354438475, - 0.25483745354438475, - 0.32828402771266313, - 0.28935137649662 - ], - [ - 0.2893513764966162, - 0.2893513764966162, - 0.28935137649662, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.883653691123443e-08, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 9.883653691123448e-08, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 9.884227445522741e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 2.1303235898335101e-07 - ] - ], - [ - [ - 4.88246546842203e-05, - -1.9265213360533982e-06, - -1.925552134660659e-06, - -1.2027068909761439e-05 - ], - [ - -1.926521336053397e-06, - 4.882465468422033e-05, - -1.925552134660666e-06, - -1.2027068909761439e-05 - ], - [ - -1.925552134660659e-06, - -1.9255521346606663e-06, - 4.88265396812771e-05, - -1.2028010593546635e-05 - ], - [ - -1.2027068909761442e-05, - -1.2027068909761439e-05, - -1.2028010593546635e-05, - 0.0001070929347408532 - ] - ] - ] - }, - { - "id": "S_AL_150_exact", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571429 - ] - ], - [ - [ - 0.32828402771266313, - 0.2543135354137983, - 0.23253767451076202, - 0.25431353541379775 - ], - [ - 0.2543135354137983, - 0.32828402771266313, - 0.25431353541379775, - 0.23253767451076202 - ], - [ - 0.23253767451076202, - 0.25431353541379775, - 0.32828402771266313, - 0.2543135354137983 - ], - [ - 0.25431353541379775, - 0.23253767451076202, - 0.2543135354137983, - 0.35222736359783396 - ] - ] - ], - "y_shunt": [ - [ - [ - 1.8739702458486386e-05, - -0.0, - -0.0, - -0.0 - ], - [ - -0.0, - 2.0220210675210224e-05, - -0.0, - -0.0 - ], - [ - -0.0, - -0.0, - 1.87397024584863e-05, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 1.251453341640509e-05 - ] - ], - [ - [ - 0.0004502863047450181, - -7.293254163840195e-05, - -2.098988878582756e-05, - -4.403550001268221e-05 - ], - [ - -7.293254163840193e-05, - 0.0004893022525501052, - -7.293254163839993e-05, - -6.4336580197996484e-06 - ], - [ - -2.0989888785827554e-05, - -7.293254163839992e-05, - 0.00045028630474501605, - -4.403550001268351e-05 - ], - [ - -4.403550001268222e-05, - -6.433658019799651e-06, - -4.403550001268351e-05, - 0.00030308021498525026 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.25] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.5] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.4, 0.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [-0.4, 0.25] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.4, 0.5] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.0, 0.25] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.25], + [0.0, 0.5] + ] + }, + "length": 1.0, + "params_id": "S_AL_150_exact", + "ground": "ground" + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [0.4, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line4", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 5, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.25], + [-0.4, 0.25] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + }, + { + "id": "line5", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.5], + [0.4, 0.5] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_exact", + "ground": "ground" + } + ], + "loads": [ + { + "id": 1, + "bus": 2, + "phases": "abcn", + "powers": [ + [3784.13906992178, 1892.0695349608898], + [3832.6932935361037, 1916.3466467680526], + [3894.240495272786, 1947.1202476363933] + ] + }, + { + "id": 2, + "bus": 2, + "phases": "abcn", + "powers": [ + [3784.13906992178, 1892.0695349608898], + [3832.693293536103, 1916.3466467680532], + [3894.2404952727857, 1947.1202476363922] + ] + }, + { + "id": 3, + "bus": 3, + "phases": "abcn", + "powers": [ + [3632.2230994219854, 1816.1115497109927], + [3695.415813939502, 1847.7079069697513], + [3774.1174774789292, 1887.058738739465] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2548374535443866, 0.25483745354438475, 0.2893513764966162], + [0.2548374535443866, 0.32828402771266313, 0.25483745354438475, 0.2893513764966162], + [0.25483745354438475, 0.25483745354438475, 0.32828402771266313, 0.28935137649662], + [0.2893513764966162, 0.2893513764966162, 0.28935137649662, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [9.883653691123443e-8, -0.0, -0.0, -0.0], + [-0.0, 9.883653691123448e-8, -0.0, -0.0], + [-0.0, -0.0, 9.884227445522741e-8, -0.0], + [-0.0, -0.0, -0.0, 2.1303235898335101e-7] + ], + [ + [4.88246546842203e-5, -1.9265213360533982e-6, -1.925552134660659e-6, -1.2027068909761439e-5], + [-1.926521336053397e-6, 4.882465468422033e-5, -1.925552134660666e-6, -1.2027068909761439e-5], + [-1.925552134660659e-6, -1.9255521346606663e-6, 4.88265396812771e-5, -1.2028010593546635e-5], + [-1.2027068909761442e-5, -1.2027068909761439e-5, -1.2028010593546635e-5, 0.0001070929347408532] + ] + ] + }, + { + "id": "S_AL_150_exact", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571429] + ], + [ + [0.32828402771266313, 0.2543135354137983, 0.23253767451076202, 0.25431353541379775], + [0.2543135354137983, 0.32828402771266313, 0.25431353541379775, 0.23253767451076202], + [0.23253767451076202, 0.25431353541379775, 0.32828402771266313, 0.2543135354137983], + [0.25431353541379775, 0.23253767451076202, 0.2543135354137983, 0.35222736359783396] + ] + ], + "y_shunt": [ + [ + [1.8739702458486386e-5, -0.0, -0.0, -0.0], + [-0.0, 2.0220210675210224e-5, -0.0, -0.0], + [-0.0, -0.0, 1.87397024584863e-5, -0.0], + [-0.0, -0.0, -0.0, 1.251453341640509e-5] + ], + [ + [0.0004502863047450181, -7.293254163840195e-5, -2.098988878582756e-5, -4.403550001268221e-5], + [-7.293254163840193e-5, 0.0004893022525501052, -7.293254163839993e-5, -6.4336580197996484e-6], + [-2.0989888785827554e-5, -7.293254163839992e-5, 0.00045028630474501605, -4.403550001268351e-5], + [-4.403550001268222e-5, -6.433658019799651e-6, -4.403550001268351e-5, 0.00030308021498525026] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json b/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json index 981515e9..22d88dca 100644 --- a/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/rounded_network/network_impedance.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "test_rounded_line", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [200.0, 0.0], - [0.0, -200.0], - [0.0, 200.0] - ] - } - ], - "lines_params": [ - { - "id": "test_rounded_line", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ], - [ - [ - 1.0, - 0.5, - 0.4, - 0.3 - ], - [ - 0.5, - 1.0, - 0.3, - 0.6 - ], - [ - 0.4, - 0.3, - 1.0, - 0.7 - ], - [ - 0.2, - 0.6, - 0.7, - 1.0 - ] - ] - ], - "y_shunt": [ - [ - [ - 2e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 2e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 2e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4e-05 - ] - ], - [ - [ - 2e-05, - 0.0001, - 5e-05, - 5e-05 - ], - [ - 0.0001, - 2e-05, - 1.5e-05, - 0.0001 - ], - [ - 5e-05, - 1.5e-05, - 2e-05, - 0.00015 - ], - [ - 5e-05, - 0.0001, - 0.00015, - 4e-05 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "test_rounded_line", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [200.0, 0.0], + [0.0, -200.0], + [0.0, 200.0] + ] + } + ], + "lines_params": [ + { + "id": "test_rounded_line", + "z_line": [ + [ + [1.0, 0.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 0.0, 1.0] + ], + [ + [1.0, 0.5, 0.4, 0.3], + [0.5, 1.0, 0.3, 0.6], + [0.4, 0.3, 1.0, 0.7], + [0.2, 0.6, 0.7, 1.0] + ] + ], + "y_shunt": [ + [ + [2e-5, 0.0, 0.0, 0.0], + [0.0, 2e-5, 0.0, 0.0], + [0.0, 0.0, 2e-5, 0.0], + [0.0, 0.0, 0.0, 4e-5] + ], + [ + [2e-5, 0.0001, 5e-5, 5e-5], + [0.0001, 2e-5, 1.5e-5, 0.0001], + [5e-5, 1.5e-5, 2e-5, 0.00015], + [5e-5, 0.0001, 0.00015, 4e-5] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/rounded_network/network_power.json b/roseau/load_flow/tests/data/networks/rounded_network/network_power.json index 7b5b6167..77eb670e 100644 --- a/roseau/load_flow/tests/data/networks/rounded_network/network_power.json +++ b/roseau/load_flow/tests/data/networks/rounded_network/network_power.json @@ -1,197 +1,116 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "test_rounded_line", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [2580.0629575034304, 1290.0314787517152], - [2921.8470639936513, 1460.923531996826], - [2890.62814719932, 1445.31407359966] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [200.0, 0.0], - [0.0, -200.0], - [0.0, 200.0] - ] - } - ], - "lines_params": [ - { - "id": "test_rounded_line", - "model": "zy_neutral", - "z_line": [ - [ - [ - 1.0, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 1.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 1.0 - ] - ], - [ - [ - 1.0, - 0.5, - 0.4, - 0.3 - ], - [ - 0.5, - 1.0, - 0.3, - 0.6 - ], - [ - 0.4, - 0.3, - 1.0, - 0.7 - ], - [ - 0.2, - 0.6, - 0.7, - 1.0 - ] - ] - ], - "y_shunt": [ - [ - [ - 2e-05, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 2e-05, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 2e-05, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 4e-05 - ] - ], - [ - [ - 2e-05, - 0.0001, - 5e-05, - 5e-05 - ], - [ - 0.0001, - 2e-05, - 1.5e-05, - 0.0001 - ], - [ - 5e-05, - 1.5e-05, - 2e-05, - 0.00015 - ], - [ - 5e-05, - 0.0001, - 0.00015, - 4e-05 - ] - ] - ] - } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "test_rounded_line", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [2580.0629575034304, 1290.0314787517152], + [2921.8470639936513, 1460.923531996826], + [2890.62814719932, 1445.31407359966] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [200.0, 0.0], + [0.0, -200.0], + [0.0, 200.0] + ] + } + ], + "lines_params": [ + { + "id": "test_rounded_line", + "z_line": [ + [ + [1.0, 0.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 0.0, 1.0] + ], + [ + [1.0, 0.5, 0.4, 0.3], + [0.5, 1.0, 0.3, 0.6], + [0.4, 0.3, 1.0, 0.7], + [0.2, 0.6, 0.7, 1.0] + ] + ], + "y_shunt": [ + [ + [2e-5, 0.0, 0.0, 0.0], + [0.0, 2e-5, 0.0, 0.0], + [0.0, 0.0, 2e-5, 0.0], + [0.0, 0.0, 0.0, 4e-5] + ], + [ + [2e-5, 0.0001, 5e-5, 5e-5], + [0.0001, 2e-5, 1.5e-5, 0.0001], + [5e-5, 1.5e-5, 2e-5, 0.00015], + [5e-5, 0.0001, 0.00015, 4e-5] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/switch/network_impedance.json b/roseau/load_flow/tests/data/networks/switch/network_impedance.json index 919fb2bb..e7e1ca93 100644 --- a/roseau/load_flow/tests/data/networks/switch/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/switch/network_impedance.json @@ -1,78 +1,78 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "switch1", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.5, 0.0] - } - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "switch1", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.5, 0.0] + } + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/switch/network_power.json b/roseau/load_flow/tests/data/networks/switch/network_power.json index 55d01234..c117aeea 100644 --- a/roseau/load_flow/tests/data/networks/switch/network_power.json +++ b/roseau/load_flow/tests/data/networks/switch/network_power.json @@ -1,78 +1,78 @@ { - "version": 1, - "grounds": [ + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] + "id": 1, + "phase": "n" } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - } - ], - "branches": [ - { - "id": "switch1", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "Point", - "coordinates": [0.5, 0.0] - } - } - ], - "loads": [ - { - "id": 0, - "bus": 2, - "phases": "abcn", - "powers": [ - [4266.666666666668, 2133.333333333334], - [4266.666675649767, 2133.3333378248835], - [4266.666675649767, 2133.3333378248835] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + } + ], + "branches": [ + { + "id": "switch1", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "Point", + "coordinates": [0.5, 0.0] + } + } + ], + "loads": [ + { + "id": 0, + "bus": 2, + "phases": "abcn", + "powers": [ + [4266.666666666668, 2133.333333333334], + [4266.666675649767, 2133.3333378248835], + [4266.666675649767, 2133.3333378248835] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json b/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json index e471c7a0..fb0bb28f 100644 --- a/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/switch_2/network_impedance.json @@ -1,309 +1,228 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch1", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [1.5, 0.0] - } - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch2", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 5, - "geometry": { - "type": "Point", - "coordinates": [2.5, 0.0] - } - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 4, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 1, - "bus": 5, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 6, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.3282840277126631, - 0.25483745354438536, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.3282840277126631, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.25483745354438536, - 0.3282840277126631, - 0.2893513764966174 - ], - [ - 0.2893513764966174, - 0.2893513764966174, - 0.2893513764966174, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.88384494258988e-08, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 9.88384494258988e-08, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 9.88384494258988e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.2027382804356504e-05 - ], - [ - -1.2027382804356504e-05, - -1.2027382804356504e-05, - -1.2027382804356504e-05, - 0.0001070929347408 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch1", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [1.5, 0.0] + } + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch2", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 5, + "geometry": { + "type": "Point", + "coordinates": [2.5, 0.0] + } + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 4, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 1, + "bus": 5, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 6, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174], + [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [9.88384494258988e-8, 0.0, 0.0, -0.0], + [0.0, 9.88384494258988e-8, 0.0, -0.0], + [0.0, 0.0, 9.88384494258988e-8, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5], + [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/switch_2/network_power.json b/roseau/load_flow/tests/data/networks/switch_2/network_power.json index 34b81719..318d6ae2 100644 --- a/roseau/load_flow/tests/data/networks/switch_2/network_power.json +++ b/roseau/load_flow/tests/data/networks/switch_2/network_power.json @@ -1,309 +1,228 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch1", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [1.5, 0.0] - } - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch2", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 5, - "geometry": { - "type": "Point", - "coordinates": [2.5, 0.0] - } - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 6, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 4, - "phases": "abcn", - "powers": [ - [3974.9996426948624, 1987.4998213474314], - [3974.999651063881, 1987.4998255319404], - [3974.9996510638803, 1987.4998255319404] - ] - }, - { - "id": 1, - "bus": 5, - "phases": "abcn", - "powers": [ - [4046.781785147598, 2023.3908925737978], - [4046.7817936677493, 2023.3908968338749], - [4046.7817936677493, 2023.3908968338735] - ] - }, - { - "id": 2, - "bus": 6, - "phases": "abcn", - "powers": [ - [3974.9996426948665, 1987.4998213474332], - [3974.9996510638844, 1987.4998255319422], - [3974.999651063884, 1987.4998255319417] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.3282840277126631, - 0.25483745354438536, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.3282840277126631, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.25483745354438536, - 0.3282840277126631, - 0.2893513764966174 - ], - [ - 0.2893513764966174, - 0.2893513764966174, - 0.2893513764966174, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.88384494258988e-08, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 9.88384494258988e-08, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 9.88384494258988e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.2027382804356504e-05 - ], - [ - -1.2027382804356504e-05, - -1.2027382804356504e-05, - -1.2027382804356504e-05, - 0.0001070929347408 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch1", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [1.5, 0.0] + } + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch2", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 5, + "geometry": { + "type": "Point", + "coordinates": [2.5, 0.0] + } + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 6, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 4, + "phases": "abcn", + "powers": [ + [3974.9996426948624, 1987.4998213474314], + [3974.999651063881, 1987.4998255319404], + [3974.9996510638803, 1987.4998255319404] + ] + }, + { + "id": 1, + "bus": 5, + "phases": "abcn", + "powers": [ + [4046.781785147598, 2023.3908925737978], + [4046.7817936677493, 2023.3908968338749], + [4046.7817936677493, 2023.3908968338735] + ] + }, + { + "id": 2, + "bus": 6, + "phases": "abcn", + "powers": [ + [3974.9996426948665, 1987.4998213474332], + [3974.9996510638844, 1987.4998255319422], + [3974.999651063884, 1987.4998255319417] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174], + [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [9.88384494258988e-8, 0.0, 0.0, -0.0], + [0.0, 9.88384494258988e-8, 0.0, -0.0], + [0.0, 0.0, 9.88384494258988e-8, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5], + [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json b/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json index 53a91905..6aada42d 100644 --- a/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json +++ b/roseau/load_flow/tests/data/networks/switch_3/network_impedance.json @@ -1,309 +1,228 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch1", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [1.5, 0.0] - } - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch2", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [2.5, 0.0] - } - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 4, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 1, - "bus": 5, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - }, - { - "id": 2, - "bus": 6, - "phases": "abcn", - "impedances": [ - [10.0, 5.0], - [10.0, 5.0], - [10.0, 5.0] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.3282840277126631, - 0.25483745354438536, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.3282840277126631, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.25483745354438536, - 0.3282840277126631, - 0.2893513764966174 - ], - [ - 0.2893513764966174, - 0.2893513764966174, - 0.2893513764966174, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.88384494258988e-08, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 9.88384494258988e-08, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 9.88384494258988e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.2027382804356504e-05 - ], - [ - -1.2027382804356504e-05, - -1.2027382804356504e-05, - -1.2027382804356504e-05, - 0.0001070929347408 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch1", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [1.5, 0.0] + } + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch2", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [2.5, 0.0] + } + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 4, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 1, + "bus": 5, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + }, + { + "id": 2, + "bus": 6, + "phases": "abcn", + "impedances": [ + [10.0, 5.0], + [10.0, 5.0], + [10.0, 5.0] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174], + [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [9.88384494258988e-8, 0.0, 0.0, -0.0], + [0.0, 9.88384494258988e-8, 0.0, -0.0], + [0.0, 0.0, 9.88384494258988e-8, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5], + [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/data/networks/switch_3/network_power.json b/roseau/load_flow/tests/data/networks/switch_3/network_power.json index d95f008c..d22016bc 100644 --- a/roseau/load_flow/tests/data/networks/switch_3/network_power.json +++ b/roseau/load_flow/tests/data/networks/switch_3/network_power.json @@ -1,309 +1,228 @@ { - "version": 1, - "grounds": [ - { - "id": "ground", - "buses": [ - { - "id": 1, - "phase": "n" - } - ] - } - ], - "potential_refs": [ - { - "id": "pref", - "ground": "ground" - } - ], - "buses": [ - { - "id": 1, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [0.0, 0.0] - } - }, - { - "id": 2, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [1.0, 0.0] - } - }, - { - "id": 3, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 0.0] - } - }, - { - "id": 4, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, 1.0] - } - }, - { - "id": 5, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [3.0, 0.0] - } - }, - { - "id": 6, - "phases": "abcn", - "geometry": { - "type": "Point", - "coordinates": [2.0, -1.0] - } - } - ], - "branches": [ - { - "id": "line1", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 1, - "bus2": 2, - "geometry": { - "type": "LineString", - "coordinates": [ - [0.0, 0.0], - [1.0, 0.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch1", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 2, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [1.5, 0.0] - } - }, - { - "id": "line2", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 3, - "bus2": 4, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, 1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - }, - { - "id": "switch2", - "type": "switch", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 5, - "bus2": 3, - "geometry": { - "type": "Point", - "coordinates": [2.5, 0.0] - } - }, - { - "id": "line3", - "type": "line", - "phases1": "abcn", - "phases2": "abcn", - "bus1": 6, - "bus2": 3, - "geometry": { - "type": "LineString", - "coordinates": [ - [2.0, 0.0], - [2.0, -1.0] - ] - }, - "length": 0.5, - "params_id": "A_AL_150_sym_neutral", - "ground": "ground" - } - ], - "loads": [ - { - "id": 0, - "bus": 4, - "phases": "abcn", - "powers": [ - [3974.9996426948624, 1987.4998213474314], - [3974.999651063881, 1987.4998255319404], - [3974.9996510638803, 1987.4998255319404] - ] - }, - { - "id": 1, - "bus": 5, - "phases": "abcn", - "powers": [ - [4046.781785147598, 2023.3908925737978], - [4046.7817936677493, 2023.3908968338749], - [4046.7817936677493, 2023.3908968338735] - ] - }, - { - "id": 2, - "bus": 6, - "phases": "abcn", - "powers": [ - [3974.9996426948665, 1987.4998213474332], - [3974.9996510638844, 1987.4998255319422], - [3974.999651063884, 1987.4998255319417] - ] - } - ], - "sources": [ - { - "id": 1, - "bus": 1, - "phases": "abcn", - "voltages": [ - [230.94010767585033, 0.0], - [-115.47005383792516, -200.00000028072188], - [-115.47005383792516, 200.00000028072188] - ] - } - ], - "lines_params": [ - { - "id": "A_AL_150_sym_neutral", - "model": "zy_neutral", - "z_line": [ - [ - [ - 0.18800000000000003, - 0.0, - 0.0, - 0.0 - ], - [ - 0.0, - 0.18800000000000003, - 0.0, - 0.0 - ], - [ - 0.0, - 0.0, - 0.18800000000000003, - 0.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.4028571428571428 - ] - ], - [ - [ - 0.3282840277126631, - 0.25483745354438536, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.3282840277126631, - 0.25483745354438536, - 0.2893513764966174 - ], - [ - 0.25483745354438536, - 0.25483745354438536, - 0.3282840277126631, - 0.2893513764966174 - ], - [ - 0.2893513764966174, - 0.2893513764966174, - 0.2893513764966174, - 0.3522273635978339 - ] - ] - ], - "y_shunt": [ - [ - [ - 9.88384494258988e-08, - 0.0, - 0.0, - -0.0 - ], - [ - 0.0, - 9.88384494258988e-08, - 0.0, - -0.0 - ], - [ - 0.0, - 0.0, - 9.88384494258988e-08, - -0.0 - ], - [ - -0.0, - -0.0, - -0.0, - 0.0 - ] - ], - [ - [ - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.9258752017915745e-06, - -1.2027382804356504e-05 - ], - [ - -1.9258752017915745e-06, - -1.9258752017915745e-06, - 4.882528301657259e-05, - -1.2027382804356504e-05 - ], - [ - -1.2027382804356504e-05, - -1.2027382804356504e-05, - -1.2027382804356504e-05, - 0.0001070929347408 - ] - ] - ] + "version": 1, + "grounds": [ + { + "id": "ground", + "buses": [ + { + "id": 1, + "phase": "n" } - ], - "transformers_params": [] + ] + } + ], + "potential_refs": [ + { + "id": "pref", + "ground": "ground" + } + ], + "buses": [ + { + "id": 1, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [0.0, 0.0] + } + }, + { + "id": 2, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [1.0, 0.0] + } + }, + { + "id": 3, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 0.0] + } + }, + { + "id": 4, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, 1.0] + } + }, + { + "id": 5, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [3.0, 0.0] + } + }, + { + "id": 6, + "phases": "abcn", + "geometry": { + "type": "Point", + "coordinates": [2.0, -1.0] + } + } + ], + "branches": [ + { + "id": "line1", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 1, + "bus2": 2, + "geometry": { + "type": "LineString", + "coordinates": [ + [0.0, 0.0], + [1.0, 0.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch1", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 2, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [1.5, 0.0] + } + }, + { + "id": "line2", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 3, + "bus2": 4, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, 1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + }, + { + "id": "switch2", + "type": "switch", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 5, + "bus2": 3, + "geometry": { + "type": "Point", + "coordinates": [2.5, 0.0] + } + }, + { + "id": "line3", + "type": "line", + "phases1": "abcn", + "phases2": "abcn", + "bus1": 6, + "bus2": 3, + "geometry": { + "type": "LineString", + "coordinates": [ + [2.0, 0.0], + [2.0, -1.0] + ] + }, + "length": 0.5, + "params_id": "A_AL_150_sym_neutral", + "ground": "ground" + } + ], + "loads": [ + { + "id": 0, + "bus": 4, + "phases": "abcn", + "powers": [ + [3974.9996426948624, 1987.4998213474314], + [3974.999651063881, 1987.4998255319404], + [3974.9996510638803, 1987.4998255319404] + ] + }, + { + "id": 1, + "bus": 5, + "phases": "abcn", + "powers": [ + [4046.781785147598, 2023.3908925737978], + [4046.7817936677493, 2023.3908968338749], + [4046.7817936677493, 2023.3908968338735] + ] + }, + { + "id": 2, + "bus": 6, + "phases": "abcn", + "powers": [ + [3974.9996426948665, 1987.4998213474332], + [3974.9996510638844, 1987.4998255319422], + [3974.999651063884, 1987.4998255319417] + ] + } + ], + "sources": [ + { + "id": 1, + "bus": 1, + "phases": "abcn", + "voltages": [ + [230.94010767585033, 0.0], + [-115.47005383792516, -200.00000028072188], + [-115.47005383792516, 200.00000028072188] + ] + } + ], + "lines_params": [ + { + "id": "A_AL_150_sym_neutral", + "z_line": [ + [ + [0.18800000000000003, 0.0, 0.0, 0.0], + [0.0, 0.18800000000000003, 0.0, 0.0], + [0.0, 0.0, 0.18800000000000003, 0.0], + [0.0, 0.0, 0.0, 0.4028571428571428] + ], + [ + [0.3282840277126631, 0.25483745354438536, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.3282840277126631, 0.25483745354438536, 0.2893513764966174], + [0.25483745354438536, 0.25483745354438536, 0.3282840277126631, 0.2893513764966174], + [0.2893513764966174, 0.2893513764966174, 0.2893513764966174, 0.3522273635978339] + ] + ], + "y_shunt": [ + [ + [9.88384494258988e-8, 0.0, 0.0, -0.0], + [0.0, 9.88384494258988e-8, 0.0, -0.0], + [0.0, 0.0, 9.88384494258988e-8, -0.0], + [-0.0, -0.0, -0.0, 0.0] + ], + [ + [4.882528301657259e-5, -1.9258752017915745e-6, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, 4.882528301657259e-5, -1.9258752017915745e-6, -1.2027382804356504e-5], + [-1.9258752017915745e-6, -1.9258752017915745e-6, 4.882528301657259e-5, -1.2027382804356504e-5], + [-1.2027382804356504e-5, -1.2027382804356504e-5, -1.2027382804356504e-5, 0.0001070929347408] + ] + ] + } + ], + "transformers_params": [] } diff --git a/roseau/load_flow/tests/test_electrical_network.py b/roseau/load_flow/tests/test_electrical_network.py index 00276b07..33331316 100644 --- a/roseau/load_flow/tests/test_electrical_network.py +++ b/roseau/load_flow/tests/test_electrical_network.py @@ -1,4 +1,5 @@ import itertools as it +import re import warnings from contextlib import contextmanager from urllib.parse import urljoin @@ -14,6 +15,7 @@ from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode from roseau.load_flow.models import ( Bus, + FlexibleParameter, Ground, Line, LineParameters, @@ -26,6 +28,7 @@ ) from roseau.load_flow.network import _PHASE_DTYPE, _VOLTAGE_PHASES_DTYPE, ElectricalNetwork from roseau.load_flow.units import Q_ +from roseau.load_flow.utils import console @pytest.fixture() @@ -95,7 +98,7 @@ def single_phase_network() -> ElectricalNetwork: ) -@pytest.fixture +@pytest.fixture() def good_json_results() -> dict: return { "info": { @@ -209,7 +212,7 @@ def test_connect_and_disconnect(): assert load.bus is None with pytest.raises(RoseauLoadFlowException) as e: load.to_dict() - assert e.value.args[0] == "The load 'power load' is disconnected and can not be used anymore." + assert e.value.args[0] == "The load 'power load' is disconnected and cannot be used anymore." assert e.value.args[1] == RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT new_load = PowerLoad(id="power load", phases="abcn", bus=load_bus, powers=[100 + 0j, 100 + 0j, 100 + 0j]) assert new_load.network == en @@ -221,7 +224,7 @@ def test_connect_and_disconnect(): assert vs.bus is None with pytest.raises(RoseauLoadFlowException) as e: vs.to_dict() - assert e.value.args[0] == "The voltage source 'vs' is disconnected and can not be used anymore." + assert e.value.args[0] == "The voltage source 'vs' is disconnected and cannot be used anymore." assert e.value.args[1] == RoseauLoadFlowExceptionCode.DISCONNECTED_ELEMENT # Bad key @@ -242,7 +245,7 @@ def test_connect_and_disconnect(): en._disconnect_element(line) assert ( e.value.msg - == "Line(id='line', phases1='abcn', phases2='abcn', bus1='source', bus2='load bus') is a Line and it can not " + == "Line(id='line', phases1='abcn', phases2='abcn', bus1='source', bus2='load bus') is a Line and it cannot " "be disconnected from a network." ) assert e.value.code == RoseauLoadFlowExceptionCode.BAD_ELEMENT_OBJECT @@ -447,7 +450,7 @@ def test_bad_networks(): # No potential reference bus3 = Bus("bus3", phases="abcn") tp = TransformerParameters( - "t", windings="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 + "t", type="Dyn11", uhv=20000, ulv=400, sn=160 * 1e3, p0=460, i0=2.3 / 100, psc=2350, vsc=4 / 100 ) t = Transformer("transfo", bus2, bus3, parameters=tp) with pytest.raises(RoseauLoadFlowException) as e: @@ -608,17 +611,19 @@ def test_solve_load_flow_error(small_network): # Parse RLF error json_result = {"msg": "toto", "code": "roseau.load_flow.bad_branch_type"} - with requests_mock.Mocker() as m, pytest.raises(RoseauLoadFlowException) as e: + with requests_mock.Mocker() as m: m.post(solve_url, status_code=400, json=json_result, headers={"content-type": "application/json"}) - small_network.solve_load_flow(auth=("", "")) + with pytest.raises(RoseauLoadFlowException) as e: + small_network.solve_load_flow(auth=("", "")) assert e.value.msg == json_result["msg"] assert e.value.code == RoseauLoadFlowExceptionCode.BAD_BRANCH_TYPE # Load flow error (other than official exceptions of RoseauLoadFlowException) json_result = {"msg": "Error while solving the load flow", "code": "load_flow_error"} - with requests_mock.Mocker() as m, pytest.raises(RoseauLoadFlowException) as e: + with requests_mock.Mocker() as m: m.post(solve_url, status_code=400, json=json_result, headers={"content-type": "application/json"}) - small_network.solve_load_flow(auth=("", "")) + with pytest.raises(RoseauLoadFlowException) as e: + small_network.solve_load_flow(auth=("", "")) assert json_result["msg"] in e.value.msg assert e.value.code == RoseauLoadFlowExceptionCode.BAD_REQUEST @@ -854,6 +859,58 @@ def test_single_phase_network(single_phase_network: ElectricalNetwork): ) .set_index(["branch_id", "phase"]), ) + # Lines results + expected_res_lines = ( + pd.DataFrame.from_records( + [ + { + "line_id": "line", + "phase": "b", + "current1": 0.005000025000117603 + 0j, + "current2": -0.005000025000117603 - 0j, + "power1": (19999.94999975 + 0j) * (0.005000025000117603 + 0j).conjugate(), + "power2": (19999.899999499998 + 0j) * (-0.005000025000117603 - 0j).conjugate(), + "potential1": 19999.94999975 + 0j, + "potential2": 19999.899999499998 + 0j, + "series_losses": ( + (19999.94999975 + 0j) * (0.005000025000117603 + 0j).conjugate() + + (19999.899999499998 + 0j) * (-0.005000025000117603 - 0j).conjugate() + ), + "series_current": 0.005000025000117603 + 0j, + }, + { + "line_id": "line", + "phase": "n", + "current1": -0.005000025000125 + 0j, + "current2": 0.005000025000125 - 0j, + "power1": (-0.050000250001249996 + 0j) * (-0.005000025000125 + 0j).conjugate(), + "power2": (0j) * (0.005000025000125 - 0j).conjugate(), + "potential1": -0.050000250001249996 + 0j, + "potential2": 0j, + "series_losses": ( + (-0.050000250001249996 + 0j) * (-0.005000025000125 + 0j).conjugate() + + (0j) * (0.005000025000125 - 0j).conjugate() + ), + "series_current": -0.005000025000125 + 0j, + }, + ] + ) + .astype( + { + "phase": _PHASE_DTYPE, + "current1": complex, + "current2": complex, + "power1": complex, + "power2": complex, + "potential1": complex, + "potential2": complex, + "series_losses": complex, + "series_current": complex, + } + ) + .set_index(["line_id", "phase"]) + ) + pd.testing.assert_frame_equal(single_phase_network.res_lines, expected_res_lines) # Loads results pd.testing.assert_frame_equal( single_phase_network.res_loads, @@ -1211,6 +1268,44 @@ def set_index_dtype(df, dtype): ) assert_frame_equal(small_network.res_potential_refs, expected_res_potential_refs) + # No flexible loads + assert small_network.res_loads_flexible_powers.empty + + # Let's add a flexible load + fp = FlexibleParameter.p_max_u_consumption(u_min=16000, u_down=17000, s_max=1000) + load = small_network.loads["load"] + assert isinstance(load, PowerLoad) + load._flexible_params = [fp, fp, fp] + good_json_results = good_json_results.copy() + good_json_results["loads"][0]["powers"] = [ + [99.99999999999994, 0.0], + [99.99999999999994, 0.0], + [99.99999999999994, 0.0], + ] + small_network.results_from_dict(good_json_results) + expected_res_flex_powers = pd.DataFrame.from_records( + [ + { + "load_id": "load", + "phase": "an", + "power": 99.99999999999994 + 0j, + }, + { + "load_id": "load", + "phase": "bn", + "power": 99.99999999999994 + 0j, + }, + { + "load_id": "load", + "phase": "cn", + "power": 99.99999999999994 + 0j, + }, + ], + index=["load_id", "phase"], + ) + set_index_dtype(expected_res_flex_powers, _VOLTAGE_PHASES_DTYPE) + assert_frame_equal(small_network.res_loads_flexible_powers, expected_res_flex_powers, rtol=1e-4) + def test_solver_warm_start(small_network: ElectricalNetwork, good_json_results): load: PowerLoad = small_network.loads["load"] @@ -1294,3 +1389,154 @@ def json_callback(request, context): assert not small_network._results_valid small_network.solve_load_flow(auth=("", ""), warm_start=True) assert small_network.results_to_dict() == good_json_results + + +def test_short_circuits(): + vn = 400 / np.sqrt(3) + voltages = [vn, vn * np.exp(-2 / 3 * np.pi * 1j), vn * np.exp(2 / 3 * np.pi * 1j)] + bus = Bus("bus", phases="abcn") + bus.add_short_circuit("a", "n") + _ = VoltageSource(id="vs", bus=bus, voltages=voltages) + _ = PotentialRef(id="pref", element=bus) + en = ElectricalNetwork.from_element(initial_bus=bus) + df = pd.DataFrame.from_records( + data=[("bus", "abcn", "an", None)], + columns=["bus_id", "phases", "short_circuit", "ground"], + ) + assert_frame_equal(en.short_circuits_frame, df) + + assert bus.short_circuits + en.clear_short_circuits() + assert not bus.short_circuits + + +def test_catalogue_data(): + # The catalogue data path exists + catalogue_path = ElectricalNetwork.catalogue_path() + assert catalogue_path.exists() + + # Read it and copy it + catalogue_data = ElectricalNetwork.catalogue_data().copy() + + # Iterate over the folder and ensure that the elements are in the catalogue data + error_message = ( + "Something changed in the network catalogue. Please regenerate the Catalogue.json file for the " + "network catalogues by using the python file `scripts/generate_network_catalogue_data.py`." + ) + for p in catalogue_path.glob("*.json"): + if p.stem == "Catalogue": + continue + + # Check that the network exists in the catalogue data + network_name, load_point_name = p.stem.split("_") + assert network_name in catalogue_data, error_message + + # Check the counts + en = ElectricalNetwork.from_json(p) + c_data = catalogue_data[network_name] + assert len(c_data) == 7 + assert c_data["nb_buses"] == len(en.buses) + assert c_data["nb_branches"] == len(en.branches) + assert c_data["nb_loads"] == len(en.loads) + assert c_data["nb_sources"] == len(en.sources) + assert c_data["nb_grounds"] == len(en.grounds) + assert c_data["nb_potential_refs"] == len(en.potential_refs) + + # Check the load point + remaining_load_points: list[str] = c_data["load_points"] + assert load_point_name in remaining_load_points, error_message + remaining_load_points.remove(load_point_name) + if not remaining_load_points: + catalogue_data.pop(network_name) + + # At the end of the process, the copy of the catalogue data should be empty + assert len(catalogue_data) == 0, error_message + + +def test_from_catalogue(): + # Unknown network name + with pytest.raises(RoseauLoadFlowException) as e: + ElectricalNetwork.from_catalogue(name="unknown", load_point_name="winter") + assert ( + e.value.args[0] + == "No network matching the name 'unknown' has been found. Please look at the catalogue using the " + "`print_catalogue` class method." + ) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND + + # Unknown load point name + with pytest.raises(RoseauLoadFlowException) as e: + ElectricalNetwork.from_catalogue(name="MVFeeder004", load_point_name="unknown") + assert ( + e.value.args[0] + == "No load point matching the name 'unknown' has been found for the network 'MVFeeder004'. Available " + "load points are 'Summer', 'Winter'." + ) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_NOT_FOUND + + # Several network name matched + with pytest.raises(RoseauLoadFlowException) as e: + ElectricalNetwork.from_catalogue(name="MVFeeder", load_point_name="winter") + assert e.value.args[0] == ( + "Several networks matching the name 'MVFeeder' have been found: 'MVFeeder004', " + "'MVFeeder011', 'MVFeeder015', 'MVFeeder032', 'MVFeeder041', 'MVFeeder063', 'MVFeeder078', 'MVFeeder115', " + "'MVFeeder128', 'MVFeeder151', 'MVFeeder159', 'MVFeeder176', 'MVFeeder210', 'MVFeeder217', 'MVFeeder232'," + " 'MVFeeder251', 'MVFeeder290', 'MVFeeder312', 'MVFeeder320', 'MVFeeder339'." + ) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND + + # Several load point name matched + with pytest.raises(RoseauLoadFlowException) as e: + ElectricalNetwork.from_catalogue(name="MVFeeder004", load_point_name=r".*") + assert e.value.args[0] == ( + "Several load points matching the name '.*' have been found for the network 'MVFeeder004': 'Summer', 'Winter'." + ) + assert e.value.args[1] == RoseauLoadFlowExceptionCode.CATALOGUE_SEVERAL_FOUND + + # Both known + ElectricalNetwork.from_catalogue(name="MVFeeder004", load_point_name="winter") + + +def test_print_catalogue(): + # Print the entire catalogue + with console.capture() as capture: + ElectricalNetwork.print_catalogue() + assert len(capture.get().split("\n")) == 88 + + # Filter on the network name + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name="MV") + assert len(capture.get().split("\n")) == 48 + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name=re.compile(r"^MV")) + assert len(capture.get().split("\n")) == 48 + + # Filter on the load point name + with console.capture() as capture: + ElectricalNetwork.print_catalogue(load_point_name="winter") + assert len(capture.get().split("\n")) == 88 + with console.capture() as capture: + ElectricalNetwork.print_catalogue(load_point_name=re.compile(r"^Winter")) + assert len(capture.get().split("\n")) == 88 + + # Filter on both + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name="MV", load_point_name="winter") + assert len(capture.get().split("\n")) == 48 + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name="MV", load_point_name=re.compile(r"^Winter")) + assert len(capture.get().split("\n")) == 48 + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name=re.compile(r"^MV"), load_point_name="winter") + assert len(capture.get().split("\n")) == 48 + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name=re.compile(r"^MV"), load_point_name=re.compile(r"^Winter")) + assert len(capture.get().split("\n")) == 48 + + # Regexp error + with console.capture() as capture: + ElectricalNetwork.print_catalogue(name=r"^MV[0-") + assert len(capture.get().split("\n")) == 2 + with console.capture() as capture: + ElectricalNetwork.print_catalogue(load_point_name=r"^winter[0-]") + assert len(capture.get().split("\n")) == 3 diff --git a/roseau/load_flow/units.py b/roseau/load_flow/units.py index eb7be73f..07c774ba 100644 --- a/roseau/load_flow/units.py +++ b/roseau/load_flow/units.py @@ -11,15 +11,32 @@ .. _pint: https://pint.readthedocs.io/en/stable/getting/overview.html """ -from pint import UnitRegistry +from collections.abc import Callable, Iterable +from typing import TYPE_CHECKING, TypeVar, Union -ureg = UnitRegistry( +from pint import Unit, UnitRegistry +from pint.facets.plain import PlainQuantity +from typing_extensions import TypeAlias + +T = TypeVar("T") +FuncT = TypeVar("FuncT", bound=Callable) + +ureg: UnitRegistry = UnitRegistry( preprocessors=[ lambda s: s.replace("%", " percent "), ] ) -Q_ = ureg.Quantity +if TYPE_CHECKING: + Q_: TypeAlias = PlainQuantity[T] +else: + Q_ = ureg.Quantity + Q_.__class_getitem__ = lambda cls, *args: cls + -# Define the percent unit -ureg.define("percent = 0.01 = %") +def ureg_wraps( + ret: Union[str, Unit, None, Iterable[Union[str, Unit, None]]], + args: Union[str, Unit, None, Iterable[Union[str, Unit, None]]], + strict: bool = True, +) -> Callable[[FuncT], FuncT]: + return ureg.wraps(ret, args, strict) diff --git a/roseau/load_flow/utils/__init__.py b/roseau/load_flow/utils/__init__.py index 3dcc783c..99e7cb65 100644 --- a/roseau/load_flow/utils/__init__.py +++ b/roseau/load_flow/utils/__init__.py @@ -1,9 +1,10 @@ """ This module contains utility classes and functions for Roseau Load Flow. """ +from roseau.load_flow.utils.console import console from roseau.load_flow.utils.constants import CX, DELTA_P, EPSILON_0, EPSILON_R, MU_0, MU_R, OMEGA, PI, RHO, TAN_D, F -from roseau.load_flow.utils.mixins import Identifiable, JsonMixin -from roseau.load_flow.utils.types import BranchType, ConductorType, InsulationType, LineModel, LineType, TransformerType +from roseau.load_flow.utils.mixins import CatalogueMixin, Identifiable, JsonMixin +from roseau.load_flow.utils.types import ConductorType, InsulatorType, LineType __all__ = [ # Constants @@ -21,11 +22,11 @@ # Mixins "Identifiable", "JsonMixin", + "CatalogueMixin", # Types "LineType", - "LineModel", "ConductorType", - "InsulationType", - "BranchType", - "TransformerType", + "InsulatorType", + # Console + "console", ] diff --git a/roseau/load_flow/utils/console.py b/roseau/load_flow/utils/console.py new file mode 100644 index 00000000..a9463afd --- /dev/null +++ b/roseau/load_flow/utils/console.py @@ -0,0 +1,3 @@ +from rich.console import Console + +console = Console() diff --git a/roseau/load_flow/utils/constants.py b/roseau/load_flow/utils/constants.py index a0802302..eae33041 100644 --- a/roseau/load_flow/utils/constants.py +++ b/roseau/load_flow/utils/constants.py @@ -1,16 +1,16 @@ import numpy as np from roseau.load_flow.units import Q_ -from roseau.load_flow.utils.types import ConductorType, InsulationType, LineType +from roseau.load_flow.utils.types import ConductorType, InsulatorType, LineType PI = np.pi """The famous constant :math:`\\pi`.""" -MU_0 = Q_(4 * PI * 1e-7, "H/m") -"""magnetic permeability of the vacuum (H/m).""" +MU_0 = Q_(1.25663706212e-6, "H/m") +"""Magnetic permeability of the vacuum (H/m).""" -EPSILON_0 = Q_(1e-9 / (36 * PI), "F/m") -"""Relative permittivity of the vacuum (F/m).""" +EPSILON_0 = Q_(8.8541878128e-12, "F/m") +"""Permittivity of the vacuum (F/m).""" F = Q_(50.0, "Hz") """Network frequency :math:`=50` (Hz).""" @@ -25,7 +25,7 @@ ConductorType.AA: Q_(4.0587e-8, "ohm*m"), ConductorType.LA: Q_(3.26e-8, "ohm*m"), } -"""Resistivity of certain conductor materials (ohm.m).""" +"""Resistivity of common conductor materials (ohm.m).""" CX = { LineType.OVERHEAD: Q_(0.35, "ohm/km"), @@ -41,7 +41,7 @@ ConductorType.AA: np.nan, # TODO ConductorType.LA: np.nan, # TODO } -"""Magnetic permeability of certain conductor materials (H/m).""" +"""Magnetic permeability of common conductor materials (H/m).""" DELTA_P = { ConductorType.CU: Q_(9.3, "mm"), @@ -50,22 +50,22 @@ ConductorType.AA: np.nan, # TODO ConductorType.LA: np.nan, # TODO } -"""Skin effect of certain conductor materials (mm).""" +"""Skin effect of common conductor materials (mm).""" TAN_D = { - InsulationType.PVC: Q_(600e-4), - InsulationType.HDPE: Q_(6e-4), - InsulationType.LDPE: Q_(6e-4), - InsulationType.PEX: Q_(30e-4), - InsulationType.EPR: Q_(125e-4), + InsulatorType.PVC: Q_(600e-4), + InsulatorType.HDPE: Q_(6e-4), + InsulatorType.LDPE: Q_(6e-4), + InsulatorType.PEX: Q_(30e-4), + InsulatorType.EPR: Q_(125e-4), } -"""Loss angles of certain insulation materials.""" +"""Loss angles of common insulator materials.""" EPSILON_R = { - InsulationType.PVC: Q_(6.5), - InsulationType.HDPE: Q_(2.3), - InsulationType.LDPE: Q_(2.2), - InsulationType.PEX: Q_(2.5), - InsulationType.EPR: Q_(3.1), + InsulatorType.PVC: Q_(6.5), + InsulatorType.HDPE: Q_(2.3), + InsulatorType.LDPE: Q_(2.2), + InsulatorType.PEX: Q_(2.5), + InsulatorType.EPR: Q_(3.1), } -"""Relative permittivity of certain insulation materials.""" +"""Relative permittivity of common insulator materials.""" diff --git a/roseau/load_flow/utils/mixins.py b/roseau/load_flow/utils/mixins.py index 79bf141a..6e5c82d7 100644 --- a/roseau/load_flow/utils/mixins.py +++ b/roseau/load_flow/utils/mixins.py @@ -3,7 +3,7 @@ import re from abc import ABCMeta, abstractmethod from pathlib import Path -from typing import Any +from typing import Generic, TypeVar from typing_extensions import Self @@ -12,6 +12,8 @@ logger = logging.getLogger(__name__) +_T = TypeVar("_T") + class Identifiable(metaclass=ABCMeta): """An identifiable object.""" @@ -32,7 +34,7 @@ class JsonMixin(metaclass=ABCMeta): @classmethod @abstractmethod - def from_dict(cls, data: JsonDict, *args: Any) -> Self: + def from_dict(cls, data: JsonDict) -> Self: """Create an element from a dictionary.""" raise NotImplementedError @@ -51,8 +53,13 @@ def from_json(cls, path: StrPath) -> Self: return cls.from_dict(data=data) @abstractmethod - def to_dict(self) -> JsonDict: - """Return the element information as a dictionary format.""" + def to_dict(self, include_geometry: bool = True) -> JsonDict: + """Return the element information as a dictionary format. + + Args: + include_geometry: + If False, the geometry will not be added to the result dictionary. + """ raise NotImplementedError def to_json(self, path: StrPath) -> Path: @@ -75,7 +82,7 @@ def to_json(self, path: StrPath) -> Path: The expanded and resolved path of the written file. """ res = self.to_dict() - output = json.dumps(res, ensure_ascii=False, indent=4) + output = json.dumps(res, ensure_ascii=False, indent=2) output = re.sub(r"\[\s+(.*),\s+(.*)\s+]", r"[\1, \2]", output) if not output.endswith("\n"): output += "\n" @@ -136,3 +143,42 @@ def results_from_json(self, path: StrPath) -> None: """ data = json.loads(Path(path).read_text()) self.results_from_dict(data) + + +class CatalogueMixin(Generic[_T], metaclass=ABCMeta): + """A mixin class for objects which can be built from a catalogue. It adds the `from_catalogue` class method.""" + + @classmethod + @abstractmethod + def catalogue_path(cls) -> Path: + """Get the path to the catalogue.""" + raise NotImplementedError + + @classmethod + @abstractmethod + def catalogue_data(cls) -> _T: + """Get the catalogue data.""" + raise NotImplementedError + + @classmethod + @abstractmethod + def from_catalogue(cls, **kwargs) -> Self: + """Build an instance from the catalogue. + + Keyword Args: + Arguments that can be used to select the options of the instance to create. + + Returns: + The instance of the selected object. + """ + raise NotImplementedError + + @classmethod + @abstractmethod + def print_catalogue(cls, **kwargs) -> None: + """Print the catalogue. + + Keyword Args: + Arguments that can be used to filter the printed part of the catalogue. + """ + raise NotImplementedError diff --git a/roseau/load_flow/utils/tests/test_constants.py b/roseau/load_flow/utils/tests/test_constants.py index f50df1fa..db6fbfdc 100644 --- a/roseau/load_flow/utils/tests/test_constants.py +++ b/roseau/load_flow/utils/tests/test_constants.py @@ -1,5 +1,5 @@ from roseau.load_flow.utils.constants import DELTA_P, EPSILON_R, MU_R, RHO, TAN_D -from roseau.load_flow.utils.types import ConductorType, InsulationType +from roseau.load_flow.utils.types import ConductorType, InsulatorType def test_constants(): @@ -8,8 +8,8 @@ def test_constants(): assert x in RHO assert x in DELTA_P - for x in InsulationType: - if x == InsulationType.UNKNOWN: + for x in InsulatorType: + if x == InsulatorType.UNKNOWN: continue assert x in TAN_D assert x in EPSILON_R diff --git a/roseau/load_flow/utils/tests/test_types.py b/roseau/load_flow/utils/tests/test_types.py index 3fba5548..5e0b7f31 100644 --- a/roseau/load_flow/utils/tests/test_types.py +++ b/roseau/load_flow/utils/tests/test_types.py @@ -1,15 +1,9 @@ import pytest from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode -from roseau.load_flow.utils.types import ConductorType, InsulationType, LineModel, LineType, TransformerType +from roseau.load_flow.utils.types import ConductorType, InsulatorType, LineType -TYPES = [ - ConductorType, - InsulationType, - LineModel, - LineType, - TransformerType, -] +TYPES = [ConductorType, InsulatorType, LineType] TYPES_IDS = [x.__name__ for x in TYPES] @@ -38,9 +32,9 @@ def test_line_type(): assert LineType.from_string("Torsade") == LineType.TWISTED -def test_insulation_type(): - assert InsulationType.from_string("") == InsulationType.UNKNOWN - assert InsulationType.from_string("nan") == InsulationType.UNKNOWN +def test_insulator_type(): + assert InsulatorType.from_string("") == InsulatorType.UNKNOWN + assert InsulatorType.from_string("nan") == InsulatorType.UNKNOWN def test_conductor_type(): @@ -52,110 +46,3 @@ def test_conductor_type(): ConductorType.from_string("nan") assert "cannot be converted into a ConductorType" in e.value.args[0] assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_CONDUCTOR_TYPE - - -def test_transformer_type(): - valid_windings = ("y", "yn", "z", "zn", "d") - valid_phase_displacements = (0, 5, 6, 11) - valid_types = {"dd", "yy", "yny", "yyn", "ynyn", "dz", "dzn", "dy", "dyn", "yd", "ynd", "yz", "ynz", "yzn", "ynzn"} - valid_full_types = { - "dd0", - "dd6", - "yy0", - "yy6", - "yny0", - "yny6", - "yyn0", - "yyn6", - "ynyn0", - "ynyn6", - "dz0", - "dz6", - "dzn0", - "dzn6", - "dy5", - "dy11", - "dyn5", - "dyn11", - "yd5", - "yd11", - "ynd5", - "ynd11", - "yz5", - "yz11", - "ynz5", - "ynz11", - "yzn5", - "yzn11", - "ynzn5", - "ynzn11", - } - - for winding1 in valid_windings: - for winding2 in valid_windings: - t = f"{winding1}{winding2}" - if t in valid_types: - assert not TransformerType.validate_windings(t) - w1, w2, p = TransformerType.extract_windings(t) - assert w1 == winding1.upper() - assert w2 == winding2 - assert p is None - for phase_displacement in valid_phase_displacements: - t = f"{winding1}{winding2}{phase_displacement}" - if t in valid_full_types: - assert TransformerType.validate_windings(t) - w1, w2, p = TransformerType.extract_windings(t) - assert w1 == winding1.upper() - assert w2 == winding2 - assert p == phase_displacement - else: - assert not TransformerType.validate_windings(t) - with pytest.raises(RoseauLoadFlowException) as e: - TransformerType.extract_windings(t) - assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS - else: - assert not TransformerType.validate_windings(t) - with pytest.raises(RoseauLoadFlowException): - TransformerType.extract_windings(t) - assert e.value.args[1] == RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS - - for x in TransformerType: - s = str(x) - w1, w2, phase_displacement = TransformerType.extract_windings(s) - assert f"{w1}{w2}" == s - assert phase_displacement is None - - -def test_line_model(): - assert LineModel.from_string("") == LineModel.UNKNOWN - assert LineModel.from_string("nan") == LineModel.UNKNOWN - - # With neutral - with_neutral = LineModel.with_neutral() - without_neutral = LineModel.without_neutral() - for x in LineModel: - if x == LineModel.UNKNOWN: - assert x not in without_neutral - assert x not in with_neutral - continue - if x in (LineModel.LV_EXACT, LineModel.ZY_NEUTRAL, LineModel.Z_NEUTRAL, LineModel.SYM_NEUTRAL): - assert x in with_neutral - assert x not in without_neutral - else: - assert x not in with_neutral - assert x in without_neutral - - # With Shunt - with_shunt = LineModel.with_shunt() - without_shunt = LineModel.without_shunt() - for x in LineModel: - if x == LineModel.UNKNOWN: - assert x not in without_shunt - assert x not in with_shunt - continue - if x in (LineModel.LV_EXACT, LineModel.SYM, LineModel.SYM_NEUTRAL, LineModel.ZY, LineModel.ZY_NEUTRAL): - assert x in with_shunt - assert x not in without_shunt - else: - assert x not in with_shunt - assert x in without_shunt diff --git a/roseau/load_flow/utils/types.py b/roseau/load_flow/utils/types.py index 9c298c18..5e2f8be0 100644 --- a/roseau/load_flow/utils/types.py +++ b/roseau/load_flow/utils/types.py @@ -1,8 +1,6 @@ import logging from enum import Enum, auto, unique -from typing import Optional -import regex from typing_extensions import Self from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode @@ -63,9 +61,9 @@ def code(self) -> str: The code of the enumerated value. """ if self == LineType.OVERHEAD: - return "A" + return "O" elif self == LineType.UNDERGROUND: - return "S" + return "U" elif self == LineType.TWISTED: return "T" else: # pragma: no cover @@ -74,6 +72,10 @@ def code(self) -> str: raise NotImplementedError(msg) +# Add the list of codes for each line type +LineType.CODES = {LineType.OVERHEAD: {"A", "O"}, LineType.UNDERGROUND: {"U", "S"}, LineType.TWISTED: {"T"}} + + @unique class ConductorType(Enum): """The type of conductor.""" @@ -151,40 +153,40 @@ def code(self) -> str: @unique -class InsulationType(Enum): - """The type of the insulation for a wire.""" +class InsulatorType(Enum): + """The type of the insulator for a wire.""" UNKNOWN = auto() - """The insulation of the conductor is made with unknown material.""" + """The insulator of the conductor is made with unknown material.""" HDPE = auto() - """The insulation of the conductor is made with High-Density PolyEthylene.""" + """The insulator of the conductor is made with High-Density PolyEthylene.""" LDPE = auto() - """The insulation of the conductor is made with Low-Density PolyEthylene.""" + """The insulator of the conductor is made with Low-Density PolyEthylene.""" PEX = auto() - """The insulation of the conductor is made with Cross-linked polyethylene.""" + """The insulator of the conductor is made with Cross-linked polyethylene.""" EPR = auto() - """The insulation of the conductor is made with Ethylene-Propylene Rubber.""" + """The insulator of the conductor is made with Ethylene-Propylene Rubber.""" PVC = auto() - """The insulation of the conductor is made with PolyVinyl Chloride.""" + """The insulator of the conductor is made with PolyVinyl Chloride.""" def __str__(self) -> str: - """Print a `InsulationType` + """Print a `InsulatorType` Returns: - A printable string of the insulation type. + A printable string of the insulator type. """ return self.name.upper() @classmethod def from_string(cls, string: str) -> Self: - """Convert a string into a InsulationType + """Convert a string into a InsulatorType Args: string: The string to convert Returns: - The corresponding InsulationType. + The corresponding InsulatorType. """ if string.lower() in ("", "unknown", "nan"): return cls.UNKNOWN @@ -199,277 +201,6 @@ def from_string(cls, string: str) -> Self: elif string == "PVC": return cls.PVC else: - msg = f"The string {string!r} cannot be converted into a InsulationType." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_INSULATION_TYPE) - - -@unique -class LineModel(Enum): - """An enumerated class for the different line models.""" - - UNKNOWN = auto() - """The line is modelled through an unknown model.""" - LV_EXACT = auto() - """The line is modelled through the position of the wire (with neutral). Some hypothesis limit this model to - low voltages lines.""" - SYM = auto() - """The line is modelled using a symmetric model (without neutral).""" - SYM_NEUTRAL = auto() - """The line is modelled using a symmetric model (with neutral).""" - ZY = auto() - """The line is modelled using two 3x3 matrices (shunt admittance and line impedance, without neutral).""" - ZY_NEUTRAL = auto() - """The line is modelled using two 4x4 matrices (shunt admittance and line impedance, with neutral).""" - Z = auto() - """The line is modelled using a single 3x3 matrices (line impedance, without neutral).""" - Z_NEUTRAL = auto() - """The line is modelled using a single 4x4 matrices (line impedance, with neutral).""" - - def __str__(self) -> str: - """Print a `LineModel` - - Returns: - A printable string of the names of line model. - """ - return self.name.lower() - - @classmethod - def from_string(cls, string: str) -> Self: - """Convert a string into a LineModel - - Args: - string: - The string to convert - - Returns: - The corresponding LineModel. - """ - string = string.lower() - if string == "lv_exact": - return cls.LV_EXACT - elif string == "sym": - return cls.SYM - elif string == "sym_neutral": - return cls.SYM_NEUTRAL - elif string == "zy": - return cls.ZY - elif string == "zy_neutral": - return cls.ZY_NEUTRAL - elif string == "z": - return cls.Z - elif string == "z_neutral": - return cls.Z_NEUTRAL - elif string in ("", "nan", "unknown"): - return cls.UNKNOWN - else: - msg = f"The string {string!r} cannot be converted into a LineModel." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_LINE_MODEL) - - @classmethod - def with_neutral(cls) -> tuple["LineModel", ...]: - """Give the tuple of the line models which support the neutral. - - Returns: - The tuple of line models which support the neutral. - """ - return cls.SYM_NEUTRAL, cls.Z_NEUTRAL, cls.ZY_NEUTRAL, cls.LV_EXACT - - @classmethod - def without_neutral(cls) -> tuple["LineModel", ...]: - """Give the tuple of the line models which do not support the neutral. - - Returns: - The tuple of line models which do not support the neutral. - """ - return cls.SYM, cls.Z, cls.ZY - - @classmethod - def with_shunt(cls) -> tuple["LineModel", ...]: - """Give the tuple of the line models which support the shunt. - - Returns: - The tuple of line models which supports the shunt. - """ - return cls.LV_EXACT, cls.SYM, cls.SYM_NEUTRAL, cls.ZY, cls.ZY_NEUTRAL - - @classmethod - def without_shunt(cls) -> tuple["LineModel", ...]: - """Give the tuple of the line models which do not support the shunt. - - Returns: - The tuple of line models which do not support the shunt. - """ - return cls.Z_NEUTRAL, cls.Z - - -@unique -class BranchType(Enum): - """The type of 'line' in a network.""" - - LINE = auto() - """The branch is a regular line.""" - TRANSFORMER = auto() - """The branch is a regular transformer.""" - SWITCH = auto() - """The branch is a regular switch.""" - - def __str__(self) -> str: - """Print a `BranchType`. - - Returns: - A printable string of the connection type. - """ - return self.name.lower() - - @classmethod - def from_string(cls, string: str) -> Self: - """Convert a string into a ConnectionType - - Args: - string: - The string to convert - - Returns: - The corresponding ConnectionType. - """ - if string == "line": - return cls.LINE - elif string == "transformer": - return cls.TRANSFORMER - elif string == "switch": - return cls.SWITCH - else: - msg = f"The string {string!r} cannot be converted into a BranchType." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_BRANCH_TYPE) - - -EXTRACT_WINDINGS_RE = regex.compile( - "(?(DEFINE)(?Pyn?)(?Pd)(?Pzn?)(?P[06])" - "(?P5|11))" - "" - "(?|(?P(?&y_winding))(?P(?&y_winding))(?P

(?&p_set_1)?)" # yy - "|(?P(?&y_winding))(?P(?&d_winding))(?P

(?&p_set_2)?)" # yd - "|(?P(?&y_winding))(?P(?&z_winding))(?P

(?&p_set_2)?)" # yz - "|(?P(?&d_winding))(?P(?&z_winding))(?P

(?&p_set_1)?)" # dz - "|(?P(?&d_winding))(?P(?&y_winding))(?P

(?&p_set_2)?)" # dy - "|(?P(?&d_winding))(?P(?&d_winding))(?P

(?&p_set_1)?))", # dd - regex.IGNORECASE, -) -"""The pattern to extract the winding of the primary and of the secondary of the transformer.""" - - -@unique -class TransformerType(Enum): - """The type of transformer.""" - - Yy = auto() - """A Wye-Wye transformer without neutral connected to the rest of the network.""" - YNy = auto() - """A Wye-Wye transformer with a neutral connected to the network on the first winding.""" - YNyn = auto() - """A Wye-Wye transformer with a neutral connected to the network on the two windings.""" - Yyn = auto() - """A Wye-Wye transformer with a neutral connected to the network on the second winding.""" - Dz = auto() - """A Delta-Zigzag transformer without neutral connected to the rest of the network.""" - Dzn = auto() - """A Delta-Zigzag transformer with a neutral connected to the network on the second winding.""" - Dy = auto() - """A Delta-Wye transformer without neutral connected to the rest of the network.""" - Dyn = auto() - """A Delta-Wye transformer with a neutral connected to the network on the second winding.""" - Yz = auto() - """A Wye-Zigzag transformer without neutral connected to the rest of the network.""" - YNz = auto() - """A Wye-Zigzag transformer with a neutral connected to the network on the first winding.""" - YNzn = auto() - """A Wye-Zigzag transformer with a neutral connected to the network on the two windings.""" - Yzn = auto() - """A Wye-Zigzag transformer with a neutral connected to the network on the second winding.""" - Yd = auto() - """A Wye-Delta transformer without neutral connected to the rest of the network.""" - YNd = auto() - """A Wye-Delta transformer with a neutral connected to the network on the first winding.""" - Dd = auto() - """A Delta-Delta transformer without neutral connected to the rest of the network.""" - - def __str__(self) -> str: - """Print a `TransformerType` - - Returns: - A printable string of the transformer type. - """ - return self.name - - @classmethod - def from_string(cls, string: str) -> Self: - """Convert a string into a TransformerType - - Args: - string: - The string to convert - - Returns: - The corresponding TransformerType - """ - winding1, winding2, phase_displacement = cls.extract_windings(string=string) - try: - return getattr(cls, f"{winding1}{winding2}") - except AttributeError: - msg = f"The string {string!r} cannot be converted into a TransformerType." - logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_TYPE) from None - - @property - def windings(self) -> tuple[str, str]: - """Retrieve the windings and the phase displacement of the current - - Returns: - The high voltages winding and the low voltages winding. - """ - winding1, winding2, phase_displacement = self.extract_windings(str(self)) - return winding1, winding2 - - @classmethod - def validate_windings(cls, string: str) -> bool: - """Validate the windings of the high and low voltages sides - - Args: - string: - A string depicting a winding - - Returns: - True if the provided string corresponds to valid transformer windings. - """ - try: - match = EXTRACT_WINDINGS_RE.fullmatch(string=string) - return bool(match) and bool(match.group("p")) - except Exception: - return False - - @classmethod - def extract_windings(cls, string: str) -> tuple[str, str, Optional[int]]: - """Extract the windings of the high and low voltages sides - - Args: - string: - A string depicting a winding - - Returns: - The high voltages winding, the low voltages winding, and the phase displacement. - """ - match = EXTRACT_WINDINGS_RE.fullmatch(string=string) - if match: - groups = match.groupdict() - winding1, winding2, phase_displacement = groups["w1"], groups["w2"], groups["p"] - if phase_displacement: - return winding1.upper(), winding2.lower(), int(phase_displacement) - else: - return winding1.upper(), winding2.lower(), None - else: - msg = f"Transformer windings cannot be extracted from the string {string!r}." + msg = f"The string {string!r} cannot be converted into a InsulatorType." logger.error(msg) - raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_TRANSFORMER_WINDINGS) + raise RoseauLoadFlowException(msg=msg, code=RoseauLoadFlowExceptionCode.BAD_INSULATOR_TYPE) diff --git a/scripts/generate_network_catalogue_data.py b/scripts/generate_network_catalogue_data.py new file mode 100644 index 00000000..dce8f7ee --- /dev/null +++ b/scripts/generate_network_catalogue_data.py @@ -0,0 +1,30 @@ +"""Generate the catalogue data of the networks folder. This json file contains some statistics on the available +networks.""" +import json +from pathlib import Path + +from roseau.load_flow import ElectricalNetwork + +if __name__ == "__main__": + catalogue_path = (Path(__file__).parents[1] / "roseau" / "load_flow" / "data" / "networks").expanduser().absolute() + network_data = {} + for p in catalogue_path.glob("*.json"): + if p.stem == "Catalogue": + continue + + network_name, load_point = p.stem.split("_") + if network_name in network_data: + network_data[network_name]["load_points"].append(load_point) + else: + en = ElectricalNetwork.from_json(p) + network_data[network_name] = { + "nb_buses": len(en.buses), + "nb_branches": len(en.branches), + "nb_loads": len(en.loads), + "nb_sources": len(en.sources), + "nb_grounds": len(en.grounds), + "nb_potential_refs": len(en.potential_refs), + "load_points": [load_point], + } + network_data = dict(sorted(network_data.items())) + (catalogue_path / "Catalogue.json").write_text(json.dumps(obj=network_data, indent=4)) diff --git a/scripts/generate_transformer_parameters_catalogue.py b/scripts/generate_transformer_parameters_catalogue.py new file mode 100644 index 00000000..1f6f6336 --- /dev/null +++ b/scripts/generate_transformer_parameters_catalogue.py @@ -0,0 +1,45 @@ +"""Generate the catalogue of transformers from the CSV file of transformers.""" +from pathlib import Path + +import numpy as np +import pandas as pd + +from roseau.load_flow import Q_, TransformerParameters + +if __name__ == "__main__": + catalogue_path = ( + (Path(__file__).parents[1] / "roseau" / "load_flow" / "data" / "transformers").expanduser().absolute() + ) + catalogue_data_path = catalogue_path / "Catalogue.csv" + df = pd.read_csv(catalogue_data_path) + + for idx in df.index: + id = df.at[idx, "id"] + manufacturer = df.at[idx, "manufacturer"] + range = df.at[idx, "range"] + efficiency = df.at[idx, "efficiency"] + destination_path = catalogue_path / manufacturer / range / efficiency + destination_path.mkdir(exist_ok=True, parents=True) + + # Get parameters + uhv = Q_(df.at[idx, "uhv"], "V") # Phase-to-phase nominal voltages of the high voltages side + ulv = Q_(df.at[idx, "ulv"], "V") # Phase-to-phase nominal voltages of the low voltages side + sn = Q_(df.at[idx, "sn"], "VA") # Nominal power + i0 = Q_(np.round(df.at[idx, "i0"], decimals=3), "") # Current during off-load test + p0 = Q_(df.at[idx, "p0"], "W") # Losses during off-load test + psc = Q_(df.at[idx, "psc"], "W") # Losses during short-circuit test + vsc = Q_(df.at[idx, "vsc"], "") # Voltages on LV side during short-circuit test + type = df.at[idx, "type"] + + # Check the canonical name + sn_kva = int(sn.m_as("kVA")) + assert id == f"{manufacturer}_{range}_{efficiency}_{sn_kva}kVA" + + # Generate transformer parameters + tp = TransformerParameters(id=id, type=type, uhv=uhv, ulv=ulv, sn=sn, p0=p0, i0=i0, psc=psc, vsc=vsc) + res = tp.to_zyk() + assert all(pd.notna(x) for x in res), id + tp.to_json(destination_path / f"{sn_kva}.json") + + # Sort the catalogue and write it + df.sort_values(by=["manufacturer", "range", "efficiency", "sn"]).to_csv(catalogue_data_path, index=False) diff --git a/scripts/network_files_upgrade.py b/scripts/network_files_upgrade.py index 550d17de..1aa757d7 100644 --- a/scripts/network_files_upgrade.py +++ b/scripts/network_files_upgrade.py @@ -5,17 +5,17 @@ from roseau.load_flow import ElectricalNetwork, RoseauLoadFlowException PROJECT_ROOT = Path(__file__).parent.parent -DATA_DIR = PROJECT_ROOT / "roseau" / "load_flow" / "tests" / "data" -DOC_DATA_DIR = PROJECT_ROOT / "doc" / "notebooks" / "data" +TEST_DATA_DIR = PROJECT_ROOT / "roseau" / "load_flow" / "tests" / "data" +DATA_DIR = PROJECT_ROOT / "roseau" / "load_flow" / "data" / "networks" def all_network_paths() -> Generator[Path, None, None]: # Test networks - yield from (DATA_DIR / "networks").glob("**/network*.json") + yield from (TEST_DATA_DIR / "networks").glob("**/network*.json") # Benchmark networks - yield from (DATA_DIR / "benchmark").glob("**/network*.json") - # Documentation networks - yield from DOC_DATA_DIR.glob("*.json") + yield from (TEST_DATA_DIR / "benchmark").glob("**/network*.json") + # Package data + yield from DATA_DIR.glob("[!Catalogue]*.json") def upgrade_network(path: Path) -> None: @@ -37,7 +37,7 @@ def update_bad_transformer_id(path: Path) -> None: if __name__ == "__main__": # from roseau.load_flow import AbstractLoad, VoltageSource - + # # # Allow floating neutral otherwise the upgrade will fail for some files # AbstractLoad._floating_neutral_allowed = True # VoltageSource._floating_neutral_allowed = True diff --git a/scripts/plot_network_catalogue.py b/scripts/plot_network_catalogue.py new file mode 100644 index 00000000..1f1c6e4b --- /dev/null +++ b/scripts/plot_network_catalogue.py @@ -0,0 +1,164 @@ +import folium +import pandas as pd + +from roseau.load_flow import ElectricalNetwork + + +def buses_style_function(feature): + if feature["properties"]["id"].startswith("HVMV"): # HV/MV substation + return { + "fill": True, + "fillColor": "#000000", + "color": "#000000", + "fillOpacity": 1, + "radius": 7, + } + elif feature["properties"]["id"].startswith("MVLV"): # MV/LV substations + return { + "fill": True, + "fillColor": "#234e83", + "color": "#234e83", + "fillOpacity": 1, + "radius": 5, + } + elif feature["properties"]["id"].startswith("MV"): # MV buses + return { + "fill": True, + "fillColor": "#234e83", + "color": "#234e83", + "fillOpacity": 1, + "radius": 3, + } + else: # LV buses + return { + "fill": True, + "fillColor": "#adb9cb", + "color": "#adb9cb", + "fillOpacity": 1, + "radius": 1, + } + + +def buses_highlight_function(feature): + return {"color": "#cad40e", "fillColor": "#cad40e"} + + +buses_tooltip = folium.GeoJsonTooltip( + fields=["id", "phases"], + aliases=["Id:", "Phases:"], + localize=True, + sticky=False, + labels=True, + max_width=800, +) + + +def branches_style_function(feature): + if feature["properties"]["branch_type"] == "line": + if feature["properties"]["network"].startswith("MV"): + return {"color": "#234e83", "weight": 4} + else: + return {"color": "#adb9cb", "weight": 2} + else: + # feature["properties"]["branch_type"] in ("transformer", "switch") + return {"opacity": 0} + + +def branches_highlight_function(feature): + return {"color": "#cad40e"} + + +branches_tooltip = folium.GeoJsonTooltip( + fields=["id", "branch_type", "bus1_id", "bus2_id"], + aliases=["Id:", "Type:", "Bus1:", "Bus2:"], + localize=True, + sticky=False, + labels=True, + max_width=800, +) + + +if __name__ == "__main__": + catalogue_data = ElectricalNetwork.catalogue_data() + aggregated_buses_gdf_list = [] + aggregated_branches_gdf_list = [] + for network_name in catalogue_data: + # Read the network data + en = ElectricalNetwork.from_catalogue(name=network_name, load_point_name="Winter") + buses_gdf = en.buses_frame.reset_index() + branches_gdf = en.branches_frame.reset_index() + buses_gdf["network"] = network_name + branches_gdf["network"] = network_name + + # Create the map + zoom_start = 12 if network_name.startswith("MV") else 16 + m = folium.Map(location=list(reversed(buses_gdf.unary_union.centroid.coords[0])), zoom_start=zoom_start) + folium.GeoJson( + branches_gdf, + name="branches", + marker=folium.CircleMarker(), + style_function=branches_style_function, + highlight_function=branches_highlight_function, + tooltip=branches_tooltip, + ).add_to(m) + folium.GeoJson( + buses_gdf, + name="buses", + marker=folium.CircleMarker(), + style_function=buses_style_function, + highlight_function=buses_highlight_function, + tooltip=buses_tooltip, + ).add_to(m) + folium.LayerControl().add_to(m) + + # Save the map + m.save(f"{network_name}.html") + + # Aggregate the data frame + aggregated_buses_gdf_list.append(buses_gdf) + aggregated_branches_gdf_list.append(branches_gdf) + + # Create the global map + buses_gdf = pd.concat(aggregated_buses_gdf_list, ignore_index=True) + branches_gdf = pd.concat(aggregated_branches_gdf_list, ignore_index=True) + + # Update the tooltips + buses_tooltip = folium.GeoJsonTooltip( + fields=["network", "id", "phases"], + aliases=["Network:", "Id:", "Phases:"], + localize=True, + sticky=False, + labels=True, + max_width=800, + ) + branches_tooltip = folium.GeoJsonTooltip( + fields=["network", "id", "branch_type", "bus1_id", "bus2_id"], + aliases=["Network:", "Id:", "Type:", "Bus1:", "Bus2:"], + localize=True, + sticky=False, + labels=True, + max_width=800, + ) + + # Create the map + m = folium.Map(location=list(reversed(buses_gdf.unary_union.centroid.coords[0])), zoom_start=9) + folium.GeoJson( + branches_gdf, + name="branches", + marker=folium.CircleMarker(), + style_function=branches_style_function, + highlight_function=branches_highlight_function, + tooltip=branches_tooltip, + ).add_to(m) + folium.GeoJson( + buses_gdf, + name="buses", + marker=folium.CircleMarker(), + style_function=buses_style_function, + highlight_function=buses_highlight_function, + tooltip=buses_tooltip, + ).add_to(m) + folium.LayerControl().add_to(m) + + # Save the map + m.save("Catalogue.html")